-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdump_1.sql
1281 lines (1280 loc) · 857 KB
/
dump_1.sql
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
START TRANSACTION;
/*!40101 SET NAMES utf8, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET UNIQUE_CHECKS=0, FOREIGN_KEY_CHECKS=0 */;
/*!40111 SET SQL_NOTES=0 */;
CREATE TABLE `xlite_access_control_cells` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`hash` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`returnData` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`resendMethod` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `hash` (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_access_control_entities` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type_id` int(10) unsigned DEFAULT NULL,
`cell_id` int(10) unsigned DEFAULT NULL,
`uid` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_A98BAB59C54C8C93` (`type_id`),
KEY `IDX_A98BAB59CB39D93A` (`cell_id`),
CONSTRAINT `FK_A98BAB59CB39D93A` FOREIGN KEY (`cell_id`) REFERENCES `xlite_access_control_cells` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_A98BAB59C54C8C93` FOREIGN KEY (`type_id`) REFERENCES `xlite_access_control_entity_types` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_access_control_entity_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_access_control_entity_types` VALUES (1,'\\XLite\\Model\\Order');
CREATE TABLE `xlite_access_control_zone_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_access_control_zone_types` VALUES (1,'order');
CREATE TABLE `xlite_access_control_zones` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cell_id` int(10) unsigned DEFAULT NULL,
`type_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `cz` (`cell_id`,`type_id`),
KEY `IDX_19AE0547CB39D93A` (`cell_id`),
KEY `IDX_19AE0547C54C8C93` (`type_id`),
CONSTRAINT `FK_19AE0547C54C8C93` FOREIGN KEY (`type_id`) REFERENCES `xlite_access_control_zone_types` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_19AE0547CB39D93A` FOREIGN KEY (`cell_id`) REFERENCES `xlite_access_control_cells` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_address_field` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`serviceName` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`viewGetterName` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`schemaClass` varchar(256) COLLATE utf8_unicode_ci NOT NULL,
`additional` tinyint(1) NOT NULL,
`required` tinyint(1) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`position` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_2A531832912ABBB5` (`serviceName`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_address_field` VALUES (1,'title','','\\XLite\\View\\FormField\\Select\\Title',0,0,0,0),(2,'firstname','','\\XLite\\View\\FormField\\Input\\Text',0,1,1,0),(3,'lastname','','\\XLite\\View\\FormField\\Input\\Text',0,1,1,0),(4,'street','','\\XLite\\View\\FormField\\Input\\Text',0,1,1,0),(5,'city','','\\XLite\\View\\FormField\\Input\\Text',0,1,1,0),(6,'country_code','country_name','\\XLite\\View\\FormField\\Select\\Country',0,1,1,0),(7,'state_id','state_name','\\XLite\\View\\FormField\\Select\\State',0,0,1,0),(8,'custom_state','state_name','\\XLite\\View\\FormField\\Input\\Text',0,0,1,0),(9,'zipcode','','\\XLite\\View\\FormField\\Input\\Text',0,1,1,0),(10,'phone','','\\XLite\\View\\FormField\\Input\\Text',0,0,1,0),(11,'type','type_name','\\XLite\\View\\FormField\\Select\\AddressType',0,0,0,0);
CREATE TABLE `xlite_address_field_translation` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(11) DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `IDX_430F4FF2BF396750` (`id`),
CONSTRAINT `FK_430F4FF2BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_address_field` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_address_field_translation` VALUES (1,1,'Title','en'),(2,2,'First name','en'),(3,3,'Last name','en'),(4,4,'Address','en'),(5,5,'City','en'),(6,6,'Country','en'),(7,7,'State','en'),(8,8,'State','en'),(9,9,'Zip code','en'),(10,10,'Phone','en'),(11,11,'Address type','en');
CREATE TABLE `xlite_address_field_value` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`address_field_id` int(11) DEFAULT NULL,
`address_id` int(11) DEFAULT NULL,
`value` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_620FAD37BAB8F931` (`address_field_id`),
KEY `IDX_620FAD37F5B7AF75` (`address_id`),
CONSTRAINT `FK_620FAD37F5B7AF75` FOREIGN KEY (`address_id`) REFERENCES `xlite_profile_addresses` (`address_id`) ON DELETE CASCADE,
CONSTRAINT `FK_620FAD37BAB8F931` FOREIGN KEY (`address_field_id`) REFERENCES `xlite_address_field` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_address_field_value` VALUES (1,1,1,'Mr.'),(2,6,1,'US'),(3,2,1,'Guest'),(4,3,1,'Guest'),(5,10,1,'0123456789'),(6,4,1,'51 apt, 87 street'),(7,5,1,'Edmond'),(8,7,1,'595'),(9,6,1,'US'),(10,9,1,'73003'),(11,1,2,'Mr.'),(12,6,2,'US'),(13,2,2,'Guest'),(14,3,2,'Guest'),(15,10,2,'0123456789'),(16,4,2,'51 apt, 87 street'),(17,5,2,'Edmond'),(18,7,2,'595'),(19,6,2,'US'),(20,9,2,'73003'),(21,1,3,'Mr.'),(22,6,3,'US'),(23,2,3,'Guest'),(24,3,3,'Guest'),(25,10,3,'0123456789'),(26,4,3,'51 apt, 87 street'),(27,5,3,'Edmond'),(28,7,3,'595'),(29,6,3,'US'),(30,9,3,'73003'),(31,1,4,'Mr.'),(32,6,4,'US'),(33,2,4,'Guest'),(34,3,4,'Guest'),(35,10,4,'0123456789'),(36,4,4,'51 apt, 87 street'),(37,5,4,'Edmond'),(38,7,4,'595'),(39,6,4,'US'),(40,9,4,'73003'),(41,1,5,'Mr.'),(42,6,5,'US'),(43,2,5,'Guest'),(44,3,5,'Guest'),(45,10,5,'0123456789'),(46,4,5,'51 apt, 87 street'),(47,5,5,'Edmond'),(48,7,5,'595'),(49,6,5,'US'),(50,9,5,'73003'),(51,1,6,'Mr.'),(52,6,6,'US'),(53,2,6,'Guest'),(54,3,6,'Guest'),(55,10,6,'0123456789'),(56,4,6,'51 apt, 87 street'),(57,5,6,'Edmond'),(58,7,6,'595'),(59,6,6,'US'),(60,9,6,'73003');
CREATE TABLE `xlite_attribute_group_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_8C43909EBF396750` FOREIGN KEY (`id`) REFERENCES `xlite_attribute_groups` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_attribute_group_translations` VALUES (1,1,'Display','en'),(2,2,'Cellular and Wireless','en'),(3,3,'Power and Battery','en'),(4,1,'Дисплей','ru'),(5,2,'Сотовая и беспроводняа связь','ru'),(6,3,'Батарея','ru');
CREATE TABLE `xlite_attribute_groups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`product_class_id` int(10) unsigned DEFAULT NULL,
`position` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_59E382E821B06187` (`product_class_id`),
CONSTRAINT `FK_59E382E821B06187` FOREIGN KEY (`product_class_id`) REFERENCES `xlite_product_classes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_attribute_groups` VALUES (1,2,10),(2,2,20),(3,2,30);
CREATE TABLE `xlite_attribute_option_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_31550B83BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_attribute_options` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_attribute_option_translations` VALUES (1,1,'S','en'),(2,2,'M','en'),(3,3,'L','en'),(4,4,'XL','en'),(5,5,'XXL','en'),(8,8,'XXXL','en'),(109,109,'IndependentApparel','en'),(110,110,'YourStyle','en'),(111,111,'MyBestDress','en'),(112,112,'Toyty','en'),(113,113,'FunnyChildren','en'),(114,114,'MindSet','en'),(115,115,'GoodyBrand','en'),(116,116,'iBoutique','en'),(1001,1,'S','ru'),(1002,2,'M','ru'),(1003,3,'L','ru'),(1004,4,'XL','ru'),(1005,5,'XXL','ru'),(1008,8,'XXXL','ru'),(1109,109,'IndependentApparel','ru'),(1110,110,'YourStyle','ru'),(1111,111,'MyBestDress','ru'),(1112,112,'Toyty','ru'),(1113,113,'FunnyChildren','ru'),(1114,114,'MindSet','ru'),(1115,115,'GoodyBrand','ru'),(1116,116,'iBoutique','ru'),(1134,134,'Blue','en'),(1135,135,'Gold','en'),(1136,136,'Red','en'),(1143,143,'Blue','en'),(1144,144,'Gold','en'),(1145,145,'Red','en'),(1158,158,'Dr. Peter Venkman','en'),(1159,159,'Dr. Egon Spengler','en'),(1160,160,'Dr. Raymond Stantz','en'),(1161,161,'White','en'),(1162,162,'Black','en'),(1163,163,'Black','en'),(1164,164,'White','en'),(2001,1,'S','ru'),(2002,2,'M','ru'),(2003,3,'L','ru'),(2004,4,'XL','ru'),(2005,5,'XXL','ru'),(2008,8,'XXXL','ru'),(2109,109,'IndependentApparel','ru'),(2110,110,'YourStyle','ru'),(2111,111,'MyBestDress','ru'),(2112,112,'Toyty','ru'),(2113,113,'FunnyChildren','ru'),(2114,114,'MindSet','ru'),(2115,115,'GoodyBrand','ru'),(2116,116,'iBoutique','ru'),(3001,1,'S','ru'),(3002,2,'M','ru'),(3003,3,'L','ru'),(3004,4,'XL','ru'),(3005,5,'XXL','ru'),(3008,8,'XXXL','ru'),(3109,109,'IndependentApparel','ru'),(3110,110,'YourStyle','ru'),(3111,111,'MyBestDress','ru'),(3112,112,'Toyty','ru'),(3113,113,'FunnyChildren','ru'),(3114,114,'MindSet','ru'),(3115,115,'GoodyBrand','ru'),(3116,116,'iBoutique','ru'),(3134,134,'Синий','ru'),(3135,135,'Золотой','ru'),(3136,136,'Красный','ru'),(3143,143,'Синий','ru'),(3144,144,'Золотой','ru'),(3145,145,'Красный','ru'),(3158,158,'Питер Венкман','ru'),(3159,159,'Иган Спенглер','ru'),(3160,160,'Рэймонд Стэнтс','ru'),(3161,161,'Белый','ru'),(3162,162,'Черный','ru'),(3163,163,'Черный','ru'),(3164,164,'Белый','ru'),(3165,165,'16','en'),(3166,166,'64','en'),(3167,167,'128','en'),(3168,168,'Silver','en'),(3169,169,'Space Gray','en'),(3170,170,'Gold','en'),(3171,171,'A8 chip with 64‑bit architecture','en'),(3172,172,'Nano-SIM','en'),(3173,173,'Retina HD display','en'),(3174,174,'4.7','en'),(3175,175,'1334x750','en'),(3176,176,'Built-in rechargeable lithium-ion battery','en'),(3177,177,'Up to 14 hours on 3G','en'),(3178,178,'Up to 10 days (250 hours)','en'),(3179,179,'Up to 11 hours','en'),(3180,180,'Up to 50 hours','en'),(3181,181,'GSM/EDGE/LTE','en'),(3182,182,'802.11a/b/g/n/ac','en'),(3183,183,'Bluetooth 4.2','en'),(3184,184,'5.5','en'),(3185,185,'1920x1080','en'),(3186,186,'32','en'),(3187,187,'A7 chip with 64-bit architecture','en'),(3188,188,'White','en'),(3189,189,'Black','en'),(3190,190,'4','en'),(3191,191,'1136x640','en'),(3192,192,'Up to 10 hours on 3G','en'),(3193,193,'Up to 250 hours','en'),(3194,194,'Up to 10 hours','en'),(3195,195,'Up to 40 hours','en'),(3196,196,'GSM/EDGE','en'),(3197,197,'802.11a/b/g/n','en'),(3198,198,'Up to 24 hours on 3G','en'),(3199,199,'Up to 16 days (384 hours)','en'),(3200,200,'A9 chip with 64‑bit architecture','en'),(3201,201,'Purple','en'),(3202,202,'Green','en'),(3203,203,'Orange','en'),(3204,204,'Blue','en'),(3205,201,'Фиолетовый','ru'),(3206,202,'Зеленый','ru'),(3207,203,'Оранжевый','ru'),(3208,204,'Синий','ru'),(3209,205,'Rose Gold','en'),(3210,168,'Серебристый','ru'),(3211,169,'Серый космос','ru'),(3212,170,'Золотой','ru'),(3213,188,'Белый','ru'),(3214,189,'Черный','ru'),(3215,205,'Розовое золото','ru'),(3216,165,'16','ru'),(3217,166,'64','ru'),(3218,167,'128','ru'),(3219,186,'32','ru'),(3221,207,'Nano-SIM','ru'),(3223,209,'4','ru'),(3224,210,'1136x640','ru'),(3225,211,'Built-in rechargeable lithium-ion battery','ru'),(3226,212,'Up to 14 hours on 3G','ru'),(3227,213,'Up to 10 days (250 hours)','ru'),(3228,214,'Up to 10 hours','ru'),(3229,215,'Up to 40 hours','ru'),(3231,217,'802.11a/b/g/n/ac','ru');
CREATE TABLE `xlite_attribute_options` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`attribute_id` int(10) unsigned DEFAULT NULL,
`addToNew` tinyint(1) NOT NULL,
`position` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_2E486F4AB6E62EFA` (`attribute_id`),
CONSTRAINT `FK_2E486F4AB6E62EFA` FOREIGN KEY (`attribute_id`) REFERENCES `xlite_attributes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_attribute_options` VALUES (1,1,1,0),(2,1,1,0),(3,1,1,0),(4,1,1,0),(5,1,1,0),(8,1,1,0),(109,50,0,0),(110,50,0,0),(111,50,0,0),(112,50,0,0),(113,50,0,0),(114,50,0,0),(115,50,0,0),(116,50,0,0),(134,56,0,0),(135,56,0,0),(136,56,0,0),(143,58,0,0),(144,58,0,0),(145,58,0,0),(158,61,0,0),(159,61,0,0),(160,61,0,0),(161,69,0,0),(162,69,0,0),(163,70,0,0),(164,70,0,0),(165,71,1,0),(166,71,1,0),(167,71,0,0),(168,73,0,0),(169,73,0,0),(170,73,0,0),(171,72,0,0),(172,74,0,0),(173,75,0,0),(174,76,0,0),(175,77,0,0),(176,78,0,0),(177,79,0,0),(178,80,0,0),(179,81,0,0),(180,82,0,0),(181,83,0,0),(182,84,0,0),(183,85,0,0),(184,76,0,0),(185,77,0,0),(186,71,0,0),(187,72,0,0),(188,73,0,0),(189,73,0,0),(190,76,0,0),(191,77,0,0),(192,79,0,0),(193,80,0,0),(194,81,0,0),(195,82,0,0),(196,83,0,0),(197,84,0,0),(198,79,0,0),(199,80,0,0),(200,72,0,0),(201,87,0,0),(202,87,0,0),(203,87,0,0),(204,87,0,0),(205,73,0,0),(207,74,0,0),(209,76,0,0),(210,77,0,0),(211,78,0,0),(212,79,0,0),(213,80,0,0),(214,81,0,0),(215,82,0,0),(217,84,0,0);
CREATE TABLE `xlite_attribute_properties` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`product_id` int(10) unsigned DEFAULT NULL,
`attribute_id` int(10) unsigned DEFAULT NULL,
`position` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_3C3647F44584665A` (`product_id`),
KEY `IDX_3C3647F4B6E62EFA` (`attribute_id`),
CONSTRAINT `FK_3C3647F4B6E62EFA` FOREIGN KEY (`attribute_id`) REFERENCES `xlite_attributes` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_3C3647F44584665A` FOREIGN KEY (`product_id`) REFERENCES `xlite_products` (`product_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_attribute_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`unit` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_8BBAD04BBF396750` FOREIGN KEY (`id`) REFERENCES `xlite_attributes` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_attribute_translations` VALUES (1,1,'Size','','en'),(50,50,'Manufacturer','','en'),(51,1,'Размер','','ru'),(100,50,'Производитель','','ru'),(106,56,'Color','','en'),(108,58,'Color','','en'),(111,61,'Character','','en'),(112,62,'Captain America','','en'),(113,63,'Iron Man','','en'),(114,64,'Hulk','','en'),(115,65,'Thor','','en'),(116,66,'Black','','en'),(117,67,'Pink','','en'),(118,68,'Blue','','en'),(119,69,'Color','','en'),(120,70,'Color','','en'),(126,56,'Цвет','','ru'),(128,58,'Цвет','','ru'),(131,61,'Персонаж','','ru'),(132,62,'Капитан Америка','','ru'),(133,63,'Железный человек','','ru'),(134,64,'Халк','','ru'),(135,65,'Тор','','ru'),(136,66,'Черный','','ru'),(137,67,'Розовый','','ru'),(138,68,'Синий','','ru'),(139,69,'Цвет','','ru'),(140,70,'Цвет','','ru'),(141,71,'Capacity, GB','','en'),(142,72,'Chip','','en'),(143,73,'Color','','en'),(144,74,'Sim card','','en'),(145,75,'Display type','','en'),(146,76,'Dimension, inches','','en'),(147,77,'Resolution','','en'),(148,78,'Battery type','','en'),(149,79,'Talk time','','en'),(150,80,'Standby time','','en'),(151,81,'Video playback','','en'),(152,82,'Audio playback','','en'),(153,83,'GSM model','','en'),(154,84,'Wi-Fi','','en'),(155,85,'Bluetooth','','en'),(156,86,'GPS','','en'),(157,87,'Color','','en'),(158,87,'Цвет','','ru'),(159,73,'Цвет','','ru'),(160,71,'Объем памяти, GB','','ru'),(161,72,'Chip','','ru'),(162,74,'Sim card','','ru'),(163,75,'Display type','','ru'),(164,76,'Dimension, inches','','ru'),(165,77,'Resolution','','ru'),(166,78,'Battery type','','ru'),(167,79,'Talk time','','ru'),(168,80,'Standby time','','ru'),(169,81,'Video playback','','ru'),(170,82,'Audio playback','','ru'),(171,83,'GSM model','','ru'),(172,84,'Wi-Fi','','ru'),(173,85,'Bluetooth','','ru'),(174,86,'GPS','','ru');
CREATE TABLE `xlite_attribute_values_checkbox` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`product_id` int(10) unsigned DEFAULT NULL,
`attribute_id` int(10) unsigned DEFAULT NULL,
`value` tinyint(1) NOT NULL,
`priceModifier` decimal(14,4) NOT NULL,
`priceModifierType` char(1) COLLATE utf8_unicode_ci NOT NULL,
`weightModifier` decimal(14,4) NOT NULL,
`weightModifierType` char(1) COLLATE utf8_unicode_ci NOT NULL,
`defaultValue` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `product_id` (`product_id`),
KEY `attribute_id` (`attribute_id`),
KEY `value` (`value`),
CONSTRAINT `FK_3CA3503BB6E62EFA` FOREIGN KEY (`attribute_id`) REFERENCES `xlite_attributes` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_3CA3503B4584665A` FOREIGN KEY (`product_id`) REFERENCES `xlite_products` (`product_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_attribute_values_checkbox` VALUES (1,16,62,0,0.0000,'a',0.0000,'a',0),(2,16,63,1,19.9900,'a',0.0000,'a',0),(3,16,64,0,0.0000,'a',0.0000,'a',0),(4,16,65,0,0.0000,'a',0.0000,'a',0),(5,16,62,1,19.9900,'a',0.0000,'a',0),(7,16,64,1,19.9900,'a',0.0000,'a',0),(8,16,65,1,19.9900,'a',0.0000,'a',0),(9,31,66,1,0.0000,'a',0.0000,'a',0),(10,31,66,0,0.0000,'a',0.0000,'a',0),(11,31,67,1,0.0000,'a',0.0000,'a',0),(12,31,67,0,0.0000,'a',0.0000,'a',0),(13,31,68,1,0.0000,'a',0.0000,'a',0),(14,31,68,0,0.0000,'a',0.0000,'a',0),(15,42,86,1,0.0000,'p',0.0000,'p',0),(18,37,86,1,0.0000,'p',0.0000,'p',0),(19,41,86,1,0.0000,'p',0.0000,'p',0),(20,16,63,0,0.0000,'a',0.0000,'a',0);
CREATE TABLE `xlite_attribute_values_checkbox_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_5A770E51BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_attribute_values_checkbox` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_attribute_values_select` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`attribute_option_id` int(10) unsigned DEFAULT NULL,
`product_id` int(10) unsigned DEFAULT NULL,
`attribute_id` int(10) unsigned DEFAULT NULL,
`position` int(11) NOT NULL,
`priceModifier` decimal(14,4) NOT NULL,
`priceModifierType` char(1) COLLATE utf8_unicode_ci NOT NULL,
`weightModifier` decimal(14,4) NOT NULL,
`weightModifierType` char(1) COLLATE utf8_unicode_ci NOT NULL,
`defaultValue` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `product_id` (`product_id`),
KEY `attribute_id` (`attribute_id`),
KEY `attribute_option_id` (`attribute_option_id`),
CONSTRAINT `FK_65258CABB6E62EFA` FOREIGN KEY (`attribute_id`) REFERENCES `xlite_attributes` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_65258CAB1AE56DE9` FOREIGN KEY (`attribute_option_id`) REFERENCES `xlite_attribute_options` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_65258CAB4584665A` FOREIGN KEY (`product_id`) REFERENCES `xlite_products` (`product_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_attribute_values_select` VALUES (202,114,1,50,0,0.0000,'a',0.0000,'a',0),(204,112,17,50,0,0.0000,'a',0.0000,'a',0),(205,112,13,50,0,0.0000,'a',0.0000,'a',0),(215,112,6,50,0,0.0000,'a',0.0000,'a',0),(219,113,18,50,0,0.0000,'a',0.0000,'a',0),(264,134,7,56,0,0.0000,'a',0.0000,'a',0),(265,135,7,56,0,0.0000,'a',0.0000,'a',0),(266,136,7,56,0,0.0000,'a',0.0000,'a',0),(273,143,9,58,0,0.0000,'a',0.0000,'a',0),(274,144,9,58,0,0.0000,'a',0.0000,'a',0),(275,145,9,58,0,0.0000,'a',0.0000,'a',0),(288,158,13,61,0,0.0000,'a',0.0000,'a',0),(289,159,13,61,0,0.0000,'a',0.0000,'a',0),(290,160,13,61,0,0.0000,'a',0.0000,'a',0),(291,161,32,69,0,0.0000,'a',0.0000,'a',0),(292,162,32,69,0,0.0000,'a',0.0000,'a',0),(293,163,40,70,0,0.0000,'a',0.0000,'a',0),(294,164,40,70,0,0.0000,'a',0.0000,'a',0),(295,165,37,71,0,0.0000,'a',0.0000,'a',0),(296,166,37,71,0,100.0000,'a',0.0000,'a',0),(297,167,37,71,0,200.0000,'a',0.0000,'a',0),(298,200,37,72,0,0.0000,'a',0.0000,'a',0),(299,169,37,73,0,0.0000,'a',0.0000,'a',0),(300,168,37,73,0,0.0000,'a',0.0000,'a',0),(301,170,37,73,0,0.0000,'a',0.0000,'a',0),(302,172,37,74,0,0.0000,'a',0.0000,'a',0),(303,173,37,75,0,0.0000,'a',0.0000,'a',0),(304,174,37,76,0,0.0000,'a',0.0000,'a',0),(305,175,37,77,0,0.0000,'a',0.0000,'a',0),(306,176,37,78,0,0.0000,'a',0.0000,'a',0),(307,177,37,79,0,0.0000,'a',0.0000,'a',0),(308,178,37,80,0,0.0000,'a',0.0000,'a',0),(309,179,37,81,0,0.0000,'a',0.0000,'a',0),(310,180,37,82,0,0.0000,'a',0.0000,'a',0),(311,181,37,83,0,0.0000,'a',0.0000,'a',0),(312,182,37,84,0,0.0000,'a',0.0000,'a',0),(313,183,37,85,0,0.0000,'a',0.0000,'a',0),(314,165,41,71,0,0.0000,'a',0.0000,'a',0),(315,166,41,71,0,100.0000,'a',0.0000,'a',0),(316,167,41,71,0,200.0000,'a',0.0000,'a',0),(317,200,41,72,0,0.0000,'a',0.0000,'a',0),(318,169,41,73,0,0.0000,'a',0.0000,'a',0),(319,168,41,73,0,0.0000,'a',0.0000,'a',0),(320,170,41,73,0,0.0000,'a',0.0000,'a',0),(321,172,41,74,0,0.0000,'a',0.0000,'a',0),(322,173,41,75,0,0.0000,'a',0.0000,'a',0),(323,184,41,76,0,0.0000,'a',0.0000,'a',0),(324,185,41,77,0,0.0000,'a',0.0000,'a',0),(325,176,41,78,0,0.0000,'a',0.0000,'a',0),(326,198,41,79,0,0.0000,'a',0.0000,'a',0),(327,199,41,80,0,0.0000,'a',0.0000,'a',0),(328,194,41,81,0,0.0000,'a',0.0000,'a',0),(329,195,41,82,0,0.0000,'a',0.0000,'a',0),(330,181,41,83,0,0.0000,'a',0.0000,'a',0),(331,182,41,84,0,0.0000,'a',0.0000,'a',0),(332,183,41,85,0,0.0000,'a',0.0000,'a',0),(333,165,42,71,0,0.0000,'a',0.0000,'a',0),(335,166,42,71,0,200.0000,'a',0.0000,'a',0),(337,169,42,73,0,0.0000,'a',0.0000,'a',0),(338,168,42,73,0,0.0000,'a',0.0000,'a',0),(339,170,42,73,0,0.0000,'a',0.0000,'a',0),(340,172,42,74,0,0.0000,'a',0.0000,'a',0),(342,190,42,76,0,0.0000,'a',0.0000,'a',0),(343,191,42,77,0,0.0000,'a',0.0000,'a',0),(344,176,42,78,0,0.0000,'a',0.0000,'a',0),(345,177,42,79,0,0.0000,'a',0.0000,'a',0),(346,178,42,80,0,0.0000,'a',0.0000,'a',0),(347,194,42,81,0,0.0000,'a',0.0000,'a',0),(348,195,42,82,0,0.0000,'a',0.0000,'a',0),(350,182,42,84,0,0.0000,'a',0.0000,'a',0),(352,1,6,1,0,0.0000,'a',0.0000,'a',0),(353,2,6,1,0,0.0000,'a',0.0000,'a',0),(354,3,6,1,0,0.0000,'a',0.0000,'a',0),(355,4,6,1,0,0.0000,'a',0.0000,'a',0),(356,5,6,1,0,0.0000,'a',0.0000,'a',0),(357,8,6,1,0,0.0000,'a',0.0000,'a',0),(360,1,10,1,0,0.0000,'a',0.0000,'a',0),(361,2,10,1,0,0.0000,'a',0.0000,'a',0),(362,3,10,1,0,0.0000,'a',0.0000,'a',0),(363,4,10,1,0,0.0000,'a',0.0000,'a',0),(368,1,8,1,0,0.0000,'a',0.0000,'a',0),(369,2,8,1,0,0.0000,'a',0.0000,'a',0),(370,3,8,1,0,0.0000,'a',0.0000,'a',0),(371,4,8,1,0,0.0000,'a',0.0000,'a',0),(372,5,8,1,0,0.0000,'a',0.0000,'a',0),(373,8,8,1,0,0.0000,'a',0.0000,'a',0),(376,1,3,1,0,0.0000,'a',0.0000,'a',0),(377,2,3,1,0,0.0000,'a',0.0000,'a',0),(378,3,3,1,0,0.0000,'a',0.0000,'a',0),(379,4,3,1,0,0.0000,'a',0.0000,'a',0),(382,1,1,1,0,0.0000,'a',0.0000,'a',0),(383,2,1,1,0,0.0000,'a',0.0000,'a',0),(384,3,1,1,0,0.0000,'a',0.0000,'a',0),(385,4,1,1,0,0.0000,'a',0.0000,'a',0),(388,1,2,1,0,0.0000,'a',0.0000,'a',0),(389,2,2,1,0,0.0000,'a',0.0000,'a',0),(390,3,2,1,0,0.0000,'a',0.0000,'a',0),(391,4,2,1,0,0.0000,'a',0.0000,'a',0),(392,5,2,1,0,0.0000,'a',0.0000,'a',0),(393,8,2,1,0,0.0000,'a',0.0000,'a',0),(394,111,2,50,0,0.0000,'a',0.0000,'a',0),(395,1,4,1,0,0.0000,'a',0.0000,'a',0),(396,2,4,1,0,0.0000,'a',0.0000,'a',0),(397,3,4,1,0,0.0000,'a',0.0000,'a',0),(398,4,4,1,0,0.0000,'a',0.0000,'a',0),(401,114,4,50,0,0.0000,'a',0.0000,'a',0),(402,1,9,1,0,0.0000,'a',0.0000,'a',0),(403,2,9,1,0,0.0000,'a',0.0000,'a',0),(404,3,9,1,0,0.0000,'a',0.0000,'a',0),(405,4,9,1,0,0.0000,'a',0.0000,'a',0),(406,5,9,1,0,0.0000,'a',0.0000,'a',0),(407,8,9,1,0,0.0000,'a',0.0000,'a',0),(408,110,9,50,0,0.0000,'a',0.0000,'a',0),(409,1,7,1,0,0.0000,'a',0.0000,'a',0),(410,2,7,1,0,0.0000,'a',0.0000,'a',0),(411,3,7,1,0,0.0000,'a',0.0000,'a',0),(412,4,7,1,0,0.0000,'a',0.0000,'a',0),(413,5,7,1,0,0.0000,'a',0.0000,'a',0),(414,8,7,1,0,0.0000,'a',0.0000,'a',0),(415,115,7,50,0,0.0000,'a',0.0000,'a',0),(416,1,5,1,0,0.0000,'a',0.0000,'a',0),(417,2,5,1,0,0.0000,'a',0.0000,'a',0),(418,3,5,1,0,0.0000,'a',0.0000,'a',0),(419,4,5,1,0,0.0000,'a',0.0000,'a',0),(422,114,5,50,0,0.0000,'a',0.0000,'a',0),(423,113,8,50,0,0.0000,'a',0.0000,'a',0),(424,114,3,50,0,0.0000,'a',0.0000,'a',0),(425,115,10,50,0,0.0000,'a',0.0000,'a',0),(426,201,4,87,0,0.0000,'a',0.0000,'a',0),(427,202,4,87,0,0.0000,'a',0.0000,'a',0),(428,203,4,87,0,0.0000,'a',0.0000,'a',0),(429,204,4,87,0,0.0000,'a',0.0000,'a',0),(430,205,42,73,0,0.0000,'a',0.0000,'a',0),(431,200,42,72,0,0.0000,'a',0.0000,'a',0),(432,173,42,75,0,0.0000,'a',0.0000,'a',0),(433,183,42,85,0,0.0000,'a',0.0000,'a',0);
CREATE TABLE `xlite_attribute_values_select_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_CDF9A7AFBF396750` FOREIGN KEY (`id`) REFERENCES `xlite_attribute_values_select` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_attribute_values_text` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`product_id` int(10) unsigned DEFAULT NULL,
`attribute_id` int(10) unsigned DEFAULT NULL,
`editable` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `product_id` (`product_id`),
KEY `attribute_id` (`attribute_id`),
CONSTRAINT `FK_560D03DAB6E62EFA` FOREIGN KEY (`attribute_id`) REFERENCES `xlite_attributes` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_560D03DA4584665A` FOREIGN KEY (`product_id`) REFERENCES `xlite_products` (`product_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_attribute_values_text_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`value` longtext COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_753A596BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_attribute_values_text` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_attributes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`product_class_id` int(10) unsigned DEFAULT NULL,
`attribute_group_id` int(10) unsigned DEFAULT NULL,
`product_id` int(10) unsigned DEFAULT NULL,
`visible` tinyint(1) NOT NULL DEFAULT '1',
`position` int(11) NOT NULL,
`decimals` int(11) NOT NULL,
`type` char(1) COLLATE utf8_unicode_ci NOT NULL,
`addToNew` char(1) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_9665298321B06187` (`product_class_id`),
KEY `IDX_9665298362D643B7` (`attribute_group_id`),
KEY `IDX_966529834584665A` (`product_id`),
CONSTRAINT `FK_966529834584665A` FOREIGN KEY (`product_id`) REFERENCES `xlite_products` (`product_id`) ON DELETE CASCADE,
CONSTRAINT `FK_9665298321B06187` FOREIGN KEY (`product_class_id`) REFERENCES `xlite_product_classes` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_9665298362D643B7` FOREIGN KEY (`attribute_group_id`) REFERENCES `xlite_attribute_groups` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_attributes` VALUES (1,1,NULL,NULL,1,0,0,'S',''),(50,NULL,NULL,NULL,1,0,0,'S',''),(56,NULL,NULL,7,1,0,0,'S',''),(58,NULL,NULL,9,1,0,0,'S',''),(61,NULL,NULL,13,1,0,0,'S',''),(62,NULL,NULL,16,1,0,0,'C',''),(63,NULL,NULL,16,1,0,0,'C',''),(64,NULL,NULL,16,1,0,0,'C',''),(65,NULL,NULL,16,1,0,0,'C',''),(66,NULL,NULL,31,1,0,0,'C',''),(67,NULL,NULL,31,1,0,0,'C',''),(68,NULL,NULL,31,1,0,0,'C',''),(69,NULL,NULL,32,1,0,0,'S',''),(70,NULL,NULL,40,1,0,0,'S',''),(71,2,NULL,NULL,1,0,0,'S',''),(72,2,NULL,NULL,1,0,0,'S',''),(73,2,NULL,NULL,1,0,0,'S',''),(74,2,NULL,NULL,0,0,0,'S',''),(75,2,1,NULL,1,0,0,'S',''),(76,2,1,NULL,1,0,0,'S',''),(77,2,1,NULL,1,0,0,'S',''),(78,2,3,NULL,0,0,0,'S',''),(79,2,3,NULL,0,0,0,'S',''),(80,2,3,NULL,0,0,0,'S',''),(81,2,3,NULL,0,0,0,'S',''),(82,2,3,NULL,0,0,0,'S',''),(83,2,2,NULL,1,0,0,'S',''),(84,2,2,NULL,1,0,0,'S',''),(85,2,2,NULL,0,0,0,'S',''),(86,2,2,NULL,1,0,0,'C',''),(87,NULL,NULL,4,1,0,0,'S','');
CREATE TABLE `xlite_banner_rotation_image` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`banner_rotation_slide_id` int(10) unsigned DEFAULT NULL,
`alt` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`width` int(11) NOT NULL,
`height` int(11) NOT NULL,
`hash` char(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`needProcess` tinyint(1) NOT NULL,
`path` varchar(512) COLLATE utf8_unicode_ci NOT NULL,
`fileName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`mime` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`storageType` varchar(1) COLLATE utf8_unicode_ci NOT NULL,
`size` int(10) unsigned NOT NULL,
`date` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_BDC50932217A8232` (`banner_rotation_slide_id`),
CONSTRAINT `FK_BDC50932217A8232` FOREIGN KEY (`banner_rotation_slide_id`) REFERENCES `xlite_banner_rotation_slide` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_banner_rotation_image` VALUES (1,1,'Apparel',4000,920,NULL,1,'banner_apparel_2x.jpg','','image/jpeg','r',0,1480536660),(2,2,'Toys',4000,920,NULL,1,'banner_toys_2x.jpg','','image/jpeg','r',0,1480536660);
CREATE TABLE `xlite_banner_rotation_slide` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`enabled` tinyint(1) NOT NULL,
`link` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`position` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_banner_rotation_slide` VALUES (1,1,'cart.php?target=category&category_id=4',20),(2,1,'cart.php?target=category&category_id=5',10);
CREATE TABLE `xlite_capost_delivery_service_options` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`mandatory` tinyint(1) NOT NULL,
`qualifierRequired` tinyint(1) NOT NULL,
`qualifierMax` decimal(14,4) DEFAULT NULL,
`serviceId` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_85C93F5589697FA8` (`serviceId`),
CONSTRAINT `FK_85C93F5589697FA8` FOREIGN KEY (`serviceId`) REFERENCES `xlite_capost_delivery_services` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_capost_delivery_services` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`countryCode` varchar(2) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`expiry` int(10) unsigned NOT NULL,
`maxWeight` int(11) NOT NULL,
`minWeight` int(11) NOT NULL,
`maxLength` decimal(11,1) NOT NULL,
`minLength` decimal(11,1) NOT NULL,
`maxWidth` decimal(11,1) NOT NULL,
`minWidth` decimal(11,1) NOT NULL,
`maxHeight` decimal(11,1) NOT NULL,
`minHeight` decimal(11,1) NOT NULL,
`lengthPlusGirthMax` decimal(11,1) DEFAULT NULL,
`lengthHeightWidthSumMax` decimal(11,1) DEFAULT NULL,
`oversizeLimit` decimal(11,1) DEFAULT NULL,
`densityFactor` int(11) DEFAULT NULL,
`canShipInMailingTube` tinyint(1) NOT NULL,
`canShipUnpackaged` tinyint(1) NOT NULL,
`allowedAsReturnService` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `code_country` (`code`,`countryCode`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_capost_return_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`amount` int(10) unsigned NOT NULL,
`returnId` int(10) unsigned DEFAULT NULL,
`orderItemId` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_32022371B43D59E` (`returnId`),
KEY `IDX_3202237BBF22A26` (`orderItemId`),
CONSTRAINT `FK_3202237BBF22A26` FOREIGN KEY (`orderItemId`) REFERENCES `xlite_order_items` (`item_id`) ON DELETE CASCADE,
CONSTRAINT `FK_32022371B43D59E` FOREIGN KEY (`returnId`) REFERENCES `xlite_capost_returns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_capost_return_link_storage` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`path` varchar(512) COLLATE utf8_unicode_ci NOT NULL,
`fileName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`mime` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`storageType` varchar(1) COLLATE utf8_unicode_ci NOT NULL,
`size` int(10) unsigned NOT NULL,
`date` int(10) unsigned NOT NULL,
`linkId` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_784CAF87AEC98E42` (`linkId`),
CONSTRAINT `FK_784CAF87AEC98E42` FOREIGN KEY (`linkId`) REFERENCES `xlite_capost_return_links` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_capost_return_links` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rel` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`href` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`idx` int(11) DEFAULT NULL,
`mediaType` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`returnId` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_33BC6A621B43D59E` (`returnId`),
CONSTRAINT `FK_33BC6A621B43D59E` FOREIGN KEY (`returnId`) REFERENCES `xlite_capost_returns` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_capost_returns` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`status` char(2) COLLATE utf8_unicode_ci NOT NULL,
`date` int(10) unsigned NOT NULL,
`lastRenewDate` int(11) NOT NULL,
`notes` longtext COLLATE utf8_unicode_ci NOT NULL,
`adminNotes` longtext COLLATE utf8_unicode_ci NOT NULL,
`trackingPin` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL,
`orderId` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_A90646B3FA237437` (`orderId`),
KEY `date` (`date`),
KEY `status` (`status`),
CONSTRAINT `FK_A90646B3FA237437` FOREIGN KEY (`orderId`) REFERENCES `xlite_orders` (`order_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_categories` (
`category_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned DEFAULT NULL,
`ogMeta` longtext COLLATE utf8_unicode_ci NOT NULL,
`useCustomOG` tinyint(1) NOT NULL,
`useClasses` char(1) COLLATE utf8_unicode_ci NOT NULL,
`lpos` int(11) NOT NULL,
`rpos` int(11) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`show_title` tinyint(1) NOT NULL,
`depth` int(11) NOT NULL,
`pos` int(11) NOT NULL,
`root_category_look` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`metaDescType` varchar(1) COLLATE utf8_unicode_ci NOT NULL,
`xcPendingExport` tinyint(1) NOT NULL,
`lastUsage` int(11) NOT NULL,
PRIMARY KEY (`category_id`),
KEY `IDX_9D0DF19B727ACA70` (`parent_id`),
KEY `lpos` (`lpos`),
KEY `rpos` (`rpos`),
KEY `enabled` (`enabled`),
CONSTRAINT `FK_9D0DF19B727ACA70` FOREIGN KEY (`parent_id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_categories` VALUES (1,NULL,'',0,'A',1,16,1,0,-1,0,'icons','A',0,0),(2,1,'',0,'A',2,3,1,1,0,30,NULL,'A',0,0),(3,1,'',0,'A',4,5,0,1,0,20,NULL,'A',0,0),(4,1,'',0,'A',6,7,1,1,0,10,NULL,'A',0,0),(5,1,'',0,'A',8,15,1,1,0,40,NULL,'A',0,0),(6,5,'',0,'A',9,10,1,1,1,10,NULL,'A',0,0),(7,5,'',0,'A',11,12,1,1,1,20,NULL,'A',0,0),(8,5,'',0,'A',13,14,1,1,1,30,NULL,'A',0,0);
CREATE TABLE `xlite_category_banners` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`alt` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`width` int(11) NOT NULL,
`height` int(11) NOT NULL,
`hash` char(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`needProcess` tinyint(1) NOT NULL,
`path` varchar(512) COLLATE utf8_unicode_ci NOT NULL,
`fileName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`mime` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`storageType` varchar(1) COLLATE utf8_unicode_ci NOT NULL,
`size` int(10) unsigned NOT NULL,
`date` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_69B8F0D412469DE2` (`category_id`),
CONSTRAINT `FK_69B8F0D412469DE2` FOREIGN KEY (`category_id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_category_banners` VALUES (1,2,'',2720,800,NULL,1,'banner_igoods_clean.jpg','','image/jpeg','r',125253,1394109447),(2,3,'',2720,800,NULL,1,'banner_igoods_clean.jpg','','image/jpeg','r',125253,1394109447),(3,4,'',2720,800,NULL,1,'banner_apparel_clean.jpg','','image/jpeg','r',122998,1394109447),(4,5,'',2720,800,NULL,1,'banner_toys_clean.jpg','','image/jpeg','r',124298,1394109447);
CREATE TABLE `xlite_category_class_links` (
`category_id` int(10) unsigned NOT NULL,
`class_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`category_id`,`class_id`),
KEY `IDX_3F5DB31312469DE2` (`category_id`),
KEY `IDX_3F5DB313EA000B10` (`class_id`),
CONSTRAINT `FK_3F5DB313EA000B10` FOREIGN KEY (`class_id`) REFERENCES `xlite_product_classes` (`id`) ON DELETE CASCADE,
CONSTRAINT `FK_3F5DB31312469DE2` FOREIGN KEY (`category_id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_category_images` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`alt` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`width` int(11) NOT NULL,
`height` int(11) NOT NULL,
`hash` char(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`needProcess` tinyint(1) NOT NULL,
`path` varchar(512) COLLATE utf8_unicode_ci NOT NULL,
`fileName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`mime` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`storageType` varchar(1) COLLATE utf8_unicode_ci NOT NULL,
`size` int(10) unsigned NOT NULL,
`date` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_3EDA5C4B12469DE2` (`category_id`),
CONSTRAINT `FK_3EDA5C4B12469DE2` FOREIGN KEY (`category_id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_category_images` VALUES (1,2,'',434,555,NULL,1,'igoods.png','','image/png','r',265767,1394109447),(2,3,'',434,555,NULL,1,'igoods.png','','image/png','r',265767,1394109447),(3,4,'',600,640,NULL,1,'1814_star_trek_command_cycle_jersey.jpeg','','image/jpeg','r',56283,1278412215),(4,5,'',600,590,NULL,1,'ijrm_back_to_the_future_vinyl_idols.png','','image/png','r',276157,1480536659),(5,6,'',600,590,NULL,1,'ijrm_back_to_the_future_vinyl_idols.png','','image/png','r',276157,1480536659),(6,7,'',600,481,NULL,1,'ivvg_beer_briefcase_1.jpeg','','image/jpeg','r',54394,1480536660),(7,8,'',600,600,NULL,1,'17f0_3d_bmo_mug_1.jpeg','','image/jpeg','r',38929,1480536660);
CREATE TABLE `xlite_category_membership_links` (
`category_id` int(10) unsigned NOT NULL,
`membership_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`category_id`,`membership_id`),
KEY `IDX_A0AA75DD12469DE2` (`category_id`),
KEY `IDX_A0AA75DD1FB354CD` (`membership_id`),
CONSTRAINT `FK_A0AA75DD1FB354CD` FOREIGN KEY (`membership_id`) REFERENCES `xlite_memberships` (`membership_id`) ON DELETE CASCADE,
CONSTRAINT `FK_A0AA75DD12469DE2` FOREIGN KEY (`category_id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_category_products` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`product_id` int(10) unsigned DEFAULT NULL,
`orderby` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `pair` (`category_id`,`product_id`),
KEY `IDX_7121122812469DE2` (`category_id`),
KEY `IDX_712112284584665A` (`product_id`),
KEY `orderby` (`orderby`),
CONSTRAINT `FK_712112284584665A` FOREIGN KEY (`product_id`) REFERENCES `xlite_products` (`product_id`) ON DELETE CASCADE,
CONSTRAINT `FK_7121122812469DE2` FOREIGN KEY (`category_id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_category_products` VALUES (1,2,37,10),(2,2,41,20),(3,2,42,30),(4,3,39,10),(5,3,36,20),(6,3,34,30),(7,3,32,40),(8,3,31,50),(9,3,29,60),(10,3,28,70),(11,3,33,80),(12,3,35,90),(13,3,30,100),(14,3,40,110),(15,3,38,120),(16,4,1,0),(17,4,9,0),(18,4,8,0),(19,4,7,0),(20,4,6,0),(21,4,5,0),(22,4,4,0),(23,4,3,0),(24,4,2,0),(25,4,10,0),(26,6,11,0),(27,6,12,0),(28,6,13,0),(29,6,14,0),(30,6,15,0),(31,6,16,0),(32,6,17,0),(33,6,18,0),(34,7,19,0),(35,7,20,0),(36,7,21,0),(37,7,22,0),(38,7,23,0),(39,7,24,0),(40,8,25,0),(41,8,26,0),(42,8,27,0);
CREATE TABLE `xlite_category_quick_flags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`category_id` int(10) unsigned DEFAULT NULL,
`subcategories_count_all` int(11) NOT NULL,
`subcategories_count_enabled` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_5BA9C50312469DE2` (`category_id`),
CONSTRAINT `FK_5BA9C50312469DE2` FOREIGN KEY (`category_id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_category_quick_flags` VALUES (1,1,4,3),(2,2,0,0),(3,3,0,0),(4,4,0,0),(5,5,3,3),(6,6,0,0),(7,7,0,0),(8,8,0,0);
CREATE TABLE `xlite_category_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci NOT NULL,
`metaTags` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`metaDesc` longtext COLLATE utf8_unicode_ci NOT NULL,
`metaTitle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_9ED79EA5BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_category_translations` VALUES (1,1,'Catalog','<h1>Welcome to X-Cart Demo Store!</h1><p>It illustrates operation and features of X-Cart - all-in-one eCommerce solution for swift and easy launch of a professional online store. Orders placed here cannot be fulfilled as all the sample products listed in this store are for demonstration and testing purposes only.</p>','','','','en'),(2,2,'iGoods - Product Filter','','','','','en'),(3,3,'Electronics','','','','','en'),(4,4,'Apparel','','','','','en'),(5,5,'Toys','','','','','en'),(6,6,'Geek toys','','','','','en'),(7,7,'Office Pranks','','','','','en'),(8,8,'Home & office','','','','','en');
CREATE TABLE `xlite_clean_urls` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`page_id` int(10) unsigned DEFAULT NULL,
`news_message_id` int(10) unsigned DEFAULT NULL,
`product_id` int(10) unsigned DEFAULT NULL,
`category_id` int(10) unsigned DEFAULT NULL,
`cleanURL` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IDX_F2542545C4663E4` (`page_id`),
KEY `IDX_F2542545BF05C450` (`news_message_id`),
KEY `IDX_F25425454584665A` (`product_id`),
KEY `IDX_F254254512469DE2` (`category_id`),
KEY `cleanURL` (`cleanURL`),
CONSTRAINT `FK_F254254512469DE2` FOREIGN KEY (`category_id`) REFERENCES `xlite_categories` (`category_id`),
CONSTRAINT `FK_F25425454584665A` FOREIGN KEY (`product_id`) REFERENCES `xlite_products` (`product_id`),
CONSTRAINT `FK_F2542545BF05C450` FOREIGN KEY (`news_message_id`) REFERENCES `xlite_news` (`id`),
CONSTRAINT `FK_F2542545C4663E4` FOREIGN KEY (`page_id`) REFERENCES `xlite_pages` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_clean_urls` VALUES (1,1,NULL,NULL,NULL,'terms-and-conditions.html'),(2,2,NULL,NULL,NULL,'shipping.html'),(3,NULL,NULL,1,NULL,'mordorable-fitted-ladies-tee.html'),(4,NULL,NULL,2,NULL,'octopus-cardigan.html'),(5,NULL,NULL,3,NULL,'spiderman-selfie-ladies-tee.html'),(6,NULL,NULL,4,NULL,'star-wars-tissue-weight-fitted-ladies-tee.html'),(7,NULL,NULL,5,NULL,'wonder-woman-hockey-stripe-ladies-tee.html'),(8,NULL,NULL,6,NULL,'star-trek-command-cycle-jersey.html'),(9,NULL,NULL,7,NULL,'star-trek-uniform-polos.html'),(10,NULL,NULL,8,NULL,'bow-ties-are-cool.html'),(11,NULL,NULL,9,NULL,'star-trek-tng-uniform-tee.html'),(12,NULL,NULL,10,NULL,'ewok-ladies-hooded-tank-top.html'),(13,NULL,NULL,11,NULL,'dota-2-series-3-micro-plush-blind-box.html'),(14,NULL,NULL,12,NULL,'minions-pop-vinyl-figures.html'),(15,NULL,NULL,13,NULL,'vinyl-idolz-ghostbusters.html'),(16,NULL,NULL,14,NULL,'dota-2-sniper-plush.html'),(17,NULL,NULL,15,NULL,'soft-kitty-singing-plush.html'),(18,NULL,NULL,16,NULL,'avengers-age-of-ultron-fabrikations-plush.html'),(19,NULL,NULL,17,NULL,'ollie-the-app-controlled-robot.html'),(20,NULL,NULL,18,NULL,'powerup-r-3-0-smartphone-controlled-paper-airplane.html'),(21,NULL,NULL,19,NULL,'chocolate-covered-edible-bugs-gift-pack.html'),(22,NULL,NULL,20,NULL,'canned-unicorn-meat.html'),(23,NULL,NULL,21,NULL,'the-thinkgeek-annoy-a-tron.html'),(24,NULL,NULL,22,NULL,'legendary-hero-8-bit-heart-bouquet.html'),(25,NULL,NULL,23,NULL,'executive-building-brick-set-chrome-.html'),(26,NULL,NULL,24,NULL,'blizzard-diablo-goblin-bank-with-sound.html'),(27,NULL,NULL,25,NULL,'ghostbusters-stay-puft-marshmallow-face-mug.html'),(28,NULL,NULL,26,NULL,'build-on-brick-mug.html'),(29,NULL,NULL,27,NULL,'superhero-mom-mug.html'),(30,NULL,NULL,28,NULL,'olloclip-iphone-macro-3-in-1-lens-system.html'),(31,NULL,NULL,29,NULL,'gunnar-vayper-gaming-glasses.html'),(32,NULL,NULL,30,NULL,'astro-a50-halo-edition.html'),(33,NULL,NULL,31,NULL,'cup-of-mojo-bluetooth-speaker.html'),(34,NULL,NULL,32,NULL,'jbl-pebbles-pc-speakers.html'),(35,NULL,NULL,33,NULL,'bright-idea-usb-powered-light-bulb.html'),(36,NULL,NULL,34,NULL,'mj-technology-android-tablet-with-built-in-hdtv-tuner.html'),(37,NULL,NULL,35,NULL,'bactrack-vio-bluetooth-app-enabled-breathalyzer.html'),(38,NULL,NULL,36,NULL,'coffee-cup-power-inverter-v2-0.html'),(39,NULL,NULL,37,NULL,'apple-iphone-6-16gb.html'),(40,NULL,NULL,38,NULL,'canon-ef-24-105mm-f-4l-is-usm.html'),(41,NULL,NULL,39,NULL,'apple-watch-sport-42mm-with-sport-band.html'),(42,NULL,NULL,40,NULL,'astro-a30-system.html'),(43,NULL,NULL,41,NULL,'apple-iphone-6-plus-options-amp-attributes-.html'),(44,NULL,NULL,42,NULL,'apple-iphone-5s.html'),(45,NULL,NULL,NULL,2,'igoods'),(46,NULL,NULL,NULL,3,'electronics'),(47,NULL,NULL,NULL,4,'apparel'),(48,NULL,NULL,NULL,5,'toys'),(49,NULL,NULL,NULL,6,'geek-toys'),(50,NULL,NULL,NULL,7,'office-pranks-and-cube-warfare'),(51,NULL,NULL,NULL,8,'home-and-office');
CREATE TABLE `xlite_config` (
`config_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`category` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`orderby` int(11) NOT NULL,
`value` longtext COLLATE utf8_unicode_ci NOT NULL,
`widgetParameters` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:array)',
PRIMARY KEY (`config_id`),
UNIQUE KEY `nc` (`name`,`category`),
KEY `orderby` (`orderby`),
KEY `type` (`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_config` VALUES (1,'admin_presentation','General','separator',40000,'','N;'),(2,'admin_security','Security','checkbox',1000,'N','N;'),(3,'anonymous','Shipping','separator',3000,'','N;'),(4,'anonymous_address','Shipping','text',4000,'','N;'),(5,'anonymous_country','Shipping','country',5000,'US','N;'),(6,'anonymous_state','Shipping','state',6000,'562','N;'),(7,'anonymous_custom_state','Shipping','text',7000,'','N;'),(8,'anonymous_city','Shipping','text',8000,'Los Angeles','N;'),(9,'anonymous_zipcode','Shipping','text',9000,'90001','N;'),(10,'anonymous_address_type','Shipping','\\XLite\\View\\FormField\\Select\\AddressType',10000,'R','N;'),(11,'aggregate_css','Performance','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',2000,'Y','N;'),(12,'aggregate_js','Performance','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',3000,'Y','N;'),(13,'use_view_cache','Performance','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',4000,'Y','N;'),(14,'use_dynamic_image_resizing','Performance','hidden',5000,'','N;'),(15,'layout_type','Layout','XLite\\View\\FormField\\Select\\LayoutType',1000,'left','N;'),(16,'layout_type_home','Layout','XLite\\View\\FormField\\Select\\LayoutType',1010,'one','N;'),(17,'cli_key','Security','',11000,'','N;'),(18,'company_address','Company','separator',38500,'','N;'),(19,'company_contacts','Company','separator',45500,'','N;'),(20,'company_fax','Company','XLite\\View\\FormField\\Input\\Text\\Phone',42000,'(555) 555-5555','N;'),(21,'company_identity','Company','separator',35000,'','N;'),(22,'company_name','Company','text',36000,'*Your company name*','N;'),(23,'company_website','Company','text',37000,'','N;'),(24,'terms_url','General','text',38000,'terms-and-conditions.html','N;'),(25,'customer_presentation','General','separator',20000,'','N;'),(26,'customer_security','Security','checkbox',100,'N','N;'),(27,'force_customers_to_https','Security','checkbox',200,'Y','N;'),(28,'date_format','Units','XLite\\View\\FormField\\Select\\DateFormat',66000,'%b %e, %Y','N;'),(29,'csv_delim','Units','XLite\\View\\FormField\\Select\\CSVDelimiter',70000,',','N;'),(30,'export_import_charset','Units','XLite\\View\\FormField\\Select\\IconvCharset',72500,'UTF-8','N;'),(31,'default_language','General','',33000,'en','N;'),(32,'default_admin_language','General','',33500,'en','N;'),(33,'default_offline_payment','Payments','text',0,'','N;'),(34,'default_purchase_limit','General','XLite\\View\\FormField\\Input\\Text\\Integer',29300,'9999','a:1:{s:3:\"min\";i:1;}'),(35,'default_select_payment','Payments','text',0,'','N;'),(36,'display_check_number','General','checkbox',21500,'Y','N;'),(37,'show_out_of_stock_products','General','XLite\\View\\FormField\\Select\\ShowOutOfStockProducts',20000,'directLink','N;'),(38,'default_prod_display_mode','General','XLite\\View\\FormField\\Select\\DefaultDisplayModeForProductsList',25000,'grid','N;'),(39,'license','License','text',0,'','N;'),(40,'location_address','Company','text',39000,'*Your company address*','N;'),(41,'location_country','Company','country',40000,'US','a:1:{s:9:\"selectOne\";b:0;}'),(42,'location_state','Company','state',41000,'591','N;'),(43,'location_custom_state','Company','text',41500,'','N;'),(44,'location_city','Company','text',42000,'New York','N;'),(45,'location_zipcode','Company','text',43000,'10001','N;'),(46,'origin_use_company','Company','checkbox',38000,'1','N;'),(47,'origin_address','Company','text',39000,'','N;'),(48,'origin_country','Company','country',40000,'US','a:1:{s:9:\"selectOne\";b:0;}'),(49,'origin_state','Company','state',41000,'','N;'),(50,'origin_custom_state','Company','text',41500,'','N;'),(51,'origin_city','Company','text',42000,'','N;'),(52,'origin_zipcode','Company','text',43000,'','N;'),(53,'company_phone','Company','XLite\\View\\FormField\\Input\\Text\\Phone',44000,'(555) 555-5555','N;'),(54,'login_lifetime','General','XLite\\View\\FormField\\Input\\Text\\Integer',45000,'3','a:1:{s:3:\"min\";i:1;}'),(55,'maximal_order_amount','General','XLite\\View\\FormField\\Input\\Text\\FloatInput',29000,'99999','a:1:{s:3:\"min\";i:1;}'),(56,'minimal_order_amount','General','XLite\\View\\FormField\\Input\\Text\\FloatInput',28000,'0','a:1:{s:3:\"min\";i:0;}'),(57,'order_number_counter','General','XLite\\View\\FormField\\Input\\Text\\Integer',39000,'6','N;'),(58,'cart_ttl','General','XLite\\View\\FormField\\Input\\Text\\Integer',39500,'7','N;'),(59,'internal_cron_enabled','General','checkbox',39800,'Y','N;'),(60,'orders_department','Company','XLite\\View\\FormField\\Input\\Text\\Email',48000,'[email protected]','N;'),(61,'orders_per_page','General','XLite\\View\\FormField\\Input\\Text\\Integer',43000,'30','a:1:{s:3:\"min\";i:1;}'),(62,'products_per_page','General','XLite\\View\\FormField\\Input\\Text\\Integer',25000,'12','a:1:{s:3:\"min\";i:1;}'),(63,'products_per_page_max','General','XLite\\View\\FormField\\Input\\Text\\Integer',25000,'100','a:1:{s:3:\"min\";i:1;}'),(64,'products_per_page_admin','General','XLite\\View\\FormField\\Input\\Text\\Integer',41000,'10','a:1:{s:3:\"min\";i:1;}'),(65,'force_choose_product_options','General','XLite\\View\\FormField\\Select\\ForceProductOptions',29900,'','N;'),(66,'redirect_to_cart','General','checkbox',30000,'N','N;'),(67,'shop_closed','Internal','checkbox',11000,'N','N;'),(68,'shop_currency','General','',60500,'840','N;'),(69,'trailing_zeroes','General','',60500,'0','N;'),(70,'site_administrator','Company','XLite\\View\\FormField\\Input\\Text\\Email',46000,'[email protected]','N;'),(71,'smtp_password','Email','XLite\\View\\FormField\\Input\\PasswordWithValue',16000,'','N;'),(72,'smtp_security','Email','XLite\\View\\FormField\\Select\\SMTPSecurity',17000,'no','N;'),(73,'smtp_server','Email','separator',10000,'','N;'),(74,'smtp_server_port','Email','XLite\\View\\FormField\\Input\\Text\\Integer',13000,'25','a:2:{s:3:\"min\";i:0;s:3:\"max\";i:65535;}'),(75,'smtp_server_url','Email','text',12000,'','N;'),(76,'smtp_username','Email','text',15000,'','N;'),(77,'start_year','Company','XLite\\View\\FormField\\Input\\Text\\PastYear',38000,'2016','N;'),(78,'subcategories_look','General','XLite\\View\\FormField\\Select\\SubcategoriesLook',22000,'icons','N;'),(79,'default_products_sort_order','General','XLite\\View\\FormField\\Select\\DefaultProductSortOrder',22500,'default','N;'),(80,'default_search_sort_order','General','XLite\\View\\FormField\\Select\\DefaultProductSortOrder',22501,'default','N;'),(81,'support_department','Company','XLite\\View\\FormField\\Input\\Text\\Email',49000,'[email protected]','N;'),(82,'time_format','Units','XLite\\View\\FormField\\Select\\TimeFormat',67000,'%H:%M','N;'),(83,'time_zone','Units','XLite\\View\\FormField\\Select\\TimeZone',68000,'','N;'),(84,'users_department','Company','XLite\\View\\FormField\\Input\\Text\\Email',47000,'[email protected]','N;'),(85,'users_per_page','General','XLite\\View\\FormField\\Input\\Text\\Integer',42000,'30','a:1:{s:3:\"min\";i:1;}'),(86,'use_smtp','Email','checkbox',11000,'N','N;'),(87,'use_smtp_auth','Email','checkbox',14000,'N','N;'),(88,'version','Version','',0,'5.3.2','N;'),(89,'weight_symbol','Units','text',62000,'lbs','N;'),(90,'weight_unit','Units','XLite\\View\\FormField\\Select\\WeightUnit',61000,'lbs','N;'),(91,'weight_trailing_zeroes','Units','checkbox',62100,'Y','N;'),(92,'weight_format','Units','XLite\\View\\FormField\\Select\\FloatFormat',62200,'|.','N;'),(93,'dim_symbol','Units','text',62500,'in','N;'),(94,'dim_unit','Units','XLite\\View\\FormField\\Select\\DimUnit',62300,'in','N;'),(95,'curl_cainfo','Environment','text',11000,'','N;'),(96,'curl_capath','Environment','text',12000,'','N;'),(97,'force_login_before_checkout','General','checkbox',30500,'Y','N;'),(98,'enable_add2cart_button_grid','General','checkbox',30100,'Y','N;'),(99,'clean_url_flag','CleanURL','XLite\\View\\FormField\\Input\\Checkbox\\CleanUrl',1000,'0','N;'),(100,'general_options','CleanURL','separator',10000,'','N;'),(101,'default_site_title','CleanURL','XLite\\View\\FormField\\Label\\TranslationLabel',11000,'default-site-title','N;'),(102,'default_site_meta_description','CleanURL','XLite\\View\\FormField\\Label\\TranslationLabel',12000,'default-meta-description','N;'),(103,'default_site_meta_keywords','CleanURL','XLite\\View\\FormField\\Label\\TranslationLabel',13000,'default-meta-keywords','N;'),(104,'home_page_title_and_meta','CleanURL','XLite\\View\\FormField\\CleanUrls\\FrontPage',14000,'','N;'),(105,'page_title_format','CleanURL','XLite\\View\\FormField\\CleanUrls\\PageTitleFormat',15000,'','N;'),(106,'company_name','CleanURL','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',15100,'1','N;'),(107,'parent_category_path','CleanURL','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',15200,'1','N;'),(108,'object_name','CleanURL','XLite\\View\\FormField\\Input\\Checkbox\\OnOffReadOnly',15300,'1','N;'),(109,'object_name_in_page_title_order','CleanURL','XLite\\View\\FormField\\Select\\ObjectNameInPageTitleOrder',16000,'L','N;'),(110,'clean_urls_about','CleanURL','separator',20000,'','N;'),(111,'about_widget','CleanURL','XLite\\View\\FormField\\CleanUrls\\AboutCleanUrls',21000,'','N;'),(112,'allow_membership_request','General','checkbox',39900,'N','N;'),(113,'upgrade_wave_sep','Environment','separator',20000,'','N;'),(114,'upgrade_wave','Environment','XLite\\View\\FormField\\Select\\UpgradeWave',21000,'','N;'),(115,'quick_data_rebuilding','CacheManagement','checkbox',10000,'N','N;'),(116,'enabled','BannerRotation','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',10000,'N','N;'),(117,'interval','BannerRotation','XLite\\View\\FormField\\Input\\Text\\FloatInput',30000,'5','N;'),(118,'attach_pdf_invoices','NotificationAttachments','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',10000,'0','N;'),(119,'enable_form','CDev\\ContactUs','checkbox',100,'1','N;'),(120,'email','CDev\\ContactUs','XLite\\View\\FormField\\Input\\Text\\Email',200,'','N;'),(121,'contact_us_sep_1','CDev\\ContactUs','separator',1000,'','N;'),(122,'recaptcha_public_key','CDev\\ContactUs','text',1100,'','N;'),(123,'recaptcha_private_key','CDev\\ContactUs','text',1200,'','N;'),(124,'number_of_bestsellers','CDev\\Bestsellers','XLite\\View\\FormField\\Input\\Text\\Integer',115,'4','a:1:{s:3:\"min\";i:1;}'),(125,'featured_products_look','CDev\\FeaturedProducts','XLite\\Module\\CDev\\FeaturedProducts\\View\\FormField\\FeaturedProductsLook',10,'grid','N;'),(126,'key','CDev\\FedEx','XLite\\View\\FormField\\Input\\Text',10,'','N;'),(127,'password','CDev\\FedEx','XLite\\View\\FormField\\Input\\PasswordWithValue',20,'','N;'),(128,'account_number','CDev\\FedEx','XLite\\View\\FormField\\Input\\Text',30,'','N;'),(129,'meter_number','CDev\\FedEx','XLite\\View\\FormField\\Input\\Text',40,'','N;'),(130,'test_mode','CDev\\FedEx','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',50,'','N;'),(131,'debug_enabled','CDev\\FedEx','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',60,'','N;'),(132,'additionalSettingsSeparator','CDev\\FedEx','separator',100,'','N;'),(133,'carrierTypesSeparator','CDev\\FedEx','separator',200,'','N;'),(134,'fdxe','CDev\\FedEx','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',210,'','N;'),(135,'fdxg','CDev\\FedEx','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',220,'','N;'),(136,'fxsp','CDev\\FedEx','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',230,'','N;'),(137,'fxsp_hub_id','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\HubId',235,'','N;'),(138,'fxsp_indicia','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\Indicia',240,'','N;'),(139,'rate_request_type','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\RateRequestType',300,'NONE','N;'),(140,'packaging','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\Packaging',310,'','N;'),(141,'dropoff_type','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\DropOffType',320,'','N;'),(142,'ship_date','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\ShipDate',330,'0','N;'),(143,'currency_code','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\CurrencyCode',340,'0','N;'),(144,'currency_rate','CDev\\FedEx','XLite\\View\\FormField\\Input\\Text\\FloatInput',350,'1','N;'),(145,'dimensions','CDev\\FedEx','serialized',360,'a:3:{i:0;i:10;i:1;i:10;i:2;i:10;}','N;'),(146,'max_weight','CDev\\FedEx','XLite\\View\\FormField\\Input\\Text\\FloatInput',370,'70','N;'),(147,'specialServicesSeparator','CDev\\FedEx','separator',400,'','N;'),(148,'dg_accessibility','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\DangerousGoodsAccessibility',410,'','N;'),(149,'signature','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\Signature',420,'','N;'),(150,'cacheOnDeliverySeparator','CDev\\FedEx','separator',500,'','N;'),(151,'cod_type','CDev\\FedEx','XLite\\Module\\CDev\\FedEx\\View\\FormField\\Select\\CODType',510,'ANY','N;'),(152,'advancedOptionsSeparator','CDev\\FedEx','separator',600,'','N;'),(153,'opt_saturday_pickup','CDev\\FedEx','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',610,'','N;'),(154,'opt_residential_delivery','CDev\\FedEx','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',620,'','N;'),(155,'send_insured_value','CDev\\FedEx','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',630,'1','N;'),(156,'ga_account','CDev\\GoogleAnalytics','text',100,'','N;'),(157,'ga_tracking_type','CDev\\GoogleAnalytics','XLite\\Module\\CDev\\GoogleAnalytics\\View\\FormField\\Select\\TrackingType',200,'1','N;'),(158,'ga_code_version','CDev\\GoogleAnalytics','XLite\\Module\\CDev\\GoogleAnalytics\\View\\FormField\\Select\\CodeVersion',300,'U','N;'),(159,'ecommerce_enabled','CDev\\GoogleAnalytics','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',400,'Y','N;'),(160,'purchase_only_on_paid','CDev\\GoogleAnalytics','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',400,'Y','N;'),(161,'debug_mode','CDev\\GoogleAnalytics','XLite\\View\\FormField\\Input\\Checkbox\\OnOff',500,'N','N;'),(162,'gosocial_sep_1','CDev\\GoSocial','separator',5000,'','N;'),(163,'fb_app_id','CDev\\GoSocial','text',5100,'','N;'),(164,'fb_app_namespace','CDev\\GoSocial','text',5200,'','N;'),(165,'fb_admins','CDev\\GoSocial','text',5300,'','N;'),(166,'gosocial_sep_6','CDev\\GoSocial','separator',1000,'','N;'),(167,'fb_share_use','CDev\\GoSocial','checkbox',1050,'1','N;'),(168,'gosocial_sep_2','CDev\\GoSocial','separator',1300,'','N;'),(169,'like_settings_warning','CDev\\GoSocial','XLite\\Module\\CDev\\GoSocial\\View\\FormField\\Label\\LikeSettingsWarning',1325,'1','N;'),(170,'fb_like_use','CDev\\GoSocial','checkbox',1350,'','N;'),(171,'fb_like_layout','CDev\\GoSocial','XLite\\Module\\CDev\\GoSocial\\View\\FormField\\Select\\FBLayoutStyle',1400,'button_count','N;'),(172,'fb_like_show_faces','CDev\\GoSocial','checkbox',1420,'1','N;'),(173,'fb_like_verb','CDev\\GoSocial','XLite\\Module\\CDev\\GoSocial\\View\\FormField\\Select\\FBVerbDisplay',1440,'like','N;'),(174,'fb_like_colorscheme','CDev\\GoSocial','XLite\\Module\\CDev\\GoSocial\\View\\FormField\\Select\\FBLikeColorScheme',1460,'light','N;'),(175,'gosocial_sep_21','CDev\\GoSocial','separator',1500,'','N;'),(176,'fb_comments_use','CDev\\GoSocial','checkbox',1600,'1','N;'),(177,'fb_comments_num_posts','CDev\\GoSocial','XLite\\View\\FormField\\Input\\Text\\Integer',1700,'8','a:1:{s:3:\"min\";i:1;}'),(178,'fb_comments_colorscheme','CDev\\GoSocial','XLite\\Module\\CDev\\GoSocial\\View\\FormField\\Select\\FBCommentsColorScheme',1750,'light','N;'),(179,'gosocial_sep_3','CDev\\GoSocial','separator',2000,'','N;'),(180,'tweet_use','CDev\\GoSocial','checkbox',2050,'1','N;'),(181,'tweet_show_count','CDev\\GoSocial','checkbox',2100,'1','N;'),(182,'tweet_via','CDev\\GoSocial','text',2200,'x_cart','N;'),(183,'tweet_recommend','CDev\\GoSocial','text',2300,'','N;'),(184,'tweet_hashtag','CDev\\GoSocial','text',2300,'','N;'),(185,'gosocial_sep_4','CDev\\GoSocial','separator',3000,'','N;'),(186,'gplus_use','CDev\\GoSocial','checkbox',3050,'1','N;'),(187,'gplus_page_id','CDev\\GoSocial','text',3100,'','N;'),(188,'gosocial_sep_5','CDev\\GoSocial','separator',4000,'','N;'),(189,'pinterest_use','CDev\\GoSocial','checkbox',4050,'1','N;'),(190,'show_admin_welcome','CDev\\Paypal','checkbox',100,'N','N;'),(191,'paypalLoginOptions','CDev\\Paypal','\\XLite\\Module\\CDev\\Paypal\\View\\FormField\\Instructions',200,'','N;'),(192,'loginRedirectURLProtocol','CDev\\Paypal','XLite\\Module\\CDev\\Paypal\\View\\FormField\\Select\\Protocol',300,'http','N;'),(193,'loginClientId','CDev\\Paypal','text',400,'','N;'),(194,'loginClientSecret','CDev\\Paypal','text',500,'','N;'),(195,'loginMode','CDev\\Paypal','XLite\\View\\FormField\\Select\\TestLiveMode',600,'test','N;'),(196,'sep_product_advisor_na','CDev\\ProductAdvisor','separator',10,'','N;'),(197,'na_enabled','CDev\\ProductAdvisor','checkbox',20,'Y','N;'),(198,'na_max_days','CDev\\ProductAdvisor','XLite\\View\\FormField\\Input\\Text\\Integer',30,'30','a:1:{s:3:\"min\";i:0;}'),(199,'na_max_count_in_full_list','CDev\\ProductAdvisor','XLite\\View\\FormField\\Input\\Text\\Integer',40,'30','a:1:{s:3:\"min\";i:0;}'),(200,'na_mark_with_label','CDev\\ProductAdvisor','XLite\\Module\\CDev\\ProductAdvisor\\View\\FormField\\Select\\MarkProducts',50,'C','N;'),(201,'na_max_count_in_block','CDev\\ProductAdvisor','XLite\\View\\FormField\\Input\\Text\\Integer',80,'3','a:1:{s:3:\"min\";i:0;}'),(202,'na_from_current_category','CDev\\ProductAdvisor','checkbox',90,'N','N;'),(203,'sep_product_advisor_cs','CDev\\ProductAdvisor','separator',1000,'','N;'),(204,'cs_enabled','CDev\\ProductAdvisor','checkbox',1010,'Y','N;'),(205,'cs_mark_with_label','CDev\\ProductAdvisor','XLite\\Module\\CDev\\ProductAdvisor\\View\\FormField\\Select\\MarkProducts',1020,'C','N;'),(206,'cs_display_date','CDev\\ProductAdvisor','checkbox',1030,'Y','N;'),(207,'cs_from_current_category','CDev\\ProductAdvisor','checkbox',1050,'N','N;'),(208,'cs_max_count_in_block','CDev\\ProductAdvisor','XLite\\View\\FormField\\Input\\Text\\Integer',1080,'3','a:1:{s:3:\"min\";i:0;}'),(209,'sep_product_advisor_rv','CDev\\ProductAdvisor','separator',2000,'','N;'),(210,'rv_enabled','CDev\\ProductAdvisor','checkbox',2010,'Y','N;'),(211,'rv_max_count_in_block','CDev\\ProductAdvisor','XLite\\View\\FormField\\Input\\Text\\Integer',2020,'10','a:1:{s:3:\"min\";i:0;}'),(212,'sep_product_advisor_cbb','CDev\\ProductAdvisor','separator',3000,'','N;'),(213,'cbb_enabled','CDev\\ProductAdvisor','checkbox',3010,'Y','N;'),(214,'cbb_max_count_in_block','CDev\\ProductAdvisor','XLite\\View\\FormField\\Input\\Text\\Integer',3020,'5','a:1:{s:3:\"min\";i:0;}'),(215,'sep_product_advisor_cvb','CDev\\ProductAdvisor','separator',4000,'','N;'),(216,'cvb_enabled','CDev\\ProductAdvisor','checkbox',4010,'Y','N;'),(217,'cvb_max_count_in_block','CDev\\ProductAdvisor','XLite\\View\\FormField\\Input\\Text\\Integer',4020,'5','a:1:{s:3:\"min\";i:0;}'),(218,'sale_enabled','CDev\\Sale','checkbox',20,'Y','N;'),(219,'sale_in_current_category','CDev\\Sale','checkbox',30,'Y','N;'),(220,'sale_max_count_in_block','CDev\\Sale','text',80,'6','N;'),(221,'logo','CDev\\SimpleCMS','XLite\\Module\\CDev\\SimpleCMS\\View\\FormField\\Input\\Logo',100,'','N;'),(222,'favicon','CDev\\SimpleCMS','XLite\\Module\\CDev\\SimpleCMS\\View\\FormField\\Input\\Favicon',200,'','N;'),(223,'appleIcon','CDev\\SimpleCMS','XLite\\Module\\CDev\\SimpleCMS\\View\\FormField\\Input\\AppleIcon',250,'','N;'),(224,'page_changefreq','CDev\\XMLSitemap','XLite\\Module\\CDev\\SimpleCMS\\View\\FormField\\Select\\ChangeFrequency',400,'daily','N;'),(225,'page_priority','CDev\\XMLSitemap','XLite\\View\\FormField\\Input\\Text\\FloatInput',800,'0.5','a:3:{s:3:\"min\";i:0;s:3:\"max\";i:1;s:1:\"e\";i:1;}'),(226,'show_default_menu','CDev\\SimpleCMS','checkbox',300,'Y','N;'),(227,'fb_title','CDev\\SocialLogin','XLite\\Module\\CDev\\SocialLogin\\View\\FormField\\Instructions',5,'','N;'),(228,'fb_client_id','CDev\\SocialLogin','text',10,'','N;'),(229,'fb_client_secret','CDev\\SocialLogin','text',20,'','N;'),(230,'gg_title','CDev\\SocialLogin','XLite\\Module\\CDev\\SocialLogin\\View\\FormField\\Instructions',25,'','N;'),(231,'gg_client_id','CDev\\SocialLogin','text',30,'','N;'),(232,'gg_client_secret','CDev\\SocialLogin','text',40,'','N;'),(233,'welcome_changefreq','CDev\\XMLSitemap','XLite\\Module\\CDev\\XMLSitemap\\View\\FormField\\Select\\ChangeFrequency',100,'daily','N;'),(234,'category_changefreq','CDev\\XMLSitemap','XLite\\Module\\CDev\\XMLSitemap\\View\\FormField\\Select\\ChangeFrequency',200,'daily','N;'),(235,'product_changefreq','CDev\\XMLSitemap','XLite\\Module\\CDev\\XMLSitemap\\View\\FormField\\Select\\ChangeFrequency',300,'daily','N;'),(236,'welcome_priority','CDev\\XMLSitemap','XLite\\View\\FormField\\Input\\Text\\FloatInput',500,'0.5','a:3:{s:3:\"min\";i:0;s:3:\"max\";i:1;s:1:\"e\";i:1;}'),(237,'category_priority','CDev\\XMLSitemap','XLite\\View\\FormField\\Input\\Text\\FloatInput',600,'0.5','a:3:{s:3:\"min\";i:0;s:3:\"max\";i:1;s:1:\"e\";i:1;}'),(238,'product_priority','CDev\\XMLSitemap','XLite\\View\\FormField\\Input\\Text\\FloatInput',700,'0.5','a:3:{s:3:\"min\";i:0;s:3:\"max\";i:1;s:1:\"e\";i:1;}'),(239,'enable_in_stock_only_filter','XC\\ProductFilter','checkbox',100,'1','N;'),(240,'enable_price_range_filter','XC\\ProductFilter','checkbox',200,'1','N;'),(241,'enable_attributes_filter','XC\\ProductFilter','checkbox',300,'1','N;'),(242,'attributes_filter_by_category','XC\\ProductFilter','checkbox',400,'1','N;'),(243,'attributes_filter_cache_mode','XC\\ProductFilter','XLite\\Module\\XC\\ProductFilter\\View\\FormField\\Select\\CacheResetMode',500,'1','N;'),(244,'attributes_sorting_type','XC\\ProductFilter','XLite\\Module\\XC\\ProductFilter\\View\\FormField\\Select\\AttributesSortingType',600,'A','N;'),(245,'whoCanLeaveFeedback','XC\\Reviews','\\XLite\\Module\\XC\\Reviews\\View\\FormField\\Select\\WhoCanLeaveFeedback',10,'R','N;'),(246,'disablePendingReviews','XC\\Reviews','checkbox',20,'1','N;'),(247,'reviewsCountPerTab','XC\\Reviews','\\XLite\\View\\FormField\\Input\\Text\\Integer',30,'5','a:1:{s:3:\"min\";i:1;}'),(248,'use_custom_css','XC\\ThemeTweaker','checkbox',10,'','N;'),(249,'use_custom_js','XC\\ThemeTweaker','checkbox',20,'','N;'),(250,'edit_mode','XC\\ThemeTweaker','checkbox',30,'','N;'),(251,'layout_mode','XC\\ThemeTweaker','checkbox',30,'','N;'),(252,'userID','XC\\UPS','XLite\\View\\FormField\\Input\\Text',10,'','N;'),(253,'password','XC\\UPS','XLite\\View\\FormField\\Input\\PasswordWithValue',20,'','N;'),(254,'accessKey','XC\\UPS','XLite\\View\\FormField\\Input\\Text',30,'','N;'),(255,'shipper_number','XC\\UPS','XLite\\View\\FormField\\Input\\Text',40,'','N;'),(256,'test_mode','XC\\UPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',50,'1','N;'),(257,'additionalSettingsSeparator','XC\\UPS','separator',100,'','N;'),(258,'packageSettingsSeparator','XC\\UPS','separator',200,'','N;'),(259,'packaging_type','XC\\UPS','XLite\\Module\\XC\\UPS\\View\\FormField\\Select\\PackagingType',210,'00','N;'),(260,'dimensions','XC\\UPS','serialized',220,'a:3:{i:0;i:10;i:1;i:10;i:2;i:10;}','N;'),(261,'max_weight','XC\\UPS','XLite\\View\\FormField\\Input\\Text\\FloatInput',230,'150','N;'),(262,'serviceOptionsSeparator','XC\\UPS','separator',300,'','N;'),(263,'pickup_type','XC\\UPS','XLite\\Module\\XC\\UPS\\View\\FormField\\Select\\PickupType',310,'01','N;'),(264,'saturday_pickup','XC\\UPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',320,'','N;'),(265,'additional_handling','XC\\UPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',330,'','N;'),(266,'saturday_delivery','XC\\UPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',340,'','N;'),(267,'negotiated_rates','XC\\UPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',350,'','N;'),(268,'delivery_conf','XC\\UPS','XLite\\Module\\XC\\UPS\\View\\FormField\\Select\\DeliveryConfirmation',360,'0','N;'),(269,'extra_cover','XC\\UPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',370,'','N;'),(270,'extra_cover_value','XC\\UPS','XLite\\View\\FormField\\Input\\Text\\Price',380,'0','N;'),(271,'cacheOnDeliverySeparator','XC\\UPS','separator',400,'','N;'),(272,'currencyConversionSeparator','XC\\UPS','separator',500,'','N;'),(273,'currency_code','XC\\UPS','XLite\\View\\FormField\\Input\\Text',510,'','N;'),(274,'currency_rate','XC\\UPS','XLite\\View\\FormField\\Input\\Text\\FloatInput',520,'1','N;'),(275,'additionalOptionsSeparator','XC\\UPS','separator',600,'','N;'),(276,'debug_enabled','XC\\UPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',610,'1','N;'),(277,'top_news_length','XC\\News','XLite\\View\\FormField\\Input\\Text\\Integer',100,'5','a:1:{s:3:\"min\";i:1;}'),(278,'items_per_page','XC\\News','XLite\\View\\FormField\\Input\\Text\\Integer',200,'50','a:1:{s:3:\"min\";i:1;}'),(279,'freight_shipping_calc_mode','XC\\FreeShipping','XLite\\Module\\XC\\FreeShipping\\View\\FormField\\FreightMode',10,'F','N;'),(280,'headerReferenceCode','XC\\AuctionInc','',0,'','N;'),(281,'firstUsageDate','XC\\AuctionInc','',0,'','N;'),(282,'accountId','XC\\AuctionInc','XLite\\View\\FormField\\Input\\Text',10,'','N;'),(283,'destinationType','XC\\AuctionInc','XLite\\View\\FormField\\Select\\AddressType',30,'R','N;'),(284,'debugMode','XC\\AuctionInc','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',40,'','N;'),(285,'additionalSettingsSeparator','XC\\AuctionInc','separator',100,'','N;'),(286,'defaultValuesSeparator','XC\\AuctionInc','separator',200,'','N;'),(287,'calculationMethod','XC\\AuctionInc','XLite\\Module\\XC\\AuctionInc\\View\\FormField\\Select\\CalculationMethodSettings',210,'C','N;'),(288,'package','XC\\AuctionInc','XLite\\Module\\XC\\AuctionInc\\View\\FormField\\Select\\Package',220,'T','N;'),(289,'insurable','XC\\AuctionInc','XLite\\View\\FormField\\Select\\RadioButtonsList\\YesNo',230,'N','N;'),(290,'fixedFeeMode','XC\\AuctionInc','XLite\\Module\\XC\\AuctionInc\\View\\FormField\\Select\\FixedFeeMode',240,'F','N;'),(291,'fixedFeeCode','XC\\AuctionInc','XLite\\View\\FormField\\Input\\Text',250,'','N;'),(292,'fixedFee1','XC\\AuctionInc','XLite\\View\\FormField\\Input\\Text\\Price',260,'','N;'),(293,'fixedFee2','XC\\AuctionInc','XLite\\View\\FormField\\Input\\Text\\Price',270,'','N;'),(294,'calculationSeparator','XC\\AuctionInc','separator',300,'','N;'),(295,'fallbackRate','XC\\AuctionInc','XLite\\Module\\XC\\AuctionInc\\View\\FormField\\Select\\FallbackRate',310,'N','N;'),(296,'fallbackRateValue','XC\\AuctionInc','XLite\\View\\FormField\\Input\\Text\\Price',320,'','N;'),(297,'entryPointSeparator','XC\\AuctionInc','separator',400,'','N;'),(298,'entryPointDHL','XC\\AuctionInc','XLite\\Module\\XC\\AuctionInc\\View\\FormField\\Select\\EntryPointDHL',410,'D','N;'),(299,'entryPointFEDEX','XC\\AuctionInc','XLite\\Module\\XC\\AuctionInc\\View\\FormField\\Select\\EntryPointFedEx',420,'D','N;'),(300,'entryPointUPS','XC\\AuctionInc','XLite\\Module\\XC\\AuctionInc\\View\\FormField\\Select\\EntryPointUPS',430,'D','N;'),(301,'entryPointUSPS','XC\\AuctionInc','XLite\\Module\\XC\\AuctionInc\\View\\FormField\\Select\\EntryPointUSPS',440,'R','N;'),(302,'checkout_type','General','XLite\\Module\\XC\\FastLaneCheckout\\View\\FormField\\Select\\CheckoutType',200,'one-page','N;'),(303,'mailChimpSeparator','XC\\MailChimp','separator',100,'','N;'),(304,'mailChimpAPIKey','XC\\MailChimp','text',200,'','N;'),(305,'analytics360enabled','XC\\MailChimp','checkbox',300,'','N;'),(306,'abandonedCartEnabled','XC\\MailChimp','checkbox',350,'','N;'),(307,'doubleOptinDisabled','XC\\MailChimp','checkbox',400,'','N;'),(308,'subscriptionElementType','XC\\MailChimp','XLite\\Module\\XC\\MailChimp\\View\\FormField\\Select\\ElementType',500,'checkbox','N;'),(309,'updateInterval','XC\\MailChimp','XLite\\Module\\XC\\MailChimp\\View\\FormField\\Select\\UpdateInterval',600,'never','N;'),(310,'fcm_show_product_num','QSL\\FlyoutCategoriesMenu','checkbox',10,'N','N;'),(311,'fcm_word_wrap','QSL\\FlyoutCategoriesMenu','checkbox',20,'Y','N;'),(312,'fcm_show_triangle','QSL\\FlyoutCategoriesMenu','checkbox',30,'Y','N;'),(313,'api_key','QSL\\CloudSearch','hidden',0,'','N;'),(314,'secret_key','QSL\\CloudSearch','hidden',0,'','N;'),(315,'dashboard','QSL\\CloudSearch','\\XLite\\Module\\QSL\\CloudSearch\\View\\FormField\\Dashboard',0,'','N;'),(316,'doSearch','QSL\\CloudSearch','checkbox',0,'Y','N;'),(317,'doIndexModifiers','QSL\\CloudSearch','checkbox',0,'N','N;'),(318,'soffersb_override_tpl','QSL\\SpecialOffersBase','checkbox',100,'1','N;'),(319,'test_mode','CDev\\AustraliaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',10,'1','N;'),(320,'api_key','CDev\\AustraliaPost','XLite\\View\\FormField\\Input\\Text',20,'','N;'),(321,'packageSettingsSeparator','CDev\\AustraliaPost','separator',100,'','N;'),(322,'package_type','CDev\\AustraliaPost','',0,'Parcel','N;'),(323,'package_box_type','CDev\\AustraliaPost','XLite\\Module\\CDev\\AustraliaPost\\View\\FormField\\PackageBoxType',110,'AUS_PARCEL_TYPE_BOXED_OTH','N;'),(324,'dimensions','CDev\\AustraliaPost','serialized',120,'a:3:{i:0;i:10;i:1;i:10;i:2;i:10;}','N;'),(325,'additionalSettingsSeparator','CDev\\AustraliaPost','separator',200,'','N;'),(326,'service_option','CDev\\AustraliaPost','XLite\\Module\\CDev\\AustraliaPost\\View\\FormField\\ServiceOption',210,'AUS_SERVICE_OPTION_STANDARD','N;'),(327,'extra_cover','CDev\\AustraliaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',220,'','N;'),(328,'extra_cover_value','CDev\\AustraliaPost','XLite\\View\\FormField\\Input\\Text\\Price',230,'0','N;'),(329,'currency_rate','CDev\\AustraliaPost','XLite\\View\\FormField\\Input\\Text\\FloatInput',240,'1','N;'),(330,'enable_new_methods','CDev\\AustraliaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',250,'1','N;'),(331,'debug_enabled','CDev\\AustraliaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',260,'1','N;'),(332,'max_weight','CDev\\AustraliaPost','',0,'20','N;'),(333,'email','CDev\\Moneybookers','text',100,'','N;'),(334,'logo_url','CDev\\Moneybookers','XLite\\View\\FormField\\Input\\Text\\URL',200,'','N;'),(335,'test','CDev\\Moneybookers','checkbox',300,'0','N;'),(336,'secret_word','CDev\\Moneybookers','text',400,'','N;'),(337,'prefix','CDev\\Moneybookers','text',500,'xcart','N;'),(338,'id','CDev\\Moneybookers','',0,'','N;'),(339,'ignore_memberships','CDev\\SalesTax','checkbox',150,'Y','N;'),(340,'addressType','CDev\\SalesTax','\\XLite\\Module\\CDev\\SalesTax\\View\\FormField\\AddressType',160,'billing','N;'),(341,'taxableBase','CDev\\SalesTax','\\XLite\\Module\\CDev\\SalesTax\\View\\FormField\\TaxableBase',170,'ST','N;'),(342,'userid','CDev\\USPS','XLite\\View\\FormField\\Input\\Text',10,'','N;'),(343,'server_url','CDev\\USPS','XLite\\View\\FormField\\Input\\Text\\URL',20,'http://testing.shippingapis.com/ShippingAPI.dll','N;'),(344,'additionalSettingsSeparator','CDev\\USPS','separator',100,'','N;'),(345,'commonOptionsSeparator','CDev\\USPS','separator',200,'','N;'),(346,'package_size','CDev\\USPS','XLite\\Module\\CDev\\USPS\\View\\FormField\\Select\\PackageSize',205,'REGULAR','N;'),(347,'dimensions','CDev\\USPS','serialized',210,'a:3:{i:0;i:10;i:1;i:7;i:2;i:9;}','N;'),(348,'girth','CDev\\USPS','XLite\\View\\FormField\\Input\\Text\\FloatInput',220,'0','N;'),(349,'max_weight','CDev\\USPS','XLite\\View\\FormField\\Input\\Text\\FloatInput',230,'70','N;'),(350,'machinable','CDev\\USPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',235,'1','N;'),(351,'currency_rate','CDev\\USPS','XLite\\View\\FormField\\Input\\Text\\FloatInput',240,'1','N;'),(352,'domesticUSPSSeparator','CDev\\USPS','separator',300,'','N;'),(353,'container','CDev\\USPS','XLite\\Module\\CDev\\USPS\\View\\FormField\\Select\\Container',310,'VARIABLE','N;'),(354,'first_class_mail_type','CDev\\USPS','XLite\\Module\\CDev\\USPS\\View\\FormField\\Select\\FirstClassMailType',330,'PARCEL','N;'),(355,'use_rate_type','CDev\\USPS','XLite\\Module\\CDev\\USPS\\View\\FormField\\Select\\UseRateType',350,'Rate','N;'),(356,'internationalUSPSSeparator','CDev\\USPS','separator',400,'','N;'),(357,'mail_type','CDev\\USPS','XLite\\Module\\CDev\\USPS\\View\\FormField\\Select\\MailType',410,'Package','N;'),(358,'container_intl','CDev\\USPS','XLite\\Module\\CDev\\USPS\\View\\FormField\\Select\\ContainerIntl',420,'RECTANGULAR','N;'),(359,'commercial','CDev\\USPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',430,'','N;'),(360,'gxg','CDev\\USPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',440,'','N;'),(361,'gxg_pobox','CDev\\USPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',450,'','N;'),(362,'gxg_gift','CDev\\USPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',460,'','N;'),(363,'cacheOnDeliverySeparator','CDev\\USPS','separator',500,'','N;'),(364,'use_cod_price','CDev\\USPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',510,'1','N;'),(365,'cod_price','CDev\\USPS','XLite\\View\\FormField\\Input\\Text\\Price',520,'6.95','N;'),(366,'additionalOptionsSeparator','CDev\\USPS','separator',600,'','N;'),(367,'debug_enabled','CDev\\USPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',610,'','N;'),(368,'autoenable_new_methods','CDev\\USPS','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',620,'1','N;'),(369,'xpc_shopping_cart_id','CDev\\XPaymentsConnector','XLite\\Module\\CDev\\XPaymentsConnector\\View\\FormField\\Input\\Text\\StoreID',1010,'','N;'),(370,'xpc_xpayments_url','CDev\\XPaymentsConnector','XLite\\Module\\CDev\\XPaymentsConnector\\View\\FormField\\Input\\Text\\URLipv6',1020,'','N;'),(371,'xpc_public_key','CDev\\XPaymentsConnector','textarea',1030,'','N;'),(372,'xpc_private_key','CDev\\XPaymentsConnector','textarea',1040,'','N;'),(373,'xpc_private_key_password','CDev\\XPaymentsConnector','text',1050,'','N;'),(374,'xpc_allowed_ip_addresses','CDev\\XPaymentsConnector','text',1060,'','N;'),(375,'xpc_currency','CDev\\XPaymentsConnector','XLite\\View\\FormField\\Select\\Currency',1070,'840','N;'),(376,'xpc_api_version','CDev\\XPaymentsConnector','hidden',1080,'1.3','N;'),(377,'xpc_use_iframe','CDev\\XPaymentsConnector','checkbox',1090,'1','N;'),(378,'xpc_allowed_modules_load_date','CDev\\XPaymentsConnector','hidden',2000,'0','N;'),(379,'xpc_allowed_modules','CDev\\XPaymentsConnector','hidden',2010,'','N;'),(380,'xpc_zero_auth_method_id','CDev\\XPaymentsConnector','XLite\\Module\\CDev\\XPaymentsConnector\\View\\FormField\\Select\\ZeroAuthPaymentMethods',1100,'0','N;'),(381,'xpc_zero_auth_amount','CDev\\XPaymentsConnector','XLite\\Module\\CDev\\XPaymentsConnector\\View\\FormField\\Input\\Text\\ZeroAuthAmount',1110,'0','N;'),(382,'xpc_zero_auth_description','CDev\\XPaymentsConnector','XLite\\Module\\CDev\\XPaymentsConnector\\View\\FormField\\Input\\Text\\ZeroAuthDescription',1130,'','N;'),(383,'xpc_status_new','CDev\\XPaymentsConnector','XLite\\View\\FormField\\Select\\OrderStatus\\Payment',1210,'1','N;'),(384,'xpc_status_auth','CDev\\XPaymentsConnector','XLite\\View\\FormField\\Select\\OrderStatus\\Payment',1220,'2','N;'),(385,'xpc_status_charged','CDev\\XPaymentsConnector','XLite\\View\\FormField\\Select\\OrderStatus\\Payment',1230,'4','N;'),(386,'xpc_status_charged_part','CDev\\XPaymentsConnector','XLite\\View\\FormField\\Select\\OrderStatus\\Payment',1240,'3','N;'),(387,'xpc_status_declined','CDev\\XPaymentsConnector','XLite\\View\\FormField\\Select\\OrderStatus\\Payment',1250,'5','N;'),(388,'xpc_status_refunded','CDev\\XPaymentsConnector','XLite\\View\\FormField\\Select\\OrderStatus\\Payment',1260,'7','N;'),(389,'xpc_status_refunded_part','CDev\\XPaymentsConnector','XLite\\View\\FormField\\Select\\OrderStatus\\Payment',1270,'7','N;'),(390,'wizard_enabled','XC\\CanadaPost','',0,'1','N;'),(391,'wizard_hash','XC\\CanadaPost','',0,'','N;'),(392,'user','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text',10,'','N;'),(393,'password','XC\\CanadaPost','XLite\\View\\FormField\\Input\\PasswordWithValue',20,'','N;'),(394,'developer_mode','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',30,'','N;'),(395,'debug_enabled','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',40,'','N;'),(396,'additionalSettingsSeparator','XC\\CanadaPost','separator',100,'','N;'),(397,'quote_type','XC\\CanadaPost','XLite\\Module\\XC\\CanadaPost\\View\\FormField\\Select\\QuoteType',110,'C','N;'),(398,'customer_number','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text',120,'','N;'),(399,'currency_rate','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text\\FloatInput',130,'1','N;'),(400,'contractShippingSeparator','XC\\CanadaPost','separator',200,'','N;'),(401,'contract_id','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text',210,'','N;'),(402,'pick_up_type','XC\\CanadaPost','XLite\\Module\\XC\\CanadaPost\\View\\FormField\\Select\\PickUpType',220,'','N;'),(403,'deposit_site_num','XC\\CanadaPost','XLite\\Module\\XC\\CanadaPost\\View\\FormField\\Input\\Text\\DepositSiteNum',230,'','N;'),(404,'detailed_manifests','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',240,'1','N;'),(405,'manifest_name','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text',250,'','N;'),(406,'deliverToPostOfficeSeparator','XC\\CanadaPost','separator',300,'','N;'),(407,'deliver_to_po_enabled','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',310,'','N;'),(408,'max_post_offices','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text\\Integer',320,'5','N;'),(409,'parcelCharacteristicsSeparator','XC\\CanadaPost','separator',400,'','N;'),(410,'length','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text\\FloatInput',410,'10','N;'),(411,'width','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text\\FloatInput',420,'9','N;'),(412,'height','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text\\FloatInput',430,'7','N;'),(413,'max_weight','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text\\FloatInput',440,'30','N;'),(414,'document','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',450,'','N;'),(415,'unpackaged','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',460,'','N;'),(416,'mailing_tube','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',470,'','N;'),(417,'oversized','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',480,'','N;'),(418,'parcelSeparator','XC\\CanadaPost','separator',500,'','N;'),(419,'way_to_deliver','XC\\CanadaPost','XLite\\Module\\XC\\CanadaPost\\View\\FormField\\Select\\DeliveryWayType',510,'','N;'),(420,'signature','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Checkbox\\OnOffWithoutOffLabel',520,'','N;'),(421,'age_proof','XC\\CanadaPost','XLite\\Module\\XC\\CanadaPost\\View\\FormField\\Select\\AgeProofType',530,'','N;'),(422,'coverage','XC\\CanadaPost','XLite\\View\\FormField\\Input\\Text\\FloatInput',540,'0','N;'),(423,'non_delivery','XC\\CanadaPost','XLite\\Module\\XC\\CanadaPost\\View\\FormField\\Select\\NonDeliveryType',550,'','N;'),(424,'amazon_pa_sid','Amazon\\PayWithAmazon','text',5,'','N;'),(425,'amazon_pa_mode','Amazon\\PayWithAmazon','XLite\\Module\\Amazon\\PayWithAmazon\\View\\FormField\\Select\\OpMode',10,'test','N;'),(426,'amazon_pa_access_key','Amazon\\PayWithAmazon','text',15,'','N;'),(427,'amazon_pa_secret_key','Amazon\\PayWithAmazon','text',20,'','N;'),(428,'amazon_pa_client_id','Amazon\\PayWithAmazon','text',25,'','N;'),(429,'amazon_pa_currency','Amazon\\PayWithAmazon','XLite\\Module\\Amazon\\PayWithAmazon\\View\\FormField\\Select\\Currency',30,'USD','N;'),(430,'amazon_pa_capture_mode','Amazon\\PayWithAmazon','XLite\\Module\\Amazon\\PayWithAmazon\\View\\FormField\\Select\\CaptureMode',40,'C','N;'),(431,'amazon_pa_sync_mode','Amazon\\PayWithAmazon','XLite\\Module\\Amazon\\PayWithAmazon\\View\\FormField\\Select\\SyncMode',45,'S','N;'),(432,'amazon_pa_order_prefix','Amazon\\PayWithAmazon','text',50,'','N;'),(433,'time_zone','General','',0,'Europe/Moscow','N;');
CREATE TABLE `xlite_config_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(11) DEFAULT NULL,
`option_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`option_comment` longtext COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_56A33BC3BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_config` (`config_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_config_translations` VALUES (1,1,'Administrator Zone settings','','en'),(2,2,'Use HTTPS in the Administrator Zone','','en'),(3,3,'Default customer address','','en'),(4,4,'Address line','','en'),(5,5,'Country','','en'),(6,6,'State','','en'),(7,7,'State','','en'),(8,8,'City','','en'),(9,9,'Zip/postal code','','en'),(10,10,'Address type','','en'),(11,11,'Aggregate CSS files (enable for better performance)','','en'),(12,12,'Aggregate JS files (enable for better performance)','','en'),(13,13,'Use widget cache (enable for better performance)','','en'),(14,15,'Default layout','','en'),(15,16,'Home page layout','','en'),(16,17,'CLI mode key','','en'),(17,18,'Company address','','en'),(18,19,'Contacts','','en'),(19,20,'Fax','','en'),(20,21,'Identity','','en'),(21,22,'Company name','Changing the value of this or any other fields on this page will not affect the signature in your store\'s email notifications. The signature for notifications can be edited on the <a href=\"admin.php?target=notification_common\">Header, greeting & signature</a> page.','en'),(22,23,'Company website','','en'),(23,24,'Terms and conditions relative URL','','en'),(24,25,'Customer Zone settings','','en'),(25,26,'Use HTTPS in the Customer Zone (for login, Checkout and profile pages)','','en'),(26,27,'Redirect customers to HTTPS','','en'),(27,28,'Date format','','en'),(28,29,'CSV column delimiter','','en'),(29,30,'Import/export charset','','en'),(30,33,'Payment method to be assumed in case of zero order totals','','en'),(31,34,'Maximum order quantity (per product)','','en'),(32,35,'Default payment method','','en'),(33,36,'Display check number for eCheck payment method','','en'),(34,37,'How to show out of stock products','','en'),(35,38,'Default display mode for products list','','en'),(36,40,'Street address','','en'),(37,41,'Country','','en'),(38,42,'State','','en'),(39,43,'State','','en'),(40,44,'City','','en'),(41,45,'Zip/postal code','','en'),(42,46,'Use your company address as your ship-from address','See <a href=\"admin.php?target=settings&page=Company#company-address\">company address</a>','en'),(43,47,'Street address','','en'),(44,48,'Country','','en'),(45,49,'State','','en'),(46,50,'State','','en'),(47,51,'City','','en'),(48,52,'Zip/postal code','','en'),(49,53,'Phone','','en'),(50,54,'Number of days to store the last login data','','en'),(51,55,'Maximum allowed order subtotal','','en'),(52,56,'Minimum allowed order subtotal','','en'),(53,57,'Next order #','You can change the number that will be assigned on the next order. The new order number should be greater than the current one.','en'),(54,58,'Cart TTL (days)','Specify the number of days after which a stored shopping cart should be considered old and should be removed. Leave empty if old carts should never be removed (not recommended)','en'),(55,59,'Enable internal cron service','This setting allows you to enable/disable the use of your store\'s internal cron service. This service schedules the run of certain maintenance tasks for your store - like removing customers\' expired shopping carts - at the periodicity of once per 100 user sessions.','en'),(56,60,'Sales department e-mail','\"TO:\" address for notifications about orders (creation of new orders, changes of order status, etc). \"FROM:\" address for low limit warning messages.','en'),(57,61,'Orders per page','','en'),(58,62,'Products per category listing page','','en'),(59,63,'Maximum products per category listing page','','en'),(60,64,'Products per page','','en'),(61,65,'Force customer to choose product options before the product can be added to cart','','en'),(62,66,'Redirect customer to the cart page after a product is added to cart','','en'),(63,67,'Close the shop temporarily (not available in Demo store)','','en'),(64,68,'Shop currency','','en'),(65,69,'Hide trailing zeros in fractional part','','en'),(66,70,'Site administrator e-mail','\"TO:\" address for information on access to your store in safe mode (Hard and Soft reset links), notifications about failed administrator login attempts, low limit warnings, etc.<br />\"FROM:\" address for most notifications about user profiles.','en'),(67,71,'Password','','en'),(68,72,'Secure connection','','en'),(69,73,'SMTP server','','en'),(70,74,'SMTP port','By default, SMTP uses TCP port 25. However, if you are going to use secure SSL/TLS encrypted SMTP, you need to specify the correct TCP port number for your system here. Typically, port number for secure SMTP is 465.','en'),(71,75,'SMTP server','','en'),(72,76,'Username','','en'),(73,77,'Year when store started its operation','','en'),(74,78,'Subcategory listings format','','en'),(75,79,'Default order to sort products within a category','','en'),(76,80,'Default order to sort products within a search result','','en'),(77,81,'HelpDesk/Support service e-mail','Address for messages sent by store visitors via the Contact us form.','en'),(78,82,'Time format','','en'),(79,83,'Time zone','','en'),(80,84,'Customer relations e-mail','\"TO:\" address for notifications about user profile related events (creation of a new user profile, deletion of a user profile, etc). \"FROM:\" address for password reset messages.','en'),(81,85,'Users per page','','en'),(82,86,'Use SMTP server','','en'),(83,87,'Use authentication','','en'),(84,89,'Weight symbol','','en'),(85,90,'Weight unit','','en'),(86,91,'Hide trailing zeros in fractional part','','en'),(87,92,'Weight format','','en'),(88,93,'Dimensional symbol','','en'),(89,94,'Dimensional unit','','en'),(90,95,'Path to Certificate Authority (CA) bundle','','en'),(91,96,'Directory holding CA certificates','','en'),(92,97,'Ask anonymous users to create an account or sign in before checkout','','en'),(93,98,'Display \"Add to cart\" buttons for products in grid view','','en'),(94,100,'General options','','en'),(95,101,'Default site title','','en'),(96,102,'Default site meta description','','en'),(97,103,'Default site meta keywords','','en'),(98,104,'Home page title and meta','','en'),(99,105,'Page title format','','en'),(100,106,'Company name','','en'),(101,107,'Parent category path','','en'),(102,108,'Object name (category, product, etc)','','en'),(103,109,'Show object name in page title','','en'),(104,110,'About clean urls','','en'),(105,112,'Allow customers to sign up for membership','','en'),(106,113,'Upgrade options','','en'),(107,114,'Upgrade access level','','en'),(108,115,'Perform quick data calculation during store re-deployment','Calculated quick data enhances your store\'s performance by allowing quick product sorting. If you want quick data to be calculated along with store re-deployment, make sure this setting is enabled before running the \"Re-deploy the store\" tool. Keep the setting disabled if you want to do the re-deployment without the calculation of quick data.','en'),(109,116,'Enabled','','en'),(110,117,'Banner inverval (in seconds)','Set to \"0\" to disable automatic rotation','en'),(111,118,'Send the PDF version of invoices in the attachments','','en'),(112,119,'Enable form','','en'),(113,120,'E-mail address of the message recipient','If the field is blank, then administration email is used','en'),(114,121,'reCAPTCHA','','en'),(115,122,'Public key','To use reCAPTCHA you should get an API key from <a href=\"https://www.google.com/recaptcha/admin/create\">https://www.google.com/recaptcha/admin/create</a>','en'),(116,123,'Private key','','en'),(117,124,'Number of products in the bestsellers list','','en'),(118,125,'Featured products look and feel','','en'),(119,126,'FedEx authentication key','','en'),(120,127,'FedEx authentication password','','en'),(121,128,'FedEx account number','','en'),(122,129,'FedEx meter number','','en'),(123,130,'Test mode','','en'),(124,131,'Enable debugging','','en'),(125,132,'Additional settings','','en'),(126,133,'Carrier type(s)','','en'),(127,134,'FedEx Express (FDXE)','','en'),(128,135,'FedEx Ground (FDXG)','','en'),(129,136,'FedEx SmartPost (FXSP)','','en'),(130,137,'Hub ID','','en'),(131,138,'Indicia','','en'),(132,139,'Rate request type','','en'),(133,140,'Packaging','','en'),(134,141,'Dropoff type','','en'),(135,142,'Ship date (days)','','en'),(136,143,'Currency code','','en'),(137,144,'Currency rate','If the currency specified above differs from the currency the store uses for payments, specify a conversion rate to convert the shipping cost returned by FedEx into your store\'s currency. If the currencies are the same, leave this set to 1.','en'),(138,145,'Package dimensions (inches)','','en'),(139,146,'Maximum package weight','','en'),(140,147,'Special services','','en'),(141,148,'Dangerous Goods/Accessibility','','en'),(142,149,'Signature option','','en'),(143,150,'Cash on delivery','','en'),(144,151,'COD type','','en'),(145,152,'Advanced options','','en'),(146,153,'Shipment is scheduled for Saturday pickup (the option will be used if ship date is Saturday)','','en'),(147,154,'Shipment from residential address','','en'),(148,155,'Send package cost to calculate insurance','','en'),(149,126,'Ключ идентификации FedEx','','ru'),(150,127,'Пароль FedEx','','ru'),(151,128,'Номер счета FedEx','','ru'),(152,129,'FedEx meter number','','ru'),(153,130,'Режим тестирования','','ru'),(154,131,'Включить отладку','','ru'),(155,132,'Дополнительные настройки','','ru'),(156,133,'Тип(ы) перевозчика(ов)','','ru'),(157,134,'FedEx Express (FDXE)','','ru'),(158,135,'FedEx Ground (FDXG)','','ru'),(159,136,'FedEx SmartPost (FXSP)','','ru'),(160,140,'Упаковка','','ru'),(161,141,'Возврат тары','','ru'),(162,142,'Дата отгрузки (дни)','','ru'),(163,143,'Код валюты','','ru'),(164,144,'Коэффициент пересчета валюты','Если валюта выше отличается от валюты, используемой для оплаты в магазине, укажите коэффициент пересчёта для перевода стоимости доставки, предоставленной FedEx, в валюту магазина. Если валюты совпадают, оставьте значение 1.','ru'),(165,145,'Размеры упаковки (в дюймах)','','ru'),(166,146,'Максимальный вес упаковки','','ru'),(167,147,'Специальные услуги','','ru'),(168,148,'Опасные Товары/Доступность','','ru'),(169,149,'Показать все сохраненные кредитные карты','','ru'),(170,150,'Оплата при получении','','ru'),(171,151,'Тип наложного платежа','','ru'),(172,152,'Расширенные опции','','ru'),(173,153,'Погрузка назначена на Субботу (эта опция используется, если день отгрузки - Суббота)','','ru'),(174,154,'Доставка с адреса расположения','','ru'),(175,155,'Рассчитывать размер страховки по стоимости посылки','','ru'),(176,156,'Web Property ID','','en'),(177,157,'What are you tracking','','en'),(178,158,'Google Analytics code version','','en'),(179,159,'Enable eCommerce Google Analytics','','en'),(180,160,'Register purchase only on Paid status change','','en'),(181,161,'Debug mode','','en'),(182,162,'Facebook application settings','','en'),(183,163,'Facebook Application ID','Facebook Platform application ID that administers your site pages. You can get this ID by visiting the page at <a href=\"https://developers.facebook.com/apps/\">https://developers.facebook.com/apps/</a><br /><br />You should specify this field:<ul><li>to make your site statistics appear in the Facebook Insights dashboard</li><li>to enable a moderator interface on Facebook where comments from all product pages can be easily moderated together</li></ul>','en'),(184,164,'Facebook Application Namespace','Specify the same app namespace that you entered when configured your Facebook Platform application.','en'),(185,165,'Facebook Admins','Comma-separated list of the Facebook User IDs of page administrators. Include at least your own Facebook User ID.','en'),(186,166,'Facebook Share Button settings','','en'),(187,167,'Display the Share button on product pages','The Share button lets a customer share your product pages with friends on Facebook.','en'),(188,168,'Facebook Like Button settings','','en'),(189,169,'We recommend using the Share button instead of Like.','','en'),(190,170,'Display the Like button on product pages','The Like button lets a customer share your product pages with friends on Facebook. The button will not be displayed if Facebook application id is not set.','en'),(191,171,'Layout style','There are three options:<ul><li>\"standard\" - displays social text to the right of the button and friends\' profile photos below</li><li>\"button\" - displays the total number of likes to the right of the button</li><li>\"box\" - displays the total number of likes above the button.</li></ul>','en'),(192,172,'Show profile pictures below the Like button','Profile pictures appear in the \"standard\" layout style only.','en'),(193,173,'The verb to display in the Like button','','en'),(194,174,'The color scheme for the like button','','en'),(195,175,'Facebook comments settings','','en'),(196,176,'Display the Facebook Comments tab on product pages','To moderate comments, specify your Facebook User ID in the \"Facebook Admins\" field below.<br />To enable the moderator interface on Facebook where comments from all product pages can be easily moderated together, specify your Facebook App ID in the \"Facebook Application ID\" field below.','en'),(197,177,'Number of posts to show on the tab by default','','en'),(198,178,'The color scheme for the comments','','en'),(199,179,'Tweet button settings','','en'),(200,180,'Display the Tweet button on product pages','The Tweet button allows customers to easily share your product pages with their Twitter followers.','en'),(201,181,'Show the count box along with the Tweet button','The count box shows how many times the product page has been Tweeted.','en'),(202,182,'Account name of the user to attribute the Tweet to (optional)','','en'),(203,183,'Account name of the user to follow after sending a Tweet (optional)','Twitter will suggest that customers follow this user once they have sent a Tweet using the Tweet button.','en'),(204,184,'Hashtag to show within the Tweet button and in the text of the tweet status (optional)','','en'),(205,185,'Google+ button settings','','en'),(206,186,'Display the Google+ button on product pages','','en'),(207,187,'Google+ page id','','en'),(208,188,'Pinterest button settings','','en'),(209,189,'Display the Pinterest button on product pages','','en'),(210,190,'Show \"Admin welcome\" block','','en'),(211,191,'PayPal Login','To enable PayPal login, you need to create a PayPal application for your website. The recommended procedure is to go to the My Apps page and create an app for testing, then to go live with this app. For detailed instructions on creating the app, see PayPal documentation at <a href=\"https://developer.paypal.com/docs/integration/admin/manage-apps/\">https://developer.paypal.com/docs/integration/admin/manage-apps/</a>. Be sure to specify your \"App return URL\" as the value of \"Redirect URL\" field below.<br /><br />Once the app has been created, be sure to copy your Client Id and Client Secret from the app details and credentials and have them stored in the fields below.','en'),(212,192,'Redirect URL','','en'),(213,193,'Client Id','','en'),(214,194,'Client Secret','','en'),(215,195,'Test/Live mode','','en'),(216,196,'\"New arrivals\" block settings','','en'),(217,197,'Enable \"New arrivals\" feature in catalog','','en'),(218,198,'Number of days to keep products marked as new arrivals','Specify a non-zero value; otherwise, 30 days will be used by default.','en'),(219,199,'Maximum number of products to display in complete new arrivals list','Limits the total number of products that can be displayed when user clicks the \"All new arrivals\" link in the \"New arrivals\" block. Leave 0 for no limit.','en'),(220,200,'Label new products','','en'),(221,201,'Maximum number of products to display in \"New arrivals\" block','Defines the maximum number of products that can be displayed in the \"New arrivals\" block. Specify a non-zero value; otherwise, 3 products will be displayed by default. If the specified value is less than the total amount of products on complete new arrivals list, that value will be used instead. Drupal block settings can override this option (when the DrupalConnector module is enabled).','en'),(222,202,'Show new products only from category being viewed by customer','Drupal block settings can override this option (when the DrupalConnector module is enabled).','en'),(223,203,'\"Coming soon\" block settings','','en'),(224,204,'Enable \"Coming soon\" feature in catalog','','en'),(225,205,'Label upcoming products','','en'),(226,206,'Show arrival date on product details pages','','en'),(227,207,'Show \"coming soon\" products only from category being viewed by customer','Drupal block settings can override this option (when the DrupalConnector module is enabled).','en'),(228,208,'Maximum number of products to display in \"Coming soon\" block','Defines a maximum number of products that can be displayed in the \"Coming soon\" block. Specify a non-zero value; otherwise, 3 products will be displayed by default. Drupal block settings can override this option (when the DrupalConnector module is enabled).','en'),(229,209,'\"Recently viewed\" block settings','','en'),(230,210,'Display \"Recently viewed\" block in catalog','','en'),(231,211,'Maximum number of products to display in \"Recently viewed\" block','Defines the maximum amount of products that can be displayed in the \"Recently viewed\" block. Leave 0 for no limit. Drupal block settings can override this option (when the DrupalConnector module is enabled).','en'),(232,212,'\"Customers who bought this product also bought\" block settings','','en'),(233,213,'Display block in catalog','','en'),(234,214,'Maximum number of products to display in block','Defines the maximum number of products that can be displayed in the \"Customers who bought this product also bought\" block. Specify a non-zero value; otherwise, 3 products will be displayed by default. Drupal block settings can override this option (when the DrupalConnector module is enabled).','en'),(235,215,'\"Customers who viewed this product bought\" block settings','','en'),(236,216,'Display block in catalog','','en'),(237,217,'Maximum number of products to display in block','Defines the maximum number of products that can be displayed in the \"Customers who viewed this product bought\" block. Specify a non-zero value; otherwise, 3 products will be displayed by default. Drupal block settings can override this option (when the DrupalConnector module is enabled).','en'),(238,218,'Display the \"Products on sale\" block in the storefront','','en'),(239,219,'Display only the products on sale which are in the category being viewed (or its subcategories)','','en'),(240,220,'The maximum number of products to be displayed in the \"Products on sale\" block','The maximum number of products to be displayed in the \"Products on sale\" block. Set zero to display all products in the block. Drupal block settings can override this option (when the DrupalConnector module is enabled).','en'),(241,221,'Logo','','en'),(242,222,'Favicon','','en'),(243,223,'Apple icon','','en'),(244,224,'Frequency of content renewal for Static page','','en'),(245,225,'Priority for Static page','The value should range from 0 to 1.','en'),(246,226,'Show the default menu along with the custom one','','en'),(247,227,'Facebook','To enable Facebook login on your store website, you first need to create a Facebook App for your website. To learn more about Facebook Apps, follow the link: <a href=\"https://developers.facebook.com/apps\">https://developers.facebook.com/apps</a>.<br /> After the app has been created, complete the fields below.','en'),(248,228,'Facebook App ID/API Key','','en'),(249,229,'Facebook App Secret','','en'),(250,230,'Google','To enable Google login, you first need to create OAuth2 client ID for your site.<br /> Follow the instructions below: <br />1. Go to Google API console: <a href=\"https://code.google.com/apis/console#access\">https://code.google.com/apis/console#access</a>. The first time you visit this address you will see a screen saying \"Start using the Google APIs console to manage your API usage\". Click \"Create project...\". <br />2. On the following screen, click \"Create an OAuth2 client ID\". <br />3. Choose Web application type, enter your store URL and finish creating the Client ID. <br />4. After the Client ID has been created, open its settings and use the \"Authorized Redirect URIs\" field to specify the redirect URI for your store as \"{{WEB_LC_ROOT}}cart.php?target=social_login&action=login&auth_provider=google\". <br />5. The Google client ID and Google client secret can be found on the Client ID page. Enter them into the fields below.','en'),(251,231,'Google Client ID','','en'),(252,232,'Google Client secret','','en'),(253,233,'Frequency of content renewal for Welcome page','','en'),(254,234,'Frequency of content renewal for Category page','','en'),(255,235,'Frequency of content renewal for Product page','','en'),(256,236,'Priority for Welcome page','The value should range from 0 to 1.','en'),(257,237,'Priority for Category page','The value should range from 0 to 1.','en'),(258,238,'Priority for Product page','The value should range from 0 to 1.','en'),(259,239,'Enable \"In stock only\" filter','','en'),(260,240,'Enable \"Price range\" filter','','en'),(261,241,'Enable \"Attributes\" filter','','en'),(262,242,'Show only available attributes and tags for products in category','If the setting is disabled, the filter shows all the attribute values and tags used in your store. If the setting is enabled, X-Cart generates a data cache that is used to display in the filter only the attribute values and tags that are actually used for the products in the category being viewed. Please be aware that the availability of the products for specific user membership levels is not taken into account during cache generation.','en'),(263,243,'Cache reset mode','Cache is first generated when a category page is opened. When attribute, tag or product data is changed, the generated cache is removed. It is then generated again when any category is opened.','en'),(264,244,'Sort order for class attributes','','en'),(265,239,'Включить фильтр \"Только товары в наличии\"','','ru'),(266,240,'Включить фильтр \"Цена\"','','ru'),(267,241,'Включить фильтр \"Атрибуты\"','','ru'),(268,242,'Отображать только атрибуты и теги, реально используемые для продуктов в категории','Если данная настройка выключена, в фильтре показываются все значения атрибутов и все теги, используемые в магазине. Если настройка включена, X-Cart генерирует кеш данных, позволяющий отображать в фильтре только те значения атрибутов и теги, которые реально используются для товаров в просматриваемой категории. Обратите внимание, что доступность товаров для отдельных групп пользователей при генерации кеша не учитывается.','ru'),(269,243,'Режим обновления кэша','Кеш впервые генерируется при открытии страницы категории. При внесении изменений в данные атрибутов, тегов или товаров, кеш сбрасывается. Затем он генерируется заново, когда происходит открытие любой категории.','ru'),(270,244,'Порядок сортировки классовых атрибутов','','ru'),(271,245,'Who can leave feedback','','en'),(272,246,'Admin moderates all reviews before showing them to customers','','en'),(273,247,'The quantity of reviews for tabs product reviews','','en'),(274,248,'Use custom css','','en'),(275,249,'Use custom javascript','','en'),(276,252,'User ID','','en'),(277,253,'Password','','en'),(278,254,'Access key','','en'),(279,255,'UPS Account number','A shipper\'s UPS account number is required when requesting to receive the negotiated rates.','en'),(280,256,'Test mode','','en'),(281,257,'Additional settings','','en'),(282,258,'Package settings','','en'),(283,259,'Package box type','','en'),(284,260,'Package dimensions','','en'),(285,261,'Maximum package weight','','en'),(286,262,'Service options','','en'),(287,263,'Pickup type','','en'),(288,264,'Saturday pickup','','en'),(289,265,'Additional handling','','en'),(290,266,'Saturday delivery','','en'),(291,267,'Use negotiated rates','','en'),(292,268,'Delivery confirmation','','en'),(293,269,'Add insured value','','en'),(294,270,'Insured value','','en'),(295,271,'Cash on delivery','','en'),(296,272,'Currency conversion options','','en'),(297,273,'Shipping cost currency','','en'),(298,274,'Currency rate','If the UPS returns rates in currency which is differ from the currency the store uses for payments you need to specify the conversion rate to convert the shipping cost returned by UPS into the necessary currency. Otherwise leave 1.','en'),(299,275,'Additional options','','en'),(300,276,'Enable debugging','This option enables logging of all communication between shopping cart and UPS server.','en'),(301,277,'Number of news messages in the Top news list','','en'),(302,277,'Количество новостей в списке Последних новостей','','ru'),(303,278,'News messages per page','','en'),(304,278,'Количество новостей на странице','','ru'),(305,279,'Shipping cost for products with a defined shipping freight value should be calculated as','','en'),(306,279,'Стоимость доставки для продуктов с заданным значением поля \"Фиксированная стоимость доставки\" должна быть равна','','ru'),(307,282,'Account API Key','Paste in your API Key from your AuctionInc ShippingCalc account (Not required for Trial)','en'),(308,283,'Destination Type','Indicates deliveries are to residential addresses','en'),(309,284,'Debug mode','Enable debug mode to store debugging information to log file','en'),(310,285,'Additional settings','','en'),(311,286,'Default values','These values will be used for any products for which you have not saved ShippingCalc settings','en'),(312,287,'Calculation method','For carrier rates, your configured product weights (& dimensions) will be used','en'),(313,288,'Package','Pack items from the same origin together, or each in its own box.','en'),(314,289,'Insurable','Include product value for insurance calculation based on AuctionInc settings','en'),(315,290,'Mode','','en'),(316,291,'Code','Enter your AuctionInc-configured fixed fee code','en'),(317,292,'Fee 1','Enter fee for first item','en'),(318,293,'Fee 2','Enter fee for additional items and quantities','en'),(319,294,'Calculation options','','en'),(320,295,'Fallback rate','Optionally set default rate if the API cannot be reached or if no rates are found','en'),(321,296,'Fallback rate value','','en'),(322,297,'Carrier Entry Point','','en'),(323,298,'DHL','How you deliver your packages to the carrier','en'),(324,299,'Federal Express','How you deliver your packages to the carrier','en'),(325,300,'United Parcel Service','How you deliver your packages to the carrier','en'),(326,301,'United States Postal Service','Select Comm Base if your print your labels online','en'),(327,302,'Checkout type','','en'),(328,303,'MailChimp settings','','en'),(329,304,'MailChimp API key','','en'),(330,305,'Enable E-commerce analytics','','en'),(331,306,'Enable Abandoned Carts','','en'),(332,307,'Enable single opt-in for customers','When this option is enabled customers are not prompted to confirm the subscription by email (contrary to double opt-in). Abusing this option might get your account banned by MailChimp.','en'),(333,308,'Subscription select element type','This option controls the way your customers select a subscription. Select box allows subscription to only one mail list while check box allows subscription to multiple lists.','en'),(334,309,'Update MailChimp lists every','Select the time interval for the periodical list updates.','en'),(335,303,'Настройки MailChimp','','ru'),(336,304,'API ключ MailChimp','','ru'),(337,305,'Включить аналитику Ecommerce','','ru'),(338,306,'Включить Abandoned Carts','','ru'),(339,307,'Включить режим подписки \"single opt-in\"','Когда этоа опция включена клиенты не будут получать запрос на подтверждение подписки (в отличие от метода \"double opt-in\"). Злоупотребление данной опцией может привести к блокировке вашей учетной записи MailChimp!','ru'),(340,308,'Тип элемента выбора подписки','Эта опция управляет тем, как ваши клиенты выбирают подписку на рассылку. Список позволяет подписаться только на одну рассылку из списка за раз, когда как галочка позволяет подписаться на несколько рассылок сразу.','ru'),(341,309,'Обновлять список рассылок MailChimp каждые','Выберите временной интервал для обновления информации о списках рассылок.','ru'),(342,310,'Show number of products in category','Select to show the number of products in a category next to the category\'s name','en'),(343,311,'Wrap long category names','Enable word wrapping for long category names','en'),(344,312,'Show category triangles','Select to display a tiny triangle next the names of categories that include subcategories. Categories that do not contain subcategories will not be furnished with a triangle. Having this option activated would help your store visitors to navigate through your category tree better','en'),(345,316,'Turn on the CloudSearch specific search on the product list','','en'),(346,316,'Включить поиск продуктов от CloudSearch','','ru'),(347,317,'Include products attributes into CloudSearch index','','en'),(348,317,'Вносить в индекс CloudSearch информацию об атрибутах','','ru'),(349,318,'Use a better template for displaying line item subtotals','','en'),(350,318,'Использовать улучшенный шаблон для отображения цен пунктов заказа','','ru'),(351,319,'Test mode','','en'),(352,320,'API key','A unique 32 character API key is used to authorise inbound requests to the APIs. To obtain an API key please visit <a href=\"http://auspost.com.au/devcentre\">http://auspost.com.au/devcentre</a> and follow the link to create your Australia Post ID. After registration has been successfully completed you will be emailed an API key.','en'),(353,321,'Package settings','','en'),(354,323,'Package box type','','en'),(355,324,'Package dimensions (mm)','','en'),(356,325,'Additional settings','','en'),(357,326,'Service option','','en'),(358,327,'Extra cover type','','en'),(359,328,'Extra cover value','The specified value (if not empty) will be used as an extra cover value. Otherwise an order total will be used.','en'),(360,329,'Currency rate','Specify rate X, where 1 AUD = X in shop currency.','en'),(361,330,'Enable new methods','When AustraliaPost return shipping methods which does not exists in the available methods list, these methods will be created in the list automatically. You can specify should these methods be created as enabled and accessible customers just after they created, or these methods must be hidden from customer until you manually validate them.','en'),(362,331,'Enable debugging','This option enables logging of all communication between the shopping cart and AustraliaPost server.','en'),(363,333,'Merchant\'s skrill.com account','','en'),(364,334,'Company logo URL','','en'),(365,335,'Test mode','','en'),(366,336,'Secret word','The uppercase MD5 value of the ASCII equivalent of the secret word submitted in the \"Merchant Tools\" section of the Merchant.s online Skrill account.','en'),(367,337,'Invoice number prefix','','en'),(368,339,'Use the same tax rates for all user membership levels','','en'),(369,340,'Address for sales tax calculation','','en'),(370,341,'Taxable base','','en'),(371,342,'User ID','','en'),(372,343,'U.S.P.S. API server URL','Enter the URL provided to you by U.S.P.S. in the notification about your successful registration for the U. S. Postal Service\'s Web Tools Application Program Interfaces. For example: <ul><li>http://testing.shippingapis.com/ShippingAPITest.dll</li><li>http://production.shippingapis.com/ShippingAPI.dll</li></ul>','en'),(373,344,'Additional settings','','en'),(374,345,'Common options','','en'),(375,346,'Package Size (length + girth, inches)','','en'),(376,347,'Package dimensions (inches)','','en'),(377,348,'Girth','Required for large size and if the container is non-rectangular or variable','en'),(378,349,'Maximum package weight','','en'),(379,350,'Machinable','','en'),(380,351,'Currency conversion rate','Specify rate X, where 1 USD = X in shop currency.<br/>The shipping cost is always returned in US Dollars. So if the store uses a different currency for payments, you need to specify a conversion rate to convert the shipping cost returned by the shipping service into your store\'s currency. If the same currency is used, leave this set to 1.','en'),(381,352,'Domestic U.S.P.S.','','en'),(382,353,'Container','','en'),(383,354,'First-Class mail type','','en'),(384,355,'Pricing type to be used','','en'),(385,356,'International U.S.P.S.','','en'),(386,357,'Mail type','','en'),(387,358,'Container','','en'),(388,359,'Get commercial base postage','','en'),(389,360,'Global Express Guarantee (GXG)','','en'),(390,361,'GXG destination is a post office box','','en'),(391,362,'GXG package contains a gift','','en'),(392,363,'Cash on delivery','','en'),(393,364,'Use a fixed amount Collect on Delivery fee','If you are planning to allow your customers to use the COD payment method for orders shipped with USPS shipping methods, you can make the calculation of shipping costs faster by setting a fixed extra fee for using the COD payment method.<br /><br />If a fixed amount COD fee is not set on the store\'s end, it will be calculated on the USPS end, and to get information about the COD fee amount the store will need to send several requests to the USPS API (one for each USPS service type), which may take up to 14 seconds. When using a fixed amount COD fee, the store will only send a single request to the USPS API, which will take under one second.<br /><br />Using a <b>fixed amount COD fee</b> allows the store to calculate the shipping cost much faster and is the <b>recommended option</b>.','en'),(394,365,'Fixed COD price','If you have selected to use a fixed COD fee, specify the fee amount here. The COD fee will be used for all shipping methods returned by the USPS server.<br /><br />You can find the current price for the USPS Collect on Delivery (COD) extra service on this page: <a href=\"https://www.usps.com/business/add-extra-services.htm\" target=\"_blank\">https://www.usps.com/business/add-extra-services.htm</a>','en'),(395,366,'Additional options','','en'),(396,367,'Log all communication between shopping cart and USPS server','','en'),(397,368,'Auto enable new USPS shipping methods','','en'),(398,342,'Идентификатор пользователя','','ru'),(399,343,'Веб-адрес API сервера U.S.P.S.','Введите веб-адрес, указанный в уведомлении от U.S.P.S. об успешной регистрации в U. S. Postal Service Web Tools Application Program Interfaces. Например: <ul><li>http://testing.shippingapis.com/ShippingAPITest.dll</li><li>http://production.shippingapis.com/ShippingAPI.dll</li></ul>','ru'),(400,344,'Дополнительные настройки','','ru'),(401,345,'Общие настройки','','ru'),(402,347,'Размеры упаковки (в дюймах)','','ru'),(403,348,'Периметр (дюймы)','Для больших размеров и непрямоугольного и неизменяемого контейнера.','ru'),(404,349,'Максимальный вес упаковки','','ru'),(405,351,'Коэффициент пересчета валюты','Укажите ставку X, где 1 USD = X в валюте магазина.<br/>Стоимость доставки всегда определяется в американских доллрах. Если в магазине используется другая валюта, необходимо указать коэффициент пересчёта стоимости доставки, полученной от службы доставки, в валюту магазина. Если валюта совпадает, оставить коэффициент равным 1.','ru'),(406,352,'Локальный U.S.P.S.','','ru'),(407,353,'Тара','','ru'),(408,346,'Размеры упаковки (длина+обхват, в дюймах)','','ru'),(409,354,'Тип почтового отправления для сервиса First-Class','','ru'),(410,350,'Машинная обработка','','ru'),(411,355,'Используемый тип цены (розничная, коммерческая и т.п.)','','ru'),(412,356,'Международная служба U.S.P.S.','','ru'),(413,357,'Тип почтового отправления','','ru'),(414,358,'Тара','','ru'),(415,359,'Воспользоваться услугой Commercial Base','','ru'),(416,360,'Служба доставки Global Express Guarantee (GXG)','','ru'),(417,361,'Пункт назначения GXG - абонентский ящик','','ru'),(418,362,'В посылке GXG есть подарок','','ru'),(419,363,'Оплата при получении','','ru'),(420,364,'Использовать фиксированную сумму наценки на доставку наложенным платежом','Если вы планируете предоставлять покупателям возможность оплаты заказа при получении при доставке методами USPS, вы можете ускорить расчет стоимости доставки заказа, установив фиксированную наценку за использование данного метода оплаты. В случае, когда размер наценки не задан жестко на стороне магазина, расчет наценки будет осуществляться на стороне USPS, и для получения информации о размере наценки магазин должен будет отправить несколько запросов к USPS API (по одному для каждого типа сервисов USPS), что в общей сложности может занять до 20 сек. При использовании фиксированной наценки магазин будет делать всего один запрос к USPS API, на который ему потребуется менее одной секунды. Использование фиксированной наценки значительно ускоряет расчет стоимости доставки методами USPS и является рекомендуемой опцией.','ru'),(421,365,'Fixed COD price','Если вы выбрали использование фиксированной наценки на COD, укажите здесь ее значение. Это значение будет использовано для всех методов доставки USPS. Вы можете найти актуальное значение наценки за использование услуги Collect on delivery на этой странице: <a href=\"https://www.usps.com/business/add-extra-services.htm\" target=\"_blank\">https://www.usps.com/business/add-extra-services.htm</a>','ru'),(422,366,'Дополнительные опции','','ru'),(423,367,'Записать всю коммуникацию магазина с сервером USPS','','ru'),(424,368,'Добавлять новые методы USPS включенными','','ru'),(425,369,'Store ID','Store ID is an unique value generated by X-Payments for this shopping cart. This value should be obtained from this online store details page in X-Payments back-end.','en'),(426,370,'X-Payments URL','URL of your X-Payments installation (specify the URL beginning with https://). The store will send payment transaction requests to this URL.','en'),(427,371,'Public key','Public key is used to encrypt requests from the store to your X-Payments installation. This value should be obtained from this online store details page in X-Payments back-end.','en'),(428,372,'Private key','Private key is used to decrypt responses and callback requests that the store receives from your X-Payments installation. This value should be obtained from this online store details page in X-Payments back-end.','en'),(429,373,'Private key password','Private key password is used to decrypt the Private key. This value should be obtained from this online store details page in X-Payments back-end.','en'),(430,374,'IP addresses for X-Payments callbacks (optional)','X-Payments sends callback requests to the store from specific IP addresses. To secure the data transfer and avoid fraudulent requests, specify these IP addresses here as a comma-separated list.','en'),(431,375,'Payment currency','All the payments will be made using the currency specified here.','en'),(432,376,'API version compatibility','','en'),(433,377,'Use iframe','','en'),(434,378,'Date when the payment methods were loaded from site','','en'),(435,379,'List of payment methods allowed by X-Payments','','en'),(436,380,'Payment method for card setup','','en'),(437,381,'Authorize amount for card setup','Which amount should be authorized on card. Recommended 0.00, 0.01 or 1.00. Note: if you chose 0.00 make sure the payment gateway supports such authorization','en'),(438,382,'Description of the card setup payment','Description of card setup authorization. It`s sent to the payment gateway and can be seen by you and your customers thru the bank receipt.','en'),(439,383,'New payment status','New payment status','en'),(440,384,'Auth payment status','Auth payment status','en'),(441,385,'Charged payment status','Charged payment status','en'),(442,386,'Partially captured payment status','Partially captured payment status','en'),(443,387,'Declined payment status','Declined payment status','en'),(444,388,'Refunded payment status','Refunded payment status','en'),(445,389,'Partially refunded payment status','Partially refunded payment status','en'),(446,392,'User','','en'),(447,393,'Password','','en'),(448,394,'Developer mode','','en'),(449,395,'Log all comunications between shopping cart and UPS server','','en'),(450,396,'Additional settings','','en'),(451,397,'Quote type','','en'),(452,398,'Customer number','','en'),(453,399,'Currency rate','(specify rate X, where 1 CAD = X in shop currency)','en'),(454,400,'Contract shipping options','','en'),(455,401,'Contract ID','','en'),(456,402,'Shipments pick up type','','en'),(457,403,'Site number of the deposit location','Look up the site number using <a href=\"https://www.canadapost.ca/cpotools/apps/fdl/business/findDepositLocation?execution=e1s1\">Find a Deposit Location</a>','en'),(458,404,'Render detailed manifest','','en'),(459,405,'Contact name for the manifest address','','en'),(460,406,'Deliver to Post Office options','','en'),(461,407,'Enable \"Deliver to Post Office\" feature','','en'),(462,408,'Maximum Post Offices that will be displayed','','en'),(463,409,'Parcel characteristics','','en'),(464,410,'Package length (cm)','Longest dimension. (3.1 digits e.g. 999.9 pattern)','en'),(465,411,'Package width (cm)','Second longest dimension. (3.1 digits e.g. 999.9 pattern)','en'),(466,412,'Package height (cm)','Shortest dimension. (3.1 digits e.g. 999.9 pattern)','en'),(467,413,'Package maximum weight (kg)','This value will be used to separate ordered products into several packages by weight','en'),(468,414,'Document','Indicates whether the shipment is a document or not.','en'),(469,415,'Unpackaged','Indicates whether a shipment is unpackaged or not. For example, auto tires may be an example of an unpackaged shipment.','en'),(470,416,'Mailing tube','Indicates whether a shipment is contained in a mailing tube. (e.g. a poster tube)','en'),(471,417,'Oversized','Indicates whether the parcel is oversized or not.','en'),(472,418,'Parcel options','','en'),(473,419,'Way to deliver','','en'),(474,420,'Signature','','en'),(475,421,'Proof of age','','en'),(476,422,'Coverage','In percent of the order subtotal (0 - do not use coverage)','en'),(477,423,'Non-delivery instructions','','en'),(478,424,'Amazon Seller ID','If you do not have seller account, you can register here:<br /><a href=\"https://payments.amazon.com/signup?LD=SPEXUSAPA_XCart_core\" target=\"_blank\">USA</a>, <a href=\"https://payments.amazon.co.uk/preregistration/lpa?LD=SPEXUKAPA_XCart_core\" target=\"_blank\">UK</a>, <a href=\"https://payments.amazon.de/preregistration/lpa?LD=SPEXDEAPA_XCart_core\" target=\"_blank\">Germany</a>','en'),(479,425,'Operation mode','','en'),(480,426,'Access Key ID','','en'),(481,427,'Secret Access Key','','en'),(482,428,'Client ID','Register your website as an application on the <a href=\"http://login.amazon.com/manageApps\" trget=\"_blank\">Login with Amazon App Console</a>. For more information, see the <a href=\"https://images-na.ssl-images-amazon.com/images/G/01/lwa/dev/docs/website-gsg._TTH_.pdf\" target=\"_blank\">Login with Amazon Getting Started Guide</a>. A client identifier (Client ID) is set when you register your website. You will need this identifier for your integration.','en'),(483,429,'Country of Merchant account','','en'),(484,430,'Capture mode','','en'),(485,431,'Type of authorization request','','en'),(486,432,'OrderId prefix','','en');
CREATE TABLE `xlite_content_images` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`width` int(11) NOT NULL,
`height` int(11) NOT NULL,
`hash` char(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`needProcess` tinyint(1) NOT NULL,
`path` varchar(512) COLLATE utf8_unicode_ci NOT NULL,
`fileName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`mime` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`storageType` varchar(1) COLLATE utf8_unicode_ci NOT NULL,
`size` int(10) unsigned NOT NULL,
`date` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_countries` (
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
`currency_id` int(10) unsigned DEFAULT NULL,
`id` int(11) NOT NULL,
`code3` char(3) COLLATE utf8_unicode_ci NOT NULL,
`enabled` tinyint(1) NOT NULL,
PRIMARY KEY (`code`),
UNIQUE KEY `UNIQ_C4F7794977153098` (`code`),
KEY `IDX_C4F7794938248176` (`currency_id`),
KEY `enabled` (`enabled`),
CONSTRAINT `FK_C4F7794938248176` FOREIGN KEY (`currency_id`) REFERENCES `xlite_currencies` (`currency_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_countries` VALUES ('AD',978,20,'AND',1),('AE',784,784,'ARE',1),('AF',971,4,'AFG',1),('AG',951,28,'ATG',1),('AI',951,660,'AIA',1),('AL',8,8,'ALB',1),('AM',51,51,'ARM',1),('AO',973,24,'AGO',1),('AQ',NULL,10,'ATA',1),('AR',32,32,'ARG',1),('AS',840,16,'ASM',1),('AT',978,40,'AUT',1),('AU',36,36,'AUS',1),('AW',533,533,'ABW',1),('AX',978,248,'ALA',1),('AZ',944,31,'AZE',1),('BA',977,70,'BIH',1),('BB',52,52,'BRB',1),('BD',50,50,'BGD',1),('BE',978,56,'BEL',1),('BF',952,854,'BFA',1),('BG',975,100,'BGR',1),('BH',48,48,'BHR',1),('BI',108,108,'BDI',1),('BJ',952,204,'BEN',1),('BL',978,652,'BLM',1),('BM',60,60,'BMU',1),('BN',96,96,'BRN',1),('BO',68,68,'BOL',1),('BQ',840,535,'BES',1),('BR',986,76,'BRA',1),('BS',44,44,'BHS',1),('BT',356,64,'BTN',1),('BV',578,74,'BVT',1),('BW',72,72,'BWA',1),('BY',974,112,'BLR',1),('BZ',84,84,'BLZ',1),('CA',124,124,'CAN',1),('CC',36,166,'CCK',1),('CD',976,180,'COD',1),('CF',950,140,'CAF',1),('CG',950,178,'COG',1),('CH',756,756,'CHE',1),('CI',950,384,'CIV',1),('CK',554,184,'COK',1),('CL',152,152,'CHL',1),('CM',950,120,'CMR',1),('CN',156,156,'CHN',1),('CO',170,170,'COL',1),('CR',188,188,'CRI',1),('CU',192,192,'CUB',1),('CV',132,132,'CPV',1),('CW',532,531,'CUW',1),('CX',36,162,'CXR',1),('CY',978,196,'CYP',1),('CZ',203,203,'CZE',1),('DE',978,276,'DEU',1),('DJ',262,262,'DJI',1),('DK',208,208,'DNK',1),('DM',951,212,'DMA',1),('DO',214,214,'DOM',1),('DZ',12,12,'DZA',1),('EC',840,218,'ECU',1),('EE',978,233,'EST',1),('EG',818,818,'EGY',1),('EH',504,732,'ESH',1),('ER',232,232,'ERI',1),('ES',978,724,'ESP',1),('ET',230,231,'ETH',1),('FI',978,246,'FIN',1),('FJ',242,242,'FJI',1),('FK',238,238,'FLK',1),('FM',840,583,'FSM',1),('FO',208,234,'FRO',1),('FR',978,250,'FRA',1),('GA',950,266,'GAB',1),('GB',826,826,'GBR',1),('GD',951,308,'GRD',1),('GE',981,268,'GEO',1),('GF',978,254,'GUF',1),('GG',826,831,'GGY',1),('GH',936,288,'GHA',1),('GI',292,292,'GIB',1),('GL',208,304,'GRL',1),('GM',270,270,'GMB',1),('GN',324,324,'GIN',1),('GP',978,312,'GLP',1),('GQ',950,226,'GNQ',1),('GR',978,300,'GRC',1),('GS',826,239,'SGS',1),('GT',320,320,'GTM',1),('GU',840,316,'GUM',1),('GW',952,624,'GNB',1),('GY',328,328,'GUY',1),('HK',344,344,'HKG',1),('HM',36,334,'HMD',1),('HN',340,340,'HND',1),('HR',191,191,'HRV',1),('HT',332,332,'HTI',1),('HU',348,348,'HUN',1),('ID',360,360,'IDN',1),('IE',978,372,'IRL',1),('IL',376,376,'ISR',1),('IM',826,833,'IMN',1),('IN',356,356,'IND',1),('IO',840,86,'IOT',1),('IQ',368,368,'IRQ',1),('IR',364,364,'IRN',1),('IS',352,352,'ISL',1),('IT',978,380,'ITA',1),('JE',826,832,'JEY',1),('JM',388,388,'JAM',1),('JO',400,400,'JOR',1),('JP',392,392,'JPN',1),('KE',404,404,'KEN',1),('KG',417,417,'KGZ',1),('KH',116,116,'KHM',1),('KI',36,296,'KIR',1),('KM',174,174,'COM',1),('KN',951,659,'KNA',1),('KP',408,408,'PRK',1),('KR',410,410,'KOR',1),('KW',414,414,'KWT',1),('KY',136,136,'CYM',1),('KZ',398,398,'KAZ',1),('LA',418,418,'LAO',1),('LB',422,422,'LBN',1),('LC',951,662,'LCA',1),('LI',756,438,'LIE',1),('LK',144,144,'LKA',1),('LR',430,430,'LBR',1),('LS',426,426,'LSO',1),('LT',440,440,'LTU',1),('LU',978,442,'LUX',1),('LV',428,428,'LVA',1),('LY',434,434,'LBY',1),('MA',504,504,'MAR',1),('MC',978,492,'MCO',1),('MD',498,498,'MDA',1),('ME',978,499,'MNE',1),('MF',978,663,'MAF',1),('MG',969,450,'MDG',1),('MH',840,584,'MHL',1),('MK',807,807,'MKD',1),('ML',952,466,'MLI',1),('MM',64,104,'MMR',1),('MN',496,496,'MNG',1),('MO',446,446,'MAC',1),('MP',840,580,'MNP',1),('MQ',978,474,'MTQ',1),('MR',478,478,'MRT',1),('MS',951,500,'MSR',1),('MT',978,470,'MLT',1),('MU',480,480,'MUS',1),('MV',462,462,'MDV',1),('MW',454,454,'MWI',1),('MX',484,484,'MEX',1),('MY',458,458,'MYS',1),('MZ',943,508,'MOZ',1),('NA',516,516,'NAM',1),('NC',953,540,'NCL',1),('NE',952,562,'NER',1),('NF',36,574,'NFK',1),('NG',566,566,'NGA',1),('NI',558,558,'NIC',1),('NL',978,528,'NLD',1),('NO',578,578,'NOR',1),('NP',524,524,'NPL',1),('NR',36,520,'NRU',1),('NU',554,570,'NIU',1),('NZ',554,554,'NZL',1),('OM',512,512,'OMN',1),('PA',590,591,'PAN',1),('PE',604,604,'PER',1),('PF',953,258,'PYF',1),('PG',598,598,'PNG',1),('PH',608,608,'PHL',1),('PK',586,586,'PAK',1),('PL',985,616,'POL',1),('PM',978,666,'SPM',1),('PN',554,612,'PCN',1),('PR',840,630,'PRI',1),('PS',400,275,'PSE',1),('PT',978,620,'PRT',1),('PW',840,585,'PLW',1),('PY',600,600,'PRY',1),('QA',634,634,'QAT',1),('RE',978,638,'REU',1),('RO',946,642,'ROU',1),('RS',941,688,'SRB',1),('RU',643,643,'RUS',1),('RW',646,646,'RWA',1),('SA',682,682,'SAU',1),('SB',90,90,'SLB',1),('SC',690,690,'SYC',1),('SD',938,729,'SDN',1),('SE',752,752,'SWE',1),('SG',702,702,'SGP',1),('SH',654,654,'SHN',1),('SI',978,705,'SVN',1),('SJ',978,744,'SJM',1),('SK',978,703,'SVK',1),('SL',694,694,'SLE',1),('SM',978,674,'SMR',1),('SN',952,686,'SEN',1),('SO',706,706,'SOM',1),('SR',968,740,'SUR',1),('SS',728,728,'SSD',1),('ST',678,678,'STP',1),('SV',222,222,'SLV',1),('SX',532,534,'SXM',1),('SY',760,760,'SYR',1),('SZ',748,748,'SWZ',1),('TC',840,796,'TCA',1),('TD',950,148,'TCD',1),('TF',978,260,'ATF',1),('TG',952,768,'TGO',1),('TH',764,764,'THA',1),('TJ',972,762,'TJK',1),('TK',554,772,'TKL',1),('TL',840,626,'TLS',1),('TM',934,795,'TKM',1),('TN',788,788,'TUN',1),('TO',776,776,'TON',1),('TR',949,792,'TUR',1),('TT',780,780,'TTO',1),('TV',36,798,'TUV',1),('TW',901,158,'TWN',1),('TZ',834,834,'TZA',1),('UA',980,804,'UKR',1),('UG',800,800,'UGA',1),('UM',840,581,'UMI',1),('US',840,840,'USA',1),('UY',858,858,'URY',1),('UZ',860,860,'UZB',1),('VA',978,336,'VAT',1),('VC',951,670,'VCT',1),('VE',937,862,'VEN',1),('VG',840,92,'VGB',1),('VI',840,850,'VIR',1),('VN',704,704,'VNM',1),('VU',548,548,'VUT',1),('WF',953,876,'WLF',1),('WS',882,882,'WSM',1),('YE',886,887,'YEM',1),('YT',978,175,'MYT',1),('ZA',710,710,'ZAF',1),('ZM',894,894,'ZMB',1),('ZW',932,716,'ZWE',1);
CREATE TABLE `xlite_country_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` char(2) COLLATE utf8_unicode_ci DEFAULT NULL,
`country` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `country` (`country`),
KEY `id` (`id`),
CONSTRAINT `FK_758727C3BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_countries` (`code`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_country_translations` VALUES (1,'AF','Afghanistan','en'),(2,'AX','Åland Islands','en'),(3,'AL','Albania','en'),(4,'DZ','Algeria','en'),(5,'AS','American Samoa','en'),(6,'AD','Andorra','en'),(7,'AO','Angola','en'),(8,'AI','Anguilla','en'),(9,'AQ','Antarctica','en'),(10,'AG','Antigua and Barbuda','en'),(11,'AR','Argentina','en'),(12,'AM','Armenia','en'),(13,'AW','Aruba','en'),(14,'AU','Australia','en'),(15,'AT','Austria','en'),(16,'AZ','Azerbaijan','en'),(17,'BS','Bahamas','en'),(18,'BH','Bahrain','en'),(19,'BD','Bangladesh','en'),(20,'BB','Barbados','en'),(21,'BY','Belarus','en'),(22,'BE','Belgium','en'),(23,'BZ','Belize','en'),(24,'BJ','Benin','en'),(25,'BM','Bermuda','en'),(26,'BT','Bhutan','en'),(27,'BO','Bolivia, Plurinational State of','en'),(28,'BQ','Bonaire, Sint Eustatius and Saba','en'),(29,'BA','Bosnia and Herzegowina','en'),(30,'BW','Botswana','en'),(31,'BV','Bouvet Island','en'),(32,'BR','Brazil','en'),(33,'IO','British Indian Ocean Territory','en'),(34,'BN','Brunei Darussalam','en'),(35,'BG','Bulgaria','en'),(36,'BF','Burkina Faso','en'),(37,'BI','Burundi','en'),(38,'KH','Cambodia','en'),(39,'CM','Cameroon','en'),(40,'CA','Canada','en'),(41,'CV','Cape Verde','en'),(42,'KY','Cayman Islands','en'),(43,'CF','Central African Republic','en'),(44,'TD','Chad','en'),(45,'CL','Chile','en'),(46,'CN','China','en'),(47,'CX','Christmas Island','en'),(48,'CC','Cocos (Keeling) Islands','en'),(49,'CO','Colombia','en'),(50,'KM','Comoros','en'),(51,'CG','Congo','en'),(52,'CD','Congo, the Democratic Republic of the','en'),(53,'CK','Cook Islands','en'),(54,'CR','Costa Rica','en'),(55,'CI','Côte d\'Ivoire','en'),(56,'HR','Croatia','en'),(57,'CU','Cuba','en'),(58,'CW','Curaçao','en'),(59,'CY','Cyprus','en'),(60,'CZ','Czech Republic','en'),(61,'DK','Denmark','en'),(62,'DJ','Djibouti','en'),(63,'DM','Dominica','en'),(64,'DO','Dominican Republic','en'),(65,'EC','Ecuador','en'),(66,'EG','Egypt','en'),(67,'SV','El Salvador','en'),(68,'GQ','Equatorial Guinea','en'),(69,'ER','Eritrea','en'),(70,'EE','Estonia','en'),(71,'ET','Ethiopia','en'),(72,'FK','Falkland Islands (Malvinas)','en'),(73,'FO','Faroe Islands','en'),(74,'FJ','Fiji','en'),(75,'FI','Finland','en'),(76,'FR','France','en'),(77,'GF','French Guiana','en'),(78,'PF','French Polynesia','en'),(79,'TF','French Southern Territories','en'),(80,'GA','Gabon','en'),(81,'GM','Gambia','en'),(82,'GE','Georgia','en'),(83,'DE','Germany','en'),(84,'GH','Ghana','en'),(85,'GI','Gibraltar','en'),(86,'GR','Greece','en'),(87,'GL','Greenland','en'),(88,'GD','Grenada','en'),(89,'GP','Guadeloupe','en'),(90,'GU','Guam','en'),(91,'GT','Guatemala','en'),(92,'GG','Guernsey','en'),(93,'GN','Guinea','en'),(94,'GW','Guinea-Bissau','en'),(95,'GY','Guyana','en'),(96,'HT','Haiti','en'),(97,'HM','Heard and McDonald Islands','en'),(98,'VA','Holy See (Vatican City State)','en'),(99,'HN','Honduras','en'),(100,'HK','Hong Kong','en'),(101,'HU','Hungary','en'),(102,'IS','Iceland','en'),(103,'IN','India','en'),(104,'ID','Indonesia','en'),(105,'IR','Iran, Islamic Republic of','en'),(106,'IQ','Iraq','en'),(107,'IE','Ireland','en'),(108,'IM','Isle of Man','en'),(109,'IL','Israel','en'),(110,'IT','Italy','en'),(111,'JM','Jamaica','en'),(112,'JP','Japan','en'),(113,'JE','Jersey','en'),(114,'JO','Jordan','en'),(115,'KZ','Kazakhstan','en'),(116,'KE','Kenya','en'),(117,'KI','Kiribati','en'),(118,'KP','Korea, Democratic People\'s Republic of','en'),(119,'KR','Korea, Republic of','en'),(120,'KW','Kuwait','en'),(121,'KG','Kyrgyzstan','en'),(122,'LA','Lao People\'s Democratic Republic','en'),(123,'LV','Latvia','en'),(124,'LB','Lebanon','en'),(125,'LS','Lesotho','en'),(126,'LR','Liberia','en'),(127,'LY','Libya','en'),(128,'LI','Liechtenstein','en'),(129,'LT','Lithuania','en'),(130,'LU','Luxembourg','en'),(131,'MO','Macao','en'),(132,'MK','Macedonia','en'),(133,'MG','Madagascar','en'),(134,'MW','Malawi','en'),(135,'MY','Malaysia','en'),(136,'MV','Maldives','en'),(137,'ML','Mali','en'),(138,'MT','Malta','en'),(139,'MH','Marshall Islands','en'),(140,'MQ','Martinique','en'),(141,'MR','Mauritania','en'),(142,'MU','Mauritius','en'),(143,'YT','Mayotte','en'),(144,'MX','Mexico','en'),(145,'FM','Micronesia, Federated States of','en'),(146,'MD','Moldova, Republic of','en'),(147,'MC','Monaco','en'),(148,'MN','Mongolia','en'),(149,'ME','Montenegro','en'),(150,'MS','Montserrat','en'),(151,'MA','Morocco','en'),(152,'MZ','Mozambique','en'),(153,'MM','Myanmar','en'),(154,'NA','Namibia','en'),(155,'NR','Nauru','en'),(156,'NP','Nepal','en'),(157,'NL','Netherlands','en'),(158,'NC','New Caledonia','en'),(159,'NZ','New Zealand','en'),(160,'NI','Nicaragua','en'),(161,'NE','Niger','en'),(162,'NG','Nigeria','en'),(163,'NU','Niue','en'),(164,'NF','Norfolk Island','en'),(165,'MP','Northern Mariana Islands','en'),(166,'NO','Norway','en'),(167,'OM','Oman','en'),(168,'PK','Pakistan','en'),(169,'PW','Palau','en'),(170,'PS','Palestinian Territory, Occupied','en'),(171,'PA','Panama','en'),(172,'PG','Papua New Guinea','en'),(173,'PY','Paraguay','en'),(174,'PE','Peru','en'),(175,'PH','Philippines','en'),(176,'PN','Pitcairn','en'),(177,'PL','Poland','en'),(178,'PT','Portugal','en'),(179,'PR','Puerto Rico','en'),(180,'QA','Qatar','en'),(181,'RE','Réunion','en'),(182,'RO','Romania','en'),(183,'RU','Russian Federation','en'),(184,'RW','Rwanda','en'),(185,'BL','Saint Barthélemy','en'),(186,'SH','Saint Helena, Ascension and Tristan da Cunha','en'),(187,'KN','Saint Kitts and Nevis','en'),(188,'LC','Saint Lucia','en'),(189,'MF','Saint Martin','en'),(190,'PM','Saint Pierre and Miquelon','en'),(191,'VC','Saint Vincent and the Grenadines','en'),(192,'WS','Samoa','en'),(193,'SM','San Marino','en'),(194,'ST','Sao Tome and Principe','en'),(195,'SA','Saudi Arabia','en'),(196,'SN','Senegal','en'),(197,'RS','Serbia','en'),(198,'SC','Seychelles','en'),(199,'SL','Sierra Leone','en'),(200,'SG','Singapore','en'),(201,'SX','Sint Maarten','en'),(202,'SK','Slovakia','en'),(203,'SI','Slovenia','en'),(204,'SB','Solomon Islands','en'),(205,'SO','Somalia','en'),(206,'ZA','South Africa','en'),(207,'GS','South Georgia and the South Sandwich Islands','en'),(208,'SS','South Sudan','en'),(209,'ES','Spain','en'),(210,'LK','Sri Lanka','en'),(211,'SD','Sudan','en'),(212,'SR','Suriname','en'),(213,'SJ','Svalbard and Jan Mayen','en'),(214,'SZ','Swaziland','en'),(215,'SE','Sweden','en'),(216,'CH','Switzerland','en'),(217,'SY','Syrian Arab Republic','en'),(218,'TW','Taiwan, Province of China','en'),(219,'TJ','Tajikistan','en'),(220,'TZ','Tanzania, United Republic of','en'),(221,'TH','Thailand','en'),(222,'TL','Timor-Leste','en'),(223,'TG','Togo','en'),(224,'TK','Tokelau','en'),(225,'TO','Tonga','en'),(226,'TT','Trinidad and Tobago','en'),(227,'TN','Tunisia','en'),(228,'TR','Turkey','en'),(229,'TM','Turkmenistan','en'),(230,'TC','Turks and Caicos Islands','en'),(231,'TV','Tuvalu','en'),(232,'UG','Uganda','en'),(233,'UA','Ukraine','en'),(234,'AE','United Arab Emirates','en'),(235,'GB','United Kingdom','en'),(236,'US','United States','en'),(237,'UM','United States Minor Outlying Islands','en'),(238,'UY','Uruguay','en'),(239,'UZ','Uzbekistan','en'),(240,'VU','Vanuatu','en'),(241,'VE','Venezuela, Bolivarian Republic of','en'),(242,'VN','Viet Nam','en'),(243,'VG','Virgin Islands, British','en'),(244,'VI','Virgin Islands, U.S.','en'),(245,'WF','Wallis And Futuna Islands','en'),(246,'EH','Western Sahara','en'),(247,'YE','Yemen','en'),(248,'ZM','Zambia','en'),(249,'ZW','Zimbabwe','en');
CREATE TABLE `xlite_coupon_categories` (
`coupon_id` int(10) unsigned NOT NULL,
`category_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`coupon_id`,`category_id`),
KEY `IDX_2EB1BB6066C5951B` (`coupon_id`),
KEY `IDX_2EB1BB6012469DE2` (`category_id`),
CONSTRAINT `FK_2EB1BB6012469DE2` FOREIGN KEY (`category_id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE CASCADE,
CONSTRAINT `FK_2EB1BB6066C5951B` FOREIGN KEY (`coupon_id`) REFERENCES `xlite_coupons` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_coupons` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`code` char(16) COLLATE utf8_unicode_ci NOT NULL,
`enabled` tinyint(1) NOT NULL,
`value` decimal(14,4) NOT NULL,
`type` char(1) COLLATE utf8_unicode_ci NOT NULL,
`comment` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`uses` int(10) unsigned NOT NULL,
`dateRangeBegin` int(10) unsigned NOT NULL,
`dateRangeEnd` int(10) unsigned NOT NULL,
`totalRangeBegin` decimal(14,4) NOT NULL,
`totalRangeEnd` decimal(14,4) NOT NULL,
`usesLimit` int(10) unsigned NOT NULL,
`usesLimitPerUser` int(10) unsigned NOT NULL,
`singleUse` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `ce` (`code`,`enabled`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_currencies` (
`currency_id` int(10) unsigned NOT NULL,
`code` char(3) COLLATE utf8_unicode_ci NOT NULL,
`symbol` varchar(16) COLLATE utf8_unicode_ci NOT NULL,
`prefix` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`suffix` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`e` smallint(6) NOT NULL,
`decimalDelimiter` varchar(8) COLLATE utf8_unicode_ci NOT NULL,
`thousandDelimiter` varchar(8) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`currency_id`),
UNIQUE KEY `UNIQ_903AF16077153098` (`code`),
KEY `code` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_currencies` VALUES (8,'ALL','L','L','',2,'.',''),(12,'DZD','د.ج','د.ج','',2,'.',''),(32,'ARS','$','$','',2,'.',''),(36,'AUD','$','$','',2,'.',''),(44,'BSD','$','$','',2,'.',''),(48,'BHD','.د.ب','.د.ب','',3,'.',''),(50,'BDT','৳','৳','',2,'.',''),(51,'AMD','դր.','դր.','',2,'.',''),(52,'BBD','$','$','',2,'.',''),(60,'BMD','$','$','',2,'.',''),(64,'BTN','Nu','Nu','',2,'.',''),(68,'BOB','$','$','',2,'.',''),(72,'BWP','P','P','',2,'.',''),(84,'BZD','$','$','',2,'.',''),(90,'SBD','$','$','',2,'.',''),(96,'BND','$','$','',2,'.',''),(104,'MMK','K','K','',2,'.',''),(108,'BIF','₣','₣','',0,'.',''),(116,'KHR','$','$','',2,'.',''),(124,'CAD','$','$','',2,'.',''),(132,'CVE','$','$','',2,'.',''),(136,'KYD','$','$','',2,'.',''),(144,'LKR','Re','Re','',2,'.',''),(152,'CLP','$','$','',0,'.',''),(156,'CNY','¥','¥','',2,'.',''),(170,'COP','$','$','',2,'.',''),(174,'KMF','₣','₣','',0,'.',''),(188,'CRC','₡','₡','',2,'.',''),(191,'HRK','Kn','Kn','',2,'.',''),(192,'CUP','$','$','',2,'.',''),(203,'CZK','Kč','Kč','',2,'.',''),(208,'DKK','kr','kr','',2,'.',''),(214,'DOP','$','$','',2,'.',''),(222,'SVC','₡','₡','',2,'.',''),(230,'ETB','Br','Br','',2,'.',''),(232,'ERN','Nfk','Nfk','',2,'.',''),(238,'FKP','£','£','',2,'.',''),(242,'FJD','$','$','',2,'.',''),(262,'DJF','₣','₣','',0,'.',''),(270,'GMD','D','D','',2,'.',''),(292,'GIP','£','£','',2,'.',''),(320,'GTQ','Q','Q','',2,'.',''),(324,'GNF','₣','₣','',0,'.',''),(328,'GYD','$','$','',2,'.',''),(332,'HTG','G','G','',2,'.',''),(340,'HNL','L','L','',2,'.',''),(344,'HKD','$','$','',2,'.',''),(348,'HUF','ƒ','ƒ','',2,'.',''),(352,'ISK','kr','kr','',0,'.',''),(356,'INR','₹','₹','',2,'.',''),(360,'IDR','Rp','Rp','',0,'.',''),(364,'IRR','﷼','﷼','',2,'.',''),(368,'IQD','ع.د','ع.د','',3,'.',''),(376,'ILS','₪','₪','',2,'.',''),(388,'JMD','$','$','',2,'.',''),(392,'JPY','¥','¥','',0,'.',''),(398,'KZT','₸','₸','',2,'.',''),(400,'JOD','د.ا','د.ا','',3,'.',''),(404,'KES','KSh','KSh','',2,'.',''),(408,'KPW','₩','₩','',2,'.',''),(410,'KRW','₩','₩','',0,'.',''),(414,'KWD','د.ك','د.ك','',3,'.',''),(417,'KGS','C','C','',2,'.',''),(418,'LAK','₭','₭','',2,'.',''),(422,'LBP','.ل.ل','.ل.ل','',2,'.',''),(426,'LSL','L','L','',2,'.',''),(428,'LVL','Ls','Ls','',2,'.',''),(430,'LRD','$','$','',2,'.',''),(434,'LYD','ل.د','ل.د','',3,'.',''),(440,'LTL','Lt','Lt','',2,'.',''),(446,'MOP','$','$','',2,'.',''),(454,'MWK','K','K','',2,'.',''),(458,'MYR','RM','RM','',2,'.',''),(462,'MVR','Rf','Rf','',2,'.',''),(478,'MRO','UM','UM','',0,'.',''),(480,'MUR','Re','Re','',2,'.',''),(484,'MXN','$','$','',2,'.',''),(496,'MNT','₮','₮','',2,'.',''),(498,'MDL','L','L','',2,'.',''),(504,'MAD','د. م.','د. م.','',2,'.',''),(512,'OMR','ر.ع.','ر.ع.','',3,'.',''),(516,'NAD','N$','N$','',2,'.',''),(524,'NPR','Re','Re','',2,'.',''),(532,'ANG','ƒ','ƒ','',2,'.',''),(533,'AWG','ƒ','ƒ','',2,'.',''),(548,'VUV','Vt','Vt','',0,'.',''),(554,'NZD','$','$','',2,'.',''),(558,'NIO','$','$','',2,'.',''),(566,'NGN','₦','₦','',2,'.',''),(578,'NOK','kr','kr','',2,'.',''),(586,'PKR','Re','Re','',2,'.',''),(590,'PAB','B/.','B/.','',2,'.',''),(598,'PGK','K','K','',2,'.',''),(600,'PYG','₲','₲','',0,'.',''),(604,'PEN','S/.','S/.','',2,'.',''),(608,'PHP','₱','₱','',2,'.',''),(634,'QAR','ر.ق','ر.ق','',2,'.',''),(643,'RUB','р.','','р.',2,'.',''),(646,'RWF','₣','₣','',0,'.',''),(654,'SHP','£','£','',2,'.',''),(678,'STD','Db','Db','',2,'.',''),(682,'SAR','ر.س','ر.س','',2,'.',''),(690,'SCR','Re','Re','',2,'.',''),(694,'SLL','Le','Le','',2,'.',''),(702,'SGD','$','$','',2,'.',''),(704,'VND','₫','₫','',0,'.',''),(706,'SOS','S','S','',2,'.',''),(710,'ZAR','R','R','',2,'.',''),(728,'SSP','SSP','SSP','',2,'.',''),(748,'SZL','L','L','',2,'.',''),(752,'SEK','kr','kr','',2,'.',''),(756,'CHF','₣','₣','',2,'.',''),(760,'SYP','S£','S£','',2,'.',''),(764,'THB','฿','฿','',2,'.',''),(776,'TOP','$','$','',2,'.',''),(780,'TTD','$','$','',2,'.',''),(784,'AED','د.إ','د.إ','',2,'.',''),(788,'TND','د.ت','د.ت','',3,'.',''),(800,'UGX','USh','USh','',2,'.',''),(807,'MKD','ден.','ден.','',2,'.',''),(818,'EGP','LE','LE','',2,'.',''),(826,'GBP','£','£','',2,'.',''),(834,'TZS','TSh','TSh','',2,'.',''),(840,'USD','$','$','',2,'.',''),(858,'UYU','$','$','',2,'.',''),(860,'UZS','сўм','сўм','',2,'.',''),(882,'WST','$','$','',2,'.',''),(886,'YER','﷼','﷼','',2,'.',''),(894,'ZMK','K','K','',2,'.',''),(901,'TWD','NT$','NT$','',2,'.',''),(932,'ZWL','Z$','Z$','',2,'.',''),(934,'TMT','m','m','',2,'.',''),(936,'GHS','₵','₵','',2,'.',''),(937,'VEF','Bs','Bs','',2,'.',''),(938,'SDG','£','£','',2,'.',''),(941,'RSD','дин.','дин.','',2,'.',''),(943,'MZN','MT','MT','',2,'.',''),(944,'AZN','m','m','',2,'.',''),(946,'RON','L','L','',2,'.',''),(949,'TRY','₤','₤','',2,'.',''),(950,'XAF','₣','₣','',0,'.',''),(951,'XCD','$','$','',2,'.',''),(952,'XOF','₣','₣','',0,'.',''),(953,'XPF','₣','₣','',0,'.',''),(968,'SRD','$','$','',2,'.',''),(969,'MGA','Ar.','Ar.','',0,'.',''),(971,'AFN','؋','؋','',2,'.',''),(972,'TJS','с.','с.','',2,'.',''),(973,'AOA','Kz','Kz','',2,'.',''),(974,'BYR','Br','','Br',0,'.',''),(975,'BGN','лв','лв','',2,'.',''),(976,'CDF','₣','₣','',2,'.',''),(977,'BAM','KM','KM','',2,'.',''),(978,'EUR','€','€','',2,'.',''),(980,'UAH','₴','₴','',2,'.',''),(981,'GEL','ლ.','ლ.','',2,'.',''),(985,'PLN','zł','zł','',2,'.',''),(986,'BRL','$','$','',2,'.','');
CREATE TABLE `xlite_currency_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_E560C647BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_currencies` (`currency_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_currency_translations` VALUES (1,784,'UAE Dirtham','en'),(2,971,'Afghani','en'),(3,8,'Lek','en'),(4,51,'Armenian Dram','en'),(5,532,'Netherlands Antillian Guilder','en'),(6,973,'Kwanza','en'),(7,32,'Argentine Peso','en'),(8,36,'Australian Dollar','en'),(9,533,'Aruban Guilder','en'),(10,944,'Azerbaijanian Manat','en'),(11,977,'Convertible Marks','en'),(12,52,'Barbados Dollar','en'),(13,50,'Bangladesh Taka','en'),(14,975,'Bulgarian Lev','en'),(15,48,'Bahraini dinar','en'),(16,108,'Burundi Franc','en'),(17,60,'Bermudian Dollar','en'),(18,96,'Brunei Dollar','en'),(19,68,'Boliviano','en'),(20,986,'Brazilian Real','en'),(21,44,'Bahamian dollar','en'),(22,64,'Ngultrum','en'),(23,72,'Botswana Pula','en'),(24,974,'Belarussian Rouble','en'),(25,84,'Belize Dollar','en'),(26,124,'Canadian Dollar','en'),(27,976,'Franc Congolais','en'),(28,756,'Swiss Franc','en'),(29,152,'Chilean Peso','en'),(30,156,'Chinese Renminbi Yuan','en'),(31,170,'Colombian Peso','en'),(32,188,'Cost Rican Colon','en'),(33,192,'Cuban Peso','en'),(34,132,'Cape Verde Escudo','en'),(35,203,'Czech Koruna','en'),(36,262,'Djibouti Franc','en'),(37,208,'Danish Krone','en'),(38,214,'Dominican Peso','en'),(39,12,'Algerian Dinar','en'),(40,818,'Egyptian Pound','en'),(41,232,'Nakfa','en'),(42,230,'Ethiopian Birr','en'),(43,978,'Euro','en'),(44,242,'Fiji Dollar','en'),(45,238,'Falkland Islands Pound','en'),(46,826,'Pound Sterling','en'),(47,981,'Lari','en'),(48,936,'Ghana Cedi','en'),(49,292,'Gilbraltar Pound','en'),(50,270,'Dalasi','en'),(51,324,'Guinea Franc','en'),(52,320,'Quetzal','en'),(53,328,'Guyana Dollar','en'),(54,344,'Hong Kong Dollar','en'),(55,340,'Lempira','en'),(56,191,'Croatian Kuna','en'),(57,332,'Gourde','en'),(58,348,'Hungary Forint','en'),(59,360,'Indonesian Rupiah','en'),(60,376,'New Israeli Sheqel','en'),(61,356,'Indian Rupee','en'),(62,368,'Iraqi Dinar','en'),(63,364,'Iranian Rial','en'),(64,352,'Iceland Krona','en'),(65,388,'Jamaican Dollar','en'),(66,400,'Jordanian Dinar','en'),(67,392,'Japanese Yen','en'),(68,404,'Kenyan Shilling','en'),(69,417,'Son','en'),(70,116,'Cambodian riel','en'),(71,174,'Comoro Franc','en'),(72,408,'North Korean Won','en'),(73,410,'South Korean Won','en'),(74,414,'Kuwaiti Dinar','en'),(75,136,'Cayman Islands Dollar','en'),(76,398,'Tenge','en'),(77,418,'Kip','en'),(78,422,'Lebanese Pound','en'),(79,144,'Sri Lanka Rupee','en'),(80,430,'Liberian Dollar','en'),(81,426,'Loti','en'),(82,440,'Lithuanian Litus','en'),(83,428,'Latvian Lats','en'),(84,434,'Libyan Dinar','en'),(85,504,'Moroccan Dirtham','en'),(86,498,'Moldovan Leu','en'),(87,969,'Malagasy Ariary','en'),(88,807,'Denar','en'),(89,104,'Kyat','en'),(90,496,'Tugrik','en'),(91,446,'Pataca','en'),(92,478,'Ouguiya','en'),(93,480,'Mauritius Rupee','en'),(94,462,'Rufiyaa','en'),(95,454,'Malawian kwacha','en'),(96,484,'Mexican Peso','en'),(97,458,'Ringgit Malaysia','en'),(98,943,'Mozambique Metical','en'),(99,516,'Namibia Dollar','en'),(100,566,'Naira','en'),(101,558,'Cordoba Oro','en'),(102,578,'Norwegian Krone','en'),(103,524,'Nepalese Rupee','en'),(104,554,'New Zealand Dollar','en'),(105,512,'Rial Omani','en'),(106,590,'Balboa','en'),(107,604,'Nuevo Sol','en'),(108,598,'Kina','en'),(109,608,'Philippine Peso','en'),(110,586,'Pakistan Rupee','en'),(111,985,'Polish Zloty','en'),(112,600,'Guarani','en'),(113,634,'Qatari Rial','en'),(114,946,'Romanian Leu','en'),(115,941,'Serbian Dinar','en'),(116,643,'Russian Ruble','en'),(117,646,'Rwanda Franc','en'),(118,682,'Saudi Riyal','en'),(119,90,'Solomon Islands Dollar','en'),(120,690,'Seychelles Rupee','en'),(121,938,'Sudanese Pound','en'),(122,752,'Swedish Krona','en'),(123,702,'Singapore Dollar','en'),(124,654,'Saint Helena Pound','en'),(125,694,'Leone','en'),(126,706,'Somali Shilling','en'),(127,968,'Surinam Dollar','en'),(128,728,'South Sudanese Pound','en'),(129,678,'Dobra','en'),(130,222,'El Salvador Colon','en'),(131,760,'Syrian Pound','en'),(132,748,'Lilangeni','en'),(133,764,'Thailand Baht','en'),(134,972,'Somoni','en'),(135,934,'Turkmenistan New Manat','en'),(136,788,'Tunisian Dinar','en'),(137,776,'Pa\'anga','en'),(138,949,'Turkish Lira','en'),(139,780,'Trinidad and Tobago Dollar','en'),(140,901,'New Taiwan Dollar','en'),(141,834,'Tanzanian Shilling','en'),(142,980,'Hryvnia','en'),(143,800,'Uganda Shilling','en'),(144,840,'US Dollar','en'),(145,858,'Peso Uruguayo','en'),(146,860,'Uzbekistan som','en'),(147,937,'Bolivar Fuerte','en'),(148,704,'Vietnamese Dong','en'),(149,548,'Vatu','en'),(150,882,'Tala','en'),(151,950,'CFA Franc BEAC','en'),(152,951,'East Caribbean Dollar','en'),(153,952,'CFA Franc BCEAO','en'),(154,953,'CFP Franc','en'),(155,886,'Yemeni Rial','en'),(156,710,'South Africa Rand','en'),(157,894,'Zambian kwacha','en'),(158,932,'Zimbabwe Dollar','en');
CREATE TABLE `xlite_data_source_parameters` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`data_source_id` int(10) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`value` longtext COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_6D9196CA1A935C57` (`data_source_id`),
CONSTRAINT `FK_6D9196CA1A935C57` FOREIGN KEY (`data_source_id`) REFERENCES `xlite_data_sources` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_data_sources` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_entity_type_versions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`entityType` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`version` char(36) COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:guid)',
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_4A1BBA741F08814A` (`entityType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_entity_type_versions` VALUES (1,'XLite\\Model\\Config','10c1aa09-92e3-4181-a171-8b1b2e99b906'),(2,'XLite\\Model\\ConfigTranslation','12e2f837-9034-4a45-a7b9-79c9662748c5'),(3,'XLite\\Model\\Category','28e4a105-74db-48b5-8307-396891cf777b'),(4,'XLite\\Model\\CategoryTranslation','ed8c535f-2b06-4b26-b598-ec74eb8038a6'),(5,'XLite\\Model\\Category\\QuickFlags','4a4e253f-a391-4436-8bf9-567e022728ae'),(6,'XLite\\Model\\Currency','2209c4e3-bb2f-4214-bc3f-10dc8ba65782'),(7,'XLite\\Model\\CurrencyTranslation','b805e833-b8ec-4c78-9ba5-2ad54c9b2af5'),(8,'XLite\\Model\\Membership','f824b51a-df38-4268-b06e-c5cb8c01f165'),(9,'XLite\\Model\\MembershipTranslation','23404f25-8f1f-4480-b6b7-1589ea1e2ad9'),(10,'XLite\\Model\\Language','bbdbb3a4-b12d-4531-be9f-2e3eb3e85eea'),(11,'XLite\\Model\\LanguageTranslation','17c92507-06b8-496f-b2a0-d8b89471c9d3'),(12,'XLite\\Model\\Payment\\Method','cf6c4321-1b0b-45be-b224-a33cee482803'),(13,'XLite\\Model\\Payment\\MethodTranslation','dd202409-3779-4b20-9c60-bef1ef4e739d'),(14,'XLite\\Model\\Region','a738d195-866b-4a55-a242-28e81d32b659'),(15,'XLite\\Model\\Country','2739ad25-5829-4df1-a055-17804b4c76ff'),(16,'XLite\\Model\\CountryTranslation','3bc1b394-4315-4634-afcd-255e79e50304'),(17,'XLite\\Model\\State','5a80eeeb-af3e-4b70-9665-d447555118fb'),(18,'XLite\\Model\\Order\\Modifier','5d6db996-387c-44a0-849a-ebb260cceae8'),(19,'XLite\\Model\\Zone','68e072d3-b12e-4a0e-8126-3f21f9792ade'),(20,'XLite\\Model\\Task','2718b5c1-02b0-4c84-8324-90aa65a152a6'),(21,'XLite\\Model\\Role','1b97864d-53cf-4acb-a8c1-8f61f6d3047d'),(22,'XLite\\Model\\RoleTranslation','1726fb4e-ef2f-487d-b482-7cc0bc823203'),(23,'XLite\\Model\\Role\\Permission','5bb39a26-681c-471e-99c3-b7178e9bbb8f'),(24,'XLite\\Model\\Role\\PermissionTranslation','18fe9633-0589-45c6-8011-b5fbb923a892'),(25,'XLite\\Model\\AddressField','2a0017f5-ba6c-446a-8e35-c47dd1592118'),(26,'XLite\\Model\\AddressFieldTranslation','c626d8c5-13b6-462e-807f-6f34437ac1eb'),(27,'XLite\\Model\\MoneyModificator','e444f6cf-397d-4d07-9a8e-75d0a7fe82fd'),(28,'XLite\\Model\\Order\\Status\\Payment','339ecdb1-fa4d-4b42-9475-fc6c84aae63a'),(29,'XLite\\Model\\Order\\Status\\PaymentTranslation','533b79ee-08d1-4ce6-8836-30fa216a304d'),(30,'XLite\\Model\\Order\\Status\\Shipping','a70f8e22-c90d-4730-8c5c-8eae22c54a7c'),(31,'XLite\\Model\\Order\\Status\\ShippingTranslation','c0a74f59-19b6-4eb1-8116-30cb70a5b376'),(32,'XLite\\Model\\Order\\Status\\Property','64f48bdb-4b2a-4fde-947e-a969ddee919f'),(33,'XLite\\Model\\Notification','f430b877-e792-4c04-a00b-b745384a0ddb'),(34,'XLite\\Model\\NotificationTranslation','965a426e-30d1-4016-abba-ad8d0b18d45f'),(35,'XLite\\Model\\ImageSettings','eba6dfdb-b7e2-4170-8a3b-3b2268ad1ea8'),(36,'XLite\\Model\\SearchFilter','7993706d-e7cf-467d-9191-998e0b775809'),(37,'XLite\\Model\\SearchFilterTranslation','67f5a0ec-ef24-433b-b367-8b2da2b4c6f1'),(38,'XLite\\Model\\AccessControlEntityType','4e82db0f-73d1-4be9-af0a-333acfeb2db4'),(39,'XLite\\Model\\AccessControlZoneType','c99de951-51c8-4de9-a18b-1779d3f2441d'),(40,'XLite\\Model\\LanguageLabel','b6f3ca9b-4d8d-4ff5-a765-b0f17f3e5edf'),(41,'XLite\\Model\\LanguageLabelTranslation','cdb6a609-9e46-47d3-b900-cb30e70cc397'),(42,'XLite\\Model\\Shipping\\Method','46aac372-57c1-41c6-9d5b-774c62e8bec5'),(43,'XLite\\Model\\Shipping\\MethodTranslation','cb416e8c-943b-46e0-9f72-b9b17131d188'),(44,'XLite\\Model\\Payment\\MethodSetting','0c16f003-4253-4f37-9915-32367ac50782'),(45,'XLite\\Module\\CDev\\SimpleCMS\\Model\\Page','de993291-b56b-4672-9e4f-0781b719cd6b'),(46,'XLite\\Model\\CleanURL','69ee4a5b-9f34-445a-a1fc-f283ecf4aae5'),(47,'XLite\\Module\\CDev\\SimpleCMS\\Model\\PageTranslation','fd08b606-701f-4533-9768-935a6009821a'),(48,'XLite\\Module\\CDev\\SimpleCMS\\Model\\Menu','16d9f8e9-ca9f-4f05-8ae7-a1da42fd19d4'),(49,'XLite\\Module\\CDev\\SimpleCMS\\Model\\MenuTranslation','dfa8e46d-1e38-489f-bd88-8015e21e8ecc'),(50,'XLite\\Module\\CDev\\SimpleCMS\\Model\\Menu\\QuickFlags','7a264685-609c-4ea7-97d8-fd985d511b27'),(51,'XLite\\Model\\Shipping\\Markup','0fa7aa9a-8d84-4b9a-a785-e8a7531ea7ec'),(52,'XLite\\Model\\Product','ec843b54-41c6-4850-9e1d-21b23f74eed7'),(53,'XLite\\Model\\QuickData','ecb8b505-592e-4a1e-913f-ff58e8743432'),(54,'XLite\\Model\\Image\\Product\\Image','f6df3aac-b826-41c8-a829-df5fc006795d'),(55,'XLite\\Model\\ProductTranslation','c8105df1-a549-4b27-aac9-a5b8f831d17d'),(56,'XLite\\Model\\Image\\Category\\Image','d90a2870-26c1-4a5e-8830-2e28c9fe7aa0'),(57,'XLite\\Model\\Image\\Category\\Banner','b61dc613-9d89-4b49-b0d5-db7f6ec0c0b5'),(58,'XLite\\Model\\CategoryProducts','57f68cf9-b881-4d6c-b0be-7ec8bf37e3b7'),(59,'XLite\\Model\\ZoneElement','eb47e57d-c695-4190-8bfa-250a847d59fe'),(60,'XLite\\Model\\BannerRotationSlide','5b0ec45c-f15c-4145-943e-4e324b0b3ac8'),(61,'XLite\\Model\\Image\\BannerRotationImage','953a3a15-1d35-4fec-a11c-9828e5e27e00'),(62,'XLite\\Module\\CDev\\FeaturedProducts\\Model\\FeaturedProduct','af11bdc8-9606-4c8c-98f4-3552459cbc5d'),(63,'XLite\\Model\\Profile','07083688-68a9-4261-b344-1c054ec02818'),(64,'XLite\\Model\\Address','44bee31c-32f6-493f-8bd0-97275dbc7305'),(65,'XLite\\Model\\AddressFieldValue','479cc6f6-be8a-4dcb-9b18-6376c35efa6a'),(66,'XLite\\Model\\Order','be60d928-28dc-41bc-aaeb-0409df639c82'),(67,'XLite\\Model\\Payment\\Transaction','c2d38eb7-902e-4d34-9481-6d200439c777'),(68,'XLite\\Model\\OrderItem','b46fc90d-7b78-4f7b-b335-851d99903df2'),(69,'XLite\\Model\\Order\\Surcharge','a7a7767e-9c96-485a-81a3-c1ef7961bfe0'),(70,'XLite\\Model\\OrderHistoryEvents','7dbb6b93-948c-4aa6-a6ba-01518c4eaa66'),(71,'XLite\\Model\\Payment\\TransactionData','42971720-8dd6-4cfe-a31b-5bdbf984f4c7'),(72,'XLite\\Model\\ViewList','f7578a21-2651-484a-8789-fea74f112e51'),(73,'XLite\\Model\\TmpVar','75797682-f91b-47da-aa77-73fa6aa7f173'),(74,'XLite\\Model\\Module','76ac73fc-fcd7-44ae-846a-babbe6f40323');
CREATE TABLE `xlite_event_tasks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`arguments` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_featured_products` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(10) unsigned DEFAULT NULL,
`category_id` int(10) unsigned DEFAULT NULL,
`orderBy` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `pair` (`category_id`,`product_id`),
KEY `IDX_CE976A6E4584665A` (`product_id`),
KEY `IDX_CE976A6E12469DE2` (`category_id`),
CONSTRAINT `FK_CE976A6E12469DE2` FOREIGN KEY (`category_id`) REFERENCES `xlite_categories` (`category_id`) ON DELETE CASCADE,
CONSTRAINT `FK_CE976A6E4584665A` FOREIGN KEY (`product_id`) REFERENCES `xlite_products` (`product_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_featured_products` VALUES (1,4,1,10),(2,14,1,20),(3,30,1,30),(4,16,1,40),(5,24,1,50),(6,37,1,60),(7,10,1,70),(8,1,1,80);
CREATE TABLE `xlite_form_ids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`session_id` int(11) DEFAULT NULL,
`form_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`date` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `fs` (`form_id`,`session_id`),
KEY `session_id` (`session_id`),
CONSTRAINT `FK_AD266A12613FECDF` FOREIGN KEY (`session_id`) REFERENCES `xlite_sessions` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_iframe_contents` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`method` varchar(16) COLLATE utf8_unicode_ci NOT NULL,
`data` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_images_settings` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`model` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`moduleName` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
`width` int(11) NOT NULL,
`height` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `code_model_module` (`code`,`model`,`moduleName`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_images_settings` VALUES (1,'Default','XLite\\Model\\Image\\Product\\Image','default',300,300),(2,'LGThumbnailList','XLite\\Model\\Image\\Product\\Image','default',160,160),(3,'LGThumbnailGrid','XLite\\Model\\Image\\Product\\Image','default',160,160),(4,'Default','XLite\\Model\\Image\\Category\\Image','default',160,160),(5,'Default','XLite\\Model\\Image\\Category\\Image','XC\\CrispWhiteSkin',100,120),(6,'LGThumbnailGrid','XLite\\Model\\Image\\Product\\Image','XC\\CrispWhiteSkin',262,280),(7,'LGThumbnailList','XLite\\Model\\Image\\Product\\Image','XC\\CrispWhiteSkin',262,280),(8,'Default','XLite\\Model\\Image\\Product\\Image','XC\\CrispWhiteSkin',366,440);
CREATE TABLE `xlite_import_logs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` int(11) NOT NULL,
`type` char(1) COLLATE utf8_unicode_ci NOT NULL,
`code` char(32) COLLATE utf8_unicode_ci NOT NULL,
`arguments` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
`file` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`row` int(10) unsigned NOT NULL,
`processor` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_language_label_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(11) DEFAULT NULL,
`label` longtext COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_D36B6764BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_language_labels` (`label_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_language_label_translations` VALUES (1,1,'%','en'),(2,2,'Most popular','en'),(3,3,'Newest','en'),(4,4,'Alphabetically','en'),(5,5,'Tags','en'),(6,6,'All','en'),(7,7,'Accounting','en'),(8,8,'Administration','en'),(9,9,'Delivery','en'),(10,10,'Development','en'),(11,11,'Fulfillment','en'),(12,12,'Marketing','en'),(13,13,'Payment processing','en'),(14,14,'Statistics','en'),(15,15,'Translation','en'),(16,16,'User experience','en'),(17,17,'Website design','en'),(18,18,'Before editing attributes specific for the chosen type you should save the changes. <br /><br />Changing the type of a product attribute after having defined values for this attribute for some products will result in losing the defined attribute values.','en'),(19,19,'For details refer to <a href=\"{{licenseAgreementURL}}\" target=\"_blank\">X-Cart license agreement</a>.','en'),(20,20,'We are sorry, the Marketplace server is currently unavailable. Your license could not be registered. Please try again later.','en'),(21,21,'<a href=\"{{contactURL}}\" target=\"_blank\">Contact us</a> if you have any questions','en'),(22,22,'Activate your license key','en'),(23,23,'To activate your X-Cart license, enter your secret key into the field below and click Activate.','en'),(24,24,'To activate your X-Cart or commercial module license, enter your license key into the field below and click Activate.','en'),(25,25,'To set up Tax Rates, find and install appropriate add-on modules from the <a href=\"{{url}}\">Marketplace</a>','en'),(26,26,'Simplify tax compilance process and reduce the sales tax audit risk with <a href=\"{{url}}\">AvaTax Sales Tax Automation</a>','en'),(27,27,'Purchase premium license','en'),(28,28,'Activate free license','en'),(29,29,'activate existing key','en'),(30,30,'Enter your license key here','en'),(31,31,'Activate','en'),(32,32,'Need a license key?','en'),(33,33,'You must register your installation before you can use it for real sales. Registration can be accomplished by activating a free license with limited features or by purchasing a premium license.','en'),(34,34,'Removal of this message is allowed only through activation of a free or premium license.','en'),(35,35,'Free Edition has a limited set of features, so all the modules of the Business package will be removed in your store. However, you will be able to <a href=\'{{purchaseURL}}\'>upgrade</a> your Free version to Premium at any time and install addons from the Premium package.<br /><br /><strong>Here\'s a list of modules that are not available under free license. After the activation of a free license key all these modules will be removed from your installation.</strong>','en'),(36,36,'Evaluation notice','en'),(37,37,'Don\'t have an account yet?','en'),(38,38,'Go to checkout as a New customer','en'),(39,39,'Weight','en'),(40,40,'Weight ({{symbol}})','en'),(41,41,'Add to cart','en'),(42,42,'Description','en'),(43,43,'SKU','en'),(44,44,'Previous','en'),(45,45,'Next product','en'),(46,46,'Clear cart','en'),(47,47,'Continue shopping','en'),(48,48,'Submit','en'),(49,49,'Submit','en'),(50,50,'Delivery','en'),(51,51,'(!) This product is out of stock or not available','en'),(52,52,'Update','en'),(53,53,'Grand total','en'),(54,54,'Shipping cost','en'),(55,55,'Free','en'),(56,56,'Subtotal','en'),(57,57,'Tax','en'),(58,58,'n/a','en'),(59,59,'Delete item','en'),(60,60,'Continue...','en'),(61,61,'The text was copied to your clipboard','en'),(62,62,'When X-Cart aggregates CSS and JS files, the result is cached. If you change your JS/CSS files directly in the file system after they have been included into the cache, you will not see the functionality or style changes you have made. To make your changes visible, clear the aggregation cache.','en'),(63,63,'When X-Cart uses widgets cache, the static content of product lists is stored into a temporary cache. After editing the content (modifying the product descriptions, titles or photos), you should clear the widgets cache to make these changes visible in the front end right away. If you do not clear it, the changes will be updated anyway, but it may require more time','en'),(64,64,'The language you want to add has not been found','en'),(65,65,'This language already exists','en'),(66,66,'The {{language}} language has been added successfully','en'),(67,67,'The language you want to delete has not been found','en'),(68,68,'The {{language}} language has been deleted successfully','en'),(69,69,'Language not found','en'),(70,70,'The default interface language cannot be disabled','en'),(71,71,'The {{language}} language has been disabled','en'),(72,72,'The {{language}} language has been enabled','en'),(73,73,'The text labels have been updated','en'),(74,74,'Couldn\'t update the text labels: the translation language is not specified','en'),(75,75,'Couldn\'t update the text labels: the default language is set as the translation language','en'),(76,76,'Couldn\'t update the text labels: the translation language has not been found','en'),(77,77,'The text labels have been deleted','en'),(78,78,'Couldn\'t delete the text labels: text labels not found or not specified','en'),(79,79,'The text label has been deleted','en'),(80,80,'Couldn\'t delete the text label: text label not found or not specified','en'),(81,81,'Couldn\'t add the text label: name not specified.','en'),(82,82,'Couldn\'t add the text label: text label already exists.','en'),(83,83,'The text label has been added successfully','en'),(84,84,'The text label has been updated successfully','en'),(85,85,'The language you are trying to edit has not been found','en'),(86,86,'The language data has been saved','en'),(87,87,'The maximum upload file size is {{upload_max_filesize}}','en'),(88,88,'Search','en'),(89,89,'Next','en'),(90,90,'Custom HTML title','en'),(91,91,'Show category title','en'),(92,92,'Category icon','en'),(93,93,'Top banner','en'),(94,94,'<a href=\"http://devs.x-cart.com/en/how-to_articles/how_to_change_the_height_of_the_top_category_banner.html\">Learn more about the top banner and how it shows in the page layout</a>','en'),(95,95,'Meta tags','en'),(96,96,'Meta desc','en'),(97,97,'View image','en'),(98,98,'From computer','en'),(99,99,'Via URL','en'),(100,100,'Upload via URL','en'),(101,101,'Copy to file system','en'),(102,102,'Alt','en'),(103,103,'Copy','en'),(104,104,'Copy to clipboard','en'),(105,105,'Select file','en'),(106,106,'Undelete','en'),(107,107,'Show all labels','en'),(108,108,'{{n}} items found','en'),(109,109,'No modules found for \"<em>{{search_string}}</em>\"','en'),(110,110,'Language options','en'),(111,111,'{{language}} labels','en'),(112,112,'Select language','en'),(113,113,'No other languages defined','en'),(114,114,'Languages','en'),(115,115,'Help','en'),(116,116,'Knowledge Base','en'),(117,117,'Suggest an idea','en'),(118,118,'Report a bug','en'),(119,119,'Translations','en'),(120,120,'X-Cart News','en'),(121,121,'Our Blog','en'),(122,122,'Clear search','en'),(123,123,'New membership','en'),(124,124,'Any availability status','en'),(125,125,'Only enabled','en'),(126,126,'Only disabled','en'),(127,127,'Any class','en'),(128,128,'Default tax class','en'),(129,129,'Images','en'),(130,130,'Attributes','en'),(131,131,'Cloned products','en'),(132,132,'New category','en'),(133,133,'Subcat','en'),(134,134,'Main categories','en'),(135,135,'Add new label','en'),(136,136,'Add language','en'),(137,137,'{{n}} items total','en'),(138,138,'{{count}} item(s)','en'),(139,139,'Add new language','en'),(140,140,'Save','en'),(141,141,'Provide a translation of the text label into each of the languages used at your store. If the text label does not have a translation for a specific language, the translation of the label into the default language will be used instead. If the default language translation is also not available, the Label Name will be used.','en'),(142,142,'Purchase {{list}} license to install this add-on or','en'),(143,143,'Purchase {{list}} license to enable this add-on or','en'),(144,144,'The following modules will be disabled','en'),(145,145,'You can install these updates after <a href=\"{{URL}}\" target=\"_blank\">purchasing</a> and activating your X-Cart license key.','en'),(146,146,'Label name','en'),(147,147,'required','en'),(148,148,'Confirm deletion','en'),(149,149,'You are about to delete the {{language}} language. This operation is irreversible. Are you sure you want to continue?','en'),(150,150,'Delete','en'),(151,151,'Cancel','en'),(152,152,'{{language}} Language (Code: {{code}})','en'),(153,153,'Language name in {{language}}','en'),(154,154,'Native language name','en'),(155,155,'Disable','en'),(156,156,'Enable','en'),(157,157,'Set this language as default for the Customer area','en'),(158,158,'A disabled language cannot be set as default for the Customer area','en'),(159,159,'Delete Language','en'),(160,160,'Edit label','en'),(161,161,'Edit labels','en'),(162,162,'Please specify a pattern to find the required labels','en'),(163,163,'Module not found. Cannot uninstall.','en'),(164,164,'The module has been uninstalled successfully','en'),(165,165,'The {{module}} module has been uninstalled successfully','en'),(166,166,'The {{module}} module was installed with errors: the database was not updated correctly','en'),(167,167,'The {{module}} module was installed incorrectly. Please see logs for more information.','en'),(168,168,'The {{module}} module has been installed; however, the module has a wrong module control class','en'),(169,169,'The modules have been updated','en'),(170,170,'Congratulations! Your order has been placed.<br />You will receive your order confirmation shortly.','en'),(171,171,'{{count}} item in cart','en'),(172,172,'{{count}} items in cart','en'),(173,173,'Other items','en'),(174,174,'The selected shipping method has been deleted successfully','en'),(175,175,'The shipping methods have been updated','en'),(176,176,'The selected zones have been deleted successfully','en'),(177,177,'Zone details have been updated successfully','en'),(178,178,'The new zone has been created successfully','en'),(179,179,'This product is in <a href=\"{{href}}\">your cart</a>','en'),(180,180,'Your shopping cart - {{count}} item','en'),(181,181,'Your shopping cart - {{count}} items','en'),(182,182,'Greetings, {{name}}','en'),(183,183,'{{count}} items','en'),(184,184,'<div class=\"minicart-items-number\">{{count}}</div> <div class=\"minicart-items-text\">item</div>','en'),(185,185,'<div class=\"minicart-items-number\">{{count}}</div> <div class=\"minicart-items-text\">items</div>','en'),(186,186,'The email you provided is already in use. You can continue as guest or <a href=\"{{URL}}\" class=\"sign-in log-in\">Sign in</a>','en'),(187,187,'This user name is already taken. Please choose a different user name or <a href=\"{{URL}}\" class=\"log-in\">sign in</a>','en'),(188,188,'I accept the <a href=\"{{URL}}\" target=\"_blank\">Terms & Conditions</a>','en'),(189,189,'By clicking the \"Place order\" button you confirm that you accept the <a href=\"{{URL}}\">Terms & Conditions</a>','en'),(190,190,'Place order: {{total}}','en'),(191,191,'Proceed to payment: {{total}}','en'),(192,192,'Enter a correct email','en'),(193,193,'Enter an integer','en'),(194,194,'Enter a number','en'),(195,195,'Zero cannot be used','en'),(196,196,'Enter a positive number','en'),(197,197,'Enter a negative number','en'),(198,198,'This field is required','en'),(199,199,'\'{{field}}\' field is required','en'),(200,200,'Image #{{index}}','en'),(201,201,'Top {{count}} products','en'),(202,202,'\"{{name}}\" module settings','en'),(203,203,'The benchmark evaluates server environment, namely:<br />1. File subsystem - read and write speed.<br />2. Database server - computing speed, DB data read and write speed.<br />3. Computing power - speed of computing and exchanging data in the memory.<br /><span>The total test time is the sum of the times taken by each of these tests.</span>','en'),(204,204,'Thank you for using {{company}} services','en'),(205,205,'The confirmation URL link was sent to {{email}}','en'),(206,206,'An email with your account information was sent to {{email}}. Please make sure you can log in using the received data.','en'),(207,207,'Show filter options','en'),(208,208,'Customer note','en'),(209,209,'Customer','en'),(210,210,'Anonymous Customer','en'),(211,211,'Anonymous Customer, <a href=\"{{URL}}\">Registered User with the same email</a>','en'),(212,212,'Registered Customer','en'),(213,213,'Registered Customer, <a href=\"{{URL}}\">Anonymous Customer with the same email</a>','en'),(214,214,'The user will be registered; a password will be sent to the user via email','en'),(215,215,'Merge with Registered','en'),(216,216,'Invoice #{{id}}','en'),(217,217,'Welcome to X-Cart','en'),(218,218,'Quantity','en'),(219,219,'Total','en'),(220,220,'Cart is empty','en'),(221,221,'{{count}} item','en'),(222,222,'Items','en'),(223,223,'items','en'),(224,224,'Checkout','en'),(225,225,'View cart','en'),(226,226,'Email address','en'),(227,227,'Password','en'),(228,228,'Recover password','en'),(229,229,'Your cart','en'),(230,230,'This is a demo store powered by X-Cart, using PHP5 templates technology and MySQL database.','en'),(231,231,'Price','en'),(232,232,'Product name','en'),(233,233,'Please let us know if you want to <a href=\"//ideas.x-cart.com/forums/229428-x-cart-5-ideas\" target=\"_blank\">suggest an idea</a> or <a href=\"//www.x-cart.com/custom-development.html\" target=\"_blank\">contact us</a> for a free quote for custom development service</a>','en'),(234,234,'Please clarify your search request or search in the <a href=\"{{marketplace}}\">Marketplace</a>','en'),(235,235,'Select one...','en'),(236,236,'Other','en'),(237,237,'Hello, {{name}}','en'),(238,238,'All','en'),(239,239,'None','en'),(240,240,'[Root level]','en'),(241,241,'-- No categories --','en'),(242,242,'Sort by','en'),(243,243,'Pending membership','en'),(244,244,'{{count}} result(s) found','en'),(245,245,'per page','en'),(246,246,'<span>{{count}}</span> orders','en'),(247,247,'Logged in!','en'),(248,248,'Log off','en'),(249,249,'Account settings','en'),(250,250,'User <strong>{{login}}</strong> is logged in.','en'),(251,251,'{{count}} products found','en'),(252,252,'Thank you for registering a customer account.<br />As a registered customer you can enjoy a simplified checkout process and review your order history.<br /><br />A registration confirmation message with your account details has been sent to your email <b>{profile.login}</b>.<br />Please use your registration email and password every time you place orders at our store.<br /><br />You are now logged in and welcome to continue shopping.','en'),(253,253,'<span class=\"begin-record-number\">{{begin}}</span>–<span class=\"end-record-number\">{{end}}</span> of <span class=\"records-count\">{{total}}</span>','en'),(254,254,'{{value}} bytes','en'),(255,255,'{{value}} kB','en'),(256,256,'{{value}} MB','en'),(257,257,'{{value}} GB','en'),(258,258,'Including {{name}}','en'),(259,259,'{{years}} year(s)','en'),(260,260,'{{months}} month(s)','en'),(261,261,'{{days}} day(s)','en'),(262,262,'{{hours}} hour(s)','en'),(263,263,'{{minutes}} minute(s)','en'),(264,264,'{{seconds}} second(s)','en'),(265,265,'Import will overwrite the existing product information. This operation cannot be undone.','en'),(266,266,'To find out the data format for import, you can create a sample data file <a href=\"{{url}}\">by exporting your existing products</a>. Then you can prepare your import file using the same format.','en'),(267,267,'Note that data import time will depend on the size of the file being imported.','en'),(268,268,'Cannot import the field \'{{name}}\': unknown field','en'),(269,269,'String is inconsistent with the title: the number of columns is {{wrong}} instead of {{right}}','en'),(270,270,'The required field \'{{name}}\' is not defined or empty. The product has not been created','en'),(271,271,'{{url}} image unable to load','en'),(272,272,'During import {{count}} errors were generated. For details, <a href=\"{{url}}\">download</a> the log files.','en'),(273,273,'Some products might have been imported incorrectly. Please check your catalog. Find the IDs of such products in the import log file above.','en'),(274,274,'Order #{{id}}, {{date}}','en'),(275,275,'Order #{{id}}','en'),(276,276,'The {{name}} field is empty','en'),(277,277,'The value of the {{name}} field must be greater than {{min}}','en'),(278,278,'The value of the {{name}} field must be less than {{max}}','en'),(279,279,'Incorrect value format in {{name}} field.','en'),(280,280,'The value of the {{name}} field must not be longer than {{max}}','en'),(281,281,'To boost your sales, try the \"<a href=\"{{discountCoupons}}\">Coupons</a>\", \"<a href=\"{{sale}}\">Sale</a>\", \"<a href=\"{{productAdvisor}}\">Product Advisor</a>\" and \"<a href=\"{{volumeDiscounts}}\">Volume Discounts</a>\" addons. You may also be interested in other <a href=\"{{marketingTag}}\">Marketing</a> extensions from our Marketplace','en'),(282,282,'Trying to access the shop at <a href=\"{{url}}\">{{url}}</a> ...','en'),(283,283,'To fix this problem take the following steps: <ul><li>make sure the HTTPS protocol is enabled by your hosting service provider;</li><li>check your HTTPS settings (the \'https_host\' parameter in the \'etc/config.php\' file must be valid);</li><li>reload this page.</li></ul>','en'),(284,284,'To upload the database data directly from your local computer, click \"Browse\", choose an SQL dump file and click \"Upload and restore\". This method is more convenient; however, it has a file size limitation of {{N}}.','en'),(285,285,'You may upload a file named sqldump.sql.php to the var/backup/ directory of your X-Cart installation on the web server and click \"Restore from server\".','en'),(286,286,'Maximum upload file size is {{N}}.','en'),(287,287,'Unable to install the module \"{{X}}\": required modules have not been installed or activated.','en'),(288,288,'cannot set {{X}} permissions','en'),(289,289,'Incorrect owner of {{X}} directory','en'),(290,290,'Cannot set {{X}} permissions for subdirectories:','en'),(291,291,'Incorrect owner of {{X}} file','en'),(292,292,'File size exceeds the maximum size of ({{size}})','en'),(293,293,'File was not loaded due to a server side failure.','en'),(294,294,'{{count}} item available','en'),(295,295,'{{count}} items available','en'),(296,296,'{{count}} product(s) removed','en'),(297,297,'{{count}} product(s) created','en'),(298,298,'{{count}} entities removed','en'),(299,299,'{{count}} entities created','en'),(300,300,'Select a country or a state from the list, specify the zone where the country or state should be listed and click \"Apply\". To select more than one country/state, hold down the CTRL key while selecting the items. A zone must contain either countries or states. You cannot include both states and countries into the same zone.','en'),(301,301,'If you store product images in the database, they are included in the SQL dump file. If the product images are located on the file system, they are not included in the SQL dump file. To back up such images you need to download them directly from the server.','en'),(302,302,'You can choose one of the following options:<ol class=\"ordered-list\"><li>Download the database data (SQL dump) directly to your local computer - please click the \'Download SQL file\' button.</li><li>Save the database data as a file on the web server (\'var/backup/sqldump.sql.php\') - please click the \'Create SQL file\' button.</li></ol>','en'),(303,303,'Dear {{name}}!','en'),(304,304,'Thank you for your business. Please come back soon!','en'),(305,305,'{{percent}}% off','en'),(306,306,'Placed on <span class=\"date\">{{date}}</span> by <span class=\"name\">{{name}}</span>','en'),(307,307,'Placed on <span class=\"date\">{{date}}</span> by <a href=\"{{url}}\" class=\"name\">{{name}}</a>','en'),(308,308,'Order Total: <span>{{total}}</span>','en'),(309,309,'Oops! Our payment system has not informed us whether your last order was paid for, or not. Is there a payment form that you have not completed yet? If so, please complete and submit it. Or you can quickly <a href=\"{{url}}\">re-order the products</a> from your last incomplete order.','en'),(310,310,'Payment transaction [method: {{trx_method}}, type: {{trx_type}}, amount: {{trx_value}}, status: {{trx_status}}]','en'),(311,311,'Back end payment transaction [method: {{trx_method}}, type: {{trx_type}}, amount: {{trx_value}}, status: {{trx_status}}]','en'),(312,312,'Trial period — {{X}} day(s) left','en'),(313,313,'Editing attribute groups on this page will not affect other product classes that use these groups. Removing a group does not delete attributes from the group, but makes them show up among other attributes having no associated groups.','en'),(314,314,'What\'s new','en'),(315,315,'Your account email is {{email}}.','en'),(316,316,'Your account password is {{password}}.','en'),(317,317,'Here you can provide titles and descriptions for your payment methods and set the order in which they should appear on the storefront.<br><strong>Title</strong> — name of the custom payment method as should be displayed to customers;your custom payment name shown for customer;<br><strong>Description</strong> — short description of the payment method that should appear right below its title.','en'),(318,318,'Watch this short video and learn the basics of how online payment processing works. You will also find out what to look for when choosing the best payment processing solution for your business.','en'),(319,319,'{{count}} methods available','en'),(320,320,'The payment method has been enabled','en'),(321,321,'The payment method has been disabled','en'),(322,322,'The payment method has been removed','en'),(323,323,'The payment method has not been configured properly','en'),(324,324,'Duplicated clean URL: {{value}}','en'),(325,325,'Attributes for \"{{class}}\" product class','en'),(326,326,'{{count}} attributes in group','en'),(327,327,'Order {{order_number}} has been placed','en'),(328,328,'This module is available for X-Cart hosted stores only. <a href=\"{{url}}\">Click here for more information.</a>','en'),(329,329,'Low inventory products ({{count}})','en'),(330,330,'{{value}} orders yesterday','en'),(331,331,'{{value}} orders last week','en'),(332,332,'{{value}} orders last month','en'),(333,333,'{{value}} yesterday','en'),(334,334,'{{value}} last week','en'),(335,335,'{{value}} last month','en'),(336,336,'No orders yesterday','en'),(337,337,'No orders last week','en'),(338,338,'No orders last month','en'),(339,339,'No orders yet','en'),(340,340,'No orders','en'),(341,341,'To use the secure protocol you need an SSL certificate purchased for the \"<span>{{domain}}</span>\" domain and installed on your server.','en'),(342,342,'To enable the secure protocol for your website pages you need a valid SSL certificate purchased for the \"<span>{{domain}}</span>\" website domain and installed on your server.','en'),(343,343,'Pre-launch checklist:','en'),(344,344,'{{size}}','en'),(345,345,'Exported on {{date}}','en'),(346,346,'No write permissions to directory {{path}}. Please set the necessary permissions to directory {{path}}.','en'),(347,347,'Failed write to file {{path}}. There may not be enough disk space. Please check if there is enough disk space.','en'),(348,348,'Export is complete. <a href=\"{{url}}\">Check results and download</a>.','en'),(349,349,'This will increase the shipping cost by {{XX}}','en'),(350,350,'{{count}} products','en'),(351,351,'Subcategories: {{count}}','en'),(352,352,'Manage category: {{category_name}}','en'),(353,353,'Subcategories for','en'),(354,354,'Enter OrderID or email','en'),(355,355,'All Order Statuses','en'),(356,356,'Enter date range','en'),(357,357,'Authorized','en'),(358,358,'Shipped','en'),(359,359,'Cancelled','en'),(360,360,'Expired','en'),(361,361,'Refund requested','en'),(362,362,'Refunded','en'),(363,363,'Partially refunded','en'),(364,364,'Selected:','en'),(365,365,'Days','en'),(366,366,'Close','en'),(367,367,'MO','en'),(368,368,'TU','en'),(369,369,'WE','en'),(370,370,'TH','en'),(371,371,'FR','en'),(372,372,'SA','en'),(373,373,'SU','en'),(374,374,'JANUARY','en'),(375,375,'FEBRUARY','en'),(376,376,'MARCH','en'),(377,377,'APRIL','en'),(378,378,'MAY','en'),(379,379,'JUNE','en'),(380,380,'JULY','en'),(381,381,'AUGUST','en'),(382,382,'SEPTEMBER','en'),(383,383,'OCTOBER','en'),(384,384,'NOVEMBER','en'),(385,385,'DECEMBER','en'),(386,386,'Shortcuts','en'),(387,387,'Past','en'),(388,388,'7days','en'),(389,389,'14days','en'),(390,390,'30days','en'),(391,391,'Previous','en'),(392,392,'Week','en'),(393,393,'Month','en'),(394,394,'Quarter','en'),(395,395,'Year','en'),(396,396,'Date range should be longer than %d days','en'),(397,397,'Date range should be less than %d days','en'),(398,398,'Please select a date range longer than %d days','en'),(399,399,'Please select a date range shorter than %d days','en'),(400,400,'Please select a date range between %d and %d days','en'),(401,401,'Please select a date range','en'),(402,402,'Enter keyword','en'),(403,403,'All membership levels','en'),(404,404,'No membership','en'),(405,405,'All User Types','en'),(406,406,'Please select one ...','en'),(407,407,'Please select an option','en'),(408,408,'Search keywords','en'),(409,409,'Search payment method','en'),(410,410,'Any category','en'),(411,411,'Any status','en'),(412,412,'Search in','en'),(413,413,'{{count}} label(s)','en'),(414,414,'This language was added by the module {{module}} and cannot be removed.','en'),(415,415,'{{count}} language(s) removed','en'),(416,416,'{{count}} language label(s) removed','en'),(417,417,'No payment methods available. Please contact the <a href=\"mailto:{{email}}\">store administrator</a>.','en'),(418,418,'Edit states ({{count}})','en'),(419,419,'{{count}} state(s) removed','en'),(420,420,'{{count}} state(s) created','en'),(421,421,'{{count}} zone(s) removed','en'),(422,422,'{{count}} zone(s) created','en'),(423,423,'This is the default zone which matches all possible addresses.<br />The default zone can be edited but cannot be removed.','en'),(424,424,'Examples:<br /><br />2204%<br />38245<br />23%','en'),(425,425,'Examples:<br /><br />New York<br />New%<br />%York','en'),(426,426,'Examples:<br />%Water St%<br />%Coney Island%','en'),(427,427,'{{count}} shipping method(s) created','en'),(428,428,'{{count}} shipping method(s) removed','en'),(429,429,'Edit rates ({{count}})','en'),(430,430,'Your first name','en'),(431,431,'Your last name','en'),(432,432,'1000 Example street','en'),(433,433,'Example city','en'),(434,434,'California','en'),(435,435,'90001','en'),(436,436,'+12130000000','en'),(437,437,'[email protected]','en'),(438,438,'Specification','en'),(439,439,'Not all the upgrade packs have been downloaded. This may have been caused by one of the following:<ul class=\'marked-list\'><li>slow Internet connection;</li><li>an internal problem on the Marketplace server;</li><li>a problem with your X-Cart license (expired license key, license key not matching the module license, etc.)</li></ul>','en'),(440,440,'A new customer? Enter your email','en'),(441,441,'ABA routing number','en'),(442,442,'Absolute','en'),(443,443,'Accept','en'),(444,444,'Orders','en'),(445,445,'Online methods','en'),(446,446,'Access denied!','en'),(447,447,'Access information','en'),(448,448,'Access is locked out','en'),(449,449,'Access level','en'),(450,450,'Account','en'),(451,451,'Account details','en'),(452,452,'Account status','en'),(453,453,'Account summary','en'),(454,454,'Activate license key','en'),(455,455,'Activate your paid module license','en'),(456,456,'Active','en'),(457,457,'Active from','en'),(458,458,'Active till','en'),(459,459,'Add','en'),(460,460,'Add Product','en'),(461,461,'Add alternative payment method','en'),(462,462,'Add category','en'),(463,463,'Add child','en'),(464,464,'Add discount','en'),(465,465,'Add featured products','en'),(466,466,'Add file','en'),(467,467,'Add image','en'),(468,468,'Add rate','en'),(469,469,'Add new','en'),(470,470,'Add new address','en'),(471,471,'Add new country','en'),(472,472,'Add new exception','en'),(473,473,'Add new membership level','en'),(474,474,'Add new option','en'),(475,475,'Add new option group','en'),(476,476,'Add new state','en'),(477,477,'Add offline payment method','en'),(478,478,'Add payment method','en'),(479,479,'Add shipping method','en'),(480,480,'Add subcategory','en'),(481,481,'Add user','en'),(482,482,'Add your <a href=\"{{URL}}\">products</a>','en'),(483,483,'Add zone','en'),(484,484,'Add-ons','en'),(485,485,'Add/update options','en'),(486,486,'Added','en'),(487,487,'Added to cart','en'),(488,488,'Address','en'),(489,489,'Address book','en'),(490,490,'Address details','en'),(491,491,'Address field','en'),(492,492,'Address fields','en'),(493,493,'Address pattern','en'),(494,494,'Admin','en'),(495,495,'Administrator area','en'),(496,496,'Administrator','en'),(497,497,'All add-ons','en'),(498,498,'All customers','en'),(499,499,'All memberships','en'),(500,500,'All the necessary adaptation will be done by the developer (covered by extended warranty).','en'),(501,501,'All products on sale','en'),(502,502,'All shipping methods','en'),(503,503,'All address zones','en'),(504,504,'All the products are in sufficient quantities','en'),(505,505,'All time','en'),(506,506,'PayPal all-in-one solutions','en'),(507,507,'No merchant account required. Simple onboarding for you and easy checkout for your customers.','en'),(508,508,'Alphabetically','en'),(509,509,'Already have an account?','en'),(510,510,'Alternative payment methods','en'),(511,511,'Alternative text','en'),(512,512,'Amount','en'),(513,513,'Amount: high to low','en'),(514,514,'Amount: low to high','en'),(515,515,'An upgrade is a dangerous process that may result in a crashed website. It is strongly recommended to create a full backup of your store (the code and the database) and download it to a local computer before proceeding to the next step.','en'),(516,516,'Another state','en'),(517,517,'Any membership level','en'),(518,518,'Any product class','en'),(519,519,'Any zone','en'),(520,520,'Appearance','en'),(521,521,'Apply destination','en'),(522,522,'Apply price','en'),(523,523,'Are you sure you want to continue?','en'),(524,524,'Are you sure you want to delete the selected user?','en'),(525,525,'Are you sure you want to disable this add-on?','en'),(526,526,'Are you sure you want to enable this add-on?','en'),(527,527,'Are you sure you want to uninstall this add-on?','en'),(528,528,'Are you sure you wish to delete the selected zones?','en'),(529,529,'Are you sure?','en'),(530,530,'Arrival date','en'),(531,531,'Asynchronous','en'),(532,532,'Ask.com','en'),(533,533,'Assigned classes','en'),(534,534,'Attachment has not been deleted','en'),(535,535,'Attachments','en'),(536,536,'Attachments have been updated successfully','en'),(537,537,'Australia Post settings','en'),(538,538,'Authentication','en'),(539,539,'Authentication code','en'),(540,540,'Author','en'),(541,541,'Authorization then capture','en'),(542,542,'Auto','en'),(543,543,'Availability','en'),(544,544,'Available for sale','en'),(545,545,'B','en'),(546,546,'Back to file select','en'),(547,547,'Back to layout settings','en'),(548,548,'Back to methods','en'),(549,549,'Back to orders list','en'),(550,550,'Backup','en'),(551,551,'Backup database','en'),(552,552,'Bank Account Number','en'),(553,553,'Benchmark completed in ','en'),(554,554,'Benchmark result under 3000ms is considered good','en'),(555,555,'Bestsellers','en'),(556,556,'Billing address','en'),(557,557,'Billing address is not defined yet','en'),(558,558,'Bing','en'),(559,559,'Brief description','en'),(560,560,'Brief description','en'),(561,561,'Browse server','en'),(562,562,'Buy more','en'),(563,563,'CLOSE','en'),(564,564,'CSS & JavaScript','en'),(565,565,'Cache rebuild is already started, please wait','en'),(566,566,'Calculate rates','en'),(567,567,'Cannot be disabled. The module is required by:','en'),(568,568,'Cannot connect to the Modules Marketplace server','en'),(569,569,'Capture status','en'),(570,570,'Cart & checkout','en'),(571,571,'Catalog','en'),(572,572,'Categories','en'),(573,573,'Category','en'),(574,574,'Category info','en'),(575,575,'Category name','en'),(576,576,'Category page title','en'),(577,577,'Change','en'),(578,578,'Change address','en'),(579,579,'Change method','en'),(580,580,'Change options','en'),(581,581,'Change payment info','en'),(582,582,'Change shipping info','en'),(583,583,'Check all','en'),(584,584,'Check number','en'),(585,585,'Checking','en'),(586,586,'Checking integrity, please wait...','en'),(587,587,'Choose','en'),(588,588,'Choose <a href=\"{{URL}}\">payment methods</a>','en'),(589,589,'Choose file','en'),(590,590,'Choose from a variety of bundled payment solutions to accept credit cards and other methods of payment on your website','en'),(591,591,'Choose method','en'),(592,592,'Choose shipping method','en'),(593,593,'City','en'),(594,594,'Clean URL','en'),(595,595,'Enable clean URL','en'),(596,596,'Error code explanation','en'),(597,597,'More information about clean urls in X-Cart is available in <a href=\"{{url}}\" target=\"blank\">{{url}}</a>','en'),(598,598,'We made a test request to <a href=\"{{url}}\">{{url}}</a> URL and got the following result. <br>It means that your SEO-friendly URLs may not work properly after enabling.','en'),(599,599,'Clear aggregation cache','en'),(600,600,'Clear widgets cache','en'),(601,601,'CleanURL','en'),(602,602,'Empty your cart','en'),(603,603,'Click here to access/add subcategories','en'),(604,604,'Click here to view states of country','en'),(605,605,'Click to unblock','en'),(606,606,'Close storefront','en'),(607,607,'Code','en'),(608,608,'Comment','en'),(609,609,'Comments','en'),(610,610,'Company','en'),(611,611,'Company name','en'),(612,612,'Completed','en'),(613,613,'Component','en'),(614,614,'Configuration','en'),(615,615,'Configure <a href=\"{{URL}}\">shipping methods</a>','en'),(616,616,'Configure your store','en'),(617,617,'Confirm password','en'),(618,618,'Contacts','en'),(619,619,'Content','en'),(620,620,'Continue','en'),(621,621,'Copy file to local server','en'),(622,622,'Core version: ','en'),(623,623,'Countries','en'),(624,624,'Countries, states and zones','en'),(625,625,'Country','en'),(626,626,'Country is not selected','en'),(627,627,'Coupon code','en'),(628,628,'Coupons','en'),(629,629,'Create','en'),(630,630,'Create profile','en'),(631,631,'Create SQL file','en'),(632,632,'Create a backup','en'),(633,633,'Create account','en'),(634,634,'Create an account for later use','en'),(635,635,'Create category','en'),(636,636,'Create new account','en'),(637,637,'Created','en'),(638,638,'Currency','en'),(639,639,'Custom add-ons','en'),(640,640,'Custom CSS','en'),(641,641,'Custom JavaScript','en'),(642,642,'Custom images','en'),(643,643,'Custom translation','en'),(644,644,'Customer zip/postal code','en'),(645,645,'Clean URLs are disabled. <a target=\'_blank\' href=\'{{more_info_url}}\'>More info</a>','en'),(646,646,'Clean URLs are enabled','en'),(647,647,'Clean URLs are disabled','en'),(648,648,'Enable clean URLs','en'),(649,649,'Clean URLs functionality may not be enabled. <a target=\'_blank\' href=\'{{article_url}}\'>More info<i class=\'icon fa fa-external-link\'></i></a>','en'),(650,650,'More information on Clean URL problems on your system','en'),(651,651,'The data has been deleted successfully','en'),(652,652,'The data has been saved successfully','en'),(653,653,'Database backup has been created successfully','en'),(654,654,'Date','en'),(655,655,'Day','en'),(656,656,'Dear','en'),(657,657,'Dear customer!','en'),(658,658,'Decline','en'),(659,659,'Declined','en'),(660,660,'Default','en'),(661,661,'Default customer address','en'),(662,662,'Default for Customer area and cannot be disabled or deleted','en'),(663,663,'Default for Customer area and cannot be disabled or deleted','en'),(664,664,'Default images settings','en'),(665,665,'The powerful shopping cart software for web stores and e-commerce enabled stores is based on PHP5 with SQL database with highly configurable implementation based on templates','en'),(666,666,'All Addresses (default zone)','en'),(667,667,'Define classes','en'),(668,668,'Delete SQL file','en'),(669,669,'Delete all','en'),(670,670,'Delete profile','en'),(671,671,'Delete selected','en'),(672,672,'Delete selected profile','en'),(673,673,'Delete the image','en'),(674,674,'Delete this address?','en'),(675,675,'Delivery methods','en'),(676,676,'Destination zone','en'),(677,677,'Details','en'),(678,678,'Directory and file permissions','en'),(679,679,'Disable all modules in the system','en'),(680,680,'Disable suspicious modules','en'),(681,681,'Disabled','en'),(682,682,'A disabled language cannot be set as default for Customer area','en'),(683,683,'Discount','en'),(684,684,'Discount amount','en'),(685,685,'Discount type','en'),(686,686,'Display \'inc/ex VAT\' labels next to prices','en'),(687,687,'Display type','en'),(688,688,'Do not close this page!','en'),(689,689,'Do not show at startup any more','en'),(690,690,'Do you really want to delete the selected items?','en'),(691,691,'Dont have account yet?','en'),(692,692,'Download SQL file','en'),(693,693,'Downloaded components','en'),(694,694,'Downloading updates','en'),(695,695,'Downloading updates, please wait...','en'),(696,696,'Drag and drop me to the cart','en'),(697,697,'Drop items here to shop','en'),(698,698,'Drupal front end','en'),(699,699,'Email','en'),(700,700,'Email is not defined yet','en'),(701,701,'Edit charges for:','en'),(702,702,'Edit payment method data','en'),(703,703,'Edit page','en'),(704,704,'Edit profile','en'),(705,705,'Email','en'),(706,706,'Email & password','en'),(707,707,'Email body','en'),(708,708,'Email settings','en'),(709,709,'Enable HTTPS','en'),(710,710,'Enabled','en'),(711,711,'Enter coupon code','en'),(712,712,'Enter keywords','en'),(713,713,'Enter license key','en'),(714,714,'Enter shipping address','en'),(715,715,'Enter {{X}} more characters to start search','en'),(716,716,'Environment','en'),(717,717,'Environment info','en'),(718,718,'Error','en'),(719,719,'Estimate shipping cost','en'),(720,720,'Estimate your server performance','en'),(721,721,'Estimated for','en'),(722,722,'Everything you need','en'),(723,723,'Example','en'),(724,724,'Examples','en'),(725,725,'Exception','en'),(726,726,'Extend the functionality of your store by installing and using add-on modules','en'),(727,727,'Export','en'),(728,728,'Export products','en'),(729,729,'Extensions','en'),(730,730,'Facebook','en'),(731,731,'Failed','en'),(732,732,'Failed to add the detailed image','en'),(733,733,'Failed to add the attachment','en'),(734,734,'Failed to add the attachment. The file download is forbidden','en'),(735,735,'Failed/Declined','en'),(736,736,'Featured products','en'),(737,737,'Field is required!','en'),(738,738,'File title','en'),(739,739,'Find us on','en'),(740,740,'Find us on Facebook','en'),(741,741,'First name','en'),(742,742,'Flat rate','en'),(743,743,'Footer menu','en'),(744,744,'For the period','en'),(745,745,'Forgot password?','en'),(746,746,'Format','en'),(747,747,'Free add-ons','en'),(748,748,'From','en'),(749,749,'from','en'),(750,750,'Selected countries:','en'),(751,751,'Back to Zones list','en'),(752,752,'Attributes block','en'),(753,753,'From email','en'),(754,754,'Full description','en'),(755,755,'Full name','en'),(756,756,'General','en'),(757,757,'General Settings','en'),(758,758,'General info','en'),(759,759,'General settings','en'),(760,760,'Give buyers a way to pay by adding an alternative payment method.','en'),(761,761,'Give buyers another way to pay by adding an alternative payment method','en'),(762,762,'Go to Marketplace','en'),(763,763,'Go to checkout','en'),(764,764,'Grid','en'),(765,765,'Group options','en'),(766,766,'Here\'s a new link for access to your information: <a href=\"{{link}}\">{{link}}</a>','en'),(767,767,'HTML title (\'title\' tag)','en'),(768,768,'HTTPS check','en'),(769,769,'HTTPS settings','en'),(770,770,'Restores to current state of active addons (use in case of emergency)','en'),(771,771,'Disables all addons except ones that are provided by X-Cart Team (hard reset)','en'),(772,772,'Disables all addons except ones that are provided by X-Cart Team & Qualiteam (soft reset)','en'),(773,773,'Have a discount coupon?','en'),(774,774,'Height (px)','en'),(775,775,'Help zone','en'),(776,776,'The list below shows only the methods enabled on the configuration page','en'),(777,777,'Here you can define how your payment methods will look in the Customer area','en'),(778,778,'Hide','en'),(779,779,'Hide trailing zeros in fractional part','en'),(780,780,'History','en'),(781,781,'Home','en'),(782,782,'How to','en'),(783,783,'How to back up your store database','en'),(784,784,'How to define address zones','en'),(785,785,'I understand that these add-ons may require an adaptation.','en'),(786,786,'Icons','en'),(787,787,'Identity','en'),(788,788,'If any critical errors have occurred, you can do the following','en'),(789,789,'If you choose the second option, you can download the file from the server later on and delete it from the server by clicking on the \'Delete SQL file\' button.','en'),(790,790,'If you do not have an account, you can easily','en'),(791,791,'If you don\'t have a moneybookers account yet, please sign up for a free moneybookers account at: http://www.skrill.com','en'),(792,792,'If you have a license key for a commercial module, you can enter it here to register the purchase of the module.','en'),(793,793,'If you have a plugin in the .tar format, you can install it by uploading it here','en'),(794,794,'Image','en'),(795,795,'Image border will not be displayed in the storefront','en'),(796,796,'Import','en'),(797,797,'Import / Export','en'),(798,798,'Import from file','en'),(799,799,'Import of orders is not supported.','en'),(800,800,'Import/Export','en'),(801,801,'Important','en'),(802,802,'In category','en'),(803,803,'In stock','en'),(804,804,'Inactive','en'),(805,805,'Incl. X','en'),(806,806,'Incomplete','en'),(807,807,'InnoDB engine support enabled','en'),(808,808,'Install','en'),(809,809,'Install add-on','en'),(810,810,'Install updates','en'),(811,811,'Installation directory','en'),(812,812,'Installed','en'),(813,813,'Installed Modules','en'),(814,814,'Installed modules','en'),(815,815,'Installing updates, please wait...','en'),(816,816,'Invalid login or password','en'),(817,817,'Inventory status','en'),(818,818,'Inventory tracking','en'),(819,819,'Inventory tracking for this product is','en'),(820,820,'Invoice','en'),(821,821,'It is not possible to delete or create user accounts because your store currently works as an integration with Drupal and shares users with Drupal. Deleting/creating user accounts is possible via Drupal administrator interface.','en'),(822,822,'It is not possible to edit some user profile fields because your store currently works as an integration with Drupal and shares users with Drupal. Modifying these fields is possible via Drupal administrator interface.','en'),(823,823,'Item description','en'),(824,824,'Item(s) deleted from your cart','en'),(825,825,'Item name','en'),(826,826,'Items per page','en'),(827,827,'Join forces with your bank','en'),(828,828,'K','en'),(829,829,'Language','en'),(830,830,'Language labels','en'),(831,831,'Last logged in','en'),(832,832,'Last login','en'),(833,833,'Last name','en'),(834,834,'License key has been successfully verified for the \"{{name}}\" module by \"{{author}}\" ','en'),(835,835,'Lifetime','en'),(836,836,'Limit the number of uses','en'),(837,837,'Link','en'),(838,838,'List','en'),(839,839,'List of states','en'),(840,840,'Loading...','en'),(841,841,'Localization','en'),(842,842,'Log in','en'),(843,843,'Log out','en'),(844,844,'Logged as','en'),(845,845,'Login','en'),(846,846,'Log in here','en'),(847,847,'Login history','en'),(848,848,'Look & Feel','en'),(849,849,'Low stock notification for this product is','en'),(850,850,'Low stock threshold','en'),(851,851,'Low stock','en'),(852,852,'M','en'),(853,853,'Maintenance','en'),(854,854,'Maintenance and operation','en'),(855,855,'Back up your store\'s database','en'),(856,856,'Manage catalog','en'),(857,857,'Manage categories','en'),(858,858,'Manage customer and administrator accounts','en'),(859,859,'Manage layout','en'),(860,860,'Manage orders','en'),(861,861,'Manage orders placed at your store','en'),(862,862,'Manage users','en'),(863,863,'Manage administrators','en'),(864,864,'Manage your product inventory','en'),(865,865,'Required fields are marked with an asterisk','en'),(866,866,'Manually defined shipping methods','en'),(867,867,'Mark the search engines you want to inform of the structure of your site using the site map','en'),(868,868,'Market price','en'),(869,869,'Marketplace','en'),(870,870,'Marketplace [check_addon_key]: the \"{{url}}\" URL requested','en'),(871,871,'Marketplace [check_for_updates]: the \"{{url}}\" URL requested','en'),(872,872,'Marketplace [check_for_updates]: valid response received','en'),(873,873,'Marketplace [get_hosting_score]: response has an invalid format','en'),(874,874,'Marketplace [get_hosting_score]: the \"{{url}}\" URL requested','en'),(875,875,'Rate per item','en'),(876,876,'Rate per weight unit','en'),(877,877,'Membership','en'),(878,878,'Membership access','en'),(879,879,'Membership levels','en'),(880,880,'Membership name','en'),(881,881,'Memberships','en'),(882,882,'Menus','en'),(883,883,'Message','en'),(884,884,'Meta description','en'),(885,885,'Meta keywords','en'),(886,886,'Methods','en'),(887,887,'Modify','en'),(888,888,'Modify \"{{name}}\" option group','en'),(889,889,'Modify category','en'),(890,890,'Modify option group exceptions','en'),(891,891,'Modify root category (the store\'s front page)','en'),(892,892,'The module has been successfully installed','en'),(893,893,'Modules Marketplace','en'),(894,894,'More add-ons','en'),(895,895,'More details','en'),(896,896,'Most Popular','en'),(897,897,'Most Rated','en'),(898,898,'Move','en'),(899,899,'My account','en'),(900,900,'MySQL server','en'),(901,901,'Name','en'),(902,902,'Name of address field','en'),(903,903,'Name of purchaser','en'),(904,904,'Bank name','en'),(905,905,'Name of account holder','en'),(906,906,'Never','en'),(907,907,'New access link','en'),(908,908,'New access key will also be sent to the Site administrator\'s email address','en'),(909,909,'New address field','en'),(910,910,'New discount coupon','en'),(911,911,'New image','en'),(912,912,'New item','en'),(913,913,'New page','en'),(914,914,'New product class','en'),(915,915,'The new product has been added successfully','en'),(916,916,'New rate','en'),(917,917,'New role','en'),(918,918,'Newest','en'),(919,919,'Newest first','en'),(920,920,'Next','en'),(921,921,'Next page','en'),(922,922,'No','en'),(923,923,'No countries found','en'),(924,924,'No products are featured in this category','en'),(925,925,'No image','en'),(926,926,'No images uploaded','en'),(927,927,'No items found.','en'),(928,928,'No merchant account required','en'),(929,929,'No orders have been placed yet','en'),(930,930,'No orders have been placed yet','en'),(931,931,'No payment modules installed','en'),(932,932,'No products sold yet','en'),(933,933,'No states found','en'),(934,934,'No tax rates defined','en'),(935,935,'Non-administrator','en'),(936,936,'Not finished','en'),(937,937,'Not a numeric value','en'),(938,938,'Note','en'),(939,939,'Notes','en'),(940,940,'Off','en'),(941,941,'Official website','en'),(942,942,'Offline methods','en'),(943,943,'Old price','en'),(944,944,'On','en'),(945,945,'On all catalog pages','en'),(946,946,'On product details pages only','en'),(947,947,'Online catalog structure setup','en'),(948,948,'Only lowercase letters, digits and undescore character are allowed','en'),(949,949,'Open Graph meta tags','en'),(950,950,'Open graph tags','en'),(951,951,'Open storefront','en'),(952,952,'Operating system','en'),(953,953,'Option group','en'),(954,954,'The options have been successfully updated','en'),(955,955,'Order','en'),(956,956,'Order #','en'),(957,957,'Order ID','en'),(958,958,'Order Total','en'),(959,959,'Order date from','en'),(960,960,'Order date through','en'),(961,961,'Order details','en'),(962,962,'Order id','en'),(963,963,'Order items','en'),(964,964,'Order note','en'),(965,965,'Order page','en'),(966,966,'Order review','en'),(967,967,'Order statistics','en'),(968,968,'Order status','en'),(969,969,'Orders','en'),(970,970,'Orders count','en'),(971,971,'Out of stock','en'),(972,972,'Pack it','en'),(973,973,'Page','en'),(974,974,'Page URL','en'),(975,975,'Page name','en'),(976,976,'Page not found','en'),(977,977,'Pages','en'),(978,978,'Paid','en'),(979,979,'Parent category','en'),(980,980,'Pattern search','en'),(981,981,'All payment methods','en'),(982,982,'Payment info','en'),(983,983,'Payment instructions','en'),(984,984,'Payment method','en'),(985,985,'Payment methods','en'),(986,986,'Payment method data','en'),(987,987,'Payment data ({{method}})','en'),(988,988,'Payment settings','en'),(989,989,'Payment transaction ID','en'),(990,990,'Payment transactions','en'),(991,991,'Payment methods','en'),(992,992,'Pending','en'),(993,993,'Pending memberships','en'),(994,994,'Per item rate','en'),(995,995,'Per weight unit rate','en'),(996,996,'Percent','en'),(997,997,'Percent rate','en'),(998,998,'Percent off','en'),(999,999,'Perform order search','en'),(1000,1000,'Performance','en'),(1001,1001,'Permissions','en'),(1002,1002,'Permissions checking failed. Please make sure that the following file permissions are assigned (UNIX only):','en'),(1003,1003,'Personal info','en'),(1004,1004,'Phone','en'),(1005,1005,'Pick address from address book','en'),(1006,1006,'Place order','en'),(1007,1007,'Please accept the Terms and Conditions to continue','en'),(1008,1008,'Please choose the appropriate action','en'),(1009,1009,'Please enable JavaScript in your web browser.','en'),(1010,1010,'Please identify yourself','en'),(1011,1011,'Please note that some of these modules are incompatible with the upcoming upgrade and will be disabled in order to prevent a system crash','en'),(1012,1012,'Run benchmark to estimate your server performance','en'),(1013,1013,'Please save the soft reset and hard reset links so you can use them later in case your website crashes','en'),(1014,1014,'Please select one','en'),(1015,1015,'Pos','en'),(1016,1016,'Pos.','en'),(1017,1017,'Pos.:','en'),(1018,1018,'Position','en'),(1019,1019,'Prefix','en'),(1020,1020,'Pre-upgrade action required','en'),(1021,1021,'Some of the modules used by your store contain code that must be executed before the upgrade process begins. For the code to be executed successfully, the modules must be enabled. However, some of the modules containing such code are now disabled. This will prevent the pre-upgrade code from execution and is highly likely to cause problems, like a fatal error.<br /><br />Listed below are the modules that contain pre-upgrade code and are disabled. Here you can specify the modules for which you want the pre-upgrade code to be executed:','en'),(1022,1022,'Execute','en'),(1023,1023,'Do not execute','en'),(1024,1024,'Please note that we may not be held responsible for any upgrade problems caused by failure to execute the required pre-upgrade code.','en'),(1025,1025,'Prev','en'),(1026,1026,'Previous page','en'),(1027,1027,'Price modifier','en'),(1028,1028,'Price: Not a numeric value','en'),(1029,1029,'Price','en'),(1030,1030,'Name','en'),(1031,1031,'Primary menu','en'),(1032,1032,'Print invoice','en'),(1033,1033,'Processed','en'),(1034,1034,'Processed/Completed','en'),(1035,1035,'Product Name','en'),(1036,1036,'Product SKU','en'),(1037,1037,'Product Title','en'),(1038,1038,'Product has been added to your cart','en'),(1039,1039,'Product class','en'),(1040,1040,'Product classes','en'),(1041,1041,'Product has been added to your cart','en'),(1042,1042,'Product images','en'),(1043,1043,'Product info','en'),(1044,1044,'Product info has been updated successfully','en'),(1045,1045,'Product is out of stock','en'),(1046,1046,'Product on sale','en'),(1047,1047,'Product options','en'),(1048,1048,'Product page title','en'),(1049,1049,'Product prices are defined including this tax calculated for','en'),(1050,1050,'Products','en'),(1051,1051,'Products in cart','en'),(1052,1052,'Product information has been successfully updated','en'),(1053,1053,'Products with low inventory','en'),(1054,1054,'Profile','en'),(1055,1055,'The profile has been created successfully','en'),(1056,1056,'The profile has been deleted successfully','en'),(1057,1057,'The profile has been updated successfully','en'),(1058,1058,'Profile settings','en'),(1059,1059,'Promotions','en'),(1060,1060,'Properties','en'),(1061,1061,'Purchase','en'),(1062,1062,'Purchase SSL certificate','en'),(1063,1063,'PO number','en'),(1064,1064,'Put up selected for sale','en'),(1065,1065,'Qty','en'),(1066,1066,'Qty.','en'),(1067,1067,'Quantity: high to low','en'),(1068,1068,'Quantity: low to high','en'),(1069,1069,'Queued','en'),(1070,1070,'Quick and easy setup','en'),(1071,1071,'Rate','en'),(1072,1072,'Rates','en'),(1073,1073,'Rates / Conditions','en'),(1074,1074,'Raw online rate (on-line rate)','en'),(1075,1075,'Re-build cache','en'),(1076,1076,'Re-generate access key','en'),(1077,1077,'Re-order','en'),(1078,1078,'Redirect customers to HTTPS','en'),(1079,1079,'Recommended','en'),(1080,1080,'Referer','en'),(1081,1081,'Register','en'),(1082,1082,'Registered','en'),(1083,1083,'Remove','en'),(1084,1084,'Required','en'),(1085,1085,'Required PHP extensions are missing: {{extensions}}','en'),(1086,1086,'Some of them require a registered merchant account','en'),(1087,1087,'Re-run benchmark','en'),(1088,1088,'Resend the secret link to renew access','en'),(1089,1089,'Response from Marketplace not received','en'),(1090,1090,'Response from Marketplace: ','en'),(1091,1091,'Restore','en'),(1092,1092,'Restore database','en'),(1093,1093,'Restore from server','en'),(1094,1094,'Restore last backup','en'),(1095,1095,'Restore links','en'),(1096,1096,'Return to Drupal','en'),(1097,1097,'Revenue','en'),(1098,1098,'Review statistics on the various aspects of your store\'s operation','en'),(1099,1099,'Role','en'),(1100,1100,'Roles','en'),(1101,1101,'Root Level','en'),(1102,1102,'Root access','en'),(1103,1103,'Root category','en'),(1104,1104,'Run Benchmark again','en'),(1105,1105,'Run benchmark','en'),(1106,1106,'SKU: a-z','en'),(1107,1107,'SKU: z-a','en'),(1108,1108,'SMTP server','en'),(1109,1109,'STORE SETUP','en'),(1110,1110,'SYSTEM SETTINGS','en'),(1111,1111,'Safe mode','en'),(1112,1112,'Safe mode access key','en'),(1113,1113,'Sale','en'),(1114,1114,'Sale price','en'),(1115,1115,'Sale statistics since the opening of the store','en'),(1116,1116,'Sales','en'),(1117,1117,'Sales tax','en'),(1118,1118,'Save as new','en'),(1119,1119,'Save changes','en'),(1120,1120,'Save zone details','en'),(1121,1121,'Savings','en'),(1122,1122,'Search for modules','en'),(1123,1123,'Search for orders','en'),(1124,1124,'Search for users','en'),(1125,1125,'Search for users that are','en'),(1126,1126,'Search in subcategories','en'),(1127,1127,'Search product','en'),(1128,1128,'Search profiles','en'),(1129,1129,'Search result','en'),(1130,1130,'Search results','en'),(1131,1131,'Secure connection cannot be established.','en'),(1132,1132,'Security','en'),(1133,1133,'Security settings','en'),(1134,1134,'Select country','en'),(1135,1135,'Select options','en'),(1136,1136,'Select status','en'),(1137,1137,'Send','en'),(1138,1138,'Send test email','en'),(1139,1139,'Service name','en'),(1140,1140,'Service name of address field','en'),(1141,1141,'Set','en'),(1142,1142,'Set the sale price','en'),(1143,1143,'Settings','en'),(1144,1144,'Set up <a href=\"{{URL1}}\">address zones</a> and <a href=\"{{URL2}}\">taxes</a>','en'),(1145,1145,'Shipping & Taxes','en'),(1146,1146,'Shipping address','en'),(1147,1147,'Shipping address is not completly defined yet','en'),(1148,1148,'Shipping address is not defined','en'),(1149,1149,'Shipping address is not defined yet','en'),(1150,1150,'Shipping info','en'),(1151,1151,'The shipping rate has been created successfully','en'),(1152,1152,'The shipping rates have been updated','en'),(1153,1153,'Shipping method','en'),(1154,1154,'The shipping method has been added','en'),(1155,1155,'Shipping methods','en'),(1156,1156,'Shipping methods are not available','en'),(1157,1157,'Shipping rates','en'),(1158,1158,'Shipping settings','en'),(1159,1159,'Address zones','en'),(1160,1160,'Terminate profile sessions','en'),(1161,1161,'There\'s a minimum purchase limit of {{minQuantity}}. The number of units of the product \'{{productName}}\' in cart has been adjusted to reach this limit.','en'),(1162,1162,'There\'s a maximum purchase limit of {{maxQuantity}}. The number of units of the product \'{{productName}}\' in cart has been adjusted to reach this limit.','en'),(1163,1163,'Carrier','en'),(1164,1164,'Order tracking information','en'),(1165,1165,'Track package','en'),(1166,1166,'Send tracking info','en'),(1167,1167,'No tracking numbers are defined','en'),(1168,1168,'Tracking numbers','en'),(1169,1169,'\"{{number}}\" tracking number has been added','en'),(1170,1170,'\"{{number}}\" tracking number has been removed','en'),(1171,1171,'Tracking number has been changed from \"{{old_number}}\" to \"{{new_number}}\"','en'),(1172,1172,'Add tracking number','en'),(1173,1173,'Tracking information has been sent','en'),(1174,1174,'Shopping cart','en'),(1175,1175,'Show social buttons','en'),(1176,1176,'Sign in','en'),(1177,1177,'Sign out','en'),(1178,1178,'Size','en'),(1179,1179,'Common tax settings','en'),(1180,1180,'Hide settings','en'),(1181,1181,'Display settings','en'),(1182,1182,'Rename label','en'),(1183,1183,'<strong>Disables all modules except for the ones that were downloaded from the Marketplace</strong>(soft reset)','en'),(1184,1184,'Specify your <a href=\"{{URL}}\">store information</a>','en'),(1185,1185,'Speed up your store','en'),(1186,1186,'Start selling!','en'),(1187,1187,'State','en'),(1188,1188,'States','en'),(1189,1189,'The states have been deleted successfully','en'),(1190,1190,'The states have been updated successfully','en'),(1191,1191,'Statistics','en'),(1192,1192,'Status','en'),(1193,1193,'Store Maintenance','en'),(1194,1194,'Store currency','en'),(1195,1195,'Contact information','en'),(1196,1196,'Store is closed','en'),(1197,1197,'Store is open','en'),(1198,1198,'Store setup','en'),(1199,1199,'Storefront','en'),(1200,1200,'Subcategories','en'),(1201,1201,'Subject','en'),(1202,1202,'Substring','en'),(1203,1203,'Subtotal range (begin)','en'),(1204,1204,'Subtotal range (end)','en'),(1205,1205,'Successfully imported X new products','en'),(1206,1206,'Successfully imported X new products and updated Y existing products','en'),(1207,1207,'Successfully updated Y products','en'),(1208,1208,'Suffix','en'),(1209,1209,'Synchronous','en'),(1210,1210,'System settings','en'),(1211,1211,'Table','en'),(1212,1212,'Tax disabled','en'),(1213,1213,'Tax enabled','en'),(1214,1214,'The tax has been disabled successfully','en'),(1215,1215,'The tax has been enabled successfully','en'),(1216,1216,'The tax rates have been updated successfully','en'),(1217,1217,'Tax rate has been deleted successfully','en'),(1218,1218,'Tax rate has not been deleted','en'),(1219,1219,'Tax title','en'),(1220,1220,'Taxes','en'),(1221,1221,'Teaser','en'),(1222,1222,'Test email configuration','en'),(1223,1223,'Test shipping rates','en'),(1224,1224,'Tester','en'),(1225,1225,'Text','en'),(1226,1226,'Thank you for your order','en'),(1227,1227,'The SSL certificate installed for your custom website domain is not valid.','en'),(1228,1228,'The SSL certificate installed on your server is not valid. Although you can switch the store to use the secure protocol for the website pages, most Internet browsers will likely display a warning message scaring your website visitors away.','en'),(1229,1229,'The X language has been added and enabled successfully','en'),(1230,1230,'The attachment has been added successfully','en'),(1231,1231,'The changes will be applied to all selected products','en'),(1232,1232,'The detailed image has been added successfully','en'),(1233,1233,'The detailed image has been deleted','en'),(1234,1234,'The detailed images have been updated successfully','en'),(1235,1235,'The exceptions have been updated successfully','en'),(1236,1236,'To enable this add-on, the following add-on(s) must be enabled','en'),(1237,1237,'To enable this add-on, the following add-on(s) must be disabled','en'),(1238,1238,'The following categories were selected to be removed','en'),(1239,1239,'The following dependent add-ons will be disabled automatically','en'),(1240,1240,'The image has been updated','en'),(1241,1241,'The HTTPS protocol is enabled for your website','en'),(1242,1242,'The import is in progress','en'),(1243,1243,'The import will start immediately upon selecting the data file. No additional confirmation prompts will appear.','en'),(1244,1244,'The language you want to delete is the default application language and cannot be deleted','en'),(1245,1245,'The language you want to delete is the default interface language and cannot be deleted','en'),(1246,1246,'The maximum number of uses','en'),(1247,1247,'The module has been partially uninstalled','en'),(1248,1248,'The module is not compatible with your X-Cart version','en'),(1249,1249,'The page has been added','en'),(1250,1250,'The product option group has been added successfully','en'),(1251,1251,'The product option group has been updated successfully','en'),(1252,1252,'The product option groups have been updated successfully','en'),(1253,1253,'Failed to update the product option groups','en'),(1254,1254,'The requested page could not be found.','en'),(1255,1255,'The restoration procedure is irreversible and erases all existing data tables from your store\'s database. It is highly recommended that you back up the data currently stored in the database before restoring a past version of your database from backup.','en'),(1256,1256,'The same as shipping','en'),(1257,1257,'The selected shipping rates have been deleted successfully','en'),(1258,1258,'The state has been added successfully','en'),(1259,1259,'The text label has not been added because its translation into the default application language has not been specified','en'),(1260,1260,'The text label has not been added because its translation into the default interface language has not been specified','en'),(1261,1261,'The text label has not been modified because its translation into the default application language has not been specified','en'),(1262,1262,'The text label has not been modified because its translation into the default interface language has not been specified','en'),(1263,1263,'The upgrade is completed. Please do not close this page until you check your web site and make sure that everything works properly','en'),(1264,1264,'There are no categories','en'),(1265,1265,'There are no rates selected','en'),(1266,1266,'There are no rates available for the specified source/destination and/or package measurements/weight.','en'),(1267,1267,'Find language in the marketplace','en'),(1268,1268,'There is no user with the specified email address','en'),(1269,1269,'There were no orders placed','en'),(1270,1270,'These components require your attention','en'),(1271,1271,'These components will be updated','en'),(1272,1272,'These instructions will appear below the order invoice on the page that customers see after they confirm their order.','en'),(1273,1273,'These links were already provided to you after this store was installed and will be emailed to you again after you start the upgrade process','en'),(1274,1274,'Please contact the module developers to make sure that these modules are compatible with the upcoming upgrade. We do not guarantee that the store will operate correctly if the modules remain enabled. Consider disabling the modules before you proceed to the next step.','en'),(1275,1275,'This address was used as a billing address during a recent purchase','en'),(1276,1276,'This address was used as a shipping address during a recent purchase','en'),(1277,1277,'This component is automatically calculated by a shipping add-on module and cannot be edited','en'),(1278,1278,'This email address is already in use by another user.','en'),(1279,1279,'This email address is used for an existing account. Enter another email address or sign in','en'),(1280,1280,'This is the default zone which covers all addresses. It is not possible to edit this zone\'s countries, states, etc.','en'),(1281,1281,'This month','en'),(1282,1282,'Once the links are regenerated, they will be sent to the store administrator email.','en'),(1283,1283,'After clicking this button, your hard/soft reset links will be regenerated. You may need this if your old links were compromised.','en'),(1284,1284,'This section lists 10 best selling products for today, last week, last month, last year and all time.','en'),(1285,1285,'This section displays order placement statistics','en'),(1286,1286,'This site requires JavaScript to function properly.','en'),(1287,1287,'This week','en'),(1288,1288,'This quarter','en'),(1289,1289,'This year','en'),(1290,1290,'Through','en'),(1291,1291,'Thumbnail','en'),(1292,1292,'Title','en'),(1293,1293,'New tax class','en'),(1294,1294,'Create zone','en'),(1295,1295,'Shipping / Payment info','en'),(1296,1296,'To contact us please use the form below','en'),(1297,1297,'To email','en'),(1298,1298,'To place the order please accept the Terms and Conditions','en'),(1299,1299,'To place the order please complete the previous steps first','en'),(1300,1300,'To reset your password, please enter the email address associated with your user account','en'),(1301,1301,'Today','en'),(1302,1302,'Best sellers','en'),(1303,1303,'Best sellers','en'),(1304,1304,'Translation driver','en'),(1305,1305,'Twitter','en'),(1306,1306,'Type','en'),(1307,1307,'Type of Account','en'),(1308,1308,'Admin has requested a change of password for your account. Please change the password before you proceed.','en'),(1309,1309,'The new password must not coincide with the current password for your account.','en'),(1310,1310,'Uncheck all','en'),(1311,1311,'Understanding Online Payments','en'),(1312,1312,'Error: Version value was not passed','en'),(1313,1313,'Uninstall','en'),(1314,1314,'Units & Formats','en'),(1315,1315,'Units of measurement','en'),(1316,1316,'Unknown','en'),(1317,1317,'Unpacking archives, please wait...','en'),(1318,1318,'Unset','en'),(1319,1319,'Update exceptions','en'),(1320,1320,'Update module','en'),(1321,1321,'Update product','en'),(1322,1322,'Update profile','en'),(1323,1323,'Updated components','en'),(1324,1324,'Updates are available','en'),(1325,1325,'Updates for the X-Cart core and/or installed modules are available','en'),(1326,1326,'Updates for your version ({{version}})','en'),(1327,1327,'Upgrade','en'),(1328,1328,'Upgrade is available','en'),(1329,1329,'Upgrade core','en'),(1330,1330,'Upgrade module','en'),(1331,1331,'Upgrade to version {{version}}','en'),(1332,1332,'Upload','en'),(1333,1333,'Upload add-on','en'),(1334,1334,'Upload and restore','en'),(1335,1335,'Upload file','en'),(1336,1336,'Use a merchant account from your financial institution or choose a bundled payment solution to accept credit cards and other methods of payment on your website.','en'),(1337,1337,'Use a merchant account from your financial institution to accept online payments','en'),(1338,1338,'Use custom js','en'),(1339,1339,'Use default logo','en'),(1340,1340,'Use dynamic image resizing','en'),(1341,1341,'This setting determines what happens if X-Cart cannot find a previously generated resized version of an image it needs to display. If this setting is enabled, an appropriately sized version of the image is generated on the fly. If this setting is disabled, the original (non-resized) image is used.','en'),(1342,1342,'Use the category name','en'),(1343,1343,'Use the navigation bar above this dialog to navigate through the catalog categories','en'),(1344,1344,'Use this section to back up the database of your online store. Please note that the database backup procedure can take up to several minutes.','en'),(1345,1345,'Use this section to define address zones.','en'),(1346,1346,'Use this section to configure your store\'s shipping methods.','en'),(1347,1347,'Use this section to manage the list of existing countries. This list is used in the shipping settings and calculations, as well as in the registration form in the Customer area.','en'),(1348,1348,'Use this section to manage the lists of counties, provinces, regions and states of different countries. The lists are used in shipping settings and calculations, as well as in the registration form in the Customer area.','en'),(1349,1349,'Use this section to restore the database of your online store. Please note that the database restoration procedure can take up to several minutes','en'),(1350,1350,'Use this section to review the list of existing membership levels and add new ones','en'),(1351,1351,'User membership','en'),(1352,1352,'User type','en'),(1353,1353,'Username or email','en'),(1354,1354,'Users','en'),(1355,1355,'Uses count','en'),(1356,1356,'Uses left','en'),(1357,1357,'VAT','en'),(1358,1358,'Validate key','en'),(1359,1359,'Value','en'),(1360,1360,'Version','en'),(1361,1361,'Version change','en'),(1362,1362,'View all open orders','en'),(1363,1363,'View logs','en'),(1364,1364,'View profile','en'),(1365,1365,'View system logs','en'),(1366,1366,'View update log','en'),(1367,1367,'Visit module details page','en'),(1368,1368,'Visit storefront','en'),(1369,1369,'Volume discounts','en'),(1370,1370,'Warning','en'),(1371,1371,'Warning! Not enough items in stock for the order to be processed','en'),(1372,1372,'Warning: this operation cannot be reverted!','en'),(1373,1373,'Watch video','en'),(1374,1374,'Web server','en'),(1375,1375,'Weight modifier','en'),(1376,1376,'What is benchmark?','en'),(1377,1377,'After the export process has been completed, you will be prompted to download the product data file','en'),(1378,1378,'Width (px)','en'),(1379,1379,'Wrong method_id specifed','en'),(1380,1380,'Wrong value is specified for arrival date field. The field was not updated.','en'),(1381,1381,'X-Cart','en'),(1382,1382,'X-Cart online store builder','en'),(1383,1383,'X-Cart shopping cart software','en'),(1384,1384,'XML parser','en'),(1385,1385,'XML sitemap','en'),(1386,1386,'Yahoo!','en'),(1387,1387,'Yandex','en'),(1388,1388,'Yes','en'),(1389,1389,'Yes, I accept the License agreement','en'),(1390,1390,'You are not allowed to access this resource!','en'),(1391,1391,'Your access link has expired.','en'),(1392,1392,'It seems that your custom add-ons were developed for a specific version of X-Cart core. As a result, some adaptation of these add-ons may be required for the upcoming upgrade. Please contact your module developer to assist you with the adaptation.','en'),(1393,1393,'Unfortunately, you don\'t have permissions to access this page.','en'),(1394,1394,'To continue, please {{singin}}','en'),(1395,1395,'sign in','en'),(1396,1396,'Please <a href=\"{{contact_link}}\">contact the administrator</a>','en'),(1397,1397,'You have selected to delete your profile. Please confirm that you want to proceed','en'),(1398,1398,'PHP <a href=\'//php.net/phar\' target=\'_blank\'>.phar</b> extension is not enabled on your server. Here is a <a href=\'http://kb.x-cart.com/en/setting_up_x-cart_5_environment/setting_up_.phar.html\' target=\'_blank\'>manual</a> for setting up the extension.','en'),(1399,1399,'PHP cURL extension is not enabled on your server. Here is a <a href=\'http://kb.x-cart.com/en/setting_up_x-cart_5_environment/setting_up_curl.html\' target=\'_blank\'>manual</a> for setting up the extension.','en'),(1400,1400,'PHP openSSL extension is not enabled on your server. Here is a <a href=\'http://kb.x-cart.com/en/setting_up_x-cart_5_environment/setting_up_openssl.html\' target=\'_blank\'>manual</a> for setting up the extension.','en'),(1401,1401,'Your server does not have an SSL certificate. Ask your hosting team to install an SSL certificate or create a self-signed one according to this <a href=\'http://kb.x-cart.com/en/setting_up_x-cart_5_environment/creating_self-signed_ssl_certificate.html\' target=\'_blank\'>guide</a>.','en'),(1402,1402,'Previous attempt to connect to the Marketplace server failed.','en'),(1403,1403,'cURL returned an error while establishing a connection: {{error code}} {{error message}}','en'),(1404,1404,'After the problem has been fixed, try to <a href=\'{{clear_cache}}\'>connect</a> again.','en'),(1405,1405,'Require to change password on next log in','en'),(1406,1406,'Change password','en'),(1407,1407,'Your account information will be emailed to you shortly','en'),(1408,1408,'Your account information will be emailed to you shortly.','en'),(1409,1409,'Your email','en'),(1410,1410,'Your name','en'),(1411,1411,'Your products will be exported as a CSV file.','en'),(1412,1412,'Your cart is empty','en'),(1413,1413,'Your state','en'),(1414,1414,'Your storefront','en'),(1415,1415,'Your store is currently unable to calculate taxes','en'),(1416,1416,'Zip code','en'),(1417,1417,'Zip/postal code masks','en'),(1418,1418,'Zone','en'),(1419,1419,'Zone name','en'),(1420,1420,'Zones','en'),(1421,1421,'and','en'),(1422,1422,'by','en'),(1423,1423,'details','en'),(1424,1424,'disabled','en'),(1425,1425,'downloads','en'),(1426,1426,'enabled','en'),(1427,1427,'from URL','en'),(1428,1428,'from local computer','en'),(1429,1429,'from local server','en'),(1430,1430,'hard reset','en'),(1431,1431,'in description','en'),(1432,1432,'in title','en'),(1433,1433,'is available','en'),(1434,1434,'items available','en'),(1435,1435,'less','en'),(1436,1436,'modules','en'),(1437,1437,'ms','en'),(1438,1438,'never','en'),(1439,1439,'none','en'),(1440,1440,'The following archives could not be unpacked: {{list}}','en'),(1441,1441,'Try to unpack them manually, then click on <a href=\'{{link}}\'>this link</a>.','en'),(1442,1442,'not available for sale','en'),(1443,1443,'not installed','en'),(1444,1444,'not ready to download packs. Please, try again','en'),(1445,1445,'of','en'),(1446,1446,'options','en'),(1447,1447,'or','en'),(1448,1448,'proxy','en'),(1449,1449,'sale','en'),(1450,1450,'should be performed manually','en'),(1451,1451,'soft reset','en'),(1452,1452,'trying to install a non-marketplace module: \"{{name}}\"','en'),(1453,1453,'trying to unpack non-downloaded archives','en'),(1454,1454,'Unable to install: The following archives could not be unpacked: {{list}}','en'),(1455,1455,'Unable to test files: The following archives could not be unpacked: {{list}}','en'),(1456,1456,'unknown','en'),(1457,1457,'you save','en'),(1458,1458,'Action \"{{class}}::{{action}}\", {{message}}','en'),(1459,1459,'The key has been validated, but the module {{module}} has not been found','en'),(1460,1460,'Response from Marketplace: {{response}}','en'),(1461,1461,'Please specify a non-empty key','en'),(1462,1462,'A DB error occurred while uninstalling the module \"{{name}}\"','en'),(1463,1463,'The module \"{{name}}\" has been uninstalled successfully','en'),(1464,1464,'Unable to delete the module \"{{name}}\" files: some dirs do not have write permissions: {{dirs}}','en'),(1465,1465,'License not received','en'),(1466,1466,'invalid module ID passed: \"{{moduleId}}\"','en'),(1467,1467,'unable to add module entry to the installation list: \"{{path}}\"','en'),(1468,1468,'module version \"{{module_version}}\" does not match the core version (\"{{core_version}}\")','en'),(1469,1469,'unable to upload the module','en'),(1470,1470,'The modules have been successfully installed','en'),(1471,1471,'{{ext}} file type','en'),(1472,1472,'Zone not found ({{zoneId}})','en'),(1473,1473,'The profiles have been merged','en'),(1474,1474,'The profile has been registered. The password has been sent to the user\'s email address','en'),(1475,1475,'<a href=\"terms-and-conditions.html\">Terms and conditions details</a><br /><br />Edit the \"Terms and conditions text\" label via the Admin area','en'),(1476,1476,'<span class=\"modules-amount\">{{count}}</span> module(s) selected','en'),(1477,1477,'State cannot be created with an unknown country code ({{code}})','en'),(1478,1478,'There are no labels translated to {{language}}','en'),(1479,1479,'Module with ID \"{{id}}\" not found','en'),(1480,1480,'We are already aware of this problem and are working on it. If you would like to get in touch, feel free to contact us via our Help center at <a href=\"{{url}}\" target=\"_blank\">{{url}}</a>.','en'),(1481,1481,'The following expected input data has a wrong format or is empty: {{fields}}','en'),(1482,1482,'Unknown language: {{code}}','en'),(1483,1483,'deleted','en'),(1484,1484,'It is impossible to detect valid SSL certificate availability on your server because curl extension is not installed.','en'),(1485,1485,'Your store is configured to use the secure protocol for the store\'s back end, checkout, sign-in and profile pages.','en'),(1486,1486,'We have found a valid SSL certificate installed on the server. Now you can switch the store to use the secure protocol for the store\'s back end, checkout, sign-in and profile pages.','en'),(1487,1487,'Support','en'),(1488,1488,'After the upgrade is completed, please check your website. If you find that the site is not operating properly, please try the following','en'),(1489,1489,'Start Import','en'),(1490,1490,'New import','en'),(1491,1491,'Critical errors have been detected in the files you are trying to import. Please correct the errors and try again.','en'),(1492,1492,'Data has not been found','en'),(1493,1493,'Clear the item\'s data before importing this item','en'),(1494,1494,'Do not verify images to run the process faster','en'),(1495,1495,'Delete temporary files after the import is completed','en'),(1496,1496,'Import settings','en'),(1497,1497,'Upload files','en'),(1498,1498,'Samples of the file structures','en'),(1499,1499,'Continue import','en'),(1500,1500,'Re-upload files','en'),(1501,1501,'The import process may take a while to complete. You may close the page; the process will continue in the background. If the process takes long enough, we will send you a notification when it is completed.','en'),(1502,1502,'The import process may take a while to complete. Please do not close this page until the process is fully completed. If you have closed the page, please re-open it to complete the import process as it is in progress only when the page is open.','en'),(1503,1503,'Verification results','en'),(1504,1504,'Import by CSV','en'),(1505,1505,'Order by','en'),(1506,1506,'Query','en'),(1507,1507,'Count','en'),(1508,1508,'Products found','en'),(1509,1509,'Cleanup queries','en'),(1510,1510,'requested only once','en'),(1511,1511,'requested once or twice','en'),(1512,1512,'Cleanup','en'),(1513,1513,'The shipping rate has been added successfully','en'),(1514,1514,'The shipping rate cannot be added','en'),(1515,1515,'Please make sure that <b>\"min weight\", \"min total\", \"min items\", \"shipping zone\" and \"shipping method\"</b> fields do not overlap with those of any other shipping rates.','en'),(1516,1516,'Administrator area','en'),(1517,1517,'This section displays order processing statistics','en'),(1518,1518,'Compare your result with other servers','en'),(1519,1519,'The values are average','en'),(1520,1520,'Customer area is closed for maintenance.','en'),(1521,1521,'This page allows you to configure shipping methods, address zones and shipping charges.','en'),(1522,1522,'Shipping charges','en'),(1523,1523,'New address','en'),(1524,1524,'Forgot your password?','en'),(1525,1525,'No such user','en'),(1526,1526,'Edit attributes','en'),(1527,1527,'To set up attributes specific for product classes, define the product classes first.','en'),(1528,1528,'Here you can define attributes for all of your products and sets of attributes for different classes of your products.','en'),(1529,1529,'Here you can define how your payment methods will look in the Customer area.','en'),(1530,1530,'More payment methods can be added by installing appropriate payment modules. Check out the Marketplace to find and install the payment modules you require.','en'),(1531,1531,'Need more payment methods?','en'),(1532,1532,'Upload from server','en'),(1533,1533,'Upload from your computer','en'),(1534,1534,'Warning: The restoration procedure is irreversible and erases all existing data tables from the store\'s database. It is highly recommended that you back up the data currently stored in your database before restoring a past version of your database from backup.','en'),(1535,1535,'Also, if you want to upload the backup of <b>another</b> X-Cart installation, ensure that you have completed the steps described <a href=\'{{url}}\'>here</a>','en'),(1536,1536,'Use this section to back up the database of your online store. Please note that the database backup procedure can take up to several minutes.','en'),(1537,1537,'If you choose to create an SQL file, you will be able to download the file from the server later and, after that, delete it from the server using the \"Delete SQL file\" button.','en'),(1538,1538,'You cannot save database data to a file on the web server (\'var/backup/sqldump.sql.php\').','en'),(1539,1539,'The directory \'var/backup/\' does not exist or is not writable.','en'),(1540,1540,'Ship in a separate box','en'),(1541,1541,'You will be able to provide additional product info (images, attributes, etc.) after you submit this form.','en'),(1542,1542,'Clone this product','en'),(1543,1543,'Clone','en'),(1544,1544,'Preview product page','en'),(1545,1545,'Tax class','en'),(1546,1546,'There are no images loaded for this product','en'),(1547,1547,'No product class assigned','en'),(1548,1548,'Name, e.g. Apparel','en'),(1549,1549,'Manage product classes','en'),(1550,1550,'If you have multiple products sharing the same set of attributes, it makes sence to set up a common product type for these products and create the attributes on the product type level.','en'),(1551,1551,'Attribute option','en'),(1552,1552,'Modifiers','en'),(1553,1553,'Default option','en'),(1554,1554,'Length x Width x Height','en'),(1555,1555,'Maximum number of items per box','en'),(1556,1556,'Attribute name','en'),(1557,1557,'Attribute values','en'),(1558,1558,'Re-generate links','en'),(1559,1559,'Attribute group','en'),(1560,1560,'Attribute','en'),(1561,1561,'No group','en'),(1562,1562,'No attributes','en'),(1563,1563,'No attributes assigned','en'),(1564,1564,'Including subcategories','en'),(1565,1565,'The provided file contains the following language labels:','en'),(1566,1566,'The language labels have been successfully imported:','en'),(1567,1567,'Language:','en'),(1568,1568,'labels count:','en'),(1569,1569,'Number of ignored rows:','en'),(1570,1570,'Please confirm that you want to proceed with the import or cancel the operation.','en'),(1571,1571,'Failure: Wrong file format.','en'),(1572,1572,'The language CSV file should be a text file containing three columns per row (the columns must be separated by a comma:','en'),(1573,1573,'language code,','en'),(1574,1574,'label name,','en'),(1575,1575,'label translation.','en'),(1576,1576,'Please make sure your file format is as described.','en'),(1577,1577,'default','en'),(1578,1578,'Get CSV','en'),(1579,1579,'Not selected','en'),(1580,1580,'To change your roles, contact the store administrator','en'),(1581,1581,'You have the following roles:','en'),(1582,1582,'Welcome','en'),(1583,1583,'Edit attribute values','en'),(1584,1584,'Click if you do not want to add this value to new products or class assigns automatically','en'),(1585,1585,'Click if you want to add this value to new products or class assigns automatically','en'),(1586,1586,'Enabled in catalog','en'),(1587,1587,'Disabled in catalog','en'),(1588,1588,'What to export','en'),(1589,1589,'editable','en'),(1590,1590,'multi value','en'),(1591,1591,'Removing this attribute will affect all the products. Leave this blank to hide this option for the product.','en'),(1592,1592,'Delete all files','en'),(1593,1593,'Before editing attributes specific for the chosen type you should save the changes','en'),(1594,1594,'Default value','en'),(1595,1595,'New value','en'),(1596,1596,'New group','en'),(1597,1597,'New Export','en'),(1598,1598,'The following files are too large to be included in the archive','en'),(1599,1599,'Start Export','en'),(1600,1600,'Export settings','en'),(1601,1601,'Export public files as','en'),(1602,1602,'URLs','en'),(1603,1603,'local files','en'),(1604,1604,'Choosing \"URLs\" will link the exported data to your public files (product and category images, downloadable files shown on product pages, and so on) through direct URLs. Public files won\'t be included into the archive with exported files; however, private files (for example, digitally distributed products) will go into the archive anyway.<br /><br />Choosing \"local files\" will provide file paths to your files, relative to your X-Cart installation.','en'),(1605,1605,'Download all files in a single archive','en'),(1606,1606,'Export completed','en'),(1607,1607,'Exporting data...','en'),(1608,1608,'The export process may take a while to complete. You may close the page, the process will continue in the background. If the process takes long enough, we will send you a notification when it is completed.','en'),(1609,1609,'The export process may take a while to complete. Please do not close this page until the process is fully completed. If you have closed the page, please re-open it to complete the export process as it is in progress only when the page is open.','en'),(1610,1610,'Export failed','en'),(1611,1611,'Export was not started','en'),(1612,1612,'Export cannot be started because it is disabled or there is another running export process. Try again later.','en'),(1613,1613,'Export in CSV','en'),(1614,1614,'Please make sure the following modules are installed and enabled:','en'),(1615,1615,'You have no payment methods enabled at your store','en'),(1616,1616,'This method does not support the current store currency and is not available to customers','en'),(1617,1617,'This method is in test mode','en'),(1618,1618,'Configure','en'),(1619,1619,'This payment method cannot be enabled until you configure it','en'),(1620,1620,'Edit product','en'),(1621,1621,'There are no shipping methods defined for this carrier','en'),(1622,1622,'Click to edit rates','en'),(1623,1623,'Click to add rates','en'),(1624,1624,'Add rates','en'),(1625,1625,'Edit','en'),(1626,1626,'Click to edit states','en'),(1627,1627,'Click to add states','en'),(1628,1628,'Add states','en'),(1629,1629,'Add state','en'),(1630,1630,'Click to edit all the translations for this label','en'),(1631,1631,'Warning! Installing this module will overwrite any existing label translations for this language.','en'),(1632,1632,'Please','en'),(1633,1633,'upgrade core','en'),(1634,1634,'No modules found','en'),(1635,1635,'No users found','en'),(1636,1636,'No products found','en'),(1637,1637,'No profiles found','en'),(1638,1638,'Installed version','en'),(1639,1639,'outdated','en'),(1640,1640,'Purchased','en'),(1641,1641,'View in list','en'),(1642,1642,'Popularity','en'),(1643,1643,'Module\'s page','en'),(1644,1644,'Activate key','en'),(1645,1645,'if you have any questions','en'),(1646,1646,'Success','en'),(1647,1647,'Fax','en'),(1648,1648,'The shipping cost has been calculated based on the following combination of products into packages:','en'),(1649,1649,'Package','en'),(1650,1650,'weight','en'),(1651,1651,'dimensions','en'),(1652,1652,'item(s)','en'),(1653,1653,'Placed on','en'),(1654,1654,'OR','en'),(1655,1655,'Root categories','en'),(1656,1656,'WARNING! There are no more available administrator profiles. You will not be able to manage your store after you delete this profile.','en'),(1657,1657,'Are you sure you want to delete this profile?','en'),(1658,1658,'Autogenerate Clean URL','en'),(1659,1659,'products','en'),(1660,1660,'Already added','en'),(1661,1661,'Edit attribute','en'),(1662,1662,'New attribute','en'),(1663,1663,'Manage groups','en'),(1664,1664,'No attributes are defined for the product class yet.','en'),(1665,1665,'Need a license key?','en'),(1666,1666,'Your X-Cart installation is licensed for evaluation purposes only.','en'),(1667,1667,'You can build your website during FREE evaluation, but you cannot use this installation for real sales without buying a license.','en'),(1668,1668,'For details refer to','en'),(1669,1669,'Removing this message without buying a Full license is prohibited and will result in legal proceedings.','en'),(1670,1670,'Core version','en'),(1671,1671,'verified version','en'),(1672,1672,'Loopback test','en'),(1673,1673,'Warning! InnoDB engine is not supported. It is required for software operation','en'),(1674,1674,'Not detected','en'),(1675,1675,'Warning!','en'),(1676,1676,'PHP \'gd\' extension is not installed.','en'),(1677,1677,'Curl version','en'),(1678,1678,'Curl options','en'),(1679,1679,'cannot create directory','en'),(1680,1680,'subdirectories problems','en'),(1681,1681,'file does not exist','en'),(1682,1682,'Directory is empty','en'),(1683,1683,'Comma','en'),(1684,1684,'Semicolon','en'),(1685,1685,'Tab','en'),(1686,1686,'A membership name cannot contain such symbols as \\, \' and \". Also, it cannot exceed 32 characters.','en'),(1687,1687,'Please enter a unique membership name','en'),(1688,1688,'Required field','en'),(1689,1689,'The value must be in the range of','en'),(1690,1690,'Click to open','en'),(1691,1691,'Click to close','en'),(1692,1692,'Double quote','en'),(1693,1693,'Single quote','en'),(1694,1694,'empty','en'),(1695,1695,'Warning! CSV file was not specified.','en'),(1696,1696,'Warning! The file you have specified in the \'File (CSV) local\' field does not exist or cannot be read.','en'),(1697,1697,'Please enter the correct file location or set correct file permissions.','en'),(1698,1698,'Warning! The file you have specified in the \'File (CSV) for upload\' field has not been uploaded to the server.','en'),(1699,1699,'Already exists','en'),(1700,1700,'Confirmation does not match','en'),(1701,1701,'Incomplete','en'),(1702,1702,'Complete','en'),(1703,1703,'Please, enter a valid email address','en'),(1704,1704,'Please, enter a valid IP address','en'),(1705,1705,'Result pages','en'),(1706,1706,'User activity','en'),(1707,1707,'now disabled','en'),(1708,1708,'Upgrade for X-Cart core is available','en'),(1709,1709,'Now disabled','en'),(1710,1710,'Will be installed','en'),(1711,1711,'The module is incompatible with the new core version that is going to be installed','en'),(1712,1712,'Check again','en'),(1713,1713,'Failure','en'),(1714,1714,'An upgrade is a dangerous process that may result in a crashed website. It is strongly recommended to create a full back up of your store (the code and the database) and download it to a local computer before you proceed to the next step.','en'),(1715,1715,'Some files are modified','en'),(1716,1716,'The system has detected that some custom modifications were made by editing core and module files, not by writing new modules. In order to proceed with the upgrade you should decide what to do with the modifications','en'),(1717,1717,'Replace all modified files with the unmodified newer versions','en'),(1718,1718,'the custom modifications will be lost','en'),(1719,1719,'Do not replace selected files and ignore their newer versions','en'),(1720,1720,'your web site may crash','en'),(1721,1721,'Select all','en'),(1722,1722,'Unselect all','en'),(1723,1723,'New user registered','en'),(1724,1724,'Website','en'),(1725,1725,'Last 24 hours','en'),(1726,1726,'Last 7 days','en'),(1727,1727,'Last month','en'),(1728,1728,'Store lifetime','en'),(1729,1729,'View all','en'),(1730,1730,'Changes of attribute values will affect only this product. Changes of attribute names and of the attribute list will affect all the products of the corresponding class.','en'),(1731,1731,'Changes of attribute values will affect only this product. Changes of attribute names and of the attribute list will affect all the products','en'),(1732,1732,'Apply value changes locally','en'),(1733,1733,'Apply value changes globally','en'),(1734,1734,'The password is the one you specified during checkout.','en'),(1735,1735,'The password is the one you specified.','en'),(1736,1736,'Register user','en'),(1737,1737,'Test email notification','en'),(1738,1738,'Test email notification:','en'),(1739,1739,'Your new password','en'),(1740,1740,'You can now use the following credentials to access your account','en'),(1741,1741,'To change the password, log into your company account and use the \'My account\' link','en'),(1742,1742,'New safe mode access key has been generated','en'),(1743,1743,'Use the following key to access safe mode','en'),(1744,1744,'Hard reset (disables all the installed modules and runs the X-Cart application)','en'),(1745,1745,'Soft reset (disables all the modules except for the ones that were downloaded from X-Cart\'s Marketplace and runs the X-Cart application)','en'),(1746,1746,'The export is complete.','en'),(1747,1747,'Totals','en'),(1748,1748,'Your profile was modified','en'),(1749,1749,'A user has submitted the Contact Us form','en'),(1750,1750,'Product ID','en'),(1751,1751,'item(s) in stock','en'),(1752,1752,'Are you sure you want to clear your cart?','en'),(1753,1753,'attributes','en'),(1754,1754,'All rights reserved.','en'),(1755,1755,'Addresses list is empty','en'),(1756,1756,'Order payment','en'),(1757,1757,'Forgot password','en'),(1758,1758,'Max','en'),(1759,1759,'Exact phrase','en'),(1760,1760,'All words','en'),(1761,1761,'Any word','en'),(1762,1762,'Fewer search options','en'),(1763,1763,'More search options','en'),(1764,1764,'- OR -','en'),(1765,1765,'Back to Login form','en'),(1766,1766,'Back to modules','en'),(1767,1767,'Try the search-as-you-type feature...','en'),(1768,1768,'Choose the product options first','en'),(1769,1769,'This operation is irreversible. Are you sure you want to proceed?','en'),(1770,1770,'Order number','en'),(1771,1771,'Date range','en'),(1772,1772,'Clear all fields','en'),(1773,1773,'There are no shipping methods available','en'),(1774,1774,'Enter the shipping address to see delivery methods available to you','en'),(1775,1775,'C.O.D. fee included','en'),(1776,1776,'Existing Customer?','en'),(1777,1777,'Login Here','en'),(1778,1778,'Sorry, your order payment was cancelled.','en'),(1779,1779,'Sorry, your order payment failed.','en'),(1780,1780,'Failure reason:','en'),(1781,1781,'Cardholder name','en'),(1782,1782,'Credit card number','en'),(1783,1783,'Start date','en'),(1784,1784,'Expiration date','en'),(1785,1785,'Issue no','en'),(1786,1786,'CVV2','en'),(1787,1787,'Change attributes','en'),(1788,1788,'Call us: ','en'),(1789,1789,'Compare products','en'),(1790,1790,'Email','en'),(1791,1791,'This address was used as a','en'),(1792,1792,'billing','en'),(1793,1793,'shipping','en'),(1794,1794,'address during the recent purchase','en'),(1795,1795,'Out of Stock','en'),(1796,1796,'Cart','en'),(1797,1797,'More','en'),(1798,1798,'Back','en'),(1799,1799,'Your Account','en'),(1800,1800,'See comparison chart','en'),(1801,1801,'Billing address is the same as Shipping','en'),(1802,1802,'Complete billing address','en'),(1803,1803,'Continue as guest','en'),(1804,1804,'Enter your email','en'),(1805,1805,'Order cannot be placed because not all of the required fields are completed. Please check the form and try again.','en'),(1806,1806,'The \"{{file}}\" file was not uploaded','en'),(1807,1807,'Front page','en'),(1808,1808,'Please select the products first','en'),(1809,1809,'Aggregation cache has been cleared','en'),(1810,1810,'Authorized amount','en'),(1811,1811,'Captured amount','en'),(1812,1812,'Refunded amount','en'),(1813,1813,'The method is not configured and cannot be used','en'),(1814,1814,'The only remaining active administrator profile cannot be deleted.','en'),(1815,1815,'Shipping address is invalid','en'),(1816,1816,'Invoice #{{orderId}}, {{time}}','en'),(1817,1817,'Address type has a wrong value','en'),(1818,1818,'Address not selected','en'),(1819,1819,'Address not found','en'),(1820,1820,'\"{{product}} product\" attributes','en'),(1821,1821,'The attributes have been successfully updated','en'),(1822,1822,'Please select a different attribute','en'),(1823,1823,'The address has been deleted','en'),(1824,1824,'You tried to buy more items of \"{{product}}\" product {{description}} than are in stock. We have {{amount}} item(s) only. Please adjust the product quantity.','en'),(1825,1825,'The product has not been added to cart','en'),(1826,1826,'The item has not been removed from cart','en'),(1827,1827,'You have an unpaid order #{{ORDER}}','en'),(1828,1828,'Order not found','en'),(1829,1829,'No payment method selected','en'),(1830,1830,'No payment methods found for criteria: \'{{substring}}\' / {{country}}.','en'),(1831,1831,'All countries','en'),(1832,1832,'System will download and install this module from marketplace. Continue?','en'),(1833,1833,'Try to change the search criteria or find the needed solution in <a href=\"{{URL}}\" class=\"no-payments-marketplace-link\">marketplace</a>','en'),(1834,1834,'Try to <span class=\"search-worldwide\">search worldwide</span> or find the needed solution in <a href=\"{{URL}}\" class=\"no-payments-marketplace-link\">marketplace</a>','en'),(1835,1835,'The selected payment method is obsolete or invalid. Select another payment method','en'),(1836,1836,'The form could not be identified as a form generated by X-Cart. The reason may be that a substantial period of time has elapsed since you opened the page with this form or the page was opened in more than one browser tab. If you did not open the page with this form, you might be under a CSRF attack.','en'),(1837,1837,'Select products from the list','en'),(1838,1838,'Classes & attributes','en'),(1839,1839,'No category defined','en'),(1840,1840,'Safe mode access key has been re-generated','en'),(1841,1841,'{{paymentMethod}} settings','en'),(1842,1842,'An attempt to update settings of unknown payment method','en'),(1843,1843,'The payment method settings have been successfully updated','en'),(1844,1844,'The \"{{file}}\" is not CSV or archive','en'),(1845,1845,'Unable to delete file','en'),(1846,1846,'SQL file was deleted successfully','en'),(1847,1847,'File not found','en'),(1848,1848,'Only enabled modules can be packed','en'),(1849,1849,'Module packing is available in the DEVELOPER mode only. Check etc/config.php file','en'),(1850,1850,'The countries list for the zone is empty. Please specify the countries that belong in this zone.','en'),(1851,1851,'unknown error','en'),(1852,1852,'The payment method has been added successfully','en'),(1853,1853,'Manage attribute groups','en'),(1854,1854,'Measuring performance in manual mode failed.','en'),(1855,1855,'File uploading error.','en'),(1856,1856,'Making a backup of the current database state ... ','en'),(1857,1857,'done','en'),(1858,1858,'Loading the database from file .','en'),(1859,1859,'Database restored successfully!','en'),(1860,1860,'The database has not been restored because of errors','en'),(1861,1861,'Restoring database from backup .','en'),(1862,1862,'Return to Admin interface','en'),(1863,1863,'Global attributes','en'),(1864,1864,'Global','en'),(1865,1865,'Widgets cache has been cleared','en'),(1866,1866,'Widgets cache has not been cleaned completely','en'),(1867,1867,'Failed to update category image','en'),(1868,1868,'The file was not loaded due to a server-side failure.','en'),(1869,1869,'Tax classes','en'),(1870,1870,'The detailed image has not been deleted','en'),(1871,1871,'Attributes have been updated successfully','en'),(1872,1872,'Product class have been updated successfully','en'),(1873,1873,'Product class name is empty','en'),(1874,1874,'Product-Specific','en'),(1875,1875,'Product-Specific attributes','en'),(1876,1876,'A disabled language cannot be default.','en'),(1877,1877,'Cannot autogenerate a clean URL for the product name \"{{name}}\". Please specify it manually.','en'),(1878,1878,'HTTPS option has been successfully enabled','en'),(1879,1879,'HTTPS option has been disabled','en'),(1880,1880,'Inventory has been successfully updated','en'),(1881,1881,'Modules license agreements','en'),(1882,1882,'{{module}} license agreement','en'),(1883,1883,'Customers','en'),(1884,1884,'Customers imported','en'),(1885,1885,'Products imported','en'),(1886,1886,'Attributes imported','en'),(1887,1887,'Categories imported','en'),(1888,1888,'Failed write to file','en'),(1889,1889,'No write permissions to directory','en'),(1890,1890,'Add attribute','en'),(1891,1891,'Default for customers','en'),(1892,1892,'Default for admins','en'),(1893,1893,'Labels','en'),(1894,1894,'Custom','en'),(1895,1895,'Recommended','en'),(1896,1896,'By Price - cheapest first','en'),(1897,1897,'By Price - cheapest last','en'),(1898,1898,'By Name - A-Z','en'),(1899,1899,'By Name - Z-A','en'),(1900,1900,'Displays the number of labels translated into the language','en'),(1901,1901,'Label','en'),(1902,1902,'Plain field','en'),(1903,1903,'Textarea','en'),(1904,1904,'Order history','en'),(1905,1905,'Compact view','en'),(1906,1906,'Expanded view','en'),(1907,1907,'Item','en'),(1908,1908,'Yes/No','en'),(1909,1909,'In stock','en'),(1910,1910,'Login/Email','en'),(1911,1911,'Anonymous','en'),(1912,1912,'requested for','en'),(1913,1913,'<p>The order subtotal exceeds the maximum allowed value ({{max_order_amount}})</p>','en'),(1914,1914,'<p>The order subtotal is less than the minimum allowed value ({{min_order_amount}})</p>','en'),(1915,1915,'View all modules','en'),(1916,1916,'Storefront is closed','en'),(1917,1917,'Open','en'),(1918,1918,'Storefront is closed (<a href=\"{{shop_url}}\" target=\"_blank\">private link</a>)','en'),(1919,1919,'Storefront is open','en'),(1920,1920,'Closed','en'),(1921,1921,'The attribute group has been updated','en'),(1922,1922,'The attribute group has been added','en'),(1923,1923,'The attribute option has been updated','en'),(1924,1924,'The attribute option has been added','en'),(1925,1925,'The category has been updated','en'),(1926,1926,'The category has been added','en'),(1927,1927,'The address field has been updated','en'),(1928,1928,'The address field has been added','en'),(1929,1929,'The attribute has been updated','en'),(1930,1930,'The attribute has been added','en'),(1931,1931,'The product class has been updated','en'),(1932,1932,'The product class has been added','en'),(1933,1933,'The product selection has been updated','en'),(1934,1934,'The product selection has been added','en'),(1935,1935,'Front page updated','en'),(1936,1936,'The profile has been modified successfully','en'),(1937,1937,'The tax class has been updated','en'),(1938,1938,'The tax class has been added','en'),(1939,1939,'Order #{{id}}','en'),(1940,1940,'Enter pattern here','en'),(1941,1941,'Find countries','en'),(1942,1942,'Find states','en'),(1943,1943,'Enter search pattern','en'),(1944,1944,'Import language from CSV file','en'),(1945,1945,'Requested zone does not exist','en'),(1946,1946,'Install modules','en'),(1947,1947,'Add products','en'),(1948,1948,'More actions for selected','en'),(1949,1949,'Order #{{id}} details','en'),(1950,1950,'Your order details will be sent to your email address','en'),(1951,1951,'{{count}} created','en'),(1952,1952,'{{count}} updated','en'),(1953,1953,'The script found {{number}} problem(s) during verification','en'),(1954,1954,'The script found {{number}} problem(s) during import','en'),(1955,1955,'Row {{number}}','en'),(1956,1956,'Row(s) {{numbers}}','en'),(1957,1957,'Critical error','en'),(1958,1958,'Import mode','en'),(1959,1959,'Create new items and update existing items','en'),(1960,1960,'Update existing items, but skip new items','en'),(1961,1961,'During import in the <strong>\'Create new items and update existing items\'</strong> mode, if your import file contains items that do not already exist in the store\'s database, these items will be created as a result of import. New items can be created based on the following master IDs:<ul>{{keys}}</ul>If you only want to update the existing items without creating any new ones, switch to the mode <strong>\'Update existing items, but skip new items\'</strong>.<br /><br />Note that any missing items that are dependent on existing items will be created in both the modes. For example, if an existing product being updated through import does not have a category specified, the category will be created.','en'),(1962,1962,'CSV or ZIP files, total max size: {{size}}','en'),(1963,1963,'Download CSV files','en'),(1964,1964,'<p>The order subtotal exceeds the maximum allowed value ({{max_order_amount}}). Please remove some items from the cart.</p>','en'),(1965,1965,'<p>The order subtotal is less than the minimum allowed value ({{min_order_amount}}). Please add some items to the cart.</p>','en'),(1966,1966,'{{name}} attributes','en'),(1967,1967,'Custom attributes','en'),(1968,1968,'These attributes can be applied to the \"{{name}}\" product class.','en'),(1969,1969,'These attributes can only be applied to this particular product.','en'),(1970,1970,'These attributes can be applied to all the products in the store.','en'),(1971,1971,'Your trial period has expired','en'),(1972,1972,'Your trial period expires today','en'),(1973,1973,'Live','en'),(1974,1974,'Print','en'),(1975,1975,'Print selected','en'),(1976,1976,'Test','en'),(1977,1977,'Residential','en'),(1978,1978,'Commercial','en'),(1979,1979,'No delimiter','en'),(1980,1980,'Space','en'),(1981,1981,'MM','en'),(1982,1982,'CM','en'),(1983,1983,'DM','en'),(1984,1984,'IN','en'),(1985,1985,'mm','en'),(1986,1986,'cm','en'),(1987,1987,'dm','en'),(1988,1988,'inches','en'),(1989,1989,'Mr.','en'),(1990,1990,'Ms.','en'),(1991,1991,'Mrs.','en'),(1992,1992,'# selected','en'),(1993,1993,'LB','en'),(1994,1994,'OZ','en'),(1995,1995,'KG','en'),(1996,1996,'G','en'),(1997,1997,'lbs','en'),(1998,1998,'oz','en'),(1999,1999,'kg','en'),(2000,2000,'g','en'),(2001,2001,'Registered Customers','en'),(2002,2002,'Anonymous Customers','en'),(2003,2003,'Show','en'),(2004,2004,'Email again','en'),(2005,2005,'Safe mode links were emailed','en'),(2006,2006,'These links were already provided to you after this store was installed and will be emailed to you again after you start the upgrade process.','en'),(2007,2007,'For any emergency you can use the hard, soft and restore-state links. Pay attention, that these links just disable certain modules in your store, but not make any backups.','en'),(2008,2008,'Not enough disk space. Required: {{req}} (+{{reserve}} reserve). Available: {{avail}}','en'),(2009,2009,'Cannot connect to the Marketplace server','en'),(2010,2010,'Empty \"class\" parameter is passed to the {{method}}','en'),(2011,2011,'You need hard and soft reset links in case some 3rd party addon <a href=\"{{article}}\" target=\"_blank\">crashes your web store</a>','en'),(2012,2012,'We strongly recommend <b>to make a full backup</b> of your live store before starting the upgrade process. If your store crashes as a result of a failed upgrade, you will be able to <a href=\"{{article}}\" target=\"_blank\">restore it</a> from backup.','en'),(2013,2013,'Don’t forget to create a backup!','en'),(2014,2014,'Backup your store with Backup Master','en'),(2015,2015,'Yes, I\'ve made the full backup of my store files and database','en'),(2016,2016,'We are doing our best to make your upgrade process not only easy to do, but safe.','en'),(2017,2017,'Use our new nifty module to automatically backup your store and be able to restore it if anything crops up.','en'),(2018,2018,'We will email you with <b>emergency links</b> to disable custom modules and stay only with original add-ons.<br/> Pay attention, these links do not create backups.','en'),(2019,2019,'More info is available in X-Cart\'s Knowledge Base article <a href=\"{{article}}\" target=\"_blank\">What to do if you cannot access your store...</a>','en'),(2020,2020,'Couldn\'t move image {{path}}','en'),(2021,2021,'Couldn\'t move {{count}} images. See log for details.','en'),(2022,2022,'This module uses PHP\\\'s cURL functions which are disabled on your web server','en'),(2023,2023,'Package weight','en'),(2024,2024,'Package weight ({{units}})','en'),(2025,2025,'Package subtotal','en'),(2026,2026,'Package subtotal ({{units}})','en'),(2027,2027,'Source address','en'),(2028,2028,'Postal Code','en'),(2029,2029,'Destination address','en'),(2030,2030,'Note: a new window will be opened','en'),(2031,2031,'Length','en'),(2032,2032,'Width','en'),(2033,2033,'Height','en'),(2034,2034,'Postal/ZIP Code','en'),(2035,2035,'Transaction type','en'),(2036,2036,'Authorization and Capture','en'),(2037,2037,'Authorization only','en'),(2038,2038,'Invoice number prefix','en'),(2039,2039,'a side box','en'),(2040,2040,'the main column','en'),(2041,2041,'expired','en'),(2042,2042,'\"{{product}}\" options','en'),(2043,2043,'Private','en'),(2044,2044,'Unavailable','en'),(2045,2045,'Blocked','en'),(2046,2046,'The product SKU#\"{{SKU}}\" is already set as featured for the category','en'),(2047,2047,'Add featured products for \"{{category}}\"','en'),(2048,2048,'Package properties','en'),(2049,2049,'Shipment options','en'),(2050,2050,'Cash on delivery','en'),(2051,2051,'Test mode','en'),(2052,2052,'Packaging','en'),(2053,2053,'Package dimensions (inches)','en'),(2054,2054,'Autogenerated','en'),(2055,2055,'Custom','en'),(2056,2056,'After activation Skrill will give you access to a new section in your Skrill account called \"Merchant tools\". Please choose a secret word (do not use your password for this) and enter it into the Merchant tools section and the form below.','en'),(2057,2057,'(optional)','en'),(2058,2058,'Request type must be POST','en'),(2059,2059,'\\\'status\\\' request argument not found','en'),(2060,2060,'Test/Live mode','en'),(2061,2061,'Purchase description','en'),(2062,2062,'Live mode','en'),(2063,2063,'User','en'),(2064,2064,'\\\'RESULT\\\' argument not found','en'),(2065,2065,'Transaction amount mismatch','en'),(2066,2066,'Compare','en'),(2067,2067,'Billing address is not defined','en'),(2068,2068,'Menu','en'),(2069,2069,'Unlimited','en'),(2070,2070,'Locked','en'),(2071,2071,'Secret word','en'),(2072,2072,'units','en'),(2073,2073,'each','en'),(2074,2074,'save','en'),(2075,2075,'always','en'),(2076,2076,'hourly','en'),(2077,2077,'daily','en'),(2078,2078,'weekly','en'),(2079,2079,'monthly','en'),(2080,2080,'yearly','en'),(2081,2081,'Auth','en'),(2082,2082,'Capture','en'),(2083,2083,'Void','en'),(2084,2084,'Refund','en'),(2085,2085,'Deploy','en'),(2086,2086,'Secret key','en'),(2087,2087,'Order status changed from {{oldStatus}} to {{newStatus}}','en'),(2088,2088,'Year in which the store opened','en'),(2089,2089,'Force customer to choose product options before adding a product to cart','en'),(2090,2090,'The English language cannot be removed as it is primary language for all texts.','en'),(2091,2091,'Priority','en'),(2092,2092,'Either enable or uninstall the modules below.','en'),(2093,2093,'For the modules named below, an upgrade is available. These modules are now disabled. For the upgrade to be applied successfully to these modules, the modules need to be enabled. You can enable the modules <a href=\'{{link}}\'>here</a>. If you choose not to enable the modules, they will be uninstalled and removed from your store during the upgrade.','en'),(2094,2094,'I understand that <a href=\'#modules_to_uninstall\'>the following disabled modules</a> will be removed.','en'),(2095,2095,'The module version is incompatible with your core version and cannot be installed. The minimum core version required for this module is {{version}}.','en'),(2096,2096,'The module version is incompatible with your core version and cannot be enabled. The minimum core version required for this module is {{version}}.','en'),(2097,2097,'New module version available for core versions {{versions}}.','en'),(2098,2098,'Payment status','en'),(2099,2099,'Shipping status','en'),(2100,2100,'All payment statuses','en'),(2101,2101,'All shipping statuses','en'),(2102,2102,'Order payment status changed from {{oldStatus}} to {{newStatus}}','en'),(2103,2103,'Order shipping status changed from {{oldStatus}} to {{newStatus}}','en'),(2104,2104,'Communication log','en'),(2105,2105,'Input data','en'),(2106,2106,'Please create a new password','en'),(2107,2107,'The confirmation URL link will be emailed to you shortly','en'),(2108,2108,'Your \"Password reset key\" has expired. Please enter the email address associated with your user account to get a new \"Password reset key\".','en'),(2109,2109,'Profile is not defined','en'),(2110,2110,'Customer access level','en'),(2111,2111,'All levels','en'),(2112,2112,'Anonymous','en'),(2113,2113,'Registered','en'),(2114,2114,'Search total','en'),(2115,2115,'All orders','en'),(2116,2116,'Online orders','en'),(2117,2117,'POS orders','en'),(2118,2118,'Do not see your payment method? Find it in our <a href=\"{{url}}\">Marketplace</a>','en'),(2119,2119,'Find in Marketplace','en'),(2120,2120,'Search items...','en'),(2121,2121,'Root category listings format','en'),(2122,2122,'View all ordered items','en'),(2123,2123,'Lines checked: {{X}} out of {{Y}}','en'),(2124,2124,'Lines imported: {{X}} out of {{Y}}','en'),(2125,2125,'Products processed: {{X}} out of {{Y}}','en'),(2126,2126,'Image resized: {{X}} out of {{Y}}','en'),(2127,2127,'Lines verified: {{X}} out of {{Y}} (errors: {{errors}}, warnings: {{warns}})','en'),(2128,2128,'Lines imported: {{X}} out of {{Y}} (errors: {{errors}}, warnings: {{warns}})','en'),(2129,2129,'Products processed: {{X}} out of {{Y}} (errors: {{errors}}, warnings: {{warns}})','en'),(2130,2130,'Image resized: {{X}} out of {{Y}} (errors: {{errors}}, warnings: {{warns}})','en'),(2131,2131,'Import has been cancelled.','en'),(2132,2132,'Export product data with','en'),(2133,2133,'Global & Classes attributes','en'),(2134,2134,'All attributes','en'),(2135,2135,'Classes & Attributes','en'),(2136,2136,'Product attribute values','en'),(2137,2137,'Product attribute values (Yes/No) have been imported','en'),(2138,2138,'Product attribute values (Plain text) have been imported','en'),(2139,2139,'Product attribute values (Textarea) have been imported','en'),(2140,2140,'CSV file has a wrong filename format.','en'),(2141,2141,'Possible file names are: {{files}}','en'),(2142,2142,'X-Cart could not find data in your file.','en'),(2143,2143,'Possible reasons are:<br /><ul><li>file is empty</li><li>you specified CSV delimiter other than defined in settings ({{separator}}). In this case, define the correct delimiter in the <strong>CSV column delimiter</strong> on the <a href=\"{{configURL}}\">Localization settings page</a>.</li><li>encoding of your file is not {{encoding}}. In this case, you need to open your CSV file in the spreadsheet editor (MS Excel, Openoffice Calc, etc) and save it using UTF-8 charset.</li><li>your CSV file has an incorrect format. <a href=\"{{kbURL}}\" target=\"blank\">Check our Knowledge base</a> for proper import formats.</li></ul>','en'),(2144,2144,'Your store has some modules available only to Premium license owners. To continue with the upgrade, you must either <a href=\'{{purchaseURL}}\' target=\'_blank\'>purchase</a> a Premium license, or <a href=\'{{installedModulesURL}}\'>remove</a> the following modules from your store:','en'),(2145,2145,'No class','en'),(2146,2146,'See log file for details','en'),(2147,2147,'The product has been updated','en'),(2148,2148,'Free license has been activated successfully','en'),(2149,2149,'Unknown payment. If you see this message after returning from the payment page, please contact the store administrator for information about the status of your payment.','en'),(2150,2150,'{{count}} expired shopping cart(s) have been successfully removed','en'),(2151,2151,'States information has been successfully deleted','en'),(2152,2152,'Please select the states first','en'),(2153,2153,'Free license key for email <em>{{email}}</em> is already registered. Please use a different email or <a href=\"{{url}}\">click here to get key value sent to this email address</a>','en'),(2154,2154,'Information about free license key has been sent to the email <em>{{email}}</em>','en'),(2155,2155,'<p>Cart contains products with a wrong quantity. Please correct this to proceed</p>','en'),(2156,2156,'<p>Cart contains products with a wrong quantity</p>','en'),(2157,2157,'Inventory tracking options','en'),(2158,2158,'Do not select anything if you want to make the product visible to all customers. Otherwise it will be visible to the users assigned to selected membership only.','en'),(2159,2159,'Any stock status','en'),(2160,2160,'Test','en'),(2161,2161,'Live','en'),(2162,2162,'The service name \'{{value}}\' is reserved and cannot be used for an address field.','en'),(2163,2163,'Placed on <span class=\"date\">{{date}}</span>','en'),(2164,2164,'by <a class=\"name\" href=\"{{url}}\">{{name}}</a>','en'),(2165,2165,'by <span class=\"name\">{{name}}</span>','en'),(2166,2166,'Setup store price: {{price}}','en'),(2167,2167,'The button is inactive either because no changes have been detected on the current page or because the order totals need to be recalculated before the order can be updated.','en'),(2168,2168,'Product with selected properties cannot be purchased','en'),(2169,2169,'The specified amount of the product ({{value}}) exceeds the amount of the product in stock ({{max}})','en'),(2170,2170,'Old staff note','en'),(2171,2171,'New staff note','en'),(2172,2172,'Current price for the selected configuration and quantity: {{price}}','en'),(2173,2173,'Cannot create temporary order for modification','en'),(2174,2174,'Customer information','en'),(2175,2175,'no comments','en'),(2176,2176,'All items cannot be removed from the order.','en'),(2177,2177,'Changed items','en'),(2178,2178,'Changed options','en'),(2179,2179,'Added items','en'),(2180,2180,'Removed items','en'),(2181,2181,'Order item attributes are out-of-date and cannot be edited','en'),(2182,2182,'Order will be delivered to the billing address.','en'),(2183,2183,'Staff note','en'),(2184,2184,'The value will be recalculated automatically. Press it if you want to \'freeze\' the current value.','en'),(2185,2185,'The current value is \'frozen\' and won\'t be recalculated. Press it if you want it to be updated when the totals are recalculated.','en'),(2186,2186,'Notify customer','en'),(2187,2187,'Order changes cannot be saved due to negative total value','en'),(2188,2188,'Remove data','en'),(2189,2189,'Buy','en'),(2190,2190,'Click the link to increase product amount','en'),(2191,2191,'Charset','en'),(2192,2192,'You can change the charset for all subsequent imports and exports using <a href=\"{{url}}\">this link</a>.','en'),(2193,2193,'You can change the CSV delimiter for all subsequent imports and exports using <a href=\"{{url}}\">this link</a>.','en'),(2194,2194,'Layout','en'),(2195,2195,'Two columns with right sidebar','en'),(2196,2196,'Two columns with left sidebar','en'),(2197,2197,'Three columns','en'),(2198,2198,'One column','en'),(2199,2199,'The product with SKU \"{{value}}\" does not exist. The \"{{name}}\" attribute will be imported as global','en'),(2200,2200,'The \"{{value}}\" membership does not exist','en'),(2201,2201,'The \"{{value}}\" product class does not exist','en'),(2202,2202,'The \"{{value}}\" tax class does not exist','en'),(2203,2203,'The \"{{value}}\" image does not exist','en'),(2204,2204,'Variant attribute \"{{column}}\" cannot be empty','en'),(2205,2205,'The \"{{value}}\" category does not exist','en'),(2206,2206,'Item not found ({{keys}})','en'),(2207,2207,'The number of values in the row does not match the number of column headers for this CSV file','en'),(2208,2208,'Tags are not allowed in the column \"{{column}}\" and will be stripped','en'),(2209,2209,'The value in the column \"{{column}}\" will be adjusted according to HTML specification to prevent potential XSS attack','en'),(2210,2210,'The value in the column \"{{column}}\" will be cut because its length exceeds the allowed character length for the respective field','en'),(2211,2211,'New product will be created','en'),(2212,2212,'New membership will be created','en'),(2213,2213,'New product class will be created','en'),(2214,2214,'New tax class will be created','en'),(2215,2215,'New category will be created','en'),(2216,2216,'Wrong price format. Positive floating-point number expected','en'),(2217,2217,'Wrong enabled format. This should be \"Yes\" or \"No\"','en'),(2218,2218,'Wrong format of weight value. Positive floating-point number expected','en'),(2219,2219,'Wrong format of low stock notification value. This should be \"Yes\" or \"No\"','en'),(2220,2220,'Wrong format of use separate box value. This should be \"Yes\" or \"No\"','en'),(2221,2221,'Wrong arrival date format. Correct example: Thu, 21 Dec 2000 16:01:07','en'),(2222,2222,'Wrong date format. Correct example: Thu, 21 Dec 2000 16:01:07','en'),(2223,2223,'Wrong update date format. Correct example: Thu, 21 Dec 2000 16:01:07','en'),(2224,2224,'Wrong format of inventory tracking value. This should be \"Yes\" or \"No\"','en'),(2225,2225,'Wrong format of stock level value. Positive integer expected','en'),(2226,2226,'Wrong format of low stock notification value. This should be \"Yes\" or \"No\"','en'),(2227,2227,'Wrong format of low limit level value. Positive integer expected','en'),(2228,2228,'The name is empty','en'),(2229,2229,'Wrong format of box width value. Positive integer expected','en'),(2230,2230,'Wrong format of box length value. Positive integer expected','en'),(2231,2231,'Wrong format of box height value. Positive integer expected','en'),(2232,2232,'Wrong format of items per box value. Positive integer expected','en'),(2233,2233,'Wrong format of Clean URL value (only alphanumeric, dash (\"-\") and underscore (\"_\") chars are allowed)','en'),(2234,2234,'Error of image loading. Make sure the \"images\" directory has write permissions.','en'),(2235,2235,'Wrong position format','en'),(2236,2236,'The group \"{{value}}\" does not exist. A new group will be created','en'),(2237,2237,'Wrong format of \"type\" value ({{value}}). This should be \"C\" - checkbox, \"S\" - selector, or \"T\" - textarea','en'),(2238,2238,'Product SKU is empty','en'),(2239,2239,'There is no product with SKU \"{{value}}\" to assign the attribute option value to','en'),(2240,2240,'Wrong format of \"type\" value ({{value}}). This should be \"C\" - checkbox, \"S\" - selector, or \"T\" - textarea','en'),(2241,2241,'Wrong format of \"owner\" value ({{value}}). This should be \"Yes\" for product-specific attributes or \"No\" for global attributes','en'),(2242,2242,'Wrong format of \"default\" value ({{value}}). This should be \"Yes\" for product-specific attributes or \"No\" for global attributes','en'),(2243,2243,'Wrong \"priceModifier\" format ({{value}}). Correct examples: +1, +1%, -1, -1%','en'),(2244,2244,'Wrong \"weightModifier\" format ({{value}}). Correct examples: +1, +1%, -1, -1%','en'),(2245,2245,'Product class {{value}} does not exists and will be created','en'),(2246,2246,'Group {{value}} does not exists and will be created','en'),(2247,2247,'Wrong format of show title value. This should be \"Yes\" or \"No\"','en'),(2248,2248,'Wrong login format. Email as login is expected','en'),(2249,2249,'Wrong date format. Correct example: Thu, 21 Dec 2000 16:01:07','en'),(2250,2250,'Wrong date format. Correct example: Thu, 21 Dec 2000 16:01:07','en'),(2251,2251,'Wrong last login date format. Example: Thu, 21 Dec 2000 16:01:07','en'),(2252,2252,'Wrong status format. This should be \"E\" - enabled, or \"D\" - disabled','en'),(2253,2253,'Wrong referer format. URL expected. Correct example: http://x-cart.com','en'),(2254,2254,'Wrong format of language value. Correct examples: EN, DE, RU: http://en.wikipedia.org/wiki/ISO_639-1','en'),(2255,2255,'Wrong format. This should be \"Yes\" or \"No\". Use \"Yes\" if it is the shipping address.','en'),(2256,2256,'Wrong format. This should be \"Yes\" or \"No\". Use \"Yes\" if it is the billing address.','en'),(2257,2257,'Wrong format of country code value. Correct examples: CA, US, RU: http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2','en'),(2258,2258,'Wrong format of state id value.','en'),(2259,2259,'In advanced mode you can choose specific modules for upgrade.','en'),(2260,2260,'Please note that correct site operation after upgrade is not guaranteed if you select to not upgrade all. Use this at your own risk and if you know exactly what you are doing.','en'),(2261,2261,'Before installing a paid addon for this installation, you need to <a href=\"#\" class=\"open-license-key-form\">activate your X-Cart license.</a>','en'),(2262,2262,'Use the form below to provide your license information.','en'),(2263,2263,'Activate your X-Cart installation','en'),(2264,2264,'Activate your X-Cart installation first','en'),(2265,2265,'Activate key','en'),(2266,2266,'Vendor','en'),(2267,2267,'All','en'),(2268,2268,'Paid','en'),(2269,2269,'Free','en'),(2270,2270,'Catalog Management','en'),(2271,2271,'Search and Naviagation','en'),(2272,2272,'I confirm that I have <strong>created backups</strong> of my store\'s files and database before upgrading the store','en'),(2273,2273,'Secure credit card payment','en'),(2274,2274,'Card type','en'),(2275,2275,'Chose credit card type','en'),(2276,2276,'Choose card type','en'),(2277,2277,'Card number','en'),(2278,2278,'MONTH','en'),(2279,2279,'VALID THRU','en'),(2280,2280,'YEAR','en'),(2281,2281,'Security code','en'),(2282,2282,'Last three numbers on the back side of your card','en'),(2283,2283,'Four-digit number on the front side of your card','en'),(2284,2284,'Credit card security code (if present)','en'),(2285,2285,'Countries information has been successfully updated','en'),(2286,2286,'Please select the countries first','en'),(2287,2287,'This payment method is <strong>Active</strong>.','en'),(2288,2288,'This payment method is <strong>Inactive</strong>.','en'),(2289,2289,'Active','en'),(2290,2290,'Inactive','en'),(2291,2291,'Learn More','en'),(2292,2292,'Sign Up','en'),(2293,2293,'<!--[if (gte mso 9)|(IE)]><table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" dir=\"ltr\" width=\"640\"> <tr> <td align=\"center\" valign=\"top\" width=\"440\"><![endif]--><table align=\"left\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" style=\"height: 80px;\" width=\"350\" id=\"emailPreview\"> <tr> <td align=\"center\" valign=\"top\" id=\"logoContent\"> <h1 id=\"logo\" style=\"max-width:300px;\">%logo%</h1> </td> </tr></table><!--[if (gte mso 9)|(IE)]> </td> <td align=\"center\" valign=\"top\" width=\"200\"><![endif]--><table align=\"right\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" style=\"height: 80px;\" width=\"350\" id=\"emailLogo\"> <tr> <td align=\"left\" valign=\"top\" id=\"previewContent\"> <div class=\"company-info\" style=\"font-size: 14px; font-weight: lighter; color: #787e81; text-align: right;\" align=\"right\">%company_name%<br /> Phone: %company_phone%<br /> Fax: %company_fax%</div> </td> </tr></table><!--[if (gte mso 9)|(IE)]> </td> </tr> </table><![endif]-->','en'),(2294,2294,'Dear %recipient_name%!','en'),(2295,2295,'<p>Thank you for using our services<br/>%company_link%</p>','en'),(2296,2296,'<!--[if (gte mso 9)|(IE)]><table align=\"center\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" dir=\"ltr\" width=\"640\"> <tr> <td align=\"center\" valign=\"top\" width=\"440\"><![endif]--><table align=\"left\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" style=\"height: 80px;\" width=\"350\" id=\"emailPreview\"> <tr> <td align=\"center\" valign=\"top\" id=\"logoContent\"> <h1 id=\"logo\" style=\"max-width:300px;\">%logo%</h1> </td> </tr></table><!--[if (gte mso 9)|(IE)]> </td> <td align=\"center\" valign=\"top\" width=\"200\"><![endif]--><table align=\"right\" border=\"0\" cellpadding=\"10\" cellspacing=\"0\" style=\"height: 80px;\" width=\"350\" id=\"emailLogo\"> <tr> <td align=\"left\" valign=\"top\" id=\"previewContent\"> <div class=\"company-info\" style=\"font-size: 14px; font-weight: lighter; color: #787e81; text-align: right;\" align=\"right\">%company_name%<br /> Phone: %company_phone%<br /> Fax: %company_fax%</div> </td> </tr></table><!--[if (gte mso 9)|(IE)]> </td> </tr> </table><![endif]-->','en'),(2297,2297,'<p>Thank you for using our services<br/>%company_link%</p>','en'),(2298,2298,'Email notifications','en'),(2299,2299,'The body template may include other templates to generate the email notification. To customize it, please, copy appropriate templates to \"skins/theme_tweaker/mail/\" (or \"skins/custom_skin/mail/\" if you use CustomSkin module) directory within the same folder structure and then change it to your needs.','en'),(2300,2300,'Enabled for administrator','en'),(2301,2301,'Enabled for customer','en'),(2302,2302,'Customer header','en'),(2303,2303,'Customer signature','en'),(2304,2304,'Administrator header','en'),(2305,2305,'Administrator signature','en'),(2306,2306,'Customer subject','en'),(2307,2307,'Customer text','en'),(2308,2308,'Administrator subject','en'),(2309,2309,'Administrator text','en'),(2310,2310,'This page allows you to adjust the types of email notifications your store sends to users. Use the On/Off widget to enable/disable specific notifications. Click on the name of a notification to edit the notification text.','en'),(2311,2311,'Notification','en'),(2312,2312,'Back to notifications list','en'),(2313,2313,'On','en'),(2314,2314,'Off','en'),(2315,2315,'The Free license key cannot be activated as it is impossible to get information about the available addons from the Marketplace at the moment. Please try again later.','en'),(2316,2316,'No promotion modules installed','en'),(2317,2317,'Sorting & Descriptions','en'),(2318,2318,'Payment method is enabled','en'),(2319,2319,'Payment method is disabled','en'),(2320,2320,'You should confirm that you have created a backup before upgrading the store.','en'),(2321,2321,'Upgrade note','en'),(2322,2322,'The following modules currently do not have a version compatible with the X-Cart version to which you are upgrading. If you want to keep using these modules after the upgrade, use the \"Request for upgrade\" button to send a request to the module developers so they provide an updated version for their module and make it available via the X-Cart\'s Marketplace. Once the updated module versions are available, you should be able to complete upgrading your store without losing any of the features you currently use.','en'),(2323,2323,'{{count}} module will be disabled','en'),(2324,2324,'{{count}} modules will be disabled','en'),(2325,2325,'{{count}} module will be upgraded','en'),(2326,2326,'{{count}} modules will be upgraded','en'),(2327,2327,'Request for upgrade','en'),(2328,2328,'Your request has been sent successfully','en'),(2329,2329,'An error occurred while sending the request','en'),(2330,2330,'view list','en'),(2331,2331,'hide list','en'),(2332,2332,'Your version ({{version}}) can be upgraded to','en'),(2333,2333,'Imported','en'),(2334,2334,'Importing data...','en'),(2335,2335,'Verified','en'),(2336,2336,'Verifying data before importing...','en'),(2337,2337,'Products processed','en'),(2338,2338,'Processing products...','en'),(2339,2339,'Images resized','en'),(2340,2340,'Resizing images...','en'),(2341,2341,'Generate resized images','en'),(2342,2342,'Clicking the \"Generate resized images\" button launches the image resizing routine to generate copies of existing images in all the sizes needed to display the images in your store\'s customer area. Having a separate image file in each of the sizes provides a way to speed up your site\'s performance by reducing page load times for pages containing graphics.','en'),(2343,2343,'The generation of resized images has been completed successfully.','en'),(2344,2344,'The generation of resized images has been stopped.','en'),(2345,2345,'The image resizing process may take a while to complete. Please do not close this page until the process is fully completed. If the page has been closed, please re-open it to complete the process (The image resizing routine is executed only while the page stays open).','en'),(2346,2346,'Notification headers and signatures can be set using variables. A list of supported variables and their respective values is provided in the table below','en'),(2347,2347,'Developers docs','en'),(2348,2348,'The following selected modules cannot be disabled or uninstalled as they have dependent modules: {{list}}','en'),(2349,2349,'The following selected modules cannot be enabled as they depend on disabled modules which cannot be enabled: {{list}}','en'),(2350,2350,'The module may not be disabled due to the limitations of the module architecture.','en'),(2351,2351,'The following selected modules cannot be disabled due to architecture limitations: {{list}}','en'),(2352,2352,'Please note that the following modules will also be enabled:','en'),(2353,2353,'New account','en'),(2354,2354,'Products processed: {{count}}','en'),(2355,2355,'Images resized: {{count}}','en'),(2356,2356,'Orders list','en'),(2357,2357,'Coming soon','en'),(2358,2358,'View storefront','en'),(2359,2359,'Payment is not required','en'),(2360,2360,'Zoom image','en'),(2361,2361,'CSV delimiter','en'),(2362,2362,'Module Marketplace. Terms of use','en'),(2363,2363,'Import/Export guide','en'),(2364,2364,'Yes, I agree with License agreements','en'),(2365,2365,'The system has detected that some updates are available for enabled modules. It is strongly recommended to have all the enabled modules updated to the latest version for better compatibility before installing new ones from the Marketplace.','en'),(2366,2366,'Action','en'),(2367,2367,'Will be updated if core update is selected','en'),(2368,2368,'Options:','en'),(2369,2369,'RSS feed','en'),(2370,2370,'Will be deleted:','en'),(2371,2371,'Are you sure you want to uninstall the selected add-ons?','en'),(2372,2372,'Module page','en'),(2373,2373,'Add to bag','en'),(2374,2374,'New access codes were generated.','en'),(2375,2375,'show list','en'),(2376,2376,'All statuses','en'),(2377,2377,'Product attribute values have been imported','en'),(2378,2378,'No items found','en'),(2379,2379,'No model selected','en'),(2380,2380,'Profile is not selected','en'),(2381,2381,'SKU is not selected','en'),(2382,2382,'Status is not defined','en'),(2383,2383,'All user types','en'),(2384,2384,'Advanced Order Management','en'),(2385,2385,'Public ID','en'),(2386,2386,'Public id','en'),(2387,2387,'Method name','en'),(2388,2388,'Tracking number','en'),(2389,2389,'The common notification fields have been updated','en'),(2390,2390,'The notification has been updated','en'),(2391,2391,'The product has been added','en'),(2392,2392,'Add-on does not exist.','en'),(2393,2393,'Transaction','en'),(2394,2394,'Log files not found','en'),(2395,2395,'Payment method settings','en'),(2396,2396,'Recently installed modules','en'),(2397,2397,'Login dates','en'),(2398,2398,'File is not an image','en'),(2399,2399,'File is not uploaded','en'),(2400,2400,'Create label','en'),(2401,2401,'Product information has been deleted successfully','en'),(2402,2402,'Import language','en'),(2403,2403,'License: trial version','en'),(2404,2404,'Installation date','en'),(2405,2405,'Order failed','en'),(2406,2406,'Delete account','en'),(2407,2407,'Administrator account cannot be deleted via customer interface.','en'),(2408,2408,'X-Cart license key has been successfully verified and activated.','en'),(2409,2409,'X-Cart license key has been activated. However, this key is expired and does not allow getting upgrade packs from the Marketplace.','en'),(2410,2410,'The license key for the module \"name\" by \"author\" has been successfully verified and activated. However, this key is expired and does not allow getting module upgrade packs from the Marketplace.','en'),(2411,2411,'Expired license keys have been found. Download and installation of updates requiring these license keys will be unavailable.','en'),(2412,2412,'Expired license keys have been found. Please prolongate them to receive new features and improvements with periodic updates.','en'),(2413,2413,'License key','en'),(2414,2414,'Exp. date','en'),(2415,2415,'Prolongate license','en'),(2416,2416,'Prolongate licenses','en'),(2417,2417,'Re-validate license keys','en'),(2418,2418,'Wrong format: Field contains unallowed characters','en'),(2419,2419,'The Clean URL entered is already <a href=\"{{entityURL}}\" target=\"_blank\">in use</a>.','en'),(2420,2420,'The Clean URL entered is a redirect to <a href=\"{{entityURL}}\" target=\"_blank\">another object</a>.','en'),(2421,2421,'The clean URL will be generated automatically.','en'),(2422,2422,'Result','en'),(2423,2423,'Change the Clean URL value for this page (Enter a different Clean URL value manually or use the Autogenerate Clean URL feature)','en'),(2424,2424,'Enable the option \"Assign entered Clean URL to this page anyway\" to dissociate the entered Clean URL from the page it is currently used for and assign it to the page of the object being edited.','en'),(2425,2425,'Resolve the conflict','en'),(2426,2426,'Assign entered Clean URL to this page anyway','en'),(2427,2427,'Human readable and SEO friendly web address for the page.','en'),(2428,2428,'This feature is available only for paid (non-free) <a href=\"{{pricingUrl}}\" target=\"_blank\">X-Cart license plans</a>.','en'),(2429,2429,'In this section you can review the recent payment transactions that have taken place at your store, both successful and failed. You can easily identify orders with payment problems and increase your sales by following up on abandoned carts.','en'),(2430,2430,'Hash file for installed entry \"{{entry}}\" doesn\'t exist or is not readable','en'),(2431,2431,'Sale statistics','en'),(2432,2432,'Yesterday','en'),(2433,2433,'Last week','en'),(2434,2434,'Low stock info','en'),(2435,2435,'Last year','en'),(2436,2436,'Security issue','en'),(2437,2437,'New modules','en'),(2438,2438,'View more addons in Marketplace','en'),(2439,2439,'Upgrade access level has been successfully assigned to your license keys','en'),(2440,2440,'<ul><li><b>Developer</b> level assumes the earliest access to upgrade, but the build can be unstable.</li><li><b>Merchant</b> level assumes the latest access to upgrade, but the build will be the most stable.</li></ul>','en'),(2441,2441,'Could not assign upgrade access level to your license keys','en'),(2442,2442,'There are no activated license keys','en'),(2443,2443,'Upgrade access level cannot be changed for default free license','en'),(2444,2444,'An error occurred, please try again. If the problem persists, contact the administrator.','en'),(2445,2445,'An error occurred, please try again. If the problem persists, contact the administrator.<ul><li>{{txnNote}}</li></ul>','en'),(2446,2446,'Cache management','en'),(2447,2447,'Re-deploy the store','en'),(2448,2448,'Re-deployment may take a while to complete. Please do not close this page until the process is fully completed. If the page has been closed, please re-open it to complete the process (The store re-deployment is executed only while the page stays open).','en'),(2449,2449,'Calculate quick data','en'),(2450,2450,'Calculated quick data enhances your store\'s performance by allowing quick product sorting. The process of quick data calculation may take a while to complete. Please do not close this page until the process is fully completed. If the page has been closed, please re-open it to complete the process (The calculation is performed only while the page stays open).','en'),(2451,2451,'About {{time}} remaining','en'),(2452,2452,'Calculating quick data...','en'),(2453,2453,'The process of quick data calculation may take a while to complete. Please do not close this page until the process is fully completed. If the page has been closed, please re-open it to complete the process (The calculation is performed only while the page stays open).','en'),(2454,2454,'The calculation of quick data has been completed successfully.','en'),(2455,2455,'The calculation of quick data has been stopped.','en'),(2456,2456,'Find transactions <b>by ID</b>','en'),(2457,2457,'Search for transactions <b>by date</b>','en'),(2458,2458,'Filter transactions <b>by status</b>','en'),(2459,2459,'Choose the right plan','en'),(2460,2460,'Buy Business Edition','en'),(2461,2461,'unavailable','en'),(2462,2462,'{{count}} modules have been selected','en'),(2463,2463,'This tool allows you to get rid of any content that might have been created in your store for testing purposes and which you no longer need. To use the tool, mark for deletion the types of content data you want to be removed, then click the <strong>Save Changes</strong> button. Removal of content data will not affect the store\'s existing configuration settings.','en'),(2464,2464,'<strong>Warning!</strong> The selected types of content data will be deleted permanently. We strongly recommend you back up your store before you proceed.<br />Please enter the administrator password to confirm you understand the consequences of your choice.','en'),(2465,2465,'Incorrect password. Please try again.','en'),(2466,2466,'Confirmation','en'),(2467,2467,'Leave blank to use product name as Page Title.','en'),(2468,2468,'This page is intended for the creation and management of discount coupons. Different types of coupons are supported, including <strong>$ off, % off and free shipping</strong>. For each coupon the following information can be specified:','en'),(2469,2469,'the <strong>dates</strong> the coupon should be valid for;','en'),(2470,2470,'the <strong>order subtotal range</strong> for which the coupon can be used;','en'),(2471,2471,'the <strong>categories and product classes</strong> to which the coupon may be applied;','en'),(2472,2472,'whether the coupon may be used by everyone or only by users with <strong>specific memberships</strong>.','en'),(2473,2473,'This page is intended for the management of volume discounts based on the order subtotal.','en'),(2474,2474,'Set <strong>absolute or %-based</strong> discount rates;','en'),(2475,2475,'Make a discount available to <strong>all customers</strong> or only to specific <strong>membership levels</strong>;','en'),(2476,2476,'Set a single discount or add <strong>multiple volume discounts</strong>.','en'),(2477,2477,'The system has been restored to the selected snapshot of {{date}}','en'),(2478,2478,'The system has failed to restore because there was no snapshot of {{date}}','en'),(2479,2479,'Leave blank to use category name as Page Title.','en'),(2480,2480,'Current template','en'),(2481,2481,'Standard','en'),(2482,2482,'Layout type','en'),(2483,2483,'Edit custom options','en'),(2484,2484,'Visit the template store','en'),(2485,2485,'Activate purchased skin','en'),(2486,2486,'If you purchased a template but do not see it here, activate the license key that was provided to you.','en'),(2487,2487,'Choose a new template','en'),(2488,2488,'<strong>Need custom design?</strong> We can modify this template or create a completely unique design for you','en'),(2489,2489,'FREE quote','en'),(2490,2490,'Layout has been changed. <a href=\"{{storefront}}\" target=\"_blank\">Review the updated storefront</a>.','en'),(2491,2491,'To make your changes visible in the customer area, cache rebuild is required. It will take several seconds. You don’t need to close the storefront, the operation is executed in the background.','en'),(2492,2492,'Product details image','en'),(2493,2493,'Products list image (<span class=\"preview\" data-img=\"preview_grid.png\">grid view</span>)','en'),(2494,2494,'Products list image (<span class=\"preview\" data-img=\"preview_list.png\">list view</span>)','en'),(2495,2495,'Category image','en'),(2496,2496,'There are unsaved changes on the page. If you choose to continue, these changes will be lost. Do you want to proceed?','en'),(2497,2497,'X-Cart found some issues with installed SSL certificate. You can get more information using this service: <a href=\'{{url}}\'>{{url}}</a>','en'),(2498,2498,'The secure protocol is enabled for your website. But X-Cart hasn\'t found the valid SSL certificate on your server.','en'),(2499,2499,'How do I move X-Cart?','en'),(2500,2500,'No region','en'),(2501,2501,'Check for available free disk space has failed','en'),(2502,2502,'You should check available free disk space yourself before continuing upgrade','en'),(2503,2503,'You should check available free disk space yourself before continuing installation','en'),(2504,2504,'Payment method has been added','en'),(2505,2505,'Payment method was not added','en'),(2506,2506,'Installation warnings','en'),(2507,2507,'You can get more information using this service: <a href=\"{{url}}\">{{url}}</a>','en'),(2508,2508,'X-Cart could not find a valid SSL certificate on your server. Although you can switch the store to use the secure protocol for the website pages, most Internet browsers will likely display a warning message scaring your website visitors away.','en'),(2509,2509,'X-Cart could not find a valid SSL certificate on your server.','en'),(2510,2510,'X-Cart could not find a valid SSL certificate on your server (<span>{{domain}}</span>).','en'),(2511,2511,'Before enabling HTTPS protocol read this article: <a href=\"{{articleUrl}}\">Inaccessible Admin area after enabling HTTPS</a>','en'),(2512,2512,'You are operating as:','en'),(2513,2513,'Operate as this customer','en'),(2514,2514,'Quit','en'),(2515,2515,'You are operating as: {{user}}','en'),(2516,2516,'You are logged in as: {{user}}','en'),(2517,2517,'Finished operating as customer','en'),(2518,2518,'<a href=\"http://www.avalara.com\" target=\"_blank\">Avalara</a>, a leader in US sales tax automation, provides a solution that can make your life easier by providing accurate and up-to-date tax rates for products you sell.','en'),(2519,2519,'New to Avalara? <a href=\"http://www.avalara.com/integrations/x-cart/\" target=\"_blank\">Sign up here!</a>','en'),(2520,2520,'Existing Avalara user? Enable and configure AvaTax <a href=\"{{moduleSettings}}\">here</a>','en'),(2521,2521,'Any profile','en'),(2522,2522,'Shipping method is not configured.','en'),(2523,2523,'Delivery time','en'),(2524,2524,'Shipping method information that your customers will be able to see when choosing a shipping method for their order during checkout. Can be provided only for offline shipping methods.','en'),(2525,2525,'Choose a parameter (or parameters) based on which custom rates will be defined. When calculating shipping costs, the system takes into account only the custom rates defined based on the parameter(s) selected in this field.','en'),(2526,2526,'Can be provided only for offline shipping methods.','en'),(2527,2527,'Handling fee','en'),(2528,2528,'Can be provided only for online shipping methods.','en'),(2529,2529,'What type of shipping rates would you like to use?','en'),(2530,2530,'Carrier-calculated rates','en'),(2531,2531,'Custom table rates','en'),(2532,2532,'Get shipping rates from major shipping carrier companies. No need to enter shipping rates manualy: the rates are obtained from the shipping carrier in real time so you get the most accurate shipping cost estimation.','en'),(2533,2533,'Method name','en'),(2534,2534,'Table based on','en'),(2535,2535,'Subtotal','en'),(2536,2536,'Weight','en'),(2537,2537,'Items','en'),(2538,2538,'Subtotal, weight, items','en'),(2539,2539,'Address zone','en'),(2540,2540,'Subtotal range','en'),(2541,2541,'Weight range','en'),(2542,2542,'Items range','en'),(2543,2543,'flat rate','en'),(2544,2544,'per item','en'),(2545,2545,'per weight unit','en'),(2546,2546,'Shipping','en'),(2547,2547,'Items','en'),(2548,2548,'Subtotal','en'),(2549,2549,'Weight','en'),(2550,2550,'Free','en'),(2551,2551,'Here you can provide general information about the shipping method and configure a table defining how shipping rates for this method should be calculated.','en'),(2552,2552,'How to define shipping rates','en'),(2553,2553,'You can set up different shipping rates depending on the weight, price or quantity of items in the order. For this purpose in the field \"Table based on\" you need to specify the quality of an order that should determine the choice of a shipping rate (order subtotal, order weight, quantity of items in the order, or \"Subtotal, weight, items\" - if multiple factors need to be taken into account at the same time). Then in the table below you need to specify the subtotal, weight and/or quantity range that make an order eligible for this rate, and specify the values that need to be taken into account when calculating the shipping rate. If rates for more than one ranges need to be specified, it is necessary to add more rows to the rates table. The ranges for the different rates in the table may not overlap.','en'),(2554,2554,'Shipping rates are calculated by the following formula:','en'),(2555,2555,'You can define the following values:','en'),(2556,2556,'Flat shipping charge. This value will be added to the shipping rate regardless of the weight, price and number of items ordered.','en'),(2557,2557,'Flat shipping charge per item ordered.','en'),(2558,2558,'Shipping charge based on a percentage of the order subtotal.','en'),(2559,2559,'Flat shipping charge per weight unit ordered (for example, per pound or per kilogram - depending on the weight units used by your store).','en'),(2560,2560,'SHIPPING = flat + ITEMS*per_item + SUBTOTAL*(% of subtotal)/100 + WEIGHT*per_{{X}};','en'),(2561,2561,'Carrier services','en'),(2562,2562,'Carrier service','en'),(2563,2563,'Carrier service name','en'),(2564,2564,'Test rates','en'),(2565,2565,'Back to shipping methods','en'),(2566,2566,'This shipping method is','en'),(2567,2567,'This shipping method is <strong>not configured</strong>.','en'),(2568,2568,'on','en'),(2569,2569,'off','en'),(2570,2570,'Pre-upgrade hooks cannot be run','en'),(2571,2571,'Files cannot be updated','en'),(2572,2572,'Trying to run pre-upgrade hooks while not all archives were unpacked','en'),(2573,2573,'...Invoke {{type}} hook for {{entry}}...','en'),(2574,2574,'...Hooks {{hooksCount}}, Items {{itemsCount}}...','en'),(2575,2575,'...Hooks {{hooksCount}}','en'),(2576,2576,'...Unpacking {{entry}}...{{status}}','en'),(2577,2577,'...Downloading {{entry}}...{{status}}','en'),(2578,2578,'<span class=\"value\">{{X}}</span> items','en'),(2579,2579,'More attributes','en'),(2580,2580,'Do you really want to close storefront?','en'),(2581,2581,'The product for which you attempted to upload an attachment has not been found','en'),(2582,2582,'The file extension is forbidden','en'),(2583,2583,'Accounting','en'),(2584,2584,'Export orders','en'),(2585,2585,'Not seeing your accounting software here? <a href=\"{{href}}\" target=\"_blank\">Let us know</a>','en'),(2586,2586,'Want to change or add another accounting system? Choose the accounting system you require below and configure it.','en'),(2587,2587,'No accounting system has been selected yet. Choose your accounting system below and configure it.','en'),(2588,2588,'Automate shipping','en'),(2589,2589,'Integration with','en'),(2590,2590,'Automate your shipping process with the services of our partners: print shipping labels, grab shipping orders info from eBay, ETSY, Amazon and other marketplaces; integrate with several shipping carriers in one spot and more.','en'),(2591,2591,'Haven\'t found what you\'re looking for? View more <a href=\'{{href}}\'>shipping modules</a>','en'),(2592,2592,'Print Shipping labels','en'),(2593,2593,'FREE trial','en'),(2594,2594,'Refunds','en'),(2595,2595,'App type','en'),(2596,2596,'Cloud Service','en'),(2597,2597,'Win app','en'),(2598,2598,'Amazon','en'),(2599,2599,'DHL','en'),(2600,2600,'ETSY','en'),(2601,2601,'FedEx','en'),(2602,2602,'Stamps.com','en'),(2603,2603,'UPS','en'),(2604,2604,'U.S.P.S.','en'),(2605,2605,'eBay','en'),(2606,2606,'Ship-From address','en'),(2607,2607,'TRANSACTIONS DETAILS','en'),(2608,2608,'You can find the failed transaction <a href=\"{{url}}\">here</a>','en'),(2609,2609,'Save filter','en'),(2610,2610,'Enter filter name','en'),(2611,2611,'Delete filter','en'),(2612,2612,'Are you sure you want to delete this filter?','en'),(2613,2613,'Filter has been successfully saved','en'),(2614,2614,'Filter has been removed','en'),(2615,2615,'The download should start automatically. Click the link if does not start.','en'),(2616,2616,'Sorry, your order cannot be placed as there are no shipping methods available.','en'),(2617,2617,'Packing slip','en'),(2618,2618,'Print packing slip','en'),(2619,2619,'Packing date','en'),(2620,2620,'Order date','en'),(2621,2621,'Bill to','en'),(2622,2622,'Ship to','en'),(2623,2623,'Order QTY','en'),(2624,2624,'Ship QTY','en'),(2625,2625,'Please select the orders first','en'),(2626,2626,'Orders has been successfully deleted','en'),(2627,2627,'Purchase license','en'),(2628,2628,'License warning','en'),(2629,2629,'Inactive license key ({{key}})','en'),(2630,2630,'Does not match license type (requires {{list}} edition)','en'),(2631,2631,'Requires {{list}} edition license','en'),(2632,2632,'License key is missing','en'),(2633,2633,'The system has detected one or more problems with some of the modules at your store:','en'),(2634,2634,'inactive license key(s);','en'),(2635,2635,'installed module(s) not allowed by the type of X-Cart license activated at your store.','en'),(2636,2636,'Using the modules with this type of license violation is illegal.<br />To resolve the problem, please remove the affected modules from your store, or activate a valid license allowing the use of these modules.','en'),(2637,2637,'Also the system has detected problems with the following modules:','en'),(2638,2638,'You can also <a href=\"{{url}}\" target=\"_blank\">contact our CR department</a> for help with this issue','en'),(2639,2639,'WARNING! Any attempt to access further pages in the administrator interface will result in the <strong>automatic disabling</strong> of all the unallowed modules. To prevent this from happening, please activate a valid license key by clicking the button below.','en'),(2640,2640,'Remove unlicensed modules','en'),(2641,2641,'The system has detected that the license key that was activated for your store is invalid.<br />Using the store with an invalid license key is illegal.<br />To resolve the problem, please activate a valid license key for your store, or revert to Trial mode.','en'),(2642,2642,'Back to Trial mode','en'),(2643,2643,'Re-check','en'),(2644,2644,'Tools','en'),(2645,2645,'All payment transaction statuses','en'),(2646,2646,'Default image settings','en'),(2647,2647,'In progress','en'),(2648,2648,'Initialized','en'),(2649,2649,'Success','en'),(2650,2650,'Pending','en'),(2651,2651,'Failed','en'),(2652,2652,'Canceled','en'),(2653,2653,'Void','en'),(2654,2654,'The calculation failed','en'),(2655,2655,'The calculation completed','en'),(2656,2656,'The process of sales calculation may take a while to complete. Please do not close this page until the process is fully completed.','en'),(2657,2657,'Sales calculation','en'),(2658,2658,'This method is displayed because you are logged in as admin and operating as another user','en'),(2659,2659,'Order staff notes changed by {{user}}','en'),(2660,2660,'Order customer notes changed by {{user}}','en'),(2661,2661,'Old customer note','en'),(2662,2662,'New customer note','en'),(2663,2663,'Add comment here','en'),(2664,2664,'more','en'),(2665,2665,'View order history','en'),(2666,2666,'Banner rotation','en'),(2667,2667,'Add banner','en'),(2668,2668,'Review & Submit order','en'),(2669,2669,'Products search','en'),(2670,2670,'Requires shipping','en'),(2671,2671,'Learn how to convert failed transactions into real orders','en'),(2672,2672,'Customer','en'),(2673,2673,'Couldn\'t download the image \"{{value}}\"','en'),(2674,2674,'Error of image verification ({{value}}). Make sure you have specified the correct image file or URL.','en'),(2675,2675,'Show low stock warning on product page','en'),(2676,2676,'Notify administrator if the stock quantity of this product goes below a certain limit','en'),(2677,2677,'Only {{X}} left in stock','en'),(2678,2678,'Show all warnings/errors','en'),(2679,2679,'Hide all warnings/errors','en'),(2680,2680,'Errors','en'),(2681,2681,'Warnings','en'),(2682,2682,'Download error file','en'),(2683,2683,'The value must be greater than the current maximum order number in the order list','en'),(2684,2684,'Authorize','en'),(2685,2685,'Sale','en'),(2686,2686,'Capture','en'),(2687,2687,'Capture partially','en'),(2688,2688,'Capture multiple','en'),(2689,2689,'Void','en'),(2690,2690,'Void partially','en'),(2691,2691,'Void multiple','en'),(2692,2692,'Refund','en'),(2693,2693,'Refund partially','en'),(2694,2694,'Refund multiple','en'),(2695,2695,'Get information','en'),(2696,2696,'Accept','en'),(2697,2697,'Decline','en'),(2698,2698,'Test','en'),(2699,2699,'Need a more powerful banner system for your store? <a href=\"{{url}}\">Get it now!</a>','en'),(2700,2700,'Administrator','en'),(2701,2701,'Log in as this admin','en'),(2702,2702,'Need a more customizeable PDF invoice solution for your store? <a href=\"{{url}}\">Get it now!</a>','en'),(2703,2703,'File can not be uploaded','en'),(2704,2704,'{{file}} file could not be copied to a new location {{newPath}}','en'),(2705,2705,'Unable to write data to file {{file}}','en'),(2706,2706,'Unable to download the content of {{url}}','en'),(2707,2707,'Unable to get the content from {{url}}','en'),(2708,2708,'The file extension is forbidden ({{file}}','en'),(2709,2709,'Incorrect permissions','en'),(2710,2710,'Incorrect amount','en'),(2711,2711,'Not enough permissions to import user access level','en'),(2712,2712,'Wrong access level format ({{value}})','en'),(2713,2713,'Not enough permissions to import user roles','en'),(2714,2714,'Wrong role name ({{value}})','en'),(2715,2715,'Roles cannot be changed for your profile via import. Row will be skipped','en'),(2716,2716,'Access level cannot be changed (from {{prevValue}} to {{value}}) for existing profile ({{login}})','en'),(2717,2717,'You cannot update administrator profile ({{value}}). Row will be skipped','en'),(2718,2718,'You cannot update administrator profile ({{value}}). Row has been skipped','en'),(2719,2719,'The count of categories specified for a product and the count of orderBy position numbers describing the position of the product within these categories must be the same.','en'),(2720,2720,'OrderBy position number must be specified as a non-negative integer.','en'),(2721,2721,'Category name should not be empty','en'),(2722,2722,'After the problem has been fixed, try to connect again.\', {\'clear_cache\': url(\'addons_list_marketplace','en'),(2723,2723,'All items','en'),(2724,2724,'Although you can switch the store to use the secure protocol for the website pages, most Internet browsers will likely display a warning message scaring your website visitors away.','en'),(2725,2725,'Autogenerate','en'),(2726,2726,'Background export is in progress','en'),(2727,2727,'Clean URLs are disabled. More info\', {\'more_info_url\': url(\'settings\', \'','en'),(2728,2728,'Clean URLs','en'),(2729,2729,'The Clean URL entered is already in use by another page. To resolve the conflict, edit the \"clean_urls_aliases\" section in the file etc/config.php.','en'),(2730,2730,'First','en'),(2731,2731,'Last','en'),(2732,2732,'::','en'),(2733,2733,'X-Cart','en'),(2734,2734,'','en'),(2735,2735,'Title','en'),(2736,2735,'Название','ru'),(2737,2736,'[Edit]','en'),(2738,2736,'[Изменить]','ru'),(2739,2737,'Parent category path','en'),(2740,2738,'Object name (category, product, etc)','en'),(2741,2739,'General options','en'),(2742,2740,'Default site title','en'),(2743,2741,'Default site meta description','en'),(2744,2742,'Default site meta keywords','en'),(2745,2743,'Home page title and meta','en'),(2746,2744,'Page title format','en'),(2747,2745,'Show object name in page title','en'),(2748,2746,'About clean urls','en'),(2749,2747,'Page title consists of the following elements separated by the delimiter \"{{delimiter}}\"; you can change the delimiter by editing the <a href=\"{{modify_url}}\">title-delimiter</a> label','en'),(2750,2748,'Every object stores a history of up to 8 clean urls that were used for the object previously. X-Cart sets 301 redirects for these URLs automatically.','en'),(2751,2749,'Also, you can adjust your 301 redirects in the .htaccess file (See <a href=\"http://kb.x-cart.com/en/general_setup/setting_up_seo-friendly_urls.html\" target=\"blank\">Setting up seo-friendly URLs</a> for Nginx or IIS configuration), or use a special extension by 3d party module developers (<a href=\"http://market.x-cart.com/addons/redirects-by-Nova-Horizon.html\" target=\"blank\">Redirects module</a>)','en'),(2752,2750,'Connecting to the marketplace...','en'),(2753,2751,'Do not see your payment method? Find it on our Marketplace\', {\'url\': url(\'addons_list_marketplace\', \'\', {\'tag\': \'Payment processing','en'),(2754,2752,'Enter product name or SKU','en'),(2755,2753,'Export all','en'),(2756,2754,'File was successfully uploaded','en'),(2757,2755,'Hide and make them available only via a direct link','en'),(2758,2756,'Ignore membership','en'),(2759,2757,'Import results','en'),(2760,2758,'Info','en'),(2761,2759,'Initializing...','en'),(2762,2760,'Inventory tracking is','en'),(2763,2761,'Length x Width x Height (in)','en'),(2764,2762,'Login is locked out','en'),(2765,2763,'Manage zones','en'),(2766,2764,'Marketing','en'),(2767,2765,'Minimum value is X','en'),(2768,2766,'Modules','en'),(2769,2767,'Options','en'),(2770,2768,'Order cannot be placed because there is no shipping methods available.','en'),(2771,2769,'Order number or email','en'),(2772,2770,'Please wait','en'),(2773,2771,'Prices & Inventory','en'),(2774,2772,'Recalculate totals','en'),(2775,2773,'Recent orders only','en'),(2776,2774,'SKU length must be less than {{length}}','en'),(2777,2775,'SKU or SKU1, SKU2','en'),(2778,2776,'Select language to edit','en'),(2779,2777,'Separate box','en'),(2780,2778,'Shipping method / cost','en'),(2781,2779,'Show in all the sections','en'),(2782,2780,'Show only in categories and search listings','en'),(2783,2781,'Show:','en'),(2784,2782,'Soft and Hard reset links for your store','en'),(2785,2783,'Sort by:','en'),(2786,2784,'Sort settings','en'),(2787,2785,'Specify your _store information_\', {\'URL\': url(\'settings\', \'','en'),(2788,2786,'The secure protocol for your website is disabled.','en'),(2789,2787,'The secure protocol for your website is enabled.','en'),(2790,2788,'This order was not checked by the AntiFraud service!','en'),(2791,2789,'This payment method is not configured.','en'),(2792,2790,'Time left','en'),(2793,2791,'To setup Tax Rates, find and install the appropriate addons from Marketplace\', {\'url\': url(\'addons_list_marketplace\', \'\', {\'tag\': \'Taxes','en'),(2794,2792,'Transaction ID','en'),(2795,2793,'Try to change the search criteria or find the needed solution in marketplace\', {\'URL\': url(\'addons_list_marketplace\', \'\', {\'tag\': \'Payment processing','en'),(2796,2794,'Try to search worldwide or find the needed solution in marketplace\', {\'URL\': url(\'addons_list_marketplace\', \'\', {\'tag\': \'Payment processing','en'),(2797,2795,'Updating data from the marketplace...','en'),(2798,2796,'You can purchase AntiFraud Service subscription','en'),(2799,2797,'You need these links in case you want to recover your store','en'),(2800,2798,'or use the form below','en'),(2801,2799,'the same as billing','en'),(2802,2800,'Add product','en'),(2803,2801,'Are you sure you want to enable https anyway?','en'),(2804,2802,'Check for updates','en'),(2805,2803,'Install anyway','en'),(2806,2804,'Update modules','en'),(2807,2805,'The \"{{file}}\" file is not allowed and was not uploaded. Allowed extensions are: {{extensions}}','en'),(2808,2806,'Couldn\'t download the banner \"{{value}}\"','en'),(2809,2807,'Error of banner loading. Make sure the \"images\" directory has write permissions.','en'),(2810,2808,'Searching...','en'),(2811,2809,'No results found.','en'),(2812,2810,'Enter a keyword to search.','en'),(2813,2811,'Item list','en'),(2814,2812,'Bug-fixes only','en'),(2815,2813,'Bug-fixes and new features','en'),(2816,2814,'Bug-fixes','en'),(2817,2815,'New features','en'),(2818,2816,'{{count}} items selected','en'),(2819,2817,'Maximum items in box','en'),(2820,2818,'Upgrade not allowed','en'),(2821,2819,'X-Cart v5.3 requires PHP version 5.4 or better. Please update the PHP version installed on your server before you proceed.','en'),(2822,2820,'Header, greeting & signature','en'),(2823,2821,'On this page you can edit the header, greeting and signature used by all the email notifications sent by your store (separately for admin and customer users).','en'),(2824,2822,'Greeting','en'),(2825,2823,'The settings in this section determine the content of email notifications sent to customer.','en'),(2826,2824,'Header','en'),(2827,2825,'Signature','en'),(2828,2826,'The settings in this section determine the content of email notifications sent to admin.','en'),(2829,2827,'State','en'),(2830,2828,'Scheme','en'),(2831,2829,'Body','en'),(2832,2830,'Customer','en'),(2833,2831,'Administrator','en'),(2834,2832,'Add countries','en'),(2835,2833,'Subscribe','en'),(2836,2834,'Sign in / sign up','en'),(2837,2835,'Quick view','en'),(2838,2836,'Billing','en'),(2839,2837,'Enable this if you would like us to use your shipping address as your billing address','en'),(2840,2838,'Proceed to payment','en'),(2841,2839,'Shipping to','en'),(2842,2840,'Billing to','en'),(2843,2841,'same as shipping','en'),(2844,2842,'Choose shipping','en'),(2845,2843,'Payment','en'),(2846,2844,'There is already state with code {{code}} in {{country}}','en'),(2847,2845,'Last time re-deployed at','en'),(2848,2846,'YES','en'),(2849,2847,'NO','en'),(2850,2848,'E-mail will also be updated in all the related orders.','en'),(2851,2849,'The countries to which the selected states belong will be added to the zone automatically.','en'),(2852,2850,'Hi,<br/><br/>X-Cart Team have done their best to make your upgrade process as enjoyable as possible. If that didn’t work out well for you, please follow these quick steps to get it right:','en'),(2853,2851,'First, restore your website from the created backup - this is the fastest way to get your store back online.','en'),(2854,2852,'Second, try to disable all non-X-Cart modules by using the links below:','en'),(2855,2853,'Soft reset. Turn off all addons except those provided by X-Cart Team & Qualiteam','en'),(2856,2854,'Hard reset. Disable all addons except those provided by X-Cart Team','en'),(2857,2855,'If you still need help, please, feel free to contact X-Cart Help Desk at <a href=”mailto:[email protected]”>[email protected]</a>. Remember to attach the log files (from “xcart_directory/var/log”) to your email, so that their tech engineers could instantly spot the problem and help you to fix it in the most effective way possible.','en'),(2858,2856,'Performing task...','en'),(2859,2857,'This process may take a while to complete. Please do not close this page until the process is fully completed. If you have closed the page, please re-open it to complete the process as it is in progress only when the page is open.','en'),(2860,2858,'Recalculate view lists','en'),(2861,2859,'This action reloads each @ListChild annotation and updates view list records in database.','en'),(2862,2860,'Clear data and widget cache','en'),(2863,2861,'Cache clearing might be helpful if there are some widgets with outdated information. Clicking this will remove data from cache driver.','en'),(2864,2862,'Start','en'),(2865,2863,'Orders awaiting processing','en'),(2866,2864,'Only orders awaiting processing','en'),(2867,2865,'On category listing','en'),(2868,2866,'On category and product details page','en'),(2869,2867,'Column \"{{value}}\" is required','en'),(2870,2868,'Wrong format of \"order number\" field','en'),(2871,2869,'Wrong format of \"anonymous\" field','en'),(2872,2870,'Wrong format of \"address same\" field','en'),(2873,2871,'Wrong format of \"subtotal\" field','en'),(2874,2872,'Wrong format of \"total\" field','en'),(2875,2873,'Wrong format of \"currency\" field','en'),(2876,2874,'Shipping status not found, \"New\" will be used for order','en'),(2877,2875,'Payment status not found, \"Awaiting payment\" will be used for order','en'),(2878,2876,'Order modifier \"{{value}}\" not found','en'),(2879,2877,'Wrong format of \"order modifier\" field','en'),(2880,2878,'Wrong format of \"order item\", required fields \"{{value}}\" are missing','en'),(2881,2879,'Wrong format of \"order item sku\" field','en'),(2882,2880,'Wrong format of \"order item name\" field','en'),(2883,2881,'Wrong format of \"order item price\" field','en'),(2884,2882,'Wrong format of \"order item subtotal\" field','en'),(2885,2883,'Wrong format of \"order item total\" field','en'),(2886,2884,'Wrong format of \"order item quantity\" field','en'),(2887,2885,'Order item modifier not found','en'),(2888,2886,'Wrong format of \"order item modifier\" field','en'),(2889,2887,'Wrong format of \"order transaction\", required fields \"{{value}}\" are missing','en'),(2890,2888,'Wrong format of \"order transaction method\" field','en'),(2891,2889,'Order transaction status not found','en'),(2892,2890,'Wrong format of \"order transaction value\" field','en'),(2893,2891,'Order transaction type not found','en'),(2894,2892,'Wrong format of \"order transaction id\" field','en'),(2895,2893,'Wrong format of \"order transaction currency\" field','en'),(2896,2894,'No account yet?','en'),(2897,2895,'No problem! Enter your email address','en'),(2898,2896,'Log in to your account','en'),(2899,2897,'to enjoy faster & easier checkout','en'),(2900,2898,'or proceed with','en'),(2901,2899,'You can continue as guest or <a href=\"{{URL}}\" class=\"sign-in register\">create an account</a>','en'),(2902,2900,'Apply sorting globally','en'),(2903,2901,'Integrity check','en'),(2904,2902,'Unknown core version','en'),(2905,2903,'The core may be checked only if a valid license key is present.','en'),(2906,2904,'The module may be checked only if a valid license key is present.','en'),(2907,2905,'Cannot check the files for this module','en'),(2908,2906,'Refresh integrity status','en'),(2909,2907,'Added','en'),(2910,2908,'Modified','en'),(2911,2909,'Removed','en'),(2912,2910,'Errors','en'),(2913,2911,'Integrity has not yet been checked. Initiate an integrity check by clicking the button \"Refresh integrity status\".','en'),(2914,2912,'Integrity check has been completed successfully.','en'),(2915,2913,'Integrity check has been stopped.','en'),(2916,2914,'Switch to <a href=\"javascript: void(0)\">Category tree</a>','en'),(2917,2915,'Switch to <a href=\"javascript: void(0)\">Category search</a>','en'),(2918,2916,'This field is required.','en'),(2919,2917,'Please enter the correct code','en'),(2920,2918,'The message has been sent','en'),(2921,2919,'Your Message','en'),(2922,2920,'Email Address','en'),(2923,2921,'Full Name','en'),(2924,2922,'Sales','en'),(2925,2923,'By Sales - 0-9','en'),(2926,2924,'By Sales - 9-0','en'),(2927,2925,'The length of the {{name}} field must be greater than {{min}}','en'),(2928,2926,'The length of the {{name}} field must be less than {{max}}','en'),(2929,2927,'Have more coupons?','en'),(2930,2928,'Applied discount coupon','en'),(2931,2929,'{{count}} coupon(s) removed','en'),(2932,2930,'{{count}} coupon(s) created','en'),(2933,2931,'The code \"{{code}}\" is already used for another coupon. Please choose a different code.','en'),(2934,2932,'Invalid coupon code, please check the spelling: \"{{code}}\"','en'),(2935,2933,'The coupon has already been used','en'),(2936,2934,'The coupon has been applied to your order','en'),(2937,2935,'Coupon discount','en'),(2938,2936,'Period start date must be earlier than period end date','en'),(2939,2937,'Period end date must be later than period start date','en'),(2940,2938,'Minimum order subtotal must be less than maximum order subtotal','en'),(2941,2939,'Maximum order subtotal must be greater than minimum order subtotal','en'),(2942,2940,'Discount must be less than 100%','en'),(2943,2941,'Coupon added','en'),(2944,2942,'Coupon updated','en'),(2945,2943,'Limit number of uses','en'),(2946,2944,'Maximum number of uses','en'),(2947,2945,'This coupon can be applied only to orders with a subtotal amount between {{min}} and {{max}}','en'),(2948,2946,'This coupon can be applied only to orders with a subtotal amount of at least {{min}}','en'),(2949,2947,'This coupon can be applied only to orders with a subtotal amount not exceeding {{max}}','en'),(2950,2948,'Date when customers can start using the coupon','en'),(2951,2949,'Date when the coupon expires','en'),(2952,2950,'Minimum order subtotal to which the coupon can be applied','en'),(2953,2951,'Maximum order subtotal to which the coupon can be applied','en'),(2954,2952,'Coupon discount can be limited to these product classes','en'),(2955,2953,'Coupon discount can be limited to customers with these membership levels','en'),(2956,2954,'This comment is visible to shop administrators only','en'),(2957,2955,'Add new coupon','en'),(2958,2956,'Enter code','en'),(2959,2957,'Coupon','en'),(2960,2958,'Redeem','en'),(2961,2959,'{{currency}} off','en'),(2962,2960,'Removed coupons','en'),(2963,2961,'Added coupons','en'),(2964,2962,'Add coupon','en'),(2965,2963,'This coupon cannot be combined with other coupons','en'),(2966,2964,'Sorry, this coupon cannot be combined with the coupon already applied. Remove the previously applied coupon and try again.','en'),(2967,2965,'Coupon cannot be combined with other coupons','en'),(2968,2966,'If you want the coupon discount to be applied only to products from specific categories, specify these categories here.','en'),(2969,2967,'Sorry, the coupon you entered is invalid. Make sure the coupon code is spelled correctly','en'),(2970,2968,'Sorry, the coupon has expired','en'),(2971,2969,'Sorry, the coupon use limit has been reached','en'),(2972,2970,'Sorry, the coupon you entered cannot be applied to the items in your cart','en'),(2973,2971,'Sorry, the coupon you entered is not valid for your membership level. Contact the administrator','en'),(2974,2972,'The maximum number of uses per user','en'),(2975,2973,'There are currently no coupons. Information on the use of coupons is available <a href=\"https://kb.x-cart.com/en/seo_and_promotion/setting_up_discount_coupons.html\">here</a>.','en'),(2976,2973,'В настоящее время купонов нет. Об использовании купонов можно прочесть <a href=\"https://kb.x-cart.com/en/seo_and_promotion/setting_up_discount_coupons.html\">здесь</a>.','ru'),(2977,2974,'Add featured products for the front page','en'),(2978,2975,'Featured','en'),(2979,2976,'FedEx module allows you to use online shipping rates calculation via FedEx.','en'),(2980,2977,'\"Cash on delivery\" status','en'),(2981,2978,'Note: To enable/disable the \"Cash on delivery\" payment option, you should enable/disable the payment method \"Cash on delivery (FedEx)\" on the <a href=\"{{URL}}\">Payment methods page</a>.','en'),(2982,2976,'Модуль FedEx позволяет рассчитывать онлайн стоимость доставки через FedEx.','ru'),(2983,2977,'Состояние варианта оплаты \"Наложенный платеж\"','ru'),(2984,2978,'Важно: Чтобы включить/отключить вариант оплаты \"Наложенный платеж\", необходимо включить/отключить способ оплаты \"Наложеный платеж (FedEx)\" на <a href=\"{{URL}}\">странице Способов оплаты</a>.','ru'),(2985,2979,'Advanced statistics with Google Analytics','en'),(2986,2980,'Configure the Google Analytics module to view the advanced statistics','en'),(2987,2981,'A single domain','en'),(2988,2982,'One domain with multiple subdomains','en'),(2989,2983,'Multiple top-level domains','en'),(2990,2984,'Traditional','en'),(2991,2985,'Universal Analytics','en'),(2992,2986,'Want help with SEO? <a href=\"{{url}}\" target=\"_blank\">Ask X-Cart Guru</a>','en'),(2993,2986,'Нужна помощь с поисковой оптимизацией? <a href=\"{{url}}\" target=\"_blank\">Спросите гуру X-Cart</a>','ru'),(2994,2987,'Tweet','en'),(2995,2988,'We recommend using the Share button instead of Like.','en'),(2996,2989,'These Open Graph meta tags were generated automatically based on general product information.','en'),(2997,2990,'Pin It','en'),(2998,2991,'PayPal ID / Email','en'),(2999,2992,'Enter the email address associated with your PayPal account.','en'),(3000,2993,'Enter a description of the purchase that will be displayed on the PayPal payment page.','en'),(3001,2994,'You can set an order id prefix that will be added to each order number in your shop to make it unique (each transaction id must be unique for a PayPal account). This option is relevant only if you share your PayPal account with other online shops','en'),(3002,2995,'Your account settings','en'),(3003,2996,'Partner name','en'),(3004,2997,'Your partner name is PayPal','en'),(3005,2998,'Merchant login','en'),(3006,2999,'This is the login name you created when you signed up for PayPal Payments Advanced / Payflow Link.','en'),(3007,3000,'PayPal recommends entering a User Login here instead of your Merchant Login. You can set up a User profile in <a href=\"https://manager.paypal.com\">PayPal Manager</a>. This will enhance security and prevent service interruption should you change your Merchant Login password.','en'),(3008,3001,'This is the password you created when you signed up for PayPal Payments Advanced or the password you created for API calls.','en'),(3009,3002,'Additional settings','en'),(3010,3003,'Auth and Capture','en'),(3011,3004,'Auth only','en'),(3012,3005,'This should be the partner name you use when logging into your PayPal Payflow account.','en'),(3013,3006,'This is the login name you created when you signed up for Payflow.','en'),(3014,3007,'This is the password you created when you signed up for PayPal Payflow or the password you created for API calls.','en'),(3015,3008,'IPN verification failed','en'),(3016,3009,'IPN HTTP error','en'),(3017,3010,'Order id prefix','en'),(3018,3011,'Email address to receive PayPal payment','en'),(3019,3012,'Start accepting Express Checkout payments immediately by simply plugging in the email address where you would like to receive payments. You can create your PayPal account later after you have received a real transaction from your customers!','en'),(3020,3013,'API credentials for payments and post-checkout operations','en'),(3021,3014,'Can be set up later','en'),(3022,3015,'Your PayPal Publisher ID is: {{publisherId}}','en'),(3023,3016,'Paypal API solution','en'),(3024,3017,'Paypal API','en'),(3025,3018,'Payflow API','en'),(3026,3019,'API access username','en'),(3027,3020,'API access password','en'),(3028,3021,'Use PayPal authentication method','en'),(3029,3022,'API signature','en'),(3030,3023,'API certificate filename','en'),(3031,3024,'API certificate','en'),(3032,3025,'Display the \"Buy Now with PayPal\" button','en'),(3033,3026,'This setting determines whether or not the \"Buy Now with PayPal\" button should be displayed on product list pages (in list view) and product details pages.','en'),(3034,3027,'<b>PayPal Express Checkout</b> is configured to work in SandBox mode for the email <b>{{email}}</b>.<br />To use it in Live mode, click the Launch PayPal button below. You will be taken to the PayPal payment method configuration page where you will be able to specify the appropriate configuration settings.','en'),(3035,3028,'Launch PayPal','en'),(3036,3029,'PayPal Credit is','en'),(3037,3030,'I agree with PayPal terms & conditions','en'),(3038,3031,'PayPal account e-mail','en'),(3039,3032,'Banner on Home page','en'),(3040,3033,'Banner on Category pages','en'),(3041,3034,'Banner on Product details pages','en'),(3042,3035,'Banner on Cart page','en'),(3043,3036,'Show above products','en'),(3044,3037,'Show below products','en'),(3045,3038,'Near \"Add to cart\" button','en'),(3046,3039,'Near \"Checkout\" button','en'),(3047,3040,'PayPal API (Merchant API) will work for most merchants; however, some merchants may have access only to Payflow API. If you are sure you need to use Payflow API, select the respective value from this field.<br />Your choice of API solution in this field determines the type of API credentials that you will be able to enter in the fields below.','en'),(3048,3041,'Payment has been refunded successfully','en'),(3049,3042,'Payment has been voided successfully','en'),(3050,3043,'Payment has been captured successfully','en'),(3051,3044,'Your API credentials have been successfully obtained from your PayPal account and saved for use by your X-Cart store.','en'),(3052,3045,'Unfortunately, your API credentials could not be obtained from your PayPal account automatically. Please request your API credentials in your PayPal account and submit them here manually.','en'),(3053,3046,'Don\'t have an account yet?','en'),(3054,3047,'Sign Up Now','en'),(3055,3048,'Register with {{paypal}} <br /> or go to checkout as a New customer','en'),(3056,3049,'Or sign in the classic way','en'),(3057,3050,'Or register with','en'),(3058,3051,'Register with','en'),(3059,3052,'or go to checkout as a New customer','en'),(3060,3053,'Or use your social account','en'),(3061,3054,'Use existing account from','en'),(3062,3055,'PayPal','en'),(3063,3056,'Use existing PayPal account','en'),(3064,3057,'The authorized amount ({{authorized}}) differs from the current order total ({{total}}). A request to capture {{total}} will be issued on click on \"Capture\" button.','en'),(3065,3058,'Wrong token of Express Checkout. Please try again. If the problem persists, contact the administrator.','en'),(3066,3059,'PayerID value was not returned by PayPal. Please try again. If the problem persists, contact the administrator.','en'),(3067,3060,'Your address data was not received from PayPal. Please try again. If the problem persists, contact the administrator.','en'),(3068,3061,'To enable this payment method, you need Multi-vendor module installed.','en'),(3069,3062,'To enable this payment method, you need <a href=\"{{link}}\" target=\"_blank\">Multi-Vendor</a> module installed.','en'),(3070,3063,'EACHRECEIVER','en'),(3071,3064,'Obtaining your live PayPal credentials','en'),(3072,3065,'PRIMARYRECEIVER','en'),(3073,3066,'Paypal Credit','en'),(3074,3067,'Registering your application with PayPal','en'),(3075,3068,'SECONDARYONLY','en'),(3076,3069,'SENDER','en'),(3077,3070,'Additional criteria to match for PayPal account verification','en'),(3078,3071,'<div>Determines the type of criteria that should be matched for account verification (in addition to vendor PayPal account identifier).<div><ul class=\"unstyled\"><li>NAME - Default; should be good in most cases.</li><li>NONE - Is available only to certain financial institutions (Contact Paypal for approval prior to selection!)</li><li>Disable - Deactivates account verification.</li></ul>','en'),(3079,3072,'NAME','en'),(3080,3073,'NONE','en'),(3081,3074,'Disable','en'),(3082,3075,'All newest products','en'),(3083,3076,'All upcoming products','en'),(3084,3077,'Coming soon','en'),(3085,3078,'Customers who bought this product also bought','en'),(3086,3079,'Customers who viewed this product bought','en'),(3087,3080,'Date: newest first','en'),(3088,3081,'Date: oldest first','en'),(3089,3082,'New arrivals','en'),(3090,3083,'New!','en'),(3091,3084,'Recently viewed','en'),(3092,3085,'This product will be shown in New arrivals','en'),(3093,3086,'This product will be shown in the Coming soon section','en'),(3094,3087,'expected on','en'),(3095,3088,'Coming soon...','en'),(3096,3089,'Customers who bought this product also bought (Product Advisor module)','en'),(3097,3090,'Don\'t label','en'),(3098,3091,'In catalog only','en'),(3099,3092,'On catalog and product pages','en'),(3100,3093,'Text links','en'),(3101,3093,'Текстовые ссылки','ru'),(3102,3094,'Put up for sale','en'),(3103,3095,'Cancel sale','en'),(3104,3096,'On sale','en'),(3105,3097,'Contact us','en'),(3106,3098,'Logo','en'),(3107,3099,'Favicon','en'),(3108,3099,'Фавикон','ru'),(3109,3100,'Shipping','en'),(3110,3101,'If you want to add an external link, you should specify it with the <strong>http://</strong> prefix, e.g. <strong>http://www.example.com/</strong>.<br /><br />If you want to add a link to a page within your store (e.g. the checkout page), you can specify it as <strong>cart.php?target=checkout</strong> (relative path) or as <strong>{{URL}}cart.php?target=checkout</strong> (absolute path).<br /><br />Also the \'{home}\' shortcut value will lead to Home page','en'),(3111,3102,'Failed to update the page image','en'),(3112,3103,'Visible for','en'),(3113,3104,'The menu has been updated','en'),(3114,3105,'The menu has been added','en'),(3115,3106,'The page has been updated','en'),(3116,3107,'Any visitors','en'),(3117,3108,'Anonymous users only','en'),(3118,3109,'Logged in users only','en'),(3119,3110,'Save & Close','en'),(3120,3111,'Logo & Favicon','en'),(3121,3112,'Terms and conditions','en'),(3122,3113,'Open graph image','en'),(3123,3114,'The \"{{file}}\" file is not allowed image and was not uploaded. Allowed images are: {{extensions}}','en'),(3124,3115,'Submenu','en'),(3125,3115,'Подменю','ru'),(3126,3116,'Content page title','en'),(3127,3116,'Заголовок страницы','ru'),(3128,3117,'Leave blank to use page name as Page Title.','en'),(3129,3117,'Оставьте поле незаполненным чтобы использовать имя страницы в качестве заголовка.','ru'),(3130,3118,'The AppleIcon image could not be uploaded (Unallowed image type. Must be a .png image with the resolution of 192x192 px)','en'),(3131,3119,'Profile is disabled','en'),(3132,3120,'We were unable to process this request','en'),(3133,3121,'Profile does not have any email address. Please sign in the classic way.','en'),(3134,3122,'Login with','en'),(3135,3054,'Используйте существующую учетную запись в','ru'),(3136,3053,'Или используйте вашу учетную запись в социальной сети','ru'),(3137,3049,'Или войдите, используя учетную запись в нашем магазине','ru'),(3138,3119,'Учетная запись отключена','ru'),(3139,3120,'Мы не смогли обработать запрос','ru'),(3140,3050,'Или создайте учетную запись используя','ru'),(3141,3051,'Создайте учетную запись используя','ru'),(3142,3121,'Учетная запись не содержит адреса электронной почты. Войдите, используя учетную запись нашего магазина.','ru'),(3143,3052,'или продолжите оплату как новый пользователь','ru'),(3144,3123,'The role has been updated','en'),(3145,3124,'The role has been added','en'),(3146,3125,'(disabled)','en'),(3147,3125,'(выкл)','ru'),(3148,3126,'Get {{X}} off for order amount over {{Y}}','en'),(3149,3127,'Could not add the discount because another discount already exists for the specified subtotal range and membership level','en'),(3150,3128,'Could not update the discount because another discount already exists for the specified subtotal range and membership level','en'),(3151,3129,'Percent discount value cannot exceed 100%','en'),(3152,3130,'Too large value for absolute discount','en'),(3153,3131,'Site map failed to register in {{engine}}.','en'),(3154,3132,'Site map successfully registered in {{engine}}.','en'),(3155,3133,'XML sitemap URL: <a href=\"{{url}}\">{{url}}</a>','en'),(3156,3134,'Generate sitemap','en'),(3157,3135,'Generate XML Sitemap','en'),(3158,3136,'Sitemap generation...','en'),(3159,3137,'Sitemap generation has been completed successfully.','en'),(3160,3138,'Sitemap generation has been stopped.','en'),(3161,3139,'The process of sitemap generation may take a while to complete. Please do not close this page until the process is fully completed.','en'),(3162,3140,'Tabs','en'),(3163,3140,'Вкладки','ru'),(3164,3141,'New tab','en'),(3165,3141,'Новая вкладка','ru'),(3166,3142,'The product tab has been updated','en'),(3167,3142,'Вкладка обновлена','ru'),(3168,3143,'The product tab has been added','en'),(3169,3143,'Вкладка добавлена','ru'),(3170,3144,'Product tabs','en'),(3171,3144,'Вкладки страницы продукта','ru'),(3172,3145,'Tabs imported','en'),(3173,3145,'Импорт вкладок завершен','ru'),(3174,3146,'Shopping options','en'),(3175,3147,'Show products','en'),(3176,3148,'Reset filter','en'),(3177,3149,'No products matching your criteria found. Please try again with different parameters.','en'),(3178,3150,'Show all products in this category','en'),(3179,3151,'Price range','en'),(3180,3152,'In stock only','en'),(3181,3153,'Generate cache on the fly','en'),(3182,3154,'Remove cache when attribute, tag or product data is changed','en'),(3183,3155,'Click the button to remove the data cache used by your product filter. After removing the cache, open any category in the storefront area to have the cache generated anew.','en'),(3184,3156,'Remove product filter cache','en'),(3185,3157,'Hidden from products filter','en'),(3186,3158,'Visible in products filter','en'),(3187,3159,'Classes for product filter','en'),(3188,3160,'All classes from this category','en'),(3189,3161,'Do not show the filter','en'),(3190,3162,'Choose classes...','en'),(3191,3163,'Alphabetical','en'),(3192,3164,'Manual','en'),(3193,3165,'Wrong useClasses format. This should be \'A\', \'N\' or \'D\'','en'),(3194,3146,'Поиск','ru'),(3195,3147,'Показать','ru'),(3196,3148,'Сбросить','ru'),(3197,3149,'Нет товаров удовлетворяющих выбранным условиям.','ru'),(3198,3150,'Показать все товары в категории','ru'),(3199,3151,'Цена','ru'),(3200,3152,'Только в наличии','ru'),(3201,3153,'Генерировать кеш в процессе работы','ru'),(3202,3154,'Сбрасывать кеш при изменении данных атрибутов, тегов или товаров','ru'),(3203,3155,'Кнопка служит для удаления кеша данных, используемого фильтром товаров. После удаления кеша откройте любую категорию в клиентской части сайта, чтобы кеш был сгенерирован заново','ru'),(3204,3156,'Удалить кеш фильтра товаров','ru'),(3205,3157,'Скрыт из фильтра товаров','ru'),(3206,3158,'Отображается в фильтре товаров','ru'),(3207,3159,'Классы для фильтра продуктов','ru'),(3208,3160,'Все классы из этой категории','ru'),(3209,3161,'Не отображать фильтр','ru'),(3210,3162,'Выбрать классы...','ru'),(3211,3163,'По алфавиту','ru'),(3212,3164,'Вручную','ru'),(3213,3165,'Неправильный формат значения useClasses. Возможные значения: \'A\', \'N\' or \'D\'','ru'),(3214,3166,'{{count}} stars','en'),(3215,3167,'{{count}} stars','en'),(3216,3168,'{{count}} stars','en'),(3217,3169,'{{count}} stars','en'),(3218,3170,'{{count}} star','en'),(3219,3171,'Any rating','en'),(3220,3172,'{{product}} reviews','en'),(3221,3173,'Product','en'),(3222,3174,'Product reviews','en'),(3223,3175,'Products reviews','en'),(3224,3176,'Add review','en'),(3225,3177,'Edit review','en'),(3226,3178,'Approve review','en'),(3227,3179,'The review has been created','en'),(3228,3180,'The review has been deleted','en'),(3229,3181,'The review has not been created since the product {{product}} has not been found','en'),(3230,3182,'The review has not been updated since the product {{product}} has not been found','en'),(3231,3183,'Reviewer','en'),(3232,3184,'Rating','en'),(3233,3185,'Reviews imported','en'),(3234,3186,'Product, SKU or customer info','en'),(3235,3187,'Approve','en'),(3236,3188,'Start typing product name or SKU','en'),(3237,3189,'Customer name','en'),(3238,3190,'Start typing customer email or name','en'),(3239,3191,'Text of review','en'),(3240,3192,'Published','en'),(3241,3193,'Please sign in to add review','en'),(3242,3194,'You have already reviewed this product','en'),(3243,3195,'Edit your review','en'),(3244,3196,'Add your own review','en'),(3245,3197,'Thank you for sharing your opinion with us!','en'),(3246,3198,'Your product rating is saved. Thank you!','en'),(3247,3199,'Your review has been updated. Thank your for sharing your opinion with us!','en'),(3248,3200,'Rating of votes','en'),(3249,3201,'Your email','en'),(3250,3202,'customers','en'),(3251,3203,'Average rating','en'),(3252,3204,'out of','en'),(3253,3205,'Based on','en'),(3254,3206,'votes','en'),(3255,3207,'Reviews','en'),(3256,3208,'Reviews: {{count}}','en'),(3257,3209,'We may use this email if we need additional information on your review. We will not use it for any kind of mailing lists or spam subscriptions','en'),(3258,3210,'How do you rate this item?','en'),(3259,3211,'Write your review','en'),(3260,3212,'Your review','en'),(3261,3213,'Back to product details','en'),(3262,3214,'Customer reviews','en'),(3263,3215,'On moderation','en'),(3264,3216,'Read all reviews for the product','en'),(3265,3217,'Rates','en'),(3266,3218,'By Rate - 0-9','en'),(3267,3219,'By Rate - 9-0','en'),(3268,3220,'Only registered customers who purchased this product can leave feedback','en'),(3269,3221,'Registered users who purchased the product','en'),(3270,3222,'Score: {{score}}. Votes: {{votes}}','en'),(3271,3223,'No reviews.','en'),(3272,3224,'Not rated yet','en'),(3273,3225,'Be the first and leave feedback.','en'),(3274,3226,'All users','en'),(3275,3227,'Registered users only','en'),(3276,3228,'Reviews and ratings','en'),(3277,3229,'Ratings only','en'),(3278,3230,'Reviews only','en'),(3279,3231,'Review','en'),(3280,3232,'Selected reviews have been deleted','en'),(3281,3233,'Please select the reviews first','en'),(3282,3234,'Selected reviews have been updated','en'),(3283,3235,'Reviews about product','en'),(3284,3236,'New product reviews','en'),(3285,3237,'Ratings and Reviews of {{product}}','en'),(3286,3238,'Rating: {{rating}} out of {{maxRating}}. Review by {{reviewerName}}: {{review}}','en'),(3287,3239,'SEO','en'),(3288,3240,'Select the review that should be included into the rich snippet shown for the page of this product when the page appears in search results by Google and other major search engines. More info: <a href=\"https://support.google.com/webmasters/answer/146750\" target=\"_blank\">https://support.google.com/webmasters/answer/146750</a>','en'),(3289,3241,'Anonymous reviewer','en'),(3290,3242,'Reject','en'),(3291,3243,'There are no comments yet. Be the first to leave a comment','en'),(3292,3244,'A new review has been submitted for the product \"{{name}}\".','en'),(3293,3245,'Go to see the review <a href=\"{{link}}\">in the Admin area</a>','en'),(3294,3246,'Use custom css','en'),(3295,3247,'The database stores different version of the custom changes.','en'),(3296,3248,'Review it.','en'),(3297,3249,'Restore this version','en'),(3298,3250,'Your custom file has been saved successfully','en'),(3299,3251,'Theme tweaker','en'),(3300,3252,'Pick template from page element','en'),(3301,3253,'Edited templates','en'),(3302,3254,'Webmaster mode','en'),(3303,3255,'Template','en'),(3304,3256,'Back to templates list','en'),(3305,3257,'Webmaster Mode allows you to change the storefront design in click-and-edit mode.<br /><br />If the design of your store\'s customer area has been messed up by a template change, try restoring the original template in the Edited Templates section. More information about design changes in X-Cart is available in <a href=\"http://devs.x-cart.com/en/design_changes/basic_guide_to_theme_creation.html\">X-Cart\'s Knowledge Base</a>.','en'),(3306,3258,'Webmaster mode is enabled','en'),(3307,3259,'Webmaster mode is disabled','en'),(3308,3260,'The template has been updated','en'),(3309,3261,'The template has been added','en'),(3310,3262,'Enabled','en'),(3311,3263,'Disabled','en'),(3312,3264,'Path for use in custom CSS','en'),(3313,3265,'URL','en'),(3314,3266,'The file {{file}} does not exist or is not writable.','en'),(3315,3267,'The directory {{dir}} does not exist or is not writable.','en'),(3316,3268,'New images','en'),(3317,3269,'<b>Drag & drop blocks</b> to rearrange them.','en'),(3318,3270,'Click on the description to <b>edit</b>.','en'),(3319,3271,'Exit product preview','en'),(3320,3272,'You have unsaved changes. Are you really sure to exit the preview?','en'),(3321,3273,'<i class=\"fa fa-exclamation-triangle inline-editor-message_icon\"></i>Click on the description to <b>edit</b>. Your changes may be <span style=\"font-weight: bold; color: orange;\">incompatible</span> with TinyMCE.','en'),(3322,3274,'Changes may be incompatible with TinyMCE. Are you sure to proceed?','en'),(3323,3275,'Layout editor mode','en'),(3324,3276,'Layout editor is','en'),(3325,3277,'disabled blocks','en'),(3326,3278,'Some','en'),(3327,3279,'Block is enabled','en'),(3328,3280,'Block is disabled','en'),(3329,3281,'Exit editor','en'),(3330,3282,'Layout editor is enabled','en'),(3331,3283,'Layout editor is disabled','en'),(3332,3284,'Layout editor allows you to change the position of the blocks in drag-n-drop fashion','en'),(3333,3285,'There are some custom CSS styles in your store. These styles may affect the look of the installed template. <a href=\"{{url}}\">Review the custom styles</a> and disable them if necessary.','en'),(3334,3286,'Entity was successfully saved','en'),(3335,3287,'Error on saving image','en'),(3336,3288,'Unable to save edited content. Errors: ','en'),(3337,3289,'Unknown temporary file','en'),(3338,3290,'Show all','en'),(3339,3291,'Flexy to twig converter','en'),(3340,3292,'Flexy template','en'),(3341,3293,'Twig template path','en'),(3342,3294,'Converted','en'),(3343,3295,'Search flexy templates','en'),(3344,3296,'Convert','en'),(3345,3297,'Remove flexy templates','en'),(3346,3298,'No flexy templates have been found.','en'),(3347,3299,'The flexy templates have been removed','en'),(3348,3300,'Some flexy templates cannot be removed. Please correct the file permissions or remove the templates manually:<br />{{list}}','en'),(3349,3301,'Check directory permissions','en'),(3350,3302,'This action will remove all the flexy templates. Are you sure you want to proceed?','en'),(3351,3303,'Cannot get flexy content','en'),(3352,3304,'Flexy template conversion failure. Check for syntax errors','en'),(3353,3305,'Back to Webmaster mode','en'),(3354,3306,'Converted files may not always work correctly because not all the changes can be handled automatically by conversion. Be sure to check your converted files manually to ensure that all the required changes have been implemented properly. More info about Flexy and Twig key differences is available at <a href=\"http://xcart.github.io/flexy-to-twig/\" target=\"_blank\">http://xcart.github.io/flexy-to-twig</a>','en'),(3355,3307,'Edit via Webmaster mode','en'),(3356,3308,'Preview template','en'),(3357,3309,'No orders available. Please create at least one order.','en'),(3358,3310,'Back to notification settings','en'),(3359,3311,'Edit template based on','en'),(3360,3312,'The test email notification has been sent to {{email}}','en'),(3361,3313,'Failure sending test email to {{email}}','en'),(3362,3314,'Enter Order number','en'),(3363,3246,'Использовать свой CSS','ru'),(3364,1338,'Использовать свой JavaScript','ru'),(3365,3247,'В базе данных хранится другая версия пользовательского кода.','ru'),(3366,3248,'Просмотреть её.','ru'),(3367,3249,'Восстановить эту версию','ru'),(3368,3250,'Файл успешно сохранен','ru'),(3369,3251,'Theme tweaker','ru'),(3370,3252,'Выбор шаблона на основе элемента страницы','ru'),(3371,3253,'Измененные шаблоны','ru'),(3372,3254,'Режим веб-мастера','ru'),(3373,3255,'Шаблон','ru'),(3374,3256,'Вернуться к списку шаблонов','ru'),(3375,3257,'Режим веб-мастера позволяет редактировать внешний вид сайта по месту.<br /><br />Если после внесения изменений клиентская зона выглядит неправильно, попробуйте откатить изменения в секции \"Измененные шаблоны\". Больше информации об изменении дизайна сайта на X-Cart - в <a href=\"http://devs.x-cart.com/en/design_changes/basic_guide_to_theme_creation.html\">Базе знаний X-Cart</a>.','ru'),(3376,3258,'Режим веб-мастера включен','ru'),(3377,3259,'Режим веб-мастера отключен','ru'),(3378,3260,'Шаблон обновлён','ru'),(3379,3261,'Шаблон добавлен','ru'),(3380,3262,'Вкл','ru'),(3381,3263,'Выкл','ru'),(3382,3268,'Новые картинки','ru'),(3383,3269,'Здесь можно <b>перетаскивать блоки</b>, меняя их порядок.','ru'),(3384,3270,'Режим предпросмотра продукта. Здесь можно <b>редактировать описание</b> продукта.','ru'),(3385,3271,'Вернуться','ru'),(3386,3272,'У вас есть несохраненные изменения. Вы точно хотите выйти из режима предпросмотра?','ru'),(3387,3273,'<i class=\"fa fa-exclamation-triangle inline-editor-message_icon\"></i>Здесь можно <b>редактировать описание</b> продукта. Изменения могут быть <span style=\"font-weight: bold; color: orange;\">несовместимы</span> с редактором TinyMCE.','ru'),(3388,3274,'Изменения могут быть несовместимы с редактором TinyMCE. Вы точно хотите их сохранить?','ru'),(3389,3275,'Режим разметки','ru'),(3390,3276,'Режим разметки','ru'),(3391,3277,'блоков отключено','ru'),(3392,3278,'Несколько','ru'),(3393,3279,'Блок включен','ru'),(3394,3280,'Блок отключен','ru'),(3395,3281,'Выйти','ru'),(3396,3282,'Режим разметки включен','ru'),(3397,3283,'Режим разметки отключен','ru'),(3398,3284,'Режим редактирования разметки позволяет менять положение и порядок блоков путем перетаскивания','ru'),(3399,3285,'Для сайта заданы пользовательские CSS стили. Эти стили могут оказывать влияние на внешний вид интерфейса покупателя. <a href=\"{{url}}\">Просмотрите пользовательские стили</a> и выключите их в случае необходимости.','ru'),(3400,3291,'Flexy to twig конвертор','ru'),(3401,3292,'Flexy-шаблон','ru'),(3402,3293,'Путь к Twig-шаблону','ru'),(3403,3294,'Сконвертирован','ru'),(3404,3295,'Найти flexy-шаблоны','ru'),(3405,3296,'Конвертировать','ru'),(3406,3297,'Удалить flexy-шаблоны','ru'),(3407,3298,'Flexy-шаблоны не найдены.','ru'),(3408,3299,'Flexy-шаблоны были удалены','ru'),(3409,3300,'Некоторые flexy-шаблоны не могут быть удалены. Скорректируйте права на файлы или удалите их самостоятельно:<br />{{list}}','ru'),(3410,3301,'Проверьте права на директорию','ru'),(3411,3302,'Это действие удалит все Flexy-шаблоны. Вы уверены, что хотите продолжить?','ru'),(3412,3303,'Не удалось получить содержимое Flexy-шаблона','ru'),(3413,3304,'Не удалось сконвертировать Flexy-шаблон. Проверьте его содержание на предмет синтаксических ошибок','ru'),(3414,3305,'Вернуться на страницу \"Режим веб-мастера\"','ru'),(3415,3306,'Сконвертированные файлы не всегда могут работать корректно поскольку не все изменения могут быть правильно выполнены при автоматической конвертации. Проверьте ваши сконвертированные файлы вручную, чтобы убедиться, что все изменения перенесены верно. Больше информации о Flexy-to-Twig конверторе доступно здесь: <a href=\"http://xcart.github.io/flexy-to-twig/\" target=\"_blank\">http://xcart.github.io/flexy-to-twig</a>','ru'),(3416,3307,'Редактировать в Режиме веб-мастера','ru'),(3417,3308,'Предпросмотр шаблона','ru'),(3418,3309,'Нет ни одного заказа. Пожалуйста, создайте по крайней мере один заказ.','ru'),(3419,3310,'Назад к настройкам уведомлений','ru'),(3420,3311,'Редактировать шаблон на основе','ru'),(3421,3312,'Тестовое уведомление было послано на адрес {{email}}','ru'),(3422,3313,'Ошибка отправки тестового уведомления на адрес {{email}}','ru'),(3423,3314,'Введите номер заказа','ru'),(3424,3315,'<b>UPS</b> module allows you to use online shipping rates calculation via <a href=\"http://www.ups.com\" target=\"_new\">UPS service</a>.<br/>To use UPS Rating API you need to register on <a href=\"http://www.ups.com/\" target=\"_new\">UPS.com</a> with a User ID and Password. Once you have registered you would need to obtain an Access Key from UPS.com that provides access to the Rating API. To obtain an Access Key an account number needs to be added or created in your UPS.com profile.','en'),(3425,3316,'UPS module supports \'Cash on delivery\' feature for shipments within European Union, within United States and Puerto Rico, within Canada and from Canada to the United States.<br/>To enable \'Cash on delivery\' payment option you should enable payment method \'Cash on delivery (UPS)\' at the <a href=\"{{URL}}\">Payment methods page</a>.','en'),(3426,3317,'Air service center','en'),(3427,3318,'Customer counter','en'),(3428,3319,'Daily Pickup','en'),(3429,3320,'Delivery confirmation - adult signature required','en'),(3430,3321,'Delivery confirmation - no signature','en'),(3431,3322,'Delivery confirmation - signature required','en'),(3432,3323,'Letter center','en'),(3433,3324,'No confirmation','en'),(3434,3325,'On call air','en'),(3435,3326,'One time pickup','en'),(3436,3327,'Suggested retail rates','en'),(3437,3328,'Related products','en'),(3438,3329,'Bidirectional link','en'),(3439,3329,'Двунаправленная связь','ru'),(3440,3330,'Related products page','en'),(3441,3331,'You cannot choose this product','en'),(3442,3332,'The product SKU#{{SKU}} is already set as related for the product','en'),(3443,3333,'Add related products','en'),(3444,3334,'Related products (Related Products module)','en'),(3445,3335,'The product SKU#\"X\" is already set as Related for the product','en'),(3446,3336,'Enable bidirectional links','en'),(3447,3336,'Включить двунаправленная связь','ru'),(3448,3337,'Disable bidirectional links','en'),(3449,3337,'Отключить двунаправленная связь','ru'),(3450,3338,'Do you really want to delete all relations from this product?','en'),(3451,3338,'Вы действительно хотите удалить все связи из этого товара?','ru'),(3452,3339,'\"Bidirectional link\" means that the related product is not only linked to from the product on view, but also provides a link to that product. With the \"Bidirectional link\" option enabled, removing the link from one of the products will not remove the link in the opposite direction. To remove the relationship between the products completely, disable the \"Bidirectional link\" option first, then remove the link.','en'),(3453,3339,'\"Двунаправленная связь\" значит, что не только просматриваемый товар ссылается на связанный, но и связанный ссылается на него. При включенной настройке \"Двунаправленная связь\", удаление ссылки с одного из товаров не приведет к удалению ссылки в противоположном направлении. Для полного удаления связи между товарами, вначале отключите настройку \"Двунаправленная связь\", затем удалите ссылку на связанный товар.','ru'),(3454,3340,'Edit all','en'),(3455,3340,'Редактировать все','ru'),(3456,3341,'Make bidirectional relations','en'),(3457,3341,'Добавлять двунаправленную связь','ru'),(3458,3342,'News messages','en'),(3459,3342,'Новости','ru'),(3460,3343,'News message','en'),(3461,3343,'Новость','ru'),(3462,3344,'New news message','en'),(3463,3344,'Добавить новость','ru'),(3464,3345,'News','en'),(3465,3345,'Новости','ru'),(3466,3346,'Top News','en'),(3467,3346,'Последние новости','ru'),(3468,3347,'All news','en'),(3469,3347,'Все новости','ru'),(3470,3348,'Previous','en'),(3471,3348,'Предыдущая новость','ru'),(3472,3349,'Next','en'),(3473,3349,'Следующая новость','ru'),(3474,3350,'The news message has been updated','en'),(3475,3350,'Новость обновлена','ru'),(3476,3351,'The news message has been added','en'),(3477,3351,'Новость добавлена','ru'),(3478,3352,'Create news message','en'),(3479,3352,'Добавление новости','ru'),(3480,3353,'News page title','en'),(3481,3353,'Заголовок страницы новости','ru'),(3482,3354,'News title','en'),(3483,3354,'Заголовок новости','ru'),(3484,3355,'Leave blank to use news title as Page Title.','en'),(3485,3355,'Оставьте поле незаполненным чтобы использовать заголовок новости в качестве заголовка страницы.','ru'),(3486,3356,'Free','en'),(3487,3357,'Free shipping','en'),(3488,3358,'FREE SHIPPING','en'),(3489,3359,'Wrong free shipping format','en'),(3490,3360,'Wrong shipping freight value format','en'),(3491,3361,'This shipping method becomes available at checkout only if all the products in the cart are marked \"Free shipping\" and there are no other shipping methods available.','en'),(3492,3362,'Shipping freight','en'),(3493,3363,'This field can be used to set a fixed shipping fee for the product. Make sure the field value is a positive number (greater than zero).','en'),(3494,3364,'Shipping freight only','en'),(3495,3365,'Shipping freight + regular shipping rate','en'),(3496,3366,'This shipping method becomes available on checkout, only if all the products in the cart have defined shipping freight and there are no other shipping methods available.','en'),(3497,3367,'Freight fixed fee','en'),(3498,3368,'Freight','en'),(3499,3356,'БЕСПЛАТНО','ru'),(3500,3357,'Бесплатная доставка','ru'),(3501,3358,'БЕСПЛАТНАЯ ДОСТАВКА','ru'),(3502,3359,'Неправильный формат значения поля \"Бесплатная доставка\"','ru'),(3503,3360,'Неправильный формат значения поля \"freightFixedFee\"','ru'),(3504,3361,'Этот способ доставки становится доступным только если все продукты в корзине помечены как \"Бесплатная доставка\", и нет других доступных методов доставки.','ru'),(3505,3362,'Фиксированная стоимость доставки','ru'),(3506,3363,'В данном поле можно задать фиксированную стоимость доставки для редактируемого продукта. Убедитесь, что используемое значение является положительным числом (больше нуля).','ru'),(3507,3364,'указанному значению фиксированной стоимости доставки','ru'),(3508,3365,'сумме фиксированной стоимости доставки и стоимости доставки, рассчитанной стандартным способом','ru'),(3509,3366,'Этот способ доставки становится доступным на чекауте, если у всех продуктов в корзине задана фиксированная стоимость доставки, и нет других доступных методов доставки.','ru'),(3510,3368,'Фиксированная стоимость доставки','ru'),(3511,3173,'Продукт','ru'),(3512,44,'Предыдущий','ru'),(3513,45,'Следующий продукт','ru'),(3514,3369,'Sitemap','en'),(3515,3370,'Static pages','en'),(3516,3371,'Test ShippingCalc rates calculation','en'),(3517,3372,'Subscribe to AuctionInc\'s ShippingCalc Module','en'),(3518,3373,'Guide to AuctionInc ShippingCalc Settings','en'),(3519,3374,'ShippingCalc settings','en'),(3520,3375,'ShippingCalc','en'),(3521,3376,'ShippingCalc Package Data','en'),(3522,3377,'On-demand','en'),(3523,3378,'30 Day Trial of AuctionInc ShippingCalc Module.<br />Days Left: {{days}}','en'),(3524,3379,'30 Day Trial of AuctionInc ShippingCalc Module is over','en'),(3525,3380,'Update quantity','en'),(3526,3380,'Обновление количества','ru'),(3527,3381,'Products updated','en'),(3528,3381,'Обновлено товаров','ru'),(3529,3382,'The script found {{number}} problem(s) during update inventory','en'),(3530,3382,'В процессе обновления были обнаружены ошибки ({{number}})','ru'),(3531,3383,'Product with SKU \"{{value}}\" not found','en'),(3532,3383,'Товар с артикулом \"{{value}}\" не найден','ru'),(3533,3384,'Wrong product quantity value format (\"{{value}}\")','en'),(3534,3384,'Некорректный формат в поле qty (\"{{value}}\")','ru'),(3535,3385,'Products and product variants updated','en'),(3536,3385,'Обновлено товаров и вариантов товаров','ru'),(3537,3386,'Product or product variant with SKU \"{{value}}\" not found','en'),(3538,3386,'Товар или вариант товара с артикулом \"{{value}}\" не найдены','ru'),(3539,3387,'Update quantity import guide','en'),(3540,3387,'Руководство по обновлению количества','ru'),(3541,3388,'You have just added','en'),(3542,3388,'Вы добавили в корзину','ru'),(3543,3389,'Open comparison table','en'),(3544,3389,'Открыть таблицу сравнения','ru'),(3545,3390,'Please add another product to comparison','en'),(3546,3390,'Выберите еще один продукт для сравнения','ru'),(3547,3391,'High - Low','en'),(3548,3391,'по убыванию','ru'),(3549,3392,'Low - High','en'),(3550,3392,'по возрастанию','ru'),(3551,3393,'A - Z','en'),(3552,3393,'А - Я','ru'),(3553,3394,'Z - A','en'),(3554,3394,'Я - А','ru'),(3555,3395,'You have configured MailChimp as your primary email newsletter tool. New subscribers will be added directly to your MailChimp lists (this X-Cart list will be skipped). You can manage your subscriber lists under your MailChimp account <a href=\"{{link}}\" target=\"_blank\">here</a>','en'),(3556,3395,'Вы настроили MailChimp для использования в качестве основного инструмента отправки рассылки в адрес ваших подписчиков. Новые подписчики будут добавляться напрямую в списки на стороне MailChimp (минуя данный список в X-Cart). Вы можете управлять списками подписчиков через <a href=\"{{link}}\" target=\"_blank\">свой аккаунт</a> MailChimp.','ru'),(3557,3396,'To move your existing subscribers to MailChimp lists, <a href=\"{{link}}\" target=\"_blank\">export your subscribers data</a> from X-Cart and use the import feature under your MailChimp account.','en'),(3558,3396,'Для переноса существующих подписчиков в списки на стороне MailChimp, <a href=\"{{link}}\" target=\"_blank\">экспортируйте данные подписчиков</a> из X-Cart и используйте функцию импорта в вашем аккаунте MailChimp.','ru'),(3559,3397,'Connect your store to MailChimp','en'),(3560,3397,'Связать магазин с MailChimp','ru'),(3561,3398,'Sign up for {{companyName}} news','en'),(3562,3398,'Подписаться на новости {{companyName}}','ru'),(3563,3399,'Thank you for subscribing to the newsletter! We hope you enjoy shopping at {{companyName}}','en'),(3564,3399,'Спасибо за подписку на наши новости. Мы рады, что вы - наш читатель!','ru'),(3565,3400,'Subscribers','en'),(3566,3400,'Подписчики','ru'),(3567,3401,'Email or login','en'),(3568,3401,'Email или логин','ru'),(3569,3402,'Enter email address','en'),(3570,3402,'Введите email','ru'),(3571,3403,'Subscribers imported','en'),(3572,3403,'Подписчики импортированы','ru'),(3573,3404,'Subscriber with email {{email}} already subscribed','en'),(3574,3404,'Подписчик с email {{email}} уже в существует','ru'),(3575,3405,'Any special needs?','en'),(3576,3405,'Укажите информацию для продавца','ru'),(3577,2842,'Выберите метод доставки','ru'),(3578,3406,'Fast Lane checkout','en'),(3579,3406,'Пошаговый','ru'),(3580,3407,'Checkout type','en'),(3581,3407,'Тип страницы оплаты','ru'),(3582,3408,'Firstname','en'),(3583,3408,'Имя','ru'),(3584,3409,'Lastname','en'),(3585,3409,'Фамилия','ru'),(3586,3410,'Return to cart','en'),(3587,3410,'Вернуться к корзине','ru'),(3588,3411,'Edit address','en'),(3589,3411,'Редактировать','ru'),(3590,3412,'Edit email','en'),(3591,3412,'Редактировать','ru'),(3592,3413,'One Page checkout','en'),(3593,3413,'Одностраничный','ru'),(3594,3414,'Order note. Any special needs?','en'),(3595,3414,'Укажите информацию для продавца','ru'),(3596,2838,'Перейти к оплате','ru'),(3597,3415,'Street address','en'),(3598,3415,'Адрес','ru'),(3599,3416,'Zipcode','en'),(3600,3416,'Индекс','ru'),(3601,3417,'Click to finish your order','en'),(3602,3417,'Нажмите для завершения заказа','ru'),(3603,3418,'Order cannot be placed because some steps are not completed','en'),(3604,3418,'Заказ не может быть завершен, пока есть незаполненные поля','ru'),(3605,3419,'Click to proceed to the next step','en'),(3606,3419,'Нажмите для перехода на следующий шаг','ru'),(3607,3420,'Check shipping info','en'),(3608,3420,'Доставка','ru'),(3609,3421,'Choose another address','en'),(3610,3421,'Выбрать другой адрес','ru'),(3611,3422,'Delivery method','en'),(3612,3422,'Способ доставки','ru'),(3613,3423,'Addresses','en'),(3614,3423,'Адреса','ru'),(3615,3424,'Your order details will be sent to your email address','en'),(3616,3424,'Детали ордера будут отправлены на данный адрес','ru'),(3617,3425,'Bulk edit','en'),(3618,3426,'Click to specify','en'),(3619,3427,'Bulk edit all','en'),(3620,3428,'Inventory','en'),(3621,3429,'Price and membership','en'),(3622,3430,'Bulk edit has been processed successfully.','en'),(3623,3431,'Bulk edit processing has been interrupted.','en'),(3624,3432,'Bulk edit processing may take a while to complete. Please do not close this page until the process is fully completed. If the page has been closed, please re-open it to complete the process (The Bulk edit processing routine is executed only while the page stays open).','en'),(3625,3433,'Bulk Edit processing in progress...','en'),(3626,3434,'Replace with','en'),(3627,3435,'Back to products','en'),(3628,3436,'Bulk edit selected','en'),(3629,3437,'Product list','en'),(3630,3438,'Move to','en'),(3631,3439,'Not set','en'),(3632,3440,'Low stock warning on product page','en'),(3633,3441,'Low stock notification to admin','en'),(3634,3442,'Coming Soon','en'),(3635,3443,'This feature is not yet available. You will be redirected to the feature request page where you can vote to have this feature implemented in one of the upcoming versions.','en'),(3636,3426,'Щелкните, чтобы указать значение','ru'),(3637,3428,'Информация по наличию на складе','ru'),(3638,3429,'Цена и доступность для групп','ru'),(3639,1150,'Информация по доставке','ru'),(3640,3430,'Групповое редактирование завершено успешно.','ru'),(3641,3431,'Групповое редактирование было прервано.','ru'),(3642,3432,'Процесс группового редактирования может занять продолжительное время. Пожалуйста, не закрывайте эту страницу до полного завершения процесса. Если страница оказалась закрыта, откройте ее снова, чтобы завершить процесс (Процедура группового редактирования выполняется только пока страница остается открытой).','ru'),(3643,3433,'Идет групповое редактирование...','ru'),(3644,3435,'Назад к списку продуктов','ru'),(3645,2816,'Выбрано {{count}} продуктов','ru'),(3646,3427,'Редактировать все','ru'),(3647,3436,'Редактировать выбранные','ru'),(3648,3437,'К списку продуктов','ru'),(3649,3425,'Групповое редактирование','ru'),(3650,3438,'Переместить в','ru'),(3651,3434,'Заменить на','ru'),(3652,3439,'Не заданы','ru'),(3653,3440,'Предупреждение о низком остатке на странице товара','ru'),(3654,3441,'Уведомление администратору о низком остатке','ru'),(3655,3442,'Скоро','ru'),(3656,3443,'Данный пункт пока не доступен. Вы будете перенаправлены на страницу голосования за его реализацию в одной из ближайших версий X-Cart.','ru'),(3657,3444,'MailChimp','en'),(3658,3445,'MailChimp Integration with E-commerce support','en'),(3659,3446,'Type: select box','en'),(3660,3447,'Type: checkbox','en'),(3661,3448,'MailChimp is an email marketing service with powerful tools to manage your email campaigns and subscribers while gathering advanced analytics information on your campaign performance.','en'),(3662,3449,'Update MailChimp Lists','en'),(3663,3450,'MailChimp Lists','en'),(3664,3451,'MailChimp \"{{list_name}}\" list segments','en'),(3665,3452,'MailChimp segment settings','en'),(3666,3453,'Subscription','en'),(3667,3454,'Subscribe to our news list and be in touch with our latest offers.','en'),(3668,3455,'News list subscriptions','en'),(3669,3456,'Select box','en'),(3670,3457,'Filter by order frequency','en'),(3671,3458,'Orders last month','en'),(3672,3459,'Filter by order amount','en'),(3673,3460,'Total amount of orders','en'),(3674,3461,'Filter by profile membership','en'),(3675,3462,'Filter by specific products','en'),(3676,3463,'Segment condition','en'),(3677,3464,'You will need a valid and working MailChimp account in order to be able to use this module.','en'),(3678,3465,'You can register MailChimp account','en'),(3679,3466,'here','en'),(3680,3467,'Static','en'),(3681,3468,'Auto-Updated','en'),(3682,3469,'No subscription','en'),(3683,3470,'Web ID','en'),(3684,3471,'List rating','en'),(3685,3472,'Members count','en'),(3686,3473,'Open rate','en'),(3687,3474,'Click rate','en'),(3688,3475,'Selected by default','en'),(3689,3476,'Allow this product to be used as a MailChimp segment condition','en'),(3690,3477,'1 minute','en'),(3691,3478,'10 minutes','en'),(3692,3479,'15 minutes','en'),(3693,3480,'30 minutes','en'),(3694,3481,'1 hour','en'),(3695,3482,'2 hours','en'),(3696,3483,'4 hours','en'),(3697,3484,'6 hours','en'),(3698,3485,'12 hours','en'),(3699,3486,'1 day','en'),(3700,3487,'2 days','en'),(3701,3488,'5 days','en'),(3702,3489,'1 week','en'),(3703,3490,'MailChimp lists update','en'),(3704,3491,'First name or last name are empty. Please add a new address to your address book or modify existing and fill in those fields in order to subscribe to this list.','en'),(3705,3492,'Back to segments list','en'),(3706,3493,'Subscribe by default','en'),(3707,3494,'Groups of MailChimp news list \"{{list_name}}\"','en'),(3708,3495,'Group names of MailChimp group \"{{group_name}}\"','en'),(3709,3496,'Sign up for news and updates from your favorite store. Be the first to know about exclusive sales, offers and deals.','en'),(3710,3497,'Sign up for {{company_name}} news, sales and deals','en'),(3711,3498,'Here you can view and manage the MailChimp news lists and groups of the user.','en'),(3712,3499,'Groups','en'),(3713,3500,'E-Commerce features setup','en'),(3714,3501,'Upload store data to MailChimp','en'),(3715,3502,'Upload store data to MailChimp to promote more efficient MailChimp Product Recommendations and Abandoned Carts. Before clicking the button, select the lists for which you want MailChimp \"stores\" to be created. A \"store\" is a collection of products, orders, carts and customers. MailChimp will create the \"stores\" and will connect them with the lists you have specified. Store data from X-Cart will be uploaded for these specific stores.<br><a href=\"{{url}}\" target=\"_blank\">Learn more about MailChimp e-Commerce features</a>','en'),(3716,3444,'MailChimp','ru'),(3717,3445,'Интеграция сервиса MailChimp с поддержкой Ecommerce','ru'),(3718,3446,'Тип: список','ru'),(3719,3447,'Тип: галочка','ru'),(3720,3448,'MailChimp это маркетиногвай сервис по отправке почтовых сообщений с мощными средствами управления рассылками и подписчиками, позволяющими собирать и обрабатывать информацию эффективности маркетинговых кампаний.','ru'),(3721,3449,'Обновить список рассылок MailChimp','ru'),(3722,3450,'Список рассылок MailChimp','ru'),(3723,3451,'Сегменты списка рассылок \"{{list_name}}\" MailChimp','ru'),(3724,3452,'Настройки сегмента MailChimp','ru'),(3725,3453,'Подписка','ru'),(3726,3454,'Подпишитесь на наши новостные рассылки и будьте в курсе наших специальных предложений и акций.','ru'),(3727,3455,'Подписки на новости','ru'),(3728,3456,'Список','ru'),(3729,3457,'Фильтровать по частоте заказов','ru'),(3730,3458,'Заказов за последний месяц','ru'),(3731,3459,'Фильтровать по общей сумме заказов','ru'),(3732,3460,'Общая сумма заказов','ru'),(3733,3461,'Фильтровать по пользовательским группам','ru'),(3734,881,'Пользовательские группы','ru'),(3735,3462,'Фильтровать по определенным продуктам','ru'),(3736,1050,'Продукты','ru'),(3737,3463,'Условия попадания подписчика в сегмент','ru'),(3738,3464,'Чтобы иметь возможность воспользоваться данным модулем вам понадобится рабочая учетная запись MailChimp.','ru'),(3739,3465,'Вы можете зарегистрировать учетную запись MailChimp','ru'),(3740,3466,'здесь','ru'),(3741,393,'Месяц','ru'),(3742,3467,'Статический','ru'),(3743,3468,'Авто обновляемый','ru'),(3744,3469,'Без подписки','ru'),(3745,3470,'Web ID','ru'),(3746,3471,'Рейтинг рассылки','ru'),(3747,3472,'Кол-во подписчиков','ru'),(3748,3473,'Процент открытия','ru'),(3749,3474,'Процент переходов','ru'),(3750,3475,'Выбран по умолчанию','ru'),(3751,3476,'Позволяэт данному продукту быть использованним как условие для сегмента MailChimp','ru'),(3752,906,'Никогда','ru'),(3753,3477,'1 минута','ru'),(3754,3478,'10 минут','ru'),(3755,3479,'15 минут','ru'),(3756,3480,'30 минут','ru'),(3757,3481,'1 час','ru'),(3758,3482,'2 часа','ru'),(3759,3483,'4 часа','ru'),(3760,3484,'6 часов','ru'),(3761,3485,'12 часов','ru'),(3762,3486,'1 день','ru'),(3763,3487,'2 деня','ru'),(3764,3488,'5 деня','ru'),(3765,3489,'1 неделя','ru'),(3766,3490,'Обновление списков MailChimp','ru'),(3767,3491,'Имя или фамилия пусты. Пожалуйста, добавьте новый адрес в адресную книгу или дополните существующий заполнив соответствующие поля для того, чтобы подписаться на данную рассылку.','ru'),(3768,3492,'Назад к списку сегментов','ru'),(3769,3493,'Подписка по умолчанию','ru'),(3770,3494,'Группы листа \"{{list_name}}\"','ru'),(3771,3495,'Значения группы \"{{group_name}}\"','ru'),(3772,3496,'Подпишитесь на новости и обновления любимого магазина. Узнавайте об эксклюзивных скидках, акциях и предложениях первым!','ru'),(3773,3497,'Подпишитесь на рассылку о новостях, акциях и скидках','ru'),(3774,3498,'Данная секция позволяет просматривать и управлять новостными подписками и группами пользователя (MailChimp).','ru'),(3775,3499,'Группы','ru'),(3776,3502,'Загрузите данные магазина в MailChimp для более эффективной работы рекомендаций товаров и поддержки оставленных корзин от MailChimp. Перед тем как нажать на кнопку, выберите списки, для которых требуется создать \"магазины\" в MailChimp. \"Магазин\" - это набор товаров, заказов, корзин и покупателей. MailChimp создаст \"магазины\" и привяжет их к спискам, которые вы указали. Данные из X-Cart будут выгружаться именно в эти магазины.<br><a href=\"{{url}}\" target=\"_blank\">Подробнее об опциях e-Commerce в MailChimp</a>','ru'),(3777,3501,'Выгрузить данные в MailChimp','ru'),(3778,3500,'Настройка опций e-Commerce','ru'),(3779,3503,'Showing results for','en'),(3780,3503,'Показаны результаты для','ru'),(3781,3504,'See details','en'),(3782,3504,'Подробнее','ru'),(3783,3505,'See more results for','en'),(3784,3505,'Показать больше результатов для','ru'),(3785,3506,'Suggestions','en'),(3786,3506,'Предложения','ru'),(3787,3507,'Products','en'),(3788,3507,'Товары','ru'),(3789,3508,'Categories','en'),(3790,3508,'Категории','ru'),(3791,3509,'Pages','en'),(3792,3509,'Страницы','ru'),(3793,3510,'Did you mean','en'),(3794,3510,'Возможно, вы имели в виду','ru'),(3795,3511,'Special Offer discount','en'),(3796,3511,'Скидка по акции','ru'),(3797,3512,'Percent discount (%)','en'),(3798,3512,'Процентная скидка (%)','ru'),(3799,3513,'Fixed-sum discount ({{currency}})','en'),(3800,3513,'Фиксированная скидка ({{currency}})','ru'),(3801,3514,'Fixed-amount discount ({{currency}})','en'),(3802,3514,'Фиксированная скидка ({{currency}})','ru'),(3803,3515,'Special offers','en'),(3804,3515,'Акции','ru'),(3805,3516,'Our special offers','en'),(3806,3516,'Наши акции','ru'),(3807,3517,'New special offer','en'),(3808,3517,'Новое спец. предложение','ru'),(3809,3518,'Special offer','en'),(3810,3518,'Спец. предложение','ru'),(3811,3519,'Offer type','en'),(3812,3519,'Тип','ru'),(3813,3520,'Offer type','en'),(3814,3520,'Тип','ru'),(3815,3521,'Administrative name','en'),(3816,3521,'Административное название','ru'),(3817,3522,'Dates','en'),(3818,3522,'Даты','ru'),(3819,3523,'Begin date','en'),(3820,3523,'Дата начала','ru'),(3821,3524,'Begin offer hour','en'),(3822,3524,'Час начала','ru'),(3823,3525,'End date','en'),(3824,3525,'Дата завершения','ru'),(3825,3526,'End offer hour','en'),(3826,3526,'Час завершения','ru'),(3827,3527,'Conditions','en'),(3828,3527,'Условия применения','ru'),(3829,3528,'Number of items to buy','en'),(3830,3528,'Количество покупаемых предметов','ru'),(3831,3529,'From these categories','en'),(3832,3529,'Из этих категорий','ru'),(3833,3530,'Eligible membership levels','en'),(3834,3530,'Для этих типов покупателей','ru'),(3835,3531,'Reward','en'),(3836,3531,'Вознаграждение','ru'),(3837,3532,'Number of items to discount','en'),(3838,3532,'Количество предметов по скидке','ru'),(3839,3533,'Discount','en'),(3840,3533,'Скидка','ru'),(3841,3534,'Discount type','en'),(3842,3534,'Вид скидки','ru'),(3843,3535,'Exclusions','en'),(3844,3535,'Исключения','ru'),(3845,3536,'In this section you can select other special offers that will prevent this offer from being applied.','en'),(3846,3536,'Здесь можно выбрать специальные предложения, которые, когда они уже применены к товарам, не сочетаются с редактируемым предложением.','ru'),(3847,3537,'Special offers','en'),(3848,3537,'Специальные предложения','ru'),(3849,3538,'Description & Promotions','en'),(3850,3538,'Описание и отображение','ru'),(3851,3539,'Title','en'),(3852,3539,'Заголовок','ru'),(3853,3540,'Short promo text','en'),(3854,3540,'Короткое описание','ru'),(3855,3541,'Cart promo text','en'),(3856,3541,'Реклама на странице корзины','ru'),(3857,3542,'Cart qualified text','en'),(3858,3542,'Объяснение на странице корзины','ru'),(3859,3543,'Display short promo text and image on the home page','en'),(3860,3543,'Отображать на главной странице','ru'),(3861,3544,'Display short promo text and image on matching category pages','en'),(3862,3544,'Отображать на страницах подходящих категорий','ru'),(3863,3545,'Display short promo text and image on matching product pages','en'),(3864,3545,'Отображать на страницах подходящих товаров','ru'),(3865,3546,'Display short promo text and image on Special Offers page','en'),(3866,3546,'Отображать на специальной странице.','ru'),(3867,3547,'If AustraliaPost returns shipping methods that do not exist in the available methods list, these methods will be created in the list automatically. You can specify whether these methods should be created as enabled and available to customers right away, or should be hidden from customers until you manually enable them on <a href=\"{{URL}}\">the shipping methods list page</a>.','en'),(3868,3548,'Before you can start configuring the Australia Post module, you must receive the available options for the configuration settings from Australia Post. Please click the button below.','en'),(3869,3549,'The option values have been successfully updated.','en'),(3870,3550,'API Login ID','en'),(3871,3551,'Transaction key','en'),(3872,3552,'MD5 Hash protection','en'),(3873,3553,'The MD5 Hash feature allows you to authenticate that transaction responses are securely received from Authorize.Net.<br> You can configure the MD5 Hash value in the Security Setting sections of your merchant interface at <a href=\'http://account.authorize.net\'>http://account.authorize.net</a>','en'),(3874,3554,'To obtain the transaction key from the Merchant Interface, do the following:<br><ol><li>Log into the Merchant Interface</li><li>Select Settings from the Main Menu</li><li>Click on Obtain Transaction Key in the Security section</li><li>Type in the answer to the secret question configured on setup</li><li>Click Submit</li></ol>','en'),(3875,3555,'It\'s recommended to limit the length of invoice prefix to 9 characters. Larger prefixes will be cut prior to transaction initialization.','en'),(3876,3556,'<strong>Skrill Quick Checkout</strong> enables you to take <strong>direct</strong> payment from credit cards, debit cards and over 80 other local payment options in over 200 countries as well as the Skrill eWallet. The highly competitive rates for this service are published on the Skrill website at <a href=\"//www.skrill.com/\" target=\"blank\">www.skrill.com</a>','en'),(3877,3557,'Don\'t have an account? <a href=\"{{url}}\" target=\"blank\">Sign up for free</a>','en'),(3878,3558,'Your activation request was sent on {{date}}. Please be aware that the verification process to use Skrill Quick Checkout could take up to 72 hours. You will be contacted by Skrill once the verification process has been completed. After activation, Skrill will give you access to a new section in your Skrill Account called Merchant Tools. Please set your secret word in the Merchant Tools (do NOT use your password for this) and also enter it in the section below to connect to Skrill. The secret word is the last step of your activation process; it is needed to encrypt your payments securely. After successful submission you will be ready to use all the direct payment options of Skrill.','en'),(3879,3559,'Contact Skrill at <a href=\"mailto:[email protected]\">[email protected]</a> or by phone +44 203 308 2519','en'),(3880,3560,'Email address of your Skrill account','en'),(3881,3561,'Skrill Customer ID','en'),(3882,3562,'Secret Word','en'),(3883,3563,'You can set an order id prefix that will be added to each order number in your shop to make it unique (each transaction id must be unique for a Skrill account)','en'),(3884,3564,'This option is relevant only if you share your Skrill account with other online shops.','en'),(3885,3565,'Do you have questions?','en'),(3886,3566,'Skrill settings','en'),(3887,3567,'To process your customers\\\' payments with Skrill, you need a Skrill account. If you do not have one yet, you can sign up for free at http://www.skrill.com','en'),(3888,3568,'Address for sales tax calculation','en'),(3889,3569,'Click here to specify tax rates that will apply only to shipping charges','en'),(3890,3570,'Discounted subtotal','en'),(3891,3571,'Discounted subtotal + Shipping cost','en'),(3892,3572,'General tax rates','en'),(3893,3573,'Individual settings for every rate','en'),(3894,3574,'New rate','en'),(3895,3575,'Subtotal + Shipping cost','en'),(3896,3576,'Taxable base','en'),(3897,3577,'Tax rates for shipping charges have not yet been created.','en'),(3898,3578,'Tax rates have not yet been created.','en'),(3899,3579,'Tax rates on shipping cost','en'),(3900,3580,'Use the same tax rates for all user membership levels','en'),(3901,3568,'Адрес для расчета налога с продаж','ru'),(3902,3569,'Нажмите здесь, чтобы задать ставки налогов на стоимость доставки','ru'),(3903,3570,'Сумма заказа с учетом скидки','ru'),(3904,3571,'Сумма заказа с учетом скидки + стоимость доставки','ru'),(3905,3572,'Основные ставки налогов','ru'),(3906,3573,'Индивидуальные настройки для каждой ставки налога','ru'),(3907,3574,'Новая ставка','ru'),(3908,3575,'Сумма заказа + стоимость доставки','ru'),(3909,1217,'Сумма налога успешно удалена','ru'),(3910,1218,'Сумма налога не удалена','ru'),(3911,3576,'Налогооблагаемая база','ru'),(3912,3577,'Ставки налога на стоимость доставки пока не созданы.','ru'),(3913,3578,'Ставки налога пока не созданы.','ru'),(3914,3579,'Ставки налогов на стоимость доставки','ru'),(3915,3580,'Использовать одни и те же ставки налога для всех групп покупателей','ru'),(3916,1117,'Налог с продаж','ru'),(3917,3581,'MD5 hash value','en'),(3918,3582,'Use of Restriction key must be disabled in your Quantum Gateway merchant center account at all times. Please log in to your account, go to the Processing Settings section and make sure the setting \"Use restriction key\" is disabled.','en'),(3919,3583,'Include response in hash','en'),(3920,3584,'This value must be set in exactly the same way as it is set on the payment gateway end.','en'),(3921,3585,'2Checkout.com account number','en'),(3922,3586,'Order prefix','en'),(3923,3587,'Pricing currency','en'),(3924,3588,'To set up the integration, go to the ','en'),(3925,3589,'\"Site management\"','en'),(3926,3590,' page on the 2Checkout site and make sure of the following:','en'),(3927,3591,'The \"Pricing currency\" value here in X-Cart must be exactly the same as on 2Checkout\'s Site management page.','en'),(3928,3592,'The \"Approved URL\" value on 2Checkout\'s Site management page must be set to this','en'),(3929,3593,'<strong>U.S.P.S.</strong> module allows to use online shipping rates calculation via <a href=\"http://www.usps.com/webtools\">USPS Web Tools Ecommerce API</a>.','en'),(3930,3594,'Note: To enable/disable the \"Cash on delivery\" payment option, you should enable/disable the payment method \"Cash on delivery (U.S.P.S.)\" on the <a href=\"{{URL}}\">Payment methods page</a>.','en'),(3931,3595,'Refresh list of available methods','en'),(3932,3596,'Wrong container type selected: {{value}}. For large package size only the following types are allowed: RECTANGULAR, NONRECTANGULAR, VARIABLE','en'),(3933,3597,'{{value}} is an invalid container type for a REGULAR package. Valid Container is: VARIABLE','en'),(3934,3593,'<strong>U.S.P.S.</strong> module allows to use online shipping rates calculation via <a href=\"http://www.usps.com/webtools\">USPS Web Tools Ecommerce API</a>.','ru'),(3935,3594,'Важно: Чтобы включить/отключить вариант оплаты \"Наложенный платеж\", необходимо включить/отключить способ оплаты \"Наложеный платеж (U.S.P.S.)\" на <a href=\"{{URL}}\">странице Способов оплаты</a>.','ru'),(3936,3595,'Обновить список доступных методов','ru'),(3937,3596,'Выбран неправильный тип контейнера: {{value}}. Для указанного размера LARGE допустимы следующие значения для типа контейнера: RECTANGULAR, NONRECTANGULAR, VARIABLE','ru'),(3938,3597,'{{value}} - неправильное значение для размера REGULAR. Допустимое значение: VARIABLE','ru'),(3939,3598,'Cards that can be used for your future orders in this shop. No real credit card data was saved, only a special token on the side of the payment processor that can be used in this store only.','en'),(3940,3599,'These payment methods were imported from your X-Payments. You can add them to your store at the ','en'),(3941,3600,'page.','en'),(3942,3601,'Re-import payment methods','en'),(3943,3602,'Import payment methods','en'),(3944,3603,'Click the button below to re-import payment methods from X-Payments.','en'),(3945,3604,'To be able to use the payment methods defined in X-Payments, you should import information about them from X-Payments. Click the button below, and X-Payments will return a list of payment methods available for this shopping cart.','en'),(3946,3605,'Request payment methods','en'),(3947,3606,'X-Payments returned the following payment methods for your shopping cart:','en'),(3948,3607,'X-Payments configuration ID','en'),(3949,3608,'Replace payment methods','en'),(3950,3609,'Cancel import and keep current payment methods','en'),(3951,3610,'X-Cart automatically checks the connection to X-Payments after the settings are saved.<br/> If the module is configured properly, a \"Test transaction completed successfully\" message is displayed at the top of the page.','en'),(3952,3611,'Once the connection is verified, you should proceed to the','en'),(3953,3612,'section.','en'),(3954,3613,'Use X-Payments configuration bundle','en'),(3955,3614,'Copy the value of the Configuration field from X-Payments Online Store Details page, paste the string here and click <b>Deploy</b>.<br/> All the connection settings will be specified automatically.','en'),(3956,3615,'Or fill in the settings manually','en'),(3957,3616,'Specify the URL of your X-Payments installation. <br/>Copy and paste the <b>Store ID</b>, <b>Public key</b>, <b>Private key</b> and <b>Private key password</b> from X-Payments Online Store Details page.','en'),(3958,3617,'Used credit cards','en'),(3959,3618,'Credit card','en'),(3960,3619,'Update default card','en'),(3961,3620,'Pay with previously used credit card','en'),(3962,3621,'Show all saved credit cards','en'),(3963,3622,'I want to use this credit card for my future orders in this shop.','en'),(3964,3623,'Configuration has been successfully deployed','en'),(3965,3624,'Your configuration string is not correct','en'),(3966,3625,'Test transaction completed successfully','en'),(3967,3626,'Test transaction failed. Please check the X-Payments Connector settings and try again. If all the settings are ok, review your X-Payments settings and make sure you have properly defined your shopping cart properties.','en'),(3968,3627,'There are no payment configurations for this store.','en'),(3969,3628,'An error occured during the requesting of payment methods from X-Payments. See log files for details.','en'),(3970,3629,'X-Payments transaction','en'),(3971,3630,'Save cards','en'),(3972,3631,'1.1 (X-Payments 1.0.5 and earlier)','en'),(3973,3632,'1.2 (X-Payments 2.0 and X-Payments 1.0.6)','en'),(3974,3633,'Add new credit card','en'),(3975,3634,'Saved credit cards','en'),(3976,3635,'Test transaction completed successfully for API version {{version}}','en'),(3977,3636,'Ok','en'),(3978,3637,'Save credit card','en'),(3979,3638,'Back to credit cards','en'),(3980,3639,'Important!','en'),(3981,3640,'We will authorize','en'),(3982,3641,'on your credit card in order to attach this credit card to your account. The amount will be released back to your card after a while.','en'),(3983,3642,'The transaction will be marked as','en'),(3984,3643,'Date, time','en'),(3985,3644,'Result payment status','en'),(3986,3645,'Transaction result','en'),(3987,3646,'The related payment has not been found. Apparently, it was deleted.','en'),(3988,3647,'KOUNT Antifraud screening result','en'),(3989,3648,'Score','en'),(3990,3649,'Rules triggered','en'),(3991,3650,'Authorize/charge the difference','en'),(3992,3651,'View payment information','en'),(3993,3652,'Go to payment details page','en'),(3994,3653,'Use one of the following cards to','en'),(3995,3654,'for this order','en'),(3996,3655,'Cards saved by the customer for future orders in this shop. No real credit cards were saved, only a special token on the side of the payment processor, which can be used in this store only.','en'),(3997,3656,'No active X-Payments payment methods, or saving credit cards is not activated.','en'),(3998,3657,'<b>Note:</b> No payment methods here because the module is not configured. Please finalize the settings at ','en'),(3999,3658,'Connection','en'),(4000,3659,'tab and get back here to configure methods.','en'),(4001,3660,'Start FREE Trial','en'),(4002,3661,'See how','en'),(4003,3662,'Open your X-Payments dashboard','en'),(4004,3663,'in','en'),(4005,3664,'X-Payments','en'),(4006,3665,'Configure your gateway','en'),(4007,3666,'Connect','en'),(4008,3667,'with','en'),(4009,3668,'Connect to X-Payments. Complete 3 easy steps.','en'),(4010,3669,'Open X-Payments dashboard to configure','en'),(4011,3670,'Connected!','en'),(4012,3671,'Conection with X-Payments is OK.','en'),(4013,3672,'Connection failed!','en'),(4014,3673,'Check the settings.','en'),(4015,3674,'Card saved','en'),(4016,3675,'Card has not been saved due to a payment processor error','en'),(4017,3676,'Payment methods have been imported successfully','en'),(4018,3677,'Do not use card setup','en'),(4019,3678,'Payment method for card setup','en'),(4020,3679,'1.3 (X-Payments 2.1)','en'),(4021,3680,'Authorize amount for card setup','en'),(4022,3681,'Description of the card setup payment','en'),(4023,3682,'Authorization period, days','en'),(4024,3683,'Charged amount','en'),(4025,3684,'Declined amount','en'),(4026,3685,'Difference','en'),(4027,3686,'Payment information','en'),(4028,3687,'Connection with X-Payments is OK.','en'),(4029,3688,'No addresses for the profile.','en'),(4030,3689,'Order status mapping rules','en'),(4031,3690,'Refer to on-line manual','en'),(4032,3691,'Save credit card setup','en'),(4033,3692,'Trying to use unaccepted template change.','en'),(4034,3693,'X-Payments Dashboard','en'),(4035,3694,'X-Payments considers this transaction as potentially fraudlent.','en'),(4036,3695,'You should accept the changes at the','en'),(4037,3696,'Note: In order to setup ePDQ essential payment gateway, you have to complete these steps: <ul><li>Log in to your ePDQ backoffice</li> <li>Open the \"Configuration\" -> \"Technical information\" page -> \"Global security parameters\" tab -> \"Hashing method\" section and select SHA-512 and UTF-8 options.</li> <li>Open the \"Configuration\" -> \"Technical information\" page -> \"Data and origin verification\" tab -> \"Checks for e-Commerce\" section and in the URL field enter this URL: <em>{{URL}}</em></li> <li>Define SHA-IN pass phrase in the corresponding section and further enter it here in X-Cart in the \"SHA-IN pass phrase\" field.</li> <li>Open the \"Configuration\" -> \"Technical information\" page -> \"Transaction feedback\" tab -> \"e-Commerce\" section and enable <em>I would like to receive transaction feedback parameters on the redirection URLs</em> option.</li> <li>Scroll down to the \"All transaction submission modes\" section and define SHA-OUT pass phrase and further enter it here in X-Cart in the \"SHA-OUT pass phrase\" field.</li></ul>','en'),(4038,3697,'PSPID','en'),(4039,3698,'SHA-IN pass phrase','en'),(4040,3699,'SHA-OUT pass phrase','en'),(4041,3700,'Currency','en'),(4042,3701,'Invoice number prefix','en'),(4043,3702,'Enable logging of ePDQ transactions','en'),(4044,3703,'Response from ePDQ is not trusted (SHA checking is failed)','en'),(4045,3704,'Unexpected result was received from ePDQ (transaction status is not set)','en'),(4046,3705,'Merchant ID','en'),(4047,3706,'SubID','en'),(4048,3707,'Public Certificate File','en'),(4049,3708,'Public Key','en'),(4050,3709,'Private Key','en'),(4051,3710,'Private Key Password','en'),(4052,3711,'Currency','en'),(4053,3712,'Invoice number prefix','en'),(4054,3713,'Enable logging of iDEAL transactions','en'),(4055,3714,'Something is wrong with the iDEAL payment module settings. Please try later or use a different payment option.','en'),(4056,3715,'Unexpected result was received from iDEAL (transaction status is not set)','en'),(4057,3716,'Payment return page requested without expected parameters','en'),(4058,3717,'Warning! This payment method requires OpenSSL extension. Please install and enable this extension in your PHP configuration.','en'),(4059,3718,'Warning! Please re-check public and private key values and private key password!','en'),(4060,3719,'Select issuer','en'),(4061,3720,'Unknown payment transaction','en'),(4062,3721,'The file with the certificate needs to be located in the directory {{certsDir}}','en'),(4063,3722,'<b>Canada Post</b> module allows you to use online shipping rates calculation via <a href=\"https://www.canadapost.ca\">Canada Post</a>.','en'),(4064,3723,'Products return {{return_number}}','en'),(4065,3724,'To request a return please complete the form below','en'),(4066,3725,'Return quantity','en'),(4067,3726,'Create return','en'),(4068,3727,'Deliver to Post Office','en'),(4069,3728,'There are no post offices available','en'),(4070,3729,'Tracking pins','en'),(4071,3730,'Delivery to Post Office','en'),(4072,3731,'No events found','en'),(4073,3732,'Attached files','en'),(4074,3733,'Created on','en'),(4075,3734,'Documents','en'),(4076,3735,'Parcel options','en'),(4077,3736,'In store currency (0 - do not use coverage)','en'),(4078,3737,'Parcel','en'),(4079,3738,'Shipment info','en'),(4080,3739,'Shipment ID','en'),(4081,3740,'Shipment status','en'),(4082,3741,'Tracking pin','en'),(4083,3742,'Return tracking pin','en'),(4084,3743,'PO Number','en'),(4085,3744,'Manifests','en'),(4086,3745,'Manifest ID','en'),(4087,3746,'Parcel characteristics','en'),(4088,3747,'Total items weight','en'),(4089,3748,'warning: parcel is overweight','en'),(4090,3749,'Box maximum weight','en'),(4091,3750,'Dimensions (cm)','en'),(4092,3751,'Parcel type','en'),(4093,3752,'Document','en'),(4094,3753,'Unpackaged','en'),(4095,3754,'Mailing tube','en'),(4096,3755,'Oversized','en'),(4097,3756,'On shipment','en'),(4098,3757,'On exception','en'),(4099,3758,'On delivery','en'),(4100,3759,'Test Canada Post rates calculation','en'),(4101,3760,'Please note that rates are calculated for shipping from Canadian locations only.','en'),(4102,3761,'Canada Post settings','en'),(4103,3762,'Merchant registration wizard','en'),(4104,3763,'To start the registration process for a Canada Post merchant account click on the \"Register\" button.','en'),(4105,3764,'If you want to enable merchant registration wizard once again, please click on the following link','en'),(4106,3765,'enable merchant wizard','en'),(4107,3766,'Administrator notes','en'),(4108,3767,'Not specified','en'),(4109,3768,'18 years','en'),(4110,3769,'19 years','en'),(4111,3770,'shipments are picked up by Canada Post','en'),(4112,3771,'deposit your items at a Post Office','en'),(4113,3772,'Counter - will return the regular price paid by retail consumers','en'),(4114,3773,'Commercial - will return the contracted price between Canada Post and the contract holder','en'),(4115,3774,'Card (hold) for pick up','en'),(4116,3775,'Leave at door','en'),(4117,3776,'Do not safe drop','en'),(4118,3777,'Parcel cannot be voided or transmitted - wrong quote type','en'),(4119,3778,'Parcel cannot be transmitted - wrong quote type','en'),(4120,3779,'Enter Return # or Order #','en'),(4121,3780,'Return products','en'),(4122,3781,'Void shipment','en'),(4123,3782,'Are you sure you want to void this shipment?','en'),(4124,3783,'Create shipment','en'),(4125,3784,'Transmit shipment','en'),(4126,3785,'Are you sure you want to transmit this shipment?','en'),(4127,3786,'Ordered qty','en'),(4128,3787,'Return qty','en'),(4129,3788,'Total weight','en'),(4130,3789,'Move item','en'),(4131,3790,'New parcel','en'),(4132,3791,'Return #','en'),(4133,3792,'CanadaPost settings','en'),(4134,3793,'Tracking details','en'),(4135,3794,'Search for returns','en'),(4136,3795,'The parcels have been successfully updated','en'),(4137,3796,'The shipment has been created with errors','en'),(4138,3797,'The shipment has been created successfully','en'),(4139,3798,'The shipment cannot be created','en'),(4140,3799,'The shipment has been voided with errors','en'),(4141,3800,'The shipment has been voided successfully','en'),(4142,3801,'The shipment cannot be voided','en'),(4143,3802,'The shipment has been transmitted with errors','en'),(4144,3803,'The shipment has been transmitted successfully','en'),(4145,3804,'The shipment cannot be transmitted','en'),(4146,3805,'Shipments','en'),(4147,3806,'Return','en'),(4148,3807,'The products return has been registered.','en'),(4149,3808,'No items have been selected for return.','en'),(4150,3809,'Vendor name','en'),(4151,3810,'Processing mode','en'),(4152,3811,'Encryption Password','en'),(4153,3812,'Invoice number prefix','en'),(4154,3813,'Pricing currency','en'),(4155,3814,'Don\'t have an account yet? <a href=\"https://support.sagepay.com/apply/default.aspx?PartnerID=653E8C42-AD93-4654-BB91-C645678FA97B\">Sign up</a> for SagePay now!','en'),(4156,3815,'You need to install the PHP mcrypt extension to use the Sage Pay integration','en'),(4157,3816,'Sage Pay is UK\'s leading independent payment service provider (PSP) and is one of the most trusted payment brands. Every year Sage Pay processes billions of pounds worth of secure payments for its 50,000+ customers and makes the process of accepting payments online, over the phone, or in person simpler, faster, safer and more profitable for businesses.<br /><br />Sage Pay is a subsidiary of FTSE 100 business management software and services company The Sage Group plc.','en'),(4158,3817,'Please enter your encryption password (This is different from your merchant password). More info on encryption passwords is available <a href=\'{{link}}\' target=\'_blank\'>here</a>','en'),(4159,3818,'{{count}} items ({{total}})','en'),(4160,3818,'{{count}} продуктов ({{total}})','ru'),(4161,3819,'Token is empty','en'),(4162,3819,'Токен пустой','ru'),(4163,3820,'CVC verification: {{state}}','en'),(4164,3820,'Проверка подлинности кредитной карты (CVC): {{state}}','ru'),(4165,3821,'Address line verification: {{state}}','en'),(4166,3821,'Проверка адреса: {{state}}','ru'),(4167,3822,'Address zipcode verification: {{state}}','en'),(4168,3822,'Проверка почтового индекса: {{state}}','ru'),(4169,3823,'Requested transaction type: {{actual}}; real transaction type: {{real}}','en'),(4170,3823,'Запрашивалася транзакция типа {{actual}}, а реально была выполнена типа {{real}}','ru'),(4171,3824,'Requested amount: {{actual}}; real amount: {{real}}','en'),(4172,3824,'Запрашивалось к оплате {{actual}}, а реально было оплачено {{real}}','ru'),(4173,3825,'Requested currency: {{actual}}; real currency: {{real}}','en'),(4174,3825,'Запрашивалось к оплате сумма в валюте {{actual}}, а реально было оплачено в валюте {{real}}','ru'),(4175,3826,'Copy \"Webhook URL\" and go to <a href=\"https://manage.stripe.com/account/webhooks\" target=\"_blank\">Account settings</a>','en'),(4176,3826,'Скопируйте \"Webhook URL\" и перейдите в <a href=\"https://manage.stripe.com/account/webhooks\" target=\"_blank\">Account settings</a>','ru'),(4177,3827,'Go to your <strong>\"account settings\"</strong> on www.stripe.com','en'),(4178,3827,'Откройте страницу <strong>\"account settings\"</strong> на www.stripe.com','ru'),(4179,3828,'Choose <strong>\"Webhook tab\"</strong> and press <strong>\"+ add URL\"</strong> button','en'),(4180,3828,'Выберите вкладку <strong>\"Webhooks\"</strong> и нажмите кнопку <strong>\"+ add URL\"</strong>','ru'),(4181,3829,'Past <strong>\"Webhook URL\"</strong> to the field and press <strong>\"Create Webhook URL\"</strong> button','en'),(4182,3829,'Вставьте <strong>\"Webhook URL\"</strong> и нажмите кнопку <strong>\"Create Webhook URL\"</strong>','ru'),(4183,3830,'Disconnect','en'),(4184,3830,'Разъеденить','ru'),(4185,3831,'Status: <span>Connected</span> ({{mode}})','en'),(4186,3831,'Статус: <span>Соединено</span> ({{mode}})','ru'),(4187,3832,'Click \"Connect with Stripe\" to be redirected to Stripe.com','en'),(4188,3832,'Нажмите \"Connect with Stripe\" чтобы перейти на Stripe.com','ru'),(4189,3833,'<strong>Complete the form</strong> with your Company info to setup your account and start processing payments immedately.','en'),(4190,3833,'<strong>Заполняйте форму</strong>, имея на руках данные о Вашей компании. После регистрации Вы сможете сразу начать принимать платежи.','ru'),(4191,3834,'Refresh token','en'),(4192,3834,'Обновить токен','ru'),(4193,3835,'Your Stripe account is no longer accessible. Please connect with Stripe once again.','en'),(4194,3835,'Ваш Stripe аккаунт более недоступен. Пожалуста, пройдите соединение со Stripe еще раз.','ru'),(4195,3836,'Webhook URL is your store\'s URL through which Stripe informs your store about any changes in the order. For example, if you refund a payment transaction for a certain amount via Stripe backend, Stripe will send information about this refund to the store using a special request to the Webhook URL, and the store will update the order status to refunded. If Webhook URL is not specified, the store will not know that the order was updated in Stripe backend and the order status in the store will not be updated automatically.','en'),(4196,3836,'Webhook URL это URL Вашего магазина, через который Stripe оповещает магазин о изменениях в заказе. Например, если вы черезе Stripe backend сделаете refund плоатежной транзакции на некую сумму, то Stripe сообщит об этом магазину при помощи специального запроса к Webhook URL и магазин изменит состояние заказа на refunded. Иначе, если Webhook URL не указан, магазин об этом не узнает и закза не изменит свое состояние автоматически.','ru'),(4197,3837,'URL is copied','en'),(4198,3837,'URL скопирован','ru'),(4199,3838,'Show \"How to use\" instruction','en'),(4200,3838,'Показать инструкцию','ru'),(4201,3839,'Hide \"How to use\" instruction','en'),(4202,3839,'Спрятать инструкцию','ru'),(4203,3840,'Don\'t have an account?','en'),(4204,3841,'Publishable key','en'),(4205,3842,'Publishable key (test mode)','en'),(4206,3843,'Secret key (test mode)','en'),(4207,3844,'Ogone PSPID','en'),(4208,3845,'SHA-IN passphrase','en'),(4209,3846,'SHA-OUT passphrase','en'),(4210,3847,'Don\'t have an account? <a href=\"{{url}}\" target=\"blank\">Sign Up Now</a><br /><br />','en'),(4211,3848,'Note: In order to setup \'Ingenico Payment Services\' payment method, you have to complete these steps: <ul><li>Log in to your Ingenico Payment Services account</li> <li>Open the \"Configuration\" -> \"Technical information\" page -> \"Data and origin verification\" tab -> \"Checks for e-Commerce\" section and in the URL field enter this URL: <em>{{URL}}</em></li> <li>Define SHA-IN pass phrase in the corresponding section and further enter it here in X-Cart in the \"SHA-IN pass phrase\" field.</li> <li>Open the \"Configuration\" -> \"Technical information\" page -> \"Transaction feedback\" tab -> \"e-Commerce\" section and enable <em>I would like to receive transaction feedback parameters on the redirection URLs</em> option.</li> <li>Scroll down to the \"All transaction submission modes\" section and define SHA-OUT pass phrase and further enter it here in X-Cart in the \"SHA-OUT pass phrase\" field.</li></ul>','en'),(4212,3849,'Store ID','en'),(4213,3850,'HPP Key','en'),(4214,3851,'To set up the integration, go to the <a href=\"https://www3.moneris.com/mpg/\" target=\"_blank\">\"Site management\"</a> page on the eSelect site and make sure of the following:','en'),(4215,3852,'The \"Store ID\" and \"HPP Key\" value must be exactly the same as on it.','en'),(4216,3853,'The \"Approved URL\" value must be exactly as this:','en'),(4217,3854,'The \"Declined URL\" value must be exactly as this:','en'),(4218,3855,'Set the \"Response Method\" setting to \"Sent to your server as a POST\".','en'),(4219,3856,'Enable the \'Use \"Enhanced Cancel\"\' option.','en'),(4220,3857,'Approved URL','en'),(4221,3858,'Declined URL','en'),(4222,3859,'Amazon Order Ref ID','en'),(4223,3860,'Immediate Charge','en'),(4224,3861,'Pay with Amazon','en'),(4225,3862,'PayWithAmazon available actions','en'),(4226,3863,'Refresh status','en'),(4227,3864,'Refund status','en'),(4228,3865,'This operation will cancel order. Payment authorization will be voided. Please confirm to proceed.','en'),(4229,3866,'This operation will capture funds from customer. Please confirm to proceed.','en'),(4230,3867,'This operation will refund funds to customer. Please confirm to proceed.','en'),(4231,3868,'The \"Pay With Amazon\" feature is not configured and cannot be used.','en'),(4232,3869,'The \"Pay with Amazon\" feature requires https to be <a href=\"{{url}}\">properly set up</a> for your store.','en');
CREATE TABLE `xlite_language_labels` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
PRIMARY KEY (`label_id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_language_labels` VALUES (3590,' page and make sure that:'),(2977,'\"Cash on delivery\" status'),(3589,'\"Site management\"'),(2042,'\"X product\" options'),(1169,'\"{{number}}\" tracking number is added'),(1170,'\"{{number}}\" tracking number is removed'),(1820,'\"{{product}} product\" attributes'),(1992,'# selected'),(1,'%'),(3125,'(disabled role)'),(2057,'(optional)'),(436,'+12130000000'),(1764,'- OR -'),(241,'-- No categories --'),(2577,'...Downloading {{entry}}...{{status}}'),(2575,'...Hooks {{hooksCount}}'),(2574,'...Hooks {{hooksCount}}, Items {{itemsCount}}...'),(2573,'...Invoke {{type}} hook for {{entry}}...'),(2576,'...Unpacking {{entry}}...{{status}}'),(3486,'1 day'),(3481,'1 hour'),(3477,'1 minute'),(3489,'1 week'),(3631,'1.1 (X-Payments 1.0.5 and earlier)'),(3632,'1.2 (X-Payments 2.0 and X-Payments 1.0.6)'),(3679,'1.3 (X-Payments 2.1)'),(3478,'10 minutes'),(432,'1000 Example street'),(3485,'12 hours'),(389,'14days'),(3479,'15 minutes'),(3768,'18 years'),(3769,'19 years'),(3487,'2 days'),(3482,'2 hours'),(3585,'2Checkout.com account number'),(3379,'30 Day Trial of AuctionInc ShippingCalc Module is over'),(3378,'30 Day Trial of AuctionInc ShippingCalc Module. Days Left: X'),(3480,'30 minutes'),(390,'30days'),(3483,'4 hours'),(3488,'5 days'),(3484,'6 hours'),(388,'7days'),(435,'90001'),(2578,'<span>X</span> items'),(3393,'A - Z'),(1462,'A DB error occurred while uninstalling the module X'),(2215,'A new category will be created'),(440,'A new customer? Enter your e-mail'),(2212,'A new membership will be created'),(2213,'A new product class will be created'),(2211,'A new product will be created'),(3244,'A new review has been submitted for the product \"{{name}}\".'),(2214,'A new tax class will be created'),(2981,'A single domain'),(441,'ABA routing number'),(3550,'API Login ID'),(3020,'API access password'),(3019,'API access username'),(3024,'API certificate'),(3023,'API certificate filename'),(3013,'API credentials for payments and post-checkout operations'),(3022,'API signature'),(377,'APRIL'),(381,'AUGUST'),(2451,'About X remaining'),(2746,'About clean urls'),(442,'Absolute'),(443,'Accept'),(2696,'Accept[TT]'),(444,'Accepted orders'),(446,'Access denied!'),(447,'Access information'),(448,'Access is locked out'),(449,'Access level'),(2716,'Access level cannot be changed (from {{prevValue}} to {{value}}) for existing profile ({{login}})'),(1918,'Access storefront via private link'),(450,'Account'),(451,'Account details'),(249,'Account settings'),(452,'Account status'),(453,'Account summary'),(2583,'Accounting'),(2366,'Action'),(1458,'Action X::Y, M'),(31,'Activate'),(29,'Activate existing key'),(28,'Activate free license'),(35,'Activate free license description'),(1644,'Activate key'),(454,'Activate license key'),(2485,'Activate purchased skin'),(2265,'Activate your X-Cart'),(2263,'Activate your X-Cart installation'),(2264,'Activate your X-Cart installation first'),(22,'Activate your license key'),(455,'Activate your paid module license'),(456,'Active'),(457,'Active from'),(458,'Active till'),(459,'Add'),(460,'Add Product'),(461,'Add alternative payment method'),(1890,'Add attribute'),(2667,'Add banner'),(462,'Add category'),(463,'Add child'),(2663,'Add comment here'),(2832,'Add countries'),(2962,'Add coupon'),(464,'Add discount'),(465,'Add featured products'),(2047,'Add featured products for \"X\"'),(2974,'Add featured products for the front page'),(466,'Add file'),(467,'Add image'),(136,'Add language'),(468,'Add markup'),(469,'Add new'),(470,'Add new address'),(471,'Add new country'),(2955,'Add new coupon'),(3633,'Add new credit card'),(472,'Add new exception'),(135,'Add new label'),(139,'Add new language'),(473,'Add new membership level'),(474,'Add new option'),(475,'Add new option group'),(476,'Add new state'),(477,'Add offline payment method'),(478,'Add payment method'),(2800,'Add product'),(1947,'Add products'),(1624,'Add rates'),(3333,'Add related products'),(3176,'Add review'),(479,'Add shipping method'),(1629,'Add state'),(1628,'Add states'),(480,'Add subcategory'),(2373,'Add to bag'),(41,'Add to cart'),(1172,'Add tracking number'),(481,'Add user'),(482,'Add your _products_'),(3196,'Add your own review'),(483,'Add zone'),(2392,'Add-on does not exist.'),(484,'Add-ons'),(485,'Add/update options'),(486,'Added'),(2961,'Added coupons'),(2907,'Added files'),(2179,'Added items'),(487,'Added to cart'),(3070,'Additional criteria to match for PayPal account verification'),(3002,'Additional settings'),(488,'Address'),(489,'Address book'),(490,'Address details'),(491,'Address field'),(492,'Address fields'),(3568,'Address for sales tax calculation'),(1823,'Address has been deleted'),(1818,'Address is not selected'),(3821,'Address line verification: X'),(1819,'Address not found'),(493,'Address pattern'),(1817,'Address type has wrong value'),(3822,'Address zipcode verification: X'),(2539,'Address zone'),(3423,'Addresses'),(1755,'Addresses list is empty'),(494,'Admin'),(1308,'Admin has requested a change of password for your account. Please change the password before you proceed.'),(495,'Administration Zone'),(3521,'Administrative name'),(496,'Administrator'),(1516,'Administrator Zone'),(2407,'Administrator account cannot be deleted via customer interface.'),(2304,'Administrator header'),(3766,'Administrator notes'),(2305,'Administrator signature'),(2308,'Administrator subject'),(2309,'Administrator text'),(2384,'Advanced Order Management'),(2979,'Advanced statistics with Google Analytics'),(2056,'After activation Skrill will give you access to a new section in your Skrill account called \"Merchant tools\". Please choose a secret word (do not use your password for this) and enter it into the merchant tools section and below.'),(1283,'After clicking this button, your hard/soft reset links will be regenerated. You need it in case old links were compromised.'),(1404,'After the problem has been fixed, try to connect again.'),(2722,'After the problem has been fixed, try to connect again.\', {\'clear_cache\': url(\'addons_list_marketplace'),(1488,'After the upgrade is completed please check your website. If you find that the site is inoperative, please try to do the following'),(1809,'Aggregation cache has been cleaned'),(3317,'Air service center'),(238,'All'),(666,'All Addresses (default zone)'),(355,'All Order Statuses'),(405,'All User Types'),(497,'All add-ons'),(2134,'All attributes'),(3160,'All classes from this category'),(1831,'All countries'),(498,'All customers'),(2723,'All items'),(2176,'All items cannot be removed from the order.'),(2111,'All levels'),(403,'All membership levels'),(499,'All memberships'),(3075,'All newest products'),(3347,'All news'),(2115,'All orders'),(2100,'All payment statuses'),(2645,'All payment transaction statuses'),(501,'All products on sale'),(1754,'All rights reserved.'),(502,'All shipping methods'),(2101,'All shipping statuses'),(503,'All shipping zones'),(2376,'All statuses'),(500,'All the necessary adaptation will be done by the developer.'),(504,'All the products are in sufficient quantities'),(505,'All time'),(3076,'All upcoming products'),(2383,'All user types'),(3226,'All users'),(1760,'All words'),(3476,'Allow this product to be used as a MailChimp segment condition'),(3163,'Alphabetical'),(508,'Alphabetically'),(1660,'Already added'),(1699,'Already exists'),(509,'Already have an account?'),(2637,'Also the system has detected problems with the following modules'),(2749,'Also, to manage your redirects you can define 301 redirects in .htaccess file.'),(102,'Alt'),(510,'Alternative payment methods'),(511,'Alternative text'),(285,'Alternatively, upload file sqldump.sql.php to the var/backup/ sub-directory click on the \"Restore from server\" button'),(2724,'Although you can switch the store to use the secure protocol for the website pages, most Internet browsers will likely display a warning message scaring your website visitors away.'),(2598,'Amazon'),(3859,'Amazon Order Ref ID'),(512,'Amount'),(513,'Amount: high to low'),(514,'Amount: low to high'),(1842,'An attempt to update settings of unknown payment method'),(2329,'An error occurred while sending the request'),(2444,'An error occurred, please try again. If the problem persists, contact the administrator.'),(2445,'An error occurred, please try again. If the problem persists, contact the administrator. (txnNote)'),(1714,'An upgrade is a dangerous process that may result in a crashed website.'),(515,'An upgrade is a dangerous process that may result in a crashed website. It is strongly recommended to create a full back up of your shop (the code and the database) and download it to a local computer before proceeding to the next step.'),(1911,'Anonymous'),(2112,'Anonymous (access level)'),(210,'Anonymous Customer'),(211,'Anonymous Customer, _Registered User with the same email_'),(2002,'Anonymous Customers'),(3241,'Anonymous reviewer'),(3108,'Anonymous users only'),(516,'Another state'),(124,'Any availability status'),(410,'Any category'),(127,'Any class'),(517,'Any membership level'),(518,'Any product class'),(2521,'Any profile'),(3171,'Any rating'),(3405,'Any special needs?'),(411,'Any status'),(2159,'Any stock status'),(3107,'Any visitors'),(1761,'Any word'),(519,'Any zone'),(2595,'App type'),(520,'Appearance'),(2928,'Applied discount coupon'),(521,'Apply destination'),(522,'Apply price'),(2900,'Apply sorting globally'),(1733,'Apply value changes globally'),(1732,'Apply value changes locally'),(3187,'Approve'),(3178,'Approve review'),(3857,'Approved URL'),(523,'Are you sure you want to continue?'),(524,'Are you sure you want to delete the selected user?'),(2612,'Are you sure you want to delete this filter?'),(1657,'Are you sure you want to delete this profile?'),(525,'Are you sure you want to disable this add-on?'),(2801,'Are you sure you want to enable https anyway?'),(526,'Are you sure you want to enable this add-on?'),(3785,'Are you sure you want to transmit this shipment?'),(2371,'Are you sure you want to uninstall selected add-ons?'),(527,'Are you sure you want to uninstall this add-on?'),(3782,'Are you sure you want to void this shipment?'),(528,'Are you sure you wish to delete the selected zones?'),(529,'Are you sure?'),(530,'Arrival date'),(532,'Ask.com'),(2426,'Assign entered Clean URL to this page anyway'),(533,'Assigned classes'),(531,'Asynchronous'),(3732,'Attached files'),(534,'Attachment is not deleted'),(535,'Attachments'),(536,'Attachments have been updated successfully'),(1560,'Attribute'),(18,'Attribute data will be lost. warning text'),(1559,'Attribute group'),(1556,'Attribute name'),(1551,'Attribute option'),(1557,'Attribute values'),(130,'Attributes'),(752,'Attributes block'),(325,'Attributes for X product class'),(1821,'Attributes have been successfully changed'),(1871,'Attributes have been updated successfully'),(1886,'Attributes imported'),(537,'Australia Post settings'),(2081,'Auth'),(3003,'Auth and Capture'),(3004,'Auth only'),(538,'Authentication'),(539,'Authentication code'),(540,'Author'),(2036,'Authorization and Capture'),(2037,'Authorization only'),(3682,'Authorization period, days'),(541,'Authorization then capture'),(3680,'Authorize amount for card setup'),(3650,'Authorize/charge the difference'),(2684,'Authorize[TT]'),(357,'Authorized'),(1810,'Authorized amount'),(542,'Auto'),(3468,'Auto-Updated'),(2725,'Autogenerate'),(1658,'Autogenerate Clean URL'),(2054,'Autogenerated'),(2588,'Automate shipping'),(2590,'Automate your shipping process with the services of our partners: print shipping labels, grab shipping orders info from eBay, ETSY, Amazon and other marketplaces; integrate with several shipping carriers in one spot and more.'),(543,'Availability'),(544,'Available for sale'),(2518,'Avalara, a leader in US sales tax automation, provides a solution that can make your life easier by providing accurate and up-to-date tax rates for products you sell.'),(3203,'Average rating'),(545,'B'),(253,'BEGIN - END of TOTAL'),(1798,'Back'),(1765,'Back to Login form'),(2642,'Back to Trial mode'),(3305,'Back to Webmaster mode'),(751,'Back to Zones list'),(3638,'Back to credit cards'),(546,'Back to file select'),(547,'Back to layout settings'),(548,'Back to methods'),(1766,'Back to modules'),(3310,'Back to notification settings'),(2312,'Back to notifications list'),(549,'Back to order list'),(3213,'Back to product details'),(3435,'Back to products'),(3492,'Back to segments list'),(2565,'Back to shipping methods'),(3256,'Back to templates list'),(311,'Backend payment transaction X issued'),(2726,'Background export is in progress'),(550,'Backup'),(551,'Backup database'),(2014,'Backup your store with Backup Master'),(552,'Bank Account Number'),(904,'Bank name'),(3035,'Banner on Cart page'),(3033,'Banner on Category pages'),(3032,'Banner on Home page'),(3034,'Banner on Product details pages'),(2666,'Banner rotation'),(3205,'Based on'),(3225,'Be the first and leave a feedback.'),(1593,'Before editing attributes specific for the chosen type you should save the changes'),(2511,'Before enabling HTTPS protocol read this article:'),(2261,'Before installing a paid addon for this installation, you need to activate your X-Cart license.'),(3548,'Before you can start configure Australia Post module you should update available options from Australia Post. Please click button below.'),(3523,'Begin offer date'),(3524,'Begin offer hour'),(553,'Benchmark completed in '),(554,'Benchmark result under 3000ms is considered good'),(555,'Bestsellers'),(2621,'Bill to'),(2836,'Billing'),(556,'Billing address'),(2067,'Billing address is not defined'),(557,'Billing address is not defined yet'),(1801,'Billing address is the same as Shipping'),(2840,'Billing to'),(558,'Bing'),(3280,'Block is disabled'),(3279,'Block is enabled'),(2045,'Blocked'),(2829,'Body'),(3749,'Box maximum weight'),(559,'Brief description'),(560,'Brief descrption'),(561,'Browse server'),(2814,'Bug-fixes'),(3433,'Bulk Edit processing in progress...'),(3425,'Bulk edit'),(3427,'Bulk edit all'),(3430,'Bulk edit has been processed successfully.'),(3431,'Bulk edit processing has been interrupted.'),(3432,'Bulk edit processing may take a while to complete. Please do not close this page until the process is fully completed.'),(3436,'Bulk edit selected'),(2189,'Buy'),(2460,'Buy Business Edition'),(562,'Buy more'),(2415,'Buy prolongation'),(1775,'C.O.D. fee included'),(563,'CLOSE'),(1982,'CM'),(564,'CSS & JavaScript'),(2361,'CSV delimiter'),(2140,'CSV file has the wrong filename format.'),(1962,'CSV or ZIP files, total max size: {{size}}'),(3820,'CVC verification: X'),(1786,'CVV2'),(2446,'Cache management'),(565,'Cache rebuild is already started, please wait'),(2449,'Calculate quick data'),(2450,'Calculate quick data help text'),(566,'Calculate rates'),(2452,'Calculating quick data...'),(434,'California'),(1788,'Call us: '),(2526,'Can be provided only for offline shipping methods.'),(2528,'Can be provided only for online shipping methods.'),(3014,'Can be set up later'),(567,'Can\'t be disabled. The module is required by:'),(568,'Can\'t connect to the Modules Marketplace server'),(2009,'Can\\\'t connect to the marketplace server'),(3722,'Canada Post module allows to use online shipping rates calculation via Canada Post'),(3761,'Canada Post settings'),(3792,'CanadaPost settings'),(151,'Cancel'),(3609,'Cancel import and keep current payment methods'),(3095,'Cancel sale'),(359,'Canceled'),(2652,'Canceled[S]'),(1877,'Cannot autogenerate clean URL for the product name \"{{name}}\". Please specify it manually.'),(2905,'Cannot check the files for this module'),(2173,'Cannot create temporary order for modification'),(2315,'Cannot gather modules from the marketplace. Please try later.'),(3303,'Cannot get flexy content'),(290,'Cannot set X permissions for subdirectories:'),(2082,'Capture'),(2688,'Capture multiple[TT]'),(2687,'Capture partially[TT]'),(569,'Capture status'),(2686,'Capture[TT]'),(1811,'Captured amount'),(3774,'Card (hold) for pick up'),(2277,'Card number'),(3674,'Card saved'),(2274,'Card type'),(3675,'Card was not saved due to payment processor error'),(1781,'Cardholder name'),(3655,'Cards saved by the customer for the future orders in this shop. No real credit cards were saved, only special token on the side of the payment processor, that can be used in this store only.'),(3598,'Cards which can be used for your future orders in this shop. No real credit cards were saved, only special token on the side of the payment processor, that can be used in this store only.'),(1163,'Carrier'),(2562,'Carrier service'),(2563,'Carrier service name'),(2561,'Carrier services'),(2530,'Carrier-calculated rates'),(1796,'Cart'),(570,'Cart & checkout'),(2156,'Cart contains products with wrong quantity'),(2155,'Cart contains products with wrong quantity. Please correct this to proceed'),(220,'Cart is empty'),(3541,'Cart promo text'),(3542,'Cart qualified text'),(2050,'Cash on delivery'),(571,'Catalog'),(572,'Categories'),(1887,'Categories imported'),(573,'Category'),(92,'Category icon'),(574,'Category info'),(575,'Category name'),(2721,'Category name should not be empty'),(576,'Category page title'),(577,'Change'),(578,'Change address'),(1787,'Change attributes'),(579,'Change method'),(580,'Change options'),(1406,'Change password'),(581,'Change payment info'),(582,'Change shipping info'),(2177,'Changed items'),(2178,'Changed options'),(3274,'Changes may be incompatible with TinyMCE. Are you sure to proceed?'),(1730,'Changes of attributes globally'),(1731,'Changes of attributes locally'),(2191,'Character set'),(3683,'Charged amount'),(1712,'Check again'),(583,'Check all'),(3301,'Check directory permissions'),(2501,'Check for available free disk space has failed'),(2802,'Check for updates'),(584,'Check number'),(3420,'Check shipping info'),(3673,'Check the settings.'),(585,'Checking'),(586,'Checking integrity, please wait...'),(224,'Checkout'),(3407,'Checkout type'),(587,'Choose'),(3828,'Choose Webhook tab and press + add URL button'),(588,'Choose _payment methods_'),(2487,'Choose a new template'),(3421,'Choose another address'),(2276,'Choose card type'),(3162,'Choose classes...'),(589,'Choose file'),(590,'Choose from a variety of bundled payment solutions to accept credit cards and other methods of payment on your website'),(591,'Choose method'),(2842,'Choose shipping'),(592,'Choose shipping method'),(1768,'Choose the product options first'),(2459,'Choose the right plan'),(1604,'Choosing \"URLs\" will link the exported data to your public files (product and category images, downloadable files shown on product pages, and so on) through direct URLs'),(2275,'Chose credit card type'),(593,'City'),(2135,'Classes & Attributes'),(1838,'Classes & attributes'),(3159,'Classes for product filter'),(594,'Clean URL'),(2728,'Clean URLs'),(647,'Clean URLs are disabled'),(645,'Clean URLs are disabled. More info'),(2727,'Clean URLs are disabled. More info\', {\'more_info_url\': url(\'settings\', \''),(646,'Clean URLs are enabled'),(649,'Clean URLs functionality may not be enabled. More info'),(599,'Clean aggregation cache'),(62,'Clean aggregation cache help text'),(600,'Clean widgets cache'),(63,'Clean widgets cache help text'),(601,'CleanURL'),(598,'Clean_urls_error_message'),(1512,'Cleanup'),(1509,'Cleanup queries'),(2860,'Clear all caches'),(2861,'Clear all caches text'),(1772,'Clear all fields'),(602,'Clear bag'),(46,'Clear cart'),(122,'Clear search'),(3832,'Click Connect with Stripe to be redirected to Stripe.com'),(603,'Click here to access/add subcategories'),(3569,'Click here to specify tax rates that will apply only to shipping charges'),(604,'Click here to view states of country'),(1584,'Click if you do not want to add this value to new products or class’s assigns automatically'),(1585,'Click if you want to add this value to new products or class’s assigns automatically'),(3474,'Click rate'),(3603,'Click the button below to re-import payment methods from X-Payments.'),(2190,'Click the link to increase product amount'),(1623,'Click to add rates'),(1627,'Click to add states'),(1691,'Click to close'),(1630,'Click to edit all this label translations'),(1622,'Click to edit rates'),(1626,'Click to edit states'),(3417,'Click to finish your order'),(1690,'Click to open'),(3419,'Click to proceed to the next step'),(3426,'Click to specify'),(605,'Click to unblock'),(189,'Clicking the Place order button you accept: Terms and Conditions'),(1543,'Clone'),(1542,'Clone this product'),(131,'Cloned products'),(366,'Close'),(606,'Close storefront'),(1920,'Closed'),(2596,'Cloud Service'),(607,'Code'),(2867,'Column X is required'),(3077,'Coming soon'),(2357,'Coming soon (title)'),(3088,'Coming soon...'),(1683,'Comma'),(608,'Comment'),(609,'Comments'),(1978,'Commercial'),(3773,'Commercial - will return the contracted price between Canada Post and the contract holder'),(1179,'Common tax settings'),(2104,'Communication log'),(1905,'Compact view'),(610,'Company'),(611,'Company name'),(2066,'Compare'),(1789,'Compare products'),(1518,'Compare your result with other servers'),(1702,'Complete'),(1802,'Complete billing address'),(612,'Completed'),(613,'Component'),(3671,'Conection with X-Payments is OK.'),(614,'Configuration'),(3623,'Configuration has been successfully deployed'),(1618,'Configure'),(615,'Configure _shipping methods_'),(2980,'Configure the Google Analytics module to view the advanced statistics'),(3665,'Configure your gateway'),(616,'Configure your store'),(148,'Confirm deletion'),(617,'Confirm password'),(2466,'Confirmation'),(1700,'Confirmation does not match'),(170,'Congratulations! Your order has been placed successfully'),(3666,'Connect'),(3668,'Connect to X-Payments. Do 3 easy steps.'),(3397,'Connect your store to MailChimp'),(3670,'Connected!'),(2750,'Connecting to the marketplace...'),(3658,'Connection'),(3672,'Connection failed!'),(3687,'Connection with X-Payments is OK.'),(3559,'Contact Skrill on [email protected] or by phone +44 203 308 2519'),(3097,'Contact us'),(21,'Contact us trial notice'),(618,'Contacts'),(619,'Content'),(3116,'Content page title'),(620,'Continue'),(1803,'Continue as guest'),(47,'Continue shopping'),(60,'Continue...'),(2671,'Convert failed transactions into real orders'),(3296,'Convert templates'),(103,'Copy'),(3826,'Copy Webhook URL and go to Account settings'),(621,'Copy file to local server'),(3614,'Copy the value of the Configuration field from X-Payments Online Store Details page, paste the string here and click Deploy. All the connection settings will be specified automatically.'),(104,'Copy to clipboard'),(101,'Copy to file system'),(1670,'Core version'),(622,'Core version: '),(3127,'Could not add the discount because another discount already exists for the specified subtotal range and membership level'),(2441,'Could not assign upgrade access level to your license keys'),(3128,'Could not update the discount because another discount already exists for the specified subtotal range and membership level'),(2806,'Couldn\'t download the banner {{value}} from URL'),(2673,'Couldn\'t download the image {{value}} from URL'),(2021,'Couldn\'t move X images. See log for details.'),(2020,'Couldn\'t move image X'),(1507,'Count'),(3772,'Counter - will return the regular price paid by retail consumers'),(623,'Countries'),(2285,'Countries information has been successfully updated'),(624,'Countries, states and zones'),(625,'Country'),(626,'Country is not selected'),(2957,'Coupon'),(2965,'Coupon cannot be combined with other coupons'),(627,'Coupon code'),(2935,'Coupon discount'),(2953,'Coupon discount can be limited to customers with these membership levels'),(2952,'Coupon discount can be limited to these product classes'),(628,'Coupons'),(629,'Create'),(631,'Create SQL file'),(632,'Create a backup'),(633,'Create account'),(634,'Create an account for later use'),(635,'Create category'),(2400,'Create label'),(636,'Create new account'),(1959,'Create new items and update existing items'),(3352,'Create news message'),(630,'Create profile'),(3726,'Create return'),(3783,'Create shipment'),(1294,'Create zone'),(637,'Created'),(3733,'Created on'),(3618,'Credit card'),(1782,'Credit card number'),(2284,'Credit card security code (if present)'),(1957,'Critical error'),(1491,'Critical errors have been detected in the files you are trying to import. Please correct the errors and try again.'),(1678,'Curl options'),(1677,'Curl version'),(638,'Currency'),(2172,'Current price for the selected configuration and quantity: X'),(2480,'Current template'),(2055,'Custom'),(640,'Custom CSS'),(90,'Custom HTML title'),(641,'Custom JavaScript'),(639,'Custom addons'),(1967,'Custom attributes'),(642,'Custom images'),(1894,'Custom offline shipping'),(2531,'Custom table rates'),(643,'Custom translation'),(209,'Customer'),(2110,'Customer access level'),(3318,'Customer counter'),(2302,'Customer header'),(2174,'Customer information'),(3189,'Customer name'),(208,'Customer note'),(3214,'Customer reviews'),(2303,'Customer signature'),(2306,'Customer subject'),(2307,'Customer text'),(644,'Customer zip/postal code'),(1520,'Customer zone is closed for maintenance.'),(1883,'Customers'),(1884,'Customers imported'),(3078,'Customers who bought this product also bought'),(3079,'Customers who viewed this product bought'),(385,'DECEMBER'),(2599,'DHL'),(1983,'DM'),(3319,'Daily Pickup'),(1492,'Data has not been found'),(651,'Data have been deleted successfully'),(652,'Data have been saved successfully'),(653,'Database backup created successfully'),(1859,'Database restored successfully!'),(654,'Date'),(1771,'Date range'),(397,'Date range should less than %d days'),(396,'Date range should longer than %d days'),(2948,'Date when customers can start using the coupon'),(2949,'Date when the coupon expires'),(3643,'Date, time'),(3080,'Date: newest first'),(3081,'Date: oldest first'),(655,'Day'),(365,'Days'),(656,'Dear'),(303,'Dear X'),(657,'Dear customer'),(658,'Decline'),(2697,'Decline[TT]'),(659,'Declined'),(3858,'Declined URL'),(3684,'Declined amount'),(660,'Default'),(661,'Default customer address'),(1892,'Default for admins'),(662,'Default for customer zone and can not disabled or deleted'),(663,'Default for customer zone and cannot be disabled or deleted'),(1891,'Default for customers'),(2646,'Default image settings'),(664,'Default images settings'),(1553,'Default option'),(2741,'Default site meta description'),(2742,'Default site meta keywords'),(2740,'Default site title'),(128,'Default tax class'),(1594,'Default value'),(423,'Default zone tooltip text'),(1079,'Default-sort-option'),(667,'Define classes'),(150,'Delete'),(159,'Delete Language'),(668,'Delete SQL file'),(2406,'Delete account'),(669,'Delete all'),(1592,'Delete all files'),(2611,'Delete filter option'),(59,'Delete item'),(670,'Delete profile'),(671,'Delete selected'),(672,'Delete selected profile'),(1495,'Delete temporary files after the import is completed'),(673,'Delete the image'),(674,'Delete this address?'),(3727,'Deliver to Post Office'),(50,'Delivery'),(3320,'Delivery confirmation - adult signature required'),(3321,'Delivery confirmation - no signature'),(3322,'Delivery confirmation - signature required'),(3422,'Delivery method'),(675,'Delivery methods'),(2523,'Delivery time'),(3730,'Delivery to Post Office'),(267,'Depending on the size of your data file, importing may take some time.'),(2085,'Deploy'),(42,'Description'),(3538,'Description & Promotions'),(3681,'Description of the card setup payment'),(2029,'Destination address'),(676,'Destination zone'),(677,'Details'),(2347,'Developers docs'),(3685,'Difference'),(3750,'Dimensions (cm)'),(678,'Directories and files permissions'),(346,'Directory X does not have permissions to write. Please set necessary permissions to directory X.'),(1889,'Directory does not have permissions to write'),(1682,'Directory is empty'),(155,'Disable'),(679,'Disable all modules in the system'),(3337,'Disable mutual links'),(680,'Disable suspicious modules'),(681,'Disabled'),(1587,'Disabled in catalog'),(158,'Disabled language can not be set as default for customer zone'),(1876,'Disabled language cannot be default.'),(682,'Disabled language cannot be set as default for customer zone'),(2093,'Disabled modules hooks message body'),(2092,'Disabled modules hooks message head'),(772,'Disables all addons except ones that are provided by X-Cart Team & Qualiteam (soft reset)'),(771,'Disables all addons except ones that are provided by X-Cart Team (hard reset)'),(1183,'Disables all modules except ones that were downloaded from marketplace (soft reset)'),(3830,'Disconnect'),(683,'Discount'),(684,'Discount amount'),(685,'Discount type'),(3570,'Discounted subtotal'),(3571,'Discounted subtotal + Shipping cost'),(686,'Display \'inc/ex VAT\' labels next to prices'),(1181,'Display common settings'),(3546,'Display short promo text and image on Special Offers page'),(3544,'Display short promo text and image on matching category pages'),(3545,'Display short promo text and image on matching product pages'),(3543,'Display short promo text and image on the home page'),(3025,'Display the \"Buy Now with PayPal\" button'),(687,'Display type'),(1900,'Displays the number of labels translated to the language'),(688,'Do not close this page!'),(1719,'Do not replace selected files and ignore their newer versions'),(3776,'Do not safe drop'),(2118,'Do not see your payment method? Find it on our Marketplace'),(2751,'Do not see your payment method? Find it on our Marketplace\', {\'url\': url(\'addons_list_marketplace\', \'\', {\'tag\': \'Payment processing'),(2158,'Do not select anything if you want to make the product visible to all customers.'),(689,'Do not show at startup anymore'),(3161,'Do not show the filter'),(3677,'Do not use card setup'),(1494,'Do not verify images to increase speed of the process'),(3565,'Do you have questions?'),(2580,'Do you really want to close storefront?'),(3338,'Do you really want to delete all relations from this product?'),(690,'Do you really want to delete selected items?'),(3752,'Document'),(3734,'Documents'),(2630,'Does not match license type (requires {{list}} edition)'),(3046,'Don\'t have account yet?'),(3814,'Don\'t have account yet? Sign up for SagePay now!'),(3840,'Don\'t have an account?'),(3557,'Don\'t have an account? Sign up for free'),(3090,'Don\'t label'),(691,'Dont have account yet?'),(2013,'Don’t forget to create a backup!'),(1692,'Double quote'),(1963,'Download CSV files'),(692,'Download SQL file'),(1605,'Download all files in a single archive'),(2682,'Download error file'),(693,'Downloaded components'),(694,'Downloading updates'),(695,'Downloading updates, please wait...'),(696,'Drag and drop me to the bag'),(1493,'Drop existing items before import'),(697,'Drop items here to shop'),(698,'Drupal frontend'),(324,'Duplicated clean URL: X'),(272,'During the import was recorded X errors. You can get them by downloading the log files.'),(3500,'E-Commerce features setup'),(1790,'E-Mail'),(3011,'E-Mail address to receive PayPal payment'),(699,'E-mail'),(700,'E-mail is not defined yet'),(2848,'E-mail will also be updated in all the related orders.'),(3063,'EACHRECEIVER'),(2600,'ETSY'),(1625,'Edit'),(3411,'Edit address'),(3340,'Edit all'),(1661,'Edit attribute'),(1583,'Edit attribute values'),(1526,'Edit attributes'),(701,'Edit charges for:'),(2483,'Edit custom options'),(3412,'Edit email'),(160,'Edit label'),(161,'Edit labels'),(413,'Edit labels (X)'),(703,'Edit page'),(702,'Edit payment method data'),(1620,'Edit product'),(704,'Edit profile'),(429,'Edit rates (X)'),(3177,'Edit review'),(418,'Edit states (X)'),(351,'Edit subcategories (X)'),(3311,'Edit template based on'),(3307,'Edit via Webmaster mode'),(3195,'Edit your review'),(3253,'Edited templates'),(313,'Editing attribute groups on this page won\'t affect other product classes which use these groups'),(3530,'Eligible membership levels'),(705,'Email'),(706,'Email & password'),(2920,'Email Address'),(226,'Email address'),(3560,'Email address of your Skrill account'),(2004,'Email again'),(707,'Email body'),(2298,'Email notifications'),(3401,'Email or login'),(708,'Email settings'),(2010,'Empty \"class\" parameter is passed to the {{method}}'),(156,'Enable'),(709,'Enable HTTPS'),(595,'Enable clean URL'),(648,'Enable clean URLs'),(3336,'Enable mutual links'),(3856,'Enable the Use Enhanced Cancel option.'),(2424,'Enable the option \"Assign entered Clean URL to this page anyway\" to dissociate the entered Clean URL from the page it is currently used for and assign it to the page of the object being edited.'),(2837,'Enable this if you would like us to use your shipping address as your billing address'),(710,'Enabled'),(2300,'Enabled for administrator'),(2301,'Enabled for customer'),(1586,'Enabled in catalog'),(3525,'End offer date'),(3526,'End offer hour'),(3314,'Enter Order number'),(354,'Enter OrderID or email'),(3779,'Enter Return # or Order #'),(715,'Enter X more characters to start search'),(192,'Enter a correct email'),(2423,'Enter a different Clean URL value for this page'),(2810,'Enter a keyword to search.'),(197,'Enter a negative number'),(194,'Enter a number'),(196,'Enter a positive number'),(193,'Enter an integer'),(2956,'Enter code'),(711,'Enter coupon code'),(356,'Enter date range'),(2993,'Enter description of the purchase that will be displayed on PayPal payment page.'),(3402,'Enter email address'),(2610,'Enter filter name'),(402,'Enter keyword'),(712,'Enter keywords'),(713,'Enter license key'),(1940,'Enter pattern here'),(2752,'Enter product name or SKU'),(1943,'Enter search pattern'),(714,'Enter shipping address'),(2992,'Enter the email address associated with your PayPal account.'),(1774,'Enter the shipping address to see delivery methods available to you'),(1804,'Enter your e-mail'),(30,'Enter your license key here'),(3286,'Entity was successfully saved'),(716,'Environment'),(717,'Environment info'),(718,'Error'),(596,'Error code explanation:'),(3628,'Error had occured during the requesting of payment methods from X-Payments. See log files for details.'),(2807,'Error of banner loading. Make sure the \"images\" directory has write permissions.'),(2234,'Error of image loading. Make sure the \"images\" directory has write permissions.'),(2674,'Error of image verification ({{value}}). Make sure you have specified the correct image file or URL.'),(1855,'Error of uploading file.'),(3287,'Error on saving image'),(2680,'Errors'),(2910,'Errors files'),(719,'Estimate shipping cost'),(720,'Estimate your server performance'),(721,'Estimated for'),(36,'Evaluation notice'),(2748,'Every object stores history with 8 clean urls which were previously used for this object.'),(722,'Everything you need'),(1759,'Exact phrase'),(723,'Example'),(433,'Example city'),(724,'Examples'),(725,'Exception'),(3537,'Exclusion special offers'),(2520,'Existing Avalara user?'),(1776,'Existing Customer?'),(3281,'Exit editor'),(3271,'Exit product preview'),(2414,'Exp. date'),(726,'Expand the functionality of your store by installing and using add-on modules'),(1906,'Expanded view'),(1784,'Expiration date'),(360,'Expired'),(727,'Export'),(2753,'Export all'),(1612,'Export cannot be started because it is disabled or there is another running export process'),(1606,'Export completed'),(1610,'Export failed'),(1613,'Export in CSV'),(1611,'Export not started'),(2584,'Export orders'),(2132,'Export product data with'),(728,'Export products'),(1601,'Export public files as'),(1600,'Export settings'),(345,'Exported in X'),(1607,'Exporting data...'),(729,'Extensions'),(375,'FEBRUARY'),(371,'FR'),(3356,'FREE'),(3358,'FREE SHIPPING'),(2489,'FREE quote'),(2593,'FREE trial'),(730,'Facebook'),(731,'Failed'),(732,'Failed to add detailed image'),(733,'Failed to add the attachment'),(734,'Failed to add the attachment. The file download is forbidden'),(1867,'Failed to update category image'),(3102,'Failed to update page image'),(1888,'Failed write to file'),(347,'Failed write to file X. There may not be enough disc-space. Please check if there is enough disc-space.'),(735,'Failed/Declined'),(2651,'Failed[S]'),(1713,'Failure'),(1780,'Failure reason:'),(3313,'Failure sending test email to X'),(3304,'Failure to convert flexy-template. Check for syntax errors'),(1571,'Failure: File has the wrong format.'),(3406,'Fast Lane checkout'),(3099,'Favicon'),(1647,'Fax'),(2975,'Featured'),(736,'Featured products'),(2601,'FedEx'),(2976,'FedEx module allows to use online shipping rates calculation via FedEx.'),(737,'Field is required!'),(2703,'File can not be uploaded'),(2398,'File is not an image'),(2399,'File is not uploaded'),(1847,'File not found'),(292,'File size exceeds the maximum size'),(738,'File title'),(2754,'File was successfully uploaded'),(3721,'File with certificate should be located in the directory {{certsDir}}'),(2571,'Files cannot be updated'),(3833,'Fill out the form with your Company info to setup your account and start processing payments immedately'),(3459,'Filter by order amount'),(3457,'Filter by order frequency'),(3461,'Filter by profile membership'),(3462,'Filter by specific products'),(2614,'Filter has been removed'),(2613,'Filter has been successfully saved'),(2458,'Filter transactions by status'),(1941,'Find countries'),(2119,'Find in Marketplace'),(1267,'Find language in marketplace'),(1942,'Find states'),(2456,'Find transactions by ID'),(739,'Find us on'),(740,'Find us on Facebook'),(2517,'Finished operating as user'),(741,'First name'),(3491,'First name or last name are empty. Please add a new address to your address book or modify existing and fill in those fields in order to subscribe to this list.'),(2851,'First, restore your website from the created backup - this is the fastest way to get your store back online.'),(3408,'Firstname'),(3514,'Fixed-amount discount (X)'),(3513,'Fixed-sum discount (X)'),(742,'Flat markup'),(2557,'Flat shipping charge per item ordered.'),(2559,'Flat shipping charge per weight unit ordered (for example, per pound or per kilogram - depending on the weight units used by your store).'),(2556,'Flat shipping charge. This value will be added to the shipping rate regardless of the weight, price and number of items ordered.'),(3299,'Flexy templates have been removed'),(3291,'Flexy to twig converter'),(3292,'Flexy-template'),(3306,'Flexy-to-twig converter warning'),(743,'Footer menu'),(2007,'For any emergency you can use the hard, soft and restore-state links'),(1668,'For details refer to'),(19,'For details refer to X-Cart license'),(744,'For the period'),(2089,'Force customer to choose product options before the product can be added to cart'),(1757,'Forgot password'),(745,'Forgot password?'),(1524,'Forgot your password?'),(746,'Format'),(2283,'Four-digit number on the front side of your card'),(55,'Free'),(747,'Free add-ons'),(2148,'Free license is activated successfully'),(2153,'Free license key for this email is already registered'),(3357,'Free shipping'),(3361,'Free shipping tooltip text'),(3368,'Freight'),(3367,'Freight fixed fee'),(748,'From'),(98,'From computer'),(753,'From email'),(3529,'From these categories'),(1807,'Front page'),(2735,'Front page title'),(2921,'Full Name'),(754,'Full description'),(755,'Full name'),(1996,'G'),(756,'General'),(757,'General Settings'),(758,'General info'),(2739,'General options'),(759,'General settings'),(3572,'General tax rates'),(3135,'Generate XML-Sitemap'),(3153,'Generate cache on the fly'),(2341,'Generate resized images'),(2342,'Generate resized images help text'),(3134,'Generate sitemap'),(1578,'Get CSV'),(3126,'Get X off for order amount over Y'),(2702,'Get a more customizeable PDF invoice solution for your store'),(2699,'Get a more powerful banner system for your store'),(2695,'Get information[TT]'),(2532,'Get shipping rates from major shipping carrier companies.'),(760,'Give buyers a way to pay by adding an alternative payment method.'),(761,'Give buyers another way to pay by adding an alternative payment method'),(1864,'Global'),(2133,'Global & Classes attributes'),(1863,'Global attributes'),(762,'Go to Marketplace'),(763,'Go to checkout'),(38,'Go to checkout as a New customer'),(3389,'Go to comparison table'),(3652,'Go to payment details page'),(3245,'Go to see the review [in the Admin area]'),(3827,'Go to your account settings on www.stripe.com'),(53,'Grand total'),(2822,'Greeting'),(182,'Greetings, X'),(764,'Grid'),(765,'Group options'),(2246,'Group {{value}} does not exists and will be created'),(3499,'Groups'),(3373,'Guide to AuctionInc ShippingCalc Settings'),(3850,'HPP Key'),(767,'HTML title (\'title\' tag)'),(768,'HTTPS check'),(1879,'HTTPS option has been disabled'),(1878,'HTTPS option has been successfully enabled'),(769,'HTTPS settings'),(2527,'Handling fee'),(1744,'Hard reset (disables all modules and runs application)'),(2854,'Hard reset. Disable all addons except those provided by X-Cart Team'),(2430,'Hash file for installed entry \"{{entry}}\" doesn\'t exist or is not readable'),(773,'Have a discount coupon?'),(2927,'Have more coupons?'),(2591,'Haven\'t found what you\'re looking for? View more shipping modules'),(2824,'Header'),(2820,'Header, greeting & signature'),(2033,'Height'),(774,'Height (px)'),(237,'Hello, user'),(115,'Help'),(775,'Help zone'),(776,'Here are shown only the methods enabled on the configuration page'),(766,'Here is a new link for access to your information: X'),(777,'Here you can define how your payment methods will look in customer area'),(1529,'Here you can define how your payment methods will look in customer area.'),(2551,'Here you can provide general information about the shipping method and configure a table defining how shipping rates for this method should be calculated.'),(3498,'Here you can view and manage the MailChimp news lists and groups of the user.'),(3157,'Hidden from products filter'),(778,'Hide'),(3839,'Hide \"How to use\" instruction'),(2679,'Hide all warnings/errors'),(2755,'Hide and make them available only via a direct link'),(1180,'Hide common settings'),(779,'Hide trailing zeros in fractional part'),(3391,'High - Low'),(780,'History'),(781,'Home'),(2743,'Home page title and meta'),(2812,'Hotfixes mode'),(2499,'How do I move X-Cart?'),(3210,'How do you rate this item?'),(782,'How to'),(783,'How to back up your store database'),(2552,'How to define shipping rates'),(784,'How to define shipping zones'),(2427,'Human readable and SEO friendly web address for the page.'),(188,'I accept Terms and Conditions'),(785,'I agree that these addons may require an adaptation.'),(3030,'I agree with PayPal terms & conditions'),(2272,'I confirm that I have created backups of my store\'s files and database before upgrading the store'),(2094,'I understand that the following disabled modules will be removed.'),(3622,'I want to use this credit card for my future orders in this shop.'),(1984,'IN'),(3009,'IPN HTTP error'),(3008,'IPN verification failed'),(786,'Icons'),(787,'Identity'),(788,'If there are some critical errors occurred you can do the following'),(789,'If you choose the second option, you can download the file from the server later on and delete it from the server by clicking on the \'Delete SQL file\' button.'),(1537,'If you choose to create SQL file, you will be able to download the file from the server later and after that delete it from the server by clicking on the \"Delete SQL file\" button.'),(790,'If you do not have an account, you can easily'),(791,'If you don\'t have a moneybookers account yet, please sign up for a free moneybookers account at: http://www.skrill.com'),(792,'If you have a license key for a commercial module, you can enter it here to register the purchase of the appropriate module.'),(793,'If you have a plugin in the .tar format, you can install it by uploading it here'),(1550,'If you have multiple products sharing the same set of attributes, it makes sence to make them to be of the same product type and create the attributes on the product type level.'),(2486,'If you purchased a template but do not see it here, activate the license key that was provided to you.'),(2855,'If you still need help, please, feel free to contact X-Cart Help Desk at [email protected].'),(301,'If you store product images in the database, they are included in the SQL dump file'),(2966,'If you want the coupon discount to be applied only to products from specific categories, specify these categories here.'),(3764,'If you want to enable merchant registration wizard once again, please click on the following link'),(1535,'If you want to upload the backup of another X-Cart installation, ensure that you have completed the steps described here'),(2012,'If your store is crashed after upgrade, you can recover it'),(2756,'Ignore membership'),(794,'Image'),(200,'Image X'),(795,'Image border will not be displayed in customer\'s frontend'),(2126,'Image resized: X out of Y'),(2130,'Image resized: X out of Y with errors'),(129,'Images'),(2339,'Images resized'),(2355,'Images resized: {{count}}'),(3860,'Immediate Charge'),(796,'Import'),(797,'Import / Export'),(1504,'Import by CSV'),(798,'Import from file'),(2131,'Import has been cancelled.'),(2402,'Import language'),(1944,'Import language from CSV file'),(268,'Import mechanism does not know the field of X and it can not be imported'),(1958,'Import mode'),(1961,'Import mode comment'),(799,'Import of orders is not supported.'),(3602,'Import payment methods'),(2757,'Import results'),(1496,'Import settings'),(800,'Import/Export'),(2363,'Import/Export guide'),(801,'Important'),(3639,'Important!'),(2333,'Imported'),(2334,'Importing data...'),(265,'Importing will overwrite the existing product information. This operation cannot be undone.'),(2259,'In advanced mode you can choose specific modules for upgrade.'),(3091,'In catalog only'),(802,'In category'),(1530,'In order to accept credit cards payments you should install the necessary payment module from our Marketplace.'),(2647,'In progress[S]'),(803,'In stock'),(3152,'In stock only'),(3736,'In store currency (0 - do not use coverage)'),(2429,'In this section you can review the recent payment transactions that have taken place at your store'),(3536,'In this section you can select other special offers that will prevent this offer from being applied.'),(804,'Inactive'),(2629,'Inactive license key ({{key}})'),(805,'Incl. X'),(3583,'Include response in hash'),(258,'Including X'),(1564,'Including subcategories'),(1701,'Incomplete'),(806,'Incompleted'),(2710,'Incorrect amount'),(289,'Incorrect owner of X directory'),(291,'Incorrect owner of X file'),(2465,'Incorrect password. Please try again.'),(2709,'Incorrect permissions'),(3573,'Individual settings for every rate'),(2758,'Info'),(2154,'Information about free license key has been sent'),(2648,'Initialized[S]'),(2759,'Initializing...'),(3273,'Inline editor is unavailable due to TinyMCE'),(807,'InnoDB engine support enabled'),(2105,'Input data'),(808,'Install'),(809,'Install add-on'),(2803,'Install anyway'),(1946,'Install modules'),(810,'Install updates'),(2404,'Installation date'),(811,'Installation directory'),(2506,'Installation warnings'),(812,'Installed'),(813,'Installed Modules'),(814,'Installed modules'),(1638,'Installed version'),(815,'Installing updates, please wait...'),(2589,'Integration with'),(2901,'Integrity check'),(2912,'Integrity check has been completed successfully.'),(2913,'Integrity check has been stopped.'),(2911,'Integrity has not yet been checked. Initiate an integrity check by clicking the button \"Refresh integrity status\".'),(816,'Invalid login or password'),(3428,'Inventory'),(1880,'Inventory has been successfully updated'),(817,'Inventory status'),(818,'Inventory tracking'),(819,'Inventory tracking for this product is'),(2760,'Inventory tracking is'),(2157,'Inventory tracking options'),(820,'Invoice'),(1816,'Invoice #{{orderId}}, {{time}}'),(216,'Invoice X'),(2038,'Invoice number prefix'),(1785,'Issue no'),(821,'It is impossible to delete or create user accounts because your store currently works as an integration with Drupal and shares users with Drupal. Deleting/creating user accounts is possible via Drupal administrator interface.'),(822,'It is impossible to edit some user profile fields because your store currently works as an integration with Drupal and shares users with Drupal. Modifying these fields is possible via Drupal administrator interface.'),(1484,'It\'s impossible to detect valid SSL certificate availability on your server because curl extension is not installed.'),(3555,'It\'s recommended to limit the length of invoice prefix to 9 characters'),(1907,'Item'),(823,'Item description'),(824,'Item has been deleted from cart'),(1826,'Item has not been deleted from cart'),(2811,'Item list'),(825,'Item name'),(2206,'Item not found ({{keys}})'),(222,'Items'),(826,'Items per page'),(2542,'Items range'),(374,'JANUARY'),(380,'JULY'),(379,'JUNE'),(827,'Join forces with your bank'),(2895,'Just enter email address'),(828,'K'),(1995,'KG'),(3647,'KOUNT Antifraud screening result'),(1459,'Key is validated, but the module X was not found'),(116,'Knowledge Base'),(1993,'LB'),(1901,'Label'),(146,'Label name'),(1893,'Labels'),(829,'Language'),(830,'Language labels'),(153,'Language name in X'),(110,'Language options'),(1567,'Language:'),(114,'Languages'),(1725,'Last 24 hours'),(1726,'Last 7 days'),(831,'Last logged in'),(832,'Last login'),(1727,'Last month'),(833,'Last name'),(2282,'Last three numbers on the back side of your card'),(2845,'Last time re-deployed at'),(2433,'Last week'),(2435,'Last year'),(3409,'Lastname'),(3028,'Launch PayPal'),(2194,'Layout'),(3275,'Layout editor'),(3284,'Layout editor allows you to change the position of the blocks in drag-n-drop fashion'),(3276,'Layout editor is'),(3283,'Layout editor is disabled'),(3282,'Layout editor is enabled'),(2490,'Layout has been changed. Review the updated storefront.'),(2482,'Layout type'),(2291,'Learn More'),(94,'Learn more about the top banner and how it shows in the page layout'),(3775,'Leave at door'),(2479,'Leave blank to use category name as Page Title.'),(3355,'Leave blank to use news title as Page Title.'),(3117,'Leave blank to use page name as Page Title.'),(2467,'Leave blank to use product name as Page Title.'),(2031,'Length'),(1554,'Length x Width x Height'),(2761,'Length x Width x Height (in)'),(1762,'Less search options'),(3323,'Letter center'),(20,'License activation is not available'),(1465,'License is not received'),(2413,'License key'),(2410,'License key has been successfully verified and activated for \"{{name}}\" module by \"{{author}}\" author. But this key has expired and do not allow upgrade store.'),(834,'License key has been successfully verified for \"{{name}}\" module by \"{{author}}\" author'),(2632,'License key is missing'),(2628,'License warning'),(2403,'License: trial version'),(835,'Lifetime'),(2943,'Limit number of uses'),(836,'Limit the number of uses'),(2123,'Lines checked: X out of Y'),(2124,'Lines imported: X out of Y'),(2128,'Lines imported: X out of Y with errors'),(2127,'Lines verified: X out of Y with errors'),(837,'Link'),(838,'List'),(839,'List of states'),(3471,'List rating'),(1973,'Live'),(2062,'Live mode'),(1858,'Loading the database from file .'),(840,'Loading...'),(841,'Localization'),(2070,'Locked'),(2394,'Log files not found'),(842,'Log in'),(2701,'Log in as this admin'),(248,'Log off'),(843,'Log out'),(844,'Logged as'),(3109,'Logged in users only'),(247,'Logged in!'),(845,'Login'),(1777,'Login Here'),(2397,'Login dates'),(846,'Login here'),(847,'Login history'),(2762,'Login is locked out'),(2896,'Login to your account'),(3122,'Login with'),(1910,'Login/E-mail'),(3098,'Logo'),(3111,'Logo & Favicon'),(848,'Look & Feel'),(1672,'Loopback test'),(3392,'Low - High'),(329,'Low inventory products'),(849,'Low limit notification for this product is'),(850,'Low limit quantity'),(851,'Low stock'),(2434,'Low stock info'),(3441,'Low stock notification to admin'),(3440,'Low stock warning on product page'),(852,'M'),(376,'MARCH'),(3074,'MATCH_CRITERIA_DISABLED'),(3071,'MATCH_CRITERIA_HELP'),(3072,'MATCH_CRITERIA_NAME'),(3073,'MATCH_CRITERIA_NONE'),(378,'MAY'),(3552,'MD5 Hash protection'),(3581,'MD5 hash value'),(1981,'MM'),(367,'MO'),(2278,'MONTH'),(3444,'MailChimp'),(3445,'MailChimp Integration with E-commerce support'),(3450,'MailChimp Lists'),(3448,'MailChimp is an email marketing service with powerful tools to manage your email campaigns and subscribers while gathering advanced analytics information on your campaign performance.'),(3495,'MailChimp list group names'),(3494,'MailChimp list groups'),(3451,'MailChimp list segments'),(3490,'MailChimp lists update'),(3452,'MailChimp segment settings'),(3754,'Mailing tube'),(134,'Main categories'),(853,'Maintenance'),(854,'Maintenance and operation'),(2475,'Make a discount available to all customers or only to specific membership levels;'),(855,'Make back-up of your store database'),(3341,'Make mutual relations'),(1856,'Making backup of the current database state ... '),(863,'Manage admins'),(1853,'Manage attribute groups'),(856,'Manage catalog'),(857,'Manage categories'),(352,'Manage category (X)'),(858,'Manage customer and administrator accounts'),(1663,'Manage groups'),(859,'Manage layout'),(860,'Manage orders'),(861,'Manage orders placed at your store'),(1549,'Manage product classes'),(862,'Manage users'),(864,'Manage your product inventory'),(2763,'Manage zones'),(865,'Mandatory fields are marked with an asterisk'),(3745,'Manifest ID'),(3744,'Manifests'),(3164,'Manual'),(866,'Manually defined shipping methods'),(867,'Mark, the search engines you want to inform of the structure of your site using the site map'),(868,'Market price'),(2764,'Marketing'),(869,'Marketplace'),(870,'Marketplace [check_addon_key]: the \"{{url}}\" URL requested'),(871,'Marketplace [check_for_updates]: the \"{{url}}\" URL requested'),(872,'Marketplace [check_for_updates]: valid response received'),(873,'Marketplace [get_hosting_score]: response has an invalid format'),(874,'Marketplace [get_hosting_score]: the \"{{url}}\" URL requested'),(2266,'Marketplace-Vendor'),(875,'Markup per item'),(876,'Markup per weight unit'),(1758,'Max'),(2817,'Maximum items in box'),(1555,'Maximum number of items per box'),(2944,'Maximum number of uses'),(2939,'Maximum order subtotal must be greater than minimum order subtotal'),(2951,'Maximum order subtotal the coupon can be applied to'),(286,'Maximum size of the file to upload is N'),(1854,'Measuring productivity in manual mode failed.'),(3472,'Members count'),(877,'Membership'),(878,'Membership access'),(879,'Membership levels'),(880,'Membership name'),(881,'Memberships'),(2068,'Menu'),(3101,'Menu links help text'),(882,'Menus'),(2998,'Merchant login'),(3762,'Merchant registration wizard'),(215,'Merge with Registered'),(883,'Message'),(2918,'Message has been sent'),(96,'Meta desc'),(884,'Meta description'),(885,'Meta keywords'),(95,'Meta tags'),(2387,'Method name'),(886,'Methods'),(2938,'Minimum order subtotal must be less than maximum order subtotal'),(2950,'Minimum order subtotal the coupon can be applied to'),(2765,'Minimum value is X'),(2908,'Modified files'),(1552,'Modifiers'),(887,'Modify'),(888,'Modify \"{{name}}\" option group'),(889,'Modify category'),(890,'Modify option groups exceptions'),(891,'Modify root category (the front shop page)'),(2362,'Module Marketplace. Terms of use'),(142,'Module available editions 3'),(143,'Module available editions 4'),(892,'Module has been successfully installed'),(1849,'Module packing is available in the DEVELOPER mode only. Check etc/config.php file'),(2372,'Module page'),(1479,'Module with ID X is not found'),(1643,'Module\'s page'),(2766,'Modules'),(893,'Modules Marketplace'),(1470,'Modules have been successfully installed'),(1881,'Modules license agreements'),(393,'Month'),(1797,'More'),(1948,'More actions for selected'),(894,'More add-ons'),(2579,'More attributes'),(895,'More details'),(2019,'More info is available in X-Cart\'s Knowledge Base article \'What to do if you cannot access your store...\''),(597,'More information about clean urls in X-Cart is available in '),(650,'More information on Clean URL problems on your system'),(1763,'More search options'),(896,'Most Popular'),(897,'Most Rated'),(898,'Move'),(3789,'Move item'),(3438,'Move to'),(1989,'Mr.'),(1991,'Mrs.'),(1990,'Ms.'),(2983,'Multiple top-level domains'),(3329,'Mutual link'),(3339,'Mutual link head help'),(899,'My account'),(900,'MySQL server'),(138,'N it.'),(108,'N items found'),(137,'N items total'),(384,'NOVEMBER'),(901,'Name'),(1898,'Name asc'),(1899,'Name desc'),(905,'Name of account holder'),(902,'Name of address field'),(903,'Name of purchaser'),(1548,'Name, e.g. Apparel'),(1030,'Name-sort-option'),(154,'Native language name'),(3038,'Near \"Add to cart\" button'),(3039,'Near \"Checkout\" button'),(32,'Need a license key?'),(2488,'Need custom design? We can modify this template or create a completely unique design for you'),(1665,'Need license key?'),(1531,'Need more payment methods?'),(906,'Never'),(1597,'New Export'),(2374,'New access codes were generated.'),(908,'New access key will also be sent to the Site administrator\'s email address'),(907,'New access link'),(2353,'New account'),(1523,'New address'),(909,'New address field'),(3082,'New arrivals'),(1662,'New attribute'),(132,'New category'),(2662,'New customer note'),(910,'New discount coupon'),(2815,'New features'),(1596,'New group'),(911,'New image'),(3268,'New images'),(1490,'New import'),(912,'New item'),(123,'New membership'),(2097,'New module version available for core versions X'),(2437,'New modules'),(3344,'New news message'),(913,'New page'),(3790,'New parcel'),(914,'New product class'),(915,'New product has been added successfully'),(3236,'New product reviews'),(916,'New rate'),(917,'New role'),(1742,'New safe mode access key has been generated'),(3574,'New sale tax rate'),(3517,'New special offer'),(2171,'New staff note'),(3141,'New tab'),(1293,'New tax class'),(2519,'New to Avalara?'),(37,'New to our store?'),(1723,'New user registered'),(1595,'New value'),(178,'New zone has been created successfully'),(3083,'New!'),(918,'Newest'),(919,'Newest first'),(3345,'News'),(3455,'News list subscriptions'),(3343,'News message'),(3342,'News messages'),(3353,'News page title'),(3354,'News title'),(920,'Next'),(3349,'Next news'),(921,'Next page'),(45,'Next product'),(89,'Next wizard'),(922,'No'),(1399,'No Curl extension for PHP error'),(1400,'No OpenSSL extension for PHP error'),(1398,'No Phar extension for PHP error'),(2894,'No account yet?'),(2587,'No accounting system has been selected yet. Choose your accounting system below and configure it.'),(3656,'No active X-Payments payment methods, or saving credit cards is not activated.'),(3688,'No addresses for the profile.'),(1562,'No attributes'),(1664,'No attributes are defined for the product class yet.'),(1563,'No attributes assigned'),(1839,'No category defined'),(2145,'No class'),(3324,'No confirmation'),(923,'No countries found'),(1979,'No delimiter'),(3731,'No events found'),(924,'No featured products defined for this category'),(3298,'No flexy-templates found.'),(1561,'No group'),(925,'No image'),(926,'No images uploaded'),(2378,'No items found'),(927,'No items found.'),(3808,'No items have been selected for return.'),(404,'No membership'),(928,'No merchant account required'),(507,'No merchant account required. Simple onboarding for you and easy checkout for your customers.'),(2379,'No model selected'),(1634,'No modules found'),(109,'No modules found for search_string'),(929,'No order have been placed yet'),(336,'No order on last day'),(339,'No order on last lifetime'),(338,'No order on last month'),(337,'No order on last week'),(340,'No orders'),(3309,'No orders available. Please create at least one order.'),(930,'No orders have been placed yet'),(113,'No other languages defined'),(1829,'No payment method selected'),(1830,'No payment methods found based on the selected criteria'),(931,'No payment modules installed'),(1547,'No product class assigned'),(1636,'No products found'),(3149,'No products matching your criteria found. Please try again with different parameters.'),(932,'No products sold yet'),(1637,'No profiles found'),(2316,'No promotion modules installed'),(2500,'No region'),(2809,'No results found.'),(3223,'No reviews.'),(933,'No states found'),(3469,'No subscription'),(1525,'No such user'),(934,'No tax rate defined'),(1167,'No tracking numbers are defined'),(1635,'No users found'),(935,'Non-administrator'),(239,'None'),(1674,'Not detected'),(2008,'Not enough disk space. Required: {{req}} (+{{reserve}} reserve). Available: {{avail}}'),(936,'Not finished'),(937,'Not numeric'),(3224,'Not rated yet'),(2585,'Not seeing your accounting software here? Let us know'),(1579,'Not selected'),(3439,'Not set'),(3767,'Not specified'),(938,'Note'),(3657,'Note: No payment methods here because the module is not configured. Please finalize settings at '),(2030,'Note: a new window will be opened'),(939,'Notes'),(2311,'Notification'),(2346,'Notification headers and signatures can be set using variables. A list of supported variables and their respective values is provided in the table below'),(2827,'Notification state'),(2676,'Notify administrator if the stock quantity of this product goes below a certain limit'),(2186,'Notify customer'),(1709,'Now disabled'),(1569,'Number of ignored rows:'),(3528,'Number of items to buy'),(3532,'Number of items to discount'),(383,'OCTOBER'),(1654,'OR'),(1994,'OZ'),(2738,'Object name (category, product, etc)'),(2730,'Object name order first'),(2731,'Object name order last'),(3064,'Obtaining your live PayPal credentials'),(940,'Off'),(3519,'Offer type'),(941,'Official website'),(942,'Offline methods'),(3844,'Ogone PSPID'),(3848,'Ogone settings note'),(3847,'Ogone signup'),(3636,'Ok'),(2661,'Old customer note'),(943,'Old price'),(2170,'Old staff note'),(944,'On'),(945,'On all catalog pages'),(3325,'On call air'),(3092,'On catalog and product pages'),(2866,'On category and product details page'),(2865,'On category listing'),(3758,'On delivery'),(3757,'On exception'),(3215,'On moderation'),(946,'On product details only'),(3096,'On sale'),(3756,'On shipment'),(2821,'On this page you can edit the header, greeting and signature used by all the email notifications sent by your store (separately for admin and customer users).'),(3377,'On-demand'),(1282,'Once links are regenerated, they will be sent to store administrator email.'),(3611,'Once the connection is verified, you should proceed to the'),(3413,'One Page checkout'),(2198,'One column'),(2982,'One domain with multiple subdomains'),(3326,'One time pickup'),(947,'Online catalog structure setup'),(445,'Online methods'),(2116,'Online orders'),(2677,'Only X left in stock'),(3220,'Only customers who purchased this product can leave feedback on this product'),(126,'Only disabled'),(125,'Only enabled'),(1848,'Only enabled modules can be packed'),(2864,'Only orders awaiting processing'),(948,'Only small letter, digits and undescore sign are allowed'),(1917,'Open'),(949,'Open Graph meta tags'),(3669,'Open X-Payments dashboard to configure'),(3113,'Open graph image'),(950,'Open graph tags'),(3473,'Open rate'),(951,'Open storefront'),(3662,'Open your X-Payments dashboard'),(2513,'Operate as user'),(952,'Operating system'),(953,'Option group'),(3549,'Option values has been successfully updated.'),(2767,'Options'),(954,'Options have been successfully changed'),(2368,'Options:'),(3615,'Or fill in the settings manually'),(3050,'Or register with'),(3049,'Or sign in the classic way'),(3053,'Or use your social account'),(955,'Order'),(956,'Order #'),(274,'Order #X, Y'),(1939,'Order #{{id}}'),(1949,'Order #{{id}} details'),(957,'Order ID'),(2623,'Order QTY'),(958,'Order Total'),(308,'Order Total X'),(275,'Order X'),(1505,'Order by'),(1805,'Order can not be placed because not all required fields are completed. Please check the form and try again.'),(3418,'Order cannot be placed because some steps are not completed'),(2768,'Order cannot be placed because there is no shipping methods available.'),(2187,'Order changes cannot be saved due to negative total value'),(2660,'Order customer notes changed by {{user}}'),(2620,'Order date'),(959,'Order date from'),(960,'Order date through'),(961,'Order details'),(2405,'Order failed'),(1904,'Order history'),(962,'Order id'),(3010,'Order id prefix'),(327,'Order is placed'),(2181,'Order item attributes are out-of-date and cannot be edited'),(2885,'Order item modifier not found'),(963,'Order items'),(2876,'Order modifier not found'),(1828,'Order not found'),(964,'Order note'),(3414,'Order note. Any special needs?'),(1770,'Order number'),(2769,'Order number or email'),(965,'Order page'),(1756,'Order payment'),(2102,'Order payment status changed from {{oldStatus}} to {{newStatus}}'),(3586,'Order prefix'),(966,'Order review'),(2103,'Order shipping status changed from {{oldStatus}} to {{newStatus}}'),(2659,'Order staff notes changed by {{user}}'),(967,'Order statistics'),(968,'Order status'),(2087,'Order status changed from {{oldStatus}} to {{newStatus}}'),(3689,'Order status mapping rules'),(1164,'Order tracking information'),(2889,'Order transaction status not found'),(2891,'Order transaction type not found'),(2182,'Order will be delivered to the billing address.'),(2720,'OrderBy position number must be specified as a non-negative integer.'),(3786,'Ordered qty'),(969,'Orders'),(2863,'Orders awaiting processing'),(970,'Orders count'),(2626,'Orders has been deleted successfully'),(3458,'Orders last month'),(2356,'Orders list'),(2606,'Origin address'),(236,'Other'),(173,'Other items'),(121,'Our Blog'),(3516,'Our special offers'),(1795,'Out of Stock'),(971,'Out of stock'),(3755,'Oversized'),(1676,'PHP \'gd\' extension is not installed.'),(3743,'PO Number'),(1063,'PO number'),(2117,'POS orders'),(3065,'PRIMARYRECEIVER'),(972,'Pack it'),(1649,'Package'),(2053,'Package dimensions (inches)'),(2048,'Package properties'),(2025,'Package subtotal'),(2026,'Package subtotal (X)'),(2023,'Package weight'),(2024,'Package weight (X)'),(2052,'Packaging'),(2619,'Packing date'),(2617,'Packing slip'),(973,'Page'),(974,'Page URL'),(975,'Page name'),(976,'Page not found'),(2744,'Page title format'),(977,'Pages'),(978,'Paid'),(3737,'Parcel'),(3746,'Parcel characteristics'),(3778,'Parcel is cannot be transmitted - wrong quote type'),(3777,'Parcel is cannot be voided or transmitted - wrong quote type'),(3735,'Parcel options'),(3751,'Parcel type'),(3795,'Parcels have been successfully updated'),(979,'Parent category'),(2737,'Parent category path'),(363,'Partially refunded'),(2996,'Partner name'),(227,'Password'),(387,'Past'),(3829,'Past Webhook URL to the field and press Create Webhook URL button'),(3264,'Path for using in custom CSS'),(980,'Pattern search'),(3861,'Pay with Amazon'),(3620,'Pay with previously used credit card'),(3055,'PayPal'),(3040,'PayPal API (Merchant API) will work for most merchants; however, some merchants may have access only to Payflow API.'),(3029,'PayPal Credit is'),(2991,'PayPal ID / Email'),(3031,'PayPal account email'),(506,'PayPal all-in-one solutions'),(3000,'PayPal recommends entering a User Login here instead of your Merchant Login'),(3862,'PayWithAmazon available actions'),(3059,'PayerID value was not returned by PayPal. Please try again. If the problem persists, contact the administrator.'),(3018,'Payflow API'),(2843,'Payment'),(987,'Payment data ({{method}})'),(981,'Payment gateways'),(3043,'Payment has been captured successfully'),(3041,'Payment has been refunded successfully'),(3042,'Payment has been voided successfully'),(982,'Payment info'),(3686,'Payment information'),(983,'Payment instructions'),(2359,'Payment is not required'),(984,'Payment method'),(986,'Payment method data'),(3678,'Payment method for card setup'),(2504,'Payment method has been added'),(1852,'Payment method has been added successfully'),(321,'Payment method has been disabled successfully'),(320,'Payment method has been enabled successfully'),(322,'Payment method has been removed successfully'),(323,'Payment method has not been configured properly'),(2319,'Payment method is disabled'),(2318,'Payment method is enabled'),(2395,'Payment method settings'),(2505,'Payment method was not added'),(985,'Payment methods'),(317,'Payment methods appearance description'),(3676,'Payment methods have been imported successfully'),(3819,'Payment processed with errors. Please, try again or ask administrator'),(3716,'Payment return page requested without expected parameters'),(988,'Payment settings'),(2098,'Payment status'),(2875,'Payment status not found, \"Awaiting payment\" will be used for order'),(989,'Payment transaction ID'),(310,'Payment transaction X issued'),(990,'Payment transactions'),(309,'Payment was not finished'),(991,'Payments'),(3017,'Paypal API'),(3016,'Paypal API solution'),(3066,'Paypal Credit'),(3057,'Paypal capture warning message'),(992,'Pending'),(243,'Pending membership'),(993,'Pending memberships'),(2650,'Pending[S]'),(994,'Per item markup'),(995,'Per weight unit markup'),(996,'Percent'),(3512,'Percent discount (%)'),(3129,'Percent discount value cannot exceed 100%'),(997,'Percent markup'),(998,'Percent off'),(999,'Perform order search'),(1000,'Performance'),(2856,'Performing task...'),(2937,'Period end date must be later than period start date'),(2936,'Period start date must be sooner than period end date'),(1001,'Permissions'),(1002,'Permissions checking failed'),(1003,'Personal info'),(1309,'Personal info: The new password must not coincide with the current password for your account.'),(1004,'Phone'),(1005,'Pick address from address book'),(3252,'Pick template from page element'),(2990,'Pin It'),(1006,'Place order'),(190,'Place order X'),(2165,'Placed by NAME'),(2164,'Placed by _NAME_'),(1653,'Placed on'),(2163,'Placed on DATE'),(306,'Placed on X by Y'),(307,'Placed on X by Y link'),(1902,'Plain field'),(1632,'Please'),(1007,'Please accept the Terms and Conditions to continue'),(3390,'Please add another product to comparison'),(1008,'Please choose the appropriate action'),(1570,'Please confirm if you want proceed with the import otherwise cancel the operation.'),(1274,'Please contact the module developers to make sure that these modules are compatible with the upcoming upgrade'),(2106,'Please create a new password'),(1009,'Please enable JavaScript in your web browser.'),(2917,'Please enter the correct captcha'),(1697,'Please enter the correct file location or set correct file permissions.'),(3817,'Please enter your encryption password (This is different from your merchant password). More info on encryption passwords is available <here>'),(1010,'Please identify yourself'),(1515,'Please make sure that \"min weight\", \"min total\", \"min items\", \"shipping zone\", \"shipping method\" fields do not overlap with other shipping rates.'),(1576,'Please make sure your file format is as described.'),(3760,'Please note that rates are calculated for shipping from Canadian locations only.'),(1011,'Please note that some of these modules are definitely incompatible with the upcoming upgrade and will be disabled in order to prevent the system crash'),(2352,'Please note that the following modules will also be enabled'),(1012,'Please run the benchmark test in order to estimate your server performance'),(1013,'Please save the soft reset and hard reset links so that you can use them later in case the website crash happens'),(401,'Please select a date range'),(400,'Please select a date range between %d and %d days'),(399,'Please select a date range less than %d days'),(398,'Please select a date range longer than %d days'),(1014,'Please select one'),(406,'Please select one ...'),(407,'Please select option'),(1822,'Please select other attribute'),(2286,'Please select the countries first'),(2625,'Please select the orders first'),(1808,'Please select the products first'),(3233,'Please select the reviews first'),(2152,'Please select the states first'),(3193,'Please sign in to add review'),(162,'Please specify a pattern to find the required labels'),(1461,'Please specify non-empty key'),(141,'Please specify text labels for each language'),(2260,'Please take your attention that it is not guaranteed the correct site operation after upgrade if you select to not upgrade all.'),(2770,'Please wait'),(234,'Please, clarify your search request or search in Marketplace'),(233,'Please, clarify your search request. Suggest your idea or contact us to get free quote for custom service'),(1396,'Please, contact administrator'),(1704,'Please, enter a valid IP address'),(1703,'Please, enter a valid e-mail address'),(1687,'Please, enter unique membership name'),(1614,'Please, make sure that the following modules are installed and enabled:'),(1642,'Popularity'),(1015,'Pos'),(1016,'Pos.'),(1017,'Pos.:'),(1018,'Position'),(2141,'Possible import file names are:'),(2143,'Possible reasons of data not found in import file'),(2028,'Postal Code'),(2034,'Postal/ZIP Code'),(1021,'Pre upgrade disabled modules hooks message body'),(1024,'Pre upgrade disabled modules hooks message footer'),(1020,'Pre upgrade disabled modules hooks message head'),(2570,'Pre-upgrade hooks cannot be run'),(1023,'Pre-upgrade off'),(1022,'Pre-upgrade on'),(1019,'Prefix'),(2144,'Premium license modules warning'),(1025,'Prev'),(1544,'Preview product page'),(3308,'Preview template'),(391,'Previous'),(3348,'Previous news'),(1026,'Previous page'),(44,'Previous product'),(231,'Price'),(3429,'Price and membership'),(1896,'Price asc'),(1897,'Price desc'),(1027,'Price modifier'),(3151,'Price range'),(1029,'Price-sort-option'),(1028,'Price: Not a numeric'),(2771,'Prices & Inventory'),(3587,'Pricing currency'),(1031,'Primary menu'),(1974,'Print'),(2592,'Print Shipping labels'),(1032,'Print invoice'),(2618,'Print packing slip'),(1975,'Print selected'),(2091,'Priority'),(2043,'Private'),(1499,'Proceed import'),(2838,'Proceed to payment'),(191,'Proceed to payment X'),(1033,'Processed'),(1034,'Processed/Completed'),(2338,'Processing products...'),(3173,'Product'),(1750,'Product ID'),(1035,'Product Name'),(1036,'Product SKU'),(1037,'Product Title'),(1038,'Product added to bag'),(2136,'Product attributes values'),(2138,'Product attributes values (Plain text) has been imported'),(2139,'Product attributes values (Textarea) has been imported'),(2137,'Product attributes values (Yes/No) has been imported'),(2377,'Product attributes values has been imported'),(1039,'Product class'),(1872,'Product class have been updated successfully'),(1873,'Product class name is empty'),(2245,'Product class {{value}} does not exists and will be created'),(1040,'Product classes'),(1041,'Product has been added to cart'),(1825,'Product has not been added to cart'),(1042,'Product images'),(1043,'Product info'),(1044,'Product info has been updated successfully'),(1045,'Product is out of stock'),(3437,'Product list'),(232,'Product name'),(1046,'Product on sale'),(1047,'Product options'),(3386,'Product or product variant with SKU \"{{value}}\" not found'),(1048,'Product page title'),(1049,'Product prices are defined including this tax calculated for'),(3174,'Product reviews'),(3144,'Product tabs'),(2239,'Product with SKU \"{{value}}\" does not exists'),(3383,'Product with SKU \"{{value}}\" not found'),(2168,'Product with selected properties cannot be purchased'),(3186,'Product, SKU or customer info'),(1874,'Product-Specific'),(1875,'Product-Specific attributes'),(2238,'ProductSKU is empty'),(1050,'Products'),(3385,'Products and product variants updated'),(1508,'Products found'),(1885,'Products imported'),(1051,'Products in bag'),(2401,'Products information has been successfully deleted'),(1052,'Products information has been successfully updated'),(2337,'Products processed'),(2125,'Products processed: X out of Y'),(2129,'Products processed: X out of Y with errors'),(2354,'Products processed: {{count}}'),(3723,'Products return X'),(3175,'Products reviews'),(2669,'Products search'),(3381,'Products updated'),(1053,'Products with low inventory'),(1054,'Profile'),(3121,'Profile does not have any email address. Please sign in the classic way.'),(1055,'Profile has been created successfully'),(1056,'Profile has been deleted successfully'),(1936,'Profile has been modified successfully'),(1057,'Profile has been updated successfully'),(3119,'Profile is disabled'),(2109,'Profile is not defined'),(2380,'Profile is not selected'),(1058,'Profile settings'),(2416,'Prolongate keys'),(1059,'Promotions'),(1060,'Properties'),(2385,'Public ID'),(2386,'Public id'),(3841,'Publishable key'),(3842,'Publishable key (test mode)'),(3192,'Published'),(1061,'Purchase'),(1062,'Purchase SSL certificate'),(2061,'Purchase description'),(2627,'Purchase license'),(27,'Purchase premium license'),(1640,'Purchased'),(3094,'Put up for sale'),(1064,'Put up selected for sale'),(1065,'Qty'),(1066,'Qty.'),(218,'Quantity'),(1067,'Quantity: high to low'),(1068,'Quantity: low to high'),(394,'Quarter'),(1506,'Query'),(1069,'Queued'),(1070,'Quick and easy setup'),(2835,'Quick view'),(2514,'Quit'),(2369,'RSS feed'),(1071,'Rate'),(3218,'Rate asc'),(3219,'Rate desc'),(3217,'Rate sort'),(1072,'Rates'),(1073,'Rates / Conditions'),(3184,'Rating'),(3200,'Rating of votes'),(3237,'Ratings and Reviews of X'),(3229,'Ratings only'),(1074,'Raw online rate (on-line rate)'),(1075,'Re-build cache'),(2643,'Re-check'),(2447,'Re-deploy the store'),(2448,'Re-deploy the store help text'),(1076,'Re-generate access key'),(1558,'Re-generate links'),(3601,'Re-import payment methods'),(1077,'Re-order'),(2417,'Re-validate license keys'),(3216,'Read all reviews about the product'),(2858,'Recalculate ViewLists'),(2859,'Recalculate ViewLists text'),(2184,'Recalculate this value automatically'),(2772,'Recalculate totals'),(2773,'Recent orders only'),(2396,'Recently installed modules'),(3084,'Recently viewed'),(1895,'Recommended'),(228,'Recover password'),(2958,'Redeem'),(1078,'Redirect customers to HTTPS'),(3690,'Refer to on-line manual'),(1080,'Referer'),(2906,'Refresh integrity status'),(3595,'Refresh list of available methods'),(3863,'Refresh status'),(3834,'Refresh token'),(2084,'Refund'),(2694,'Refund multiple[TT]'),(2693,'Refund partially[TT]'),(361,'Refund requested'),(3864,'Refund status'),(2692,'Refund[TT]'),(362,'Refunded'),(1812,'Refunded amount'),(2594,'Refunds'),(1081,'Register'),(1736,'Register user'),(3051,'Register with'),(3048,'Register with PayPal or go to checkout as a New customer'),(1082,'Registered'),(2113,'Registered (access level)'),(212,'Registered Customer'),(213,'Registered Customer, _Anonymous Customer with the same email_'),(2001,'Registered Customers'),(3227,'Registered users only'),(3221,'Registered users who purchased product'),(3067,'Registering your application with PayPal'),(3242,'Reject'),(3328,'Related products'),(3330,'Related products page'),(34,'Removal of this message is allowed only through activation of a free or premium license.'),(1083,'Remove'),(3154,'Remove cache when attribute, tag or product data is changed'),(2188,'Remove data'),(3297,'Remove flexy-templates'),(3156,'Remove product filter cache'),(3155,'Remove product filter cache tooltip'),(2640,'Remove unlicensed modules'),(2960,'Removed coupons'),(2909,'Removed files'),(2180,'Removed items'),(1591,'Removing this attribute will affect all the products. Leave this blank to hide this option for the product.'),(1669,'Removing this message without buying a Full license is prohibited and will result in legal proceedings.'),(1182,'Rename label'),(1717,'Replace all modified files with the unmodified newer versions'),(3608,'Replace payment methods'),(3434,'Replace with'),(118,'Report a bug'),(2327,'Request for upgrade'),(3605,'Request payment methods'),(2058,'Request type must be POST'),(3824,'Requested amount: X; real amount: Y'),(3825,'Requested currency: X; real currency: Y'),(3823,'Requested transaction type: X; real transaction type: Y'),(1945,'Requested zone does not exists'),(1405,'Require to change password on next log in'),(1084,'Required'),(1688,'Required field'),(270,'Required field X is not defined or empty'),(1085,'Required php extensions is not loaded: X'),(1086,'Requires registered merchant account'),(2670,'Requires shipping'),(2631,'Requires {{list}} edition'),(1087,'Rerun benchmark'),(1088,'Resend secret link to renew the access'),(3148,'Reset filter'),(1977,'Residential'),(2340,'Resizing images...'),(2425,'Resolve the conflict'),(3703,'Response from ePDQ is not trusted (SHA checking is failed)'),(1089,'Response from marketplace is not received'),(1090,'Response from marketplace: '),(1460,'Response from marketplace: X'),(1091,'Restore'),(1092,'Restore database'),(1093,'Restore from server'),(1094,'Restore last backup'),(1095,'Restore links'),(3249,'Restore this version'),(770,'Restores to current state of active addons (use in case of emergency)'),(1861,'Restoring database from the backup .'),(2422,'Result'),(1705,'Result pages'),(3644,'Result payment status'),(3806,'Return'),(3791,'Return #'),(3780,'Return products'),(3787,'Return qty'),(3725,'Return quantity'),(1096,'Return to Drupal'),(1862,'Return to admin interface'),(3410,'Return to cart'),(3742,'Return tracking pin'),(1500,'Reupload files'),(1097,'Revenue'),(3231,'Review'),(2668,'Review & Submit order'),(3179,'Review has been created'),(3180,'Review has been deleted'),(3181,'Review has not been created since product is not found'),(3182,'Review has not been updated since product is not found'),(3248,'Review it.'),(1098,'Review statistics on various aspects of your store\'s operation'),(3183,'Reviewer'),(3207,'Reviews'),(3235,'Reviews about product'),(3228,'Reviews and ratings'),(3172,'Reviews for product'),(3185,'Reviews imported'),(3230,'Reviews only'),(3208,'Reviews: X'),(1099,'Role'),(1100,'Roles'),(2715,'Roles cannot be changed for your profile via import'),(1101,'Root Level'),(1102,'Root access'),(1655,'Root categories'),(1103,'Root category'),(2121,'Root category listings format'),(240,'Root level'),(1955,'Row {{number}}'),(1956,'Row(s) {{numbers}}'),(3649,'Rules triggered'),(1104,'Run Benchmark again'),(1105,'Run benchmark'),(372,'SA'),(3068,'SECONDARYONLY'),(3069,'SENDER'),(3239,'SEO'),(382,'SEPTEMBER'),(3845,'SHA-IN passphrase'),(3846,'SHA-OUT passphrase'),(2560,'SHIPPING = flat + ITEMS*per_item + SUBTOTAL*(% of subtotal)/100 + WEIGHT*per_weight;'),(43,'SKU'),(2381,'SKU is not selected'),(2774,'SKU length must be less then {{length}}'),(2775,'SKU or SKU1, SKU2'),(1106,'SKU: a-z'),(1107,'SKU: z-a'),(1108,'SMTP server'),(1846,'SQL file was deleted successfully'),(1401,'SSL Error'),(1109,'STORE SETUP'),(373,'SU'),(1110,'SYSTEM SETTINGS'),(1111,'Safe mode'),(1112,'Safe mode access key'),(1840,'Safe mode access key has been re-generated'),(2005,'Safe mode links were emailed'),(3811,'Sage Pay password'),(3813,'Sage Pay pricing currency'),(3810,'Sage Pay processing mode'),(3809,'Sage Pay vendor name'),(3812,'Sage pay invoice number prefix'),(3816,'SagePay Form admin description'),(1113,'Sale'),(1114,'Sale price'),(2431,'Sale statistics'),(1115,'Sale statistics from the opening of the store'),(2685,'Sale[TT]'),(1116,'Sales'),(2923,'Sales asc'),(2657,'Sales calculation'),(2924,'Sales desc'),(2922,'Sales sort'),(1117,'Sales tax'),(1498,'Samples of the file structures'),(140,'Save'),(3110,'Save & Close'),(1118,'Save as new'),(3630,'Save cards'),(1119,'Save changes'),(3637,'Save credit card'),(3691,'Save credit card setup'),(2609,'Save filter'),(2185,'Save the existing value without re-calculating'),(1120,'Save zone details'),(3634,'Saved credit cards'),(1121,'Savings'),(2828,'Scheme'),(3648,'Score'),(3222,'Score: X. Votes: Y'),(88,'Search'),(3295,'Search flexy-templates'),(1122,'Search for modules'),(1123,'Search for orders'),(3794,'Search for returns'),(2457,'Search for transactions by date'),(1124,'Search for users'),(1125,'Search for users that are'),(412,'Search in'),(1126,'Search in subcategories'),(2120,'Search items...(customer header search form)'),(408,'Search keywords'),(409,'Search payment method'),(1127,'Search product'),(1128,'Search profiles'),(1129,'Search result'),(1130,'Search results'),(2114,'Search total'),(2808,'Searching...'),(2852,'Second, try to disable all non-X-Cart modules by using the links below:'),(3562,'Secret Word'),(2086,'Secret key'),(3843,'Secret key (test mode)'),(2071,'Secret word'),(1131,'Secure connection cannot be established.'),(2273,'Secure credit card payment'),(1132,'Security'),(2281,'Security code'),(2436,'Security issue'),(1133,'Security settings'),(1800,'See comparison chart'),(3661,'See how'),(2146,'See log file for details'),(3463,'Segment condition'),(300,'Select a country or a state from a list, specify the zone'),(1721,'Select all'),(3456,'Select box'),(1134,'Select country'),(105,'Select file'),(3719,'Select issuer'),(112,'Select language'),(2776,'Select language to edit'),(235,'Select one'),(1135,'Select options'),(1837,'Select products from the list'),(1136,'Select status'),(3240,'Select the review that should be included into the rich snippet shown for the page of this product when the page appears in search results by Google and other major search engines'),(3475,'Selected by default'),(750,'Selected countries:'),(3232,'Selected reviews have been deleted'),(3234,'Selected reviews have been updated'),(364,'Selected:'),(1684,'Semicolon'),(1137,'Send'),(1138,'Send test email'),(1166,'Send tracking info'),(2777,'Separate box'),(1139,'Service name'),(1140,'Service name of address field'),(1141,'Set'),(2476,'Set a single discount or add multiple volume discounts.'),(2474,'Set absolute or %-based discount rates;'),(3855,'Set the Response Method setting to Sent to your server as a POST.'),(1142,'Set the sale price'),(157,'Set this language as default for customer zone'),(1143,'Settings'),(1144,'Setup _address zones_ and _taxes_'),(2166,'Setup store price: X'),(2624,'Ship QTY'),(1540,'Ship in a separate box'),(2622,'Ship to'),(3739,'Shipment ID'),(3798,'Shipment cannot be created'),(3804,'Shipment cannot be transmitted'),(3801,'Shipment cannot be voided'),(3797,'Shipment has been created successfully'),(3796,'Shipment has been created with errors'),(3802,'Shipment has been tranmitted with errors'),(3803,'Shipment has been transmitted successfully'),(3800,'Shipment has been voided successfully'),(3799,'Shipment has been voided with errors'),(3738,'Shipment info'),(2049,'Shipment options'),(3740,'Shipment status'),(3805,'Shipments'),(358,'Shipped'),(3100,'Shipping'),(1145,'Shipping & Taxes'),(1295,'Shipping / Payment info'),(1146,'Shipping address'),(1815,'Shipping address is invalid'),(1147,'Shipping address is not completly defined yet'),(1148,'Shipping address is not defined'),(1149,'Shipping address is not defined yet'),(2558,'Shipping charge based on a percentage of the order subtotal.'),(1522,'Shipping charges'),(54,'Shipping cost'),(3362,'Shipping freight'),(3365,'Shipping freight + regular shipping rate'),(3364,'Shipping freight only'),(3366,'Shipping freight tooltip text'),(1648,'Shipping has been calculated based on the following split of the products into packages:'),(1150,'Shipping info'),(1151,'Shipping markup has been created successfully'),(1152,'Shipping markups have been updated'),(1153,'Shipping method'),(2778,'Shipping method / cost'),(1154,'Shipping method has been added'),(2522,'Shipping method is not configured.'),(2533,'Shipping method name'),(1155,'Shipping methods'),(1156,'Shipping methods are not available'),(175,'Shipping methods have been updated'),(1514,'Shipping rate cannot be added'),(1513,'Shipping rate has been added successfully'),(1157,'Shipping rates'),(2554,'Shipping rates are calculated by the following formula:'),(1158,'Shipping settings'),(2099,'Shipping status'),(2874,'Shipping status not found, \"New\" will be used for order'),(2839,'Shipping to'),(1159,'Shipping zones'),(3375,'ShippingCalc'),(3376,'ShippingCalc Package Data'),(3374,'ShippingCalc settings'),(1174,'Shopping bag'),(3146,'Shopping options'),(3540,'Short promo text'),(386,'Shortcuts'),(2003,'Show'),(3838,'Show \"How to use\" instruction'),(91,'Show Category title'),(3036,'Show above products'),(3290,'Show all'),(107,'Show all labels'),(3150,'Show all products in this category'),(3621,'Show all saved credit cards'),(2678,'Show all warnings/errors'),(3037,'Show below products'),(207,'Show filter options'),(2779,'Show in all the sections'),(2675,'Show low stock warning on product page'),(2745,'Show object name in page title'),(2780,'Show only in categories and search listings'),(3147,'Show products'),(1175,'Show social buttons'),(2781,'Show:'),(2292,'Sign Up'),(3047,'Sign Up Now'),(1176,'Sign in'),(2834,'Sign in / sign up'),(1177,'Sign out'),(3497,'Sign up for <Company name> news, sales and deals'),(3496,'Sign up for news and updates from your favorite store. Be the first to know about exclusive sales, offers and deals.'),(3398,'Sign up for {{companyName}} news'),(2825,'Signature'),(26,'Simplify tax compilance process and reduce the sales tax audit risk with AvaTax Sales Tax Automation'),(1693,'Single quote'),(3131,'Site map has not been registred in X'),(3132,'Site map successfully registred on X'),(3369,'Sitemap'),(3137,'Sitemap generation has been completed successfully.'),(3138,'Sitemap generation has been stopped.'),(3136,'Sitemap generation...'),(1178,'Size'),(3561,'Skrill Customer ID'),(3556,'Skrill Quick Checkout enables you to take direct payment from credit cards, debit cards and over 80 other local payment options in over 200 countries as well as the Skrill eWallet.'),(3566,'Skrill settings'),(2782,'Soft and Hard reset links for your store'),(1745,'Soft reset (disables all modules except ones that were downloaded from marketplace)'),(2853,'Soft reset. Turn off all addons except those provided by X-Cart Team & Qualiteam'),(3278,'Some'),(1715,'Some files are modified'),(3300,'Some flexy-templates cannot be removed. Please correct file permissions or remove them manually'),(273,'Some products could have been imported incorrectly'),(3714,'Something wrong in the iDEAL payment module settings. Please try later or use other payment option.'),(2968,'Sorry, the coupon has expired'),(2969,'Sorry, the coupon use limit has been reached'),(2970,'Sorry, the coupon you entered cannot be applied to the items in your cart'),(2967,'Sorry, the coupon you entered is invalid. Make sure the coupon code is spelled correctly'),(2971,'Sorry, the coupon you entered is not valid for your membership level. Contact the administrator'),(2964,'Sorry, this coupon cannot be combined with the coupon already applied. Revome the previously applied coupon and try again.'),(2616,'Sorry, your order cannot be placed as there are no shipping methods available.'),(1778,'Sorry, your order payment is canceled.'),(1779,'Sorry, your order payment is failed.'),(242,'Sort by'),(2783,'Sort by:'),(2784,'Sort settings'),(2317,'Sorting & Descriptions'),(2027,'Source address'),(1980,'Space'),(3511,'Special Offer discount'),(3518,'Special offer'),(3527,'Special offer conditions'),(3522,'Special offer dates'),(3533,'Special offer discount amount'),(3534,'Special offer discount type'),(3535,'Special offer exclusions'),(3531,'Special offer reward'),(3539,'Special offer title'),(3520,'Special offer type'),(3515,'Special offers'),(438,'Specification'),(3616,'Specify the URL of your X-Payments installation. Copy and paste Store ID, Public key, Private key and Private key password from X-Payments Online Store Details page.'),(1184,'Specify your _store information_'),(2785,'Specify your _store information_\', {\'URL\': url(\'settings\', \''),(1185,'Speed up your store'),(2183,'Staff note'),(2602,'Stamps.com'),(2481,'Standard'),(2862,'Start'),(1599,'Start Export'),(3660,'Start FREE Trial'),(1489,'Start Import'),(3012,'Start accepting Express Checkout payments immediately by simply plugging in the email address where you would like to receive payments.'),(1783,'Start date'),(1186,'Start selling!'),(3190,'Start typing customer email or name'),(3188,'Start typing product name or SKU'),(1187,'State'),(1477,'State cannot be created with unknown country code X'),(1188,'States'),(1189,'States have been deleted successfully'),(1190,'States have been updated successfully'),(2151,'States information has been successfully deleted'),(3467,'Static'),(3370,'Static pages'),(1191,'Statistics'),(1192,'Status'),(2382,'Status is not defined'),(3831,'Status: Connected'),(343,'Steps to complete your store for real sales'),(1909,'Stock'),(3849,'Store ID'),(1193,'Store Maintenance'),(1194,'Store currency'),(1195,'Store info'),(1196,'Store is closed'),(1197,'Store is open'),(1728,'Store lifetime'),(1198,'Store setup'),(1199,'Storefront'),(1916,'Storefront is closed'),(1919,'Storefront is open'),(3415,'Street address'),(133,'Subcat'),(1200,'Subcategories'),(353,'Subcategories for'),(1201,'Subject'),(3115,'Submenu'),(48,'Submit'),(2833,'Subscribe'),(3493,'Subscribe by default'),(3372,'Subscribe to AuctionIncs ShippingCalc Module'),(3454,'Subscribe to our news list and be in touch with our latest offers.'),(3404,'Subscriber with email {{email}} already subscribed'),(3400,'Subscribers'),(3403,'Subscribers imported'),(3453,'Subscription'),(1202,'Substring'),(56,'Subtotal'),(3575,'Subtotal + Shipping cost'),(2540,'Subtotal range'),(1203,'Subtotal range (begin)'),(1204,'Subtotal range (end)'),(1646,'Success'),(2649,'Success[S]'),(1205,'Successfully imported X new products'),(1206,'Successfully imported X new products and upgraded Y old products'),(1207,'Successfully upgraded Y old products'),(1208,'Suffix'),(117,'Suggest an idea'),(3327,'Suggested retail rates'),(1487,'Support'),(2915,'Switch to Category search'),(2914,'Switch to Category tree'),(2847,'Switcher NO'),(2846,'Switcher YES'),(1209,'Synchronous'),(1210,'System settings'),(1832,'System will download and install this module from marketplace. Continue?'),(370,'TH'),(368,'TU'),(1685,'Tab'),(1211,'Table'),(2534,'Table based on'),(3140,'Tabs'),(3145,'Tabs imported'),(5,'Tags'),(2208,'Tags are not allowed in the column \"{{column}}\" and will be stripped'),(57,'Tax'),(1545,'Tax class'),(1869,'Tax classes'),(1212,'Tax disabled'),(1213,'Tax enabled'),(1214,'Tax has been disabled successfully'),(1215,'Tax has been enabled successfully'),(1217,'Tax rate has been deleted successfully'),(1218,'Tax rate has not been deleted successfully'),(3577,'Tax rates for shipping charges have not yet been created.'),(1216,'Tax rates have been updated successfully'),(3578,'Tax rates have not yet been created.'),(3579,'Tax rates on shipping cost'),(1219,'Tax title'),(3576,'Taxable base'),(1220,'Taxes'),(1221,'Teaser'),(3255,'Template'),(3294,'Template is converted'),(1160,'Terminate profile sessions'),(3112,'Terms and conditions'),(1475,'Terms and conditions text'),(1976,'Test'),(3759,'Test Canada Post rates calculation'),(3371,'Test ShippingCalc rates calculation'),(1222,'Test email configuration'),(1737,'Test email notification'),(1738,'Test email notification:'),(2051,'Test mode'),(2161,'Test mode: Live'),(2160,'Test mode: Test'),(2564,'Test rates'),(1223,'Test shipping rates'),(3625,'Test transaction completed successfully'),(3635,'Test transaction completed successfully for API version X'),(3626,'Test transaction failed. Please check the X-Payment Connector settings and try again. If all options is ok review your X-Payments settings and make sure you have properly defined shopping cart properties.'),(2060,'Test/Live mode'),(2698,'Test[TT]'),(1224,'Tester'),(1225,'Text'),(77,'Text labels have been deleted'),(73,'Text labels have been updated successfully'),(78,'Text labels have not been deleted: no text labels have been found or specified'),(75,'Text labels have not been updated successfully: the default application language has been set as the translation language'),(76,'Text labels have not been updated successfully: the translation language has not been found'),(74,'Text labels have not been updated successfully: the translation language has not been specified'),(3093,'Text links'),(3191,'Text of review'),(1903,'Textarea'),(252,'Thank you for registering a customer account, your profile has been created successfully'),(3399,'Thank you for subscribing to the newsletter! We hope you enjoy shopping at {{companyName}}'),(204,'Thank you for using company services'),(1226,'Thank you for your order'),(304,'Thank you for your order FOOTER'),(3197,'Thank your for sharing your opinion with us!'),(3592,'The \"Approved URL\" value must be exact as this'),(3868,'The \"Pay With Amazon\" feature is not configured and cannot be used.'),(3869,'The \"Pay with Amazon\" feature requires https to be properly set up for your store.'),(3591,'The \"Pricing currency\" value must be exactly the same as on it.'),(2805,'The \"{{file}}\" file is not allowed and was not uploaded. Allowed extensions are: {{extensions}}'),(3114,'The \"{{file}}\" file is not allowed image and was not uploaded. Allowed images are: {{extensions}}'),(1806,'The \"{{file}}\" file was not uploaded'),(1844,'The \"{{file}}\" is not CSV or archive'),(2205,'The \"{{value}}\" category does not exist'),(2236,'The \"{{value}}\" group is not created'),(2203,'The \"{{value}}\" image does not exist'),(2200,'The \"{{value}}\" membership does not exist'),(2201,'The \"{{value}}\" product class does not exist'),(2202,'The \"{{value}}\" tax class does not exist'),(3118,'The AppleIcon image could not be uploaded (Unallowed image type. Must be a .png image with the resolution of 192x192 px)'),(3853,'The Approved URL value must be exact as this:'),(2420,'The Clean URL entered is a redirect to object.'),(2729,'The Clean URL entered is already in use by target alias.'),(2419,'The Clean URL entered is already in use.'),(3854,'The Declined URL value must be exact as this:'),(2090,'The English language cannot be removed as it is primary language for all texts.'),(1241,'The HTTPS protocol is enabled for your website'),(1227,'The SSL certificate installed for your custom website domain is not valid.'),(1228,'The SSL certificate installed on your server is not valid. Although you can switch the store to use the secure protocol for the website pages, most Internet browsers will likely display a warning message scaring your website visitors away.'),(3852,'The Store ID and HPP Key value must be exactly the same as on it.'),(276,'The X field is empty'),(1229,'The X language has been added and enabled successfully'),(66,'The X language has been added successfully'),(68,'The X language has been deleted successfully'),(71,'The X language has been disabled successfully'),(72,'The X language has been enabled successfully'),(167,'The X module has been installed incorrectly. Please see the logs for more information'),(165,'The X module has been installed successfully'),(166,'The X module has been installed with errors: the DB has not been modified correctly'),(168,'The X module has been installed, but the module has a wrong module control class'),(1928,'The address field has been added'),(1927,'The address field has been updated'),(1230,'The attachment has been added successfully'),(1922,'The attribute group has been added'),(1921,'The attribute group has been updated'),(1930,'The attribute has been added'),(1929,'The attribute has been updated'),(1924,'The attribute option has been added'),(1923,'The attribute option has been updated'),(203,'The benchmark evaluates server environment'),(2299,'The body template may include other templates to generate the email notification. To customize it, please, copy appropriate templates to \"skins/theme_tweaker/mail/\"'),(2167,'The button is inactive either because no changes have been detected on the current page or because the order totals need to be recalculated before the order can be updated.'),(2655,'The calculation completed'),(2654,'The calculation failed'),(2454,'The calculation of quick data has been completed successfully.'),(2455,'The calculation of quick data has been stopped.'),(1926,'The category has been added'),(1925,'The category has been updated'),(1231,'The changes will be applied to all selected products'),(2421,'The clean URL will be generated automatically.'),(2389,'The common notification fields has been updated'),(205,'The confirmation URL link was mailed to email'),(2107,'The confirmation URL link will be emailed to you shortly'),(2903,'The core may be checked only if a valid license key is present.'),(2719,'The count of categories specified for a product and the count of orderBy position numbers describing the position of the product within these categories must be the same.'),(1850,'The countries list for zone is empty. Please specify it.'),(2849,'The countries to which the selected states belong will be added to the zone automatically.'),(2941,'The coupon has been added'),(2934,'The coupon has been applied to your order'),(2942,'The coupon has been updated'),(1860,'The database has not been restored because of the errors'),(3247,'The database stores different version of the custom changes.'),(70,'The default interface language cannot be disabled'),(1232,'The detailed image has been added successfully'),(1233,'The detailed image has been deleted'),(1870,'The detailed image has not been deleted'),(1234,'The detailed images have been updated successfully'),(1539,'The directory \'var/backup/\' does not exist or is not writable.'),(3267,'The directory {{dir}} does not exist or is not writable.'),(2940,'The discount should be less than 100%'),(2615,'The download should start automatically. Click the link if does not start.'),(85,'The edited language has not been found'),(206,'The email with your account information was mailed to email'),(1235,'The exceptions have been updated successfully'),(1746,'The export is complete.'),(2582,'The file extension is forbidden'),(2708,'The file extension is forbidden ({{file}}'),(293,'The file was not loaded because of a failure on the server'),(1868,'The file was not loaded because of a failure on the server.'),(3266,'The file {{file}} does not exist or is not writable.'),(1237,'The following add-on(s) must be disabled'),(1236,'The following add-on(s) must be enabled'),(1238,'The following categories were selected to be removed'),(1239,'The following dependent add-ons will be disabled automatically'),(1481,'The following expected input data have wrong format or empty: X'),(1598,'The following files are too large to be included in the archive'),(2322,'The following modules currently do not have a version compatible with the X-Cart version to which you are upgrading'),(144,'The following modules will be disabled'),(2351,'The following selected modules cannot be disabled due to architecture limitations'),(2348,'The following selected modules cannot be disabled or uninstalled as they have dependent modules'),(2349,'The following selected modules cannot be enabled as they depend on disabled modules which cannot be enabled'),(1836,'The form could not be identified as a form generated by X-Cart'),(1935,'The front page has been updated'),(2343,'The generation of resized images has been completed successfully.'),(2344,'The generation of resized images has been stopped.'),(1240,'The image has been updated'),(2345,'The image resizing process may take a while to complete. Please do not close this page until the process is fully completed.'),(1242,'The import is in progress'),(1243,'The importing starts immediately upon selecting the data file. No additional confirmation prompts will appear.'),(1572,'The language CSV file should be a text file which contains 3 columns per row (columns are separated by comma:'),(86,'The language data has been saved'),(69,'The language has not been found'),(1566,'The language labels have been successfully imported:'),(65,'The language you want to add has already been added'),(64,'The language you want to add has not been found'),(67,'The language you want to delete has not been found'),(1244,'The language you want to delete is the default application language and cannot be deleted'),(1245,'The language you want to delete is the default interface language and cannot be deleted'),(2925,'The length of X field must be greater than Y'),(2926,'The length of X field must be less than Y'),(2210,'The length of value for the column \"{{column}}\" exceeds length of field and will be cut'),(61,'The link was copied to your clipboard'),(87,'The maximum file size that can be uploaded: X'),(1246,'The maximum number of uses'),(2972,'The maximum number of uses per user'),(1686,'The membership name cannot contain such symbols as \\, \' and \". Also, it cannot exceed 32 characters.'),(3105,'The menu has been added'),(3104,'The menu has been updated'),(1813,'The method is not configured and cannot be used'),(1463,'The module X has been uninstalled successfully'),(1247,'The module has been partially uninstalled'),(164,'The module has been uninstalled successfully'),(1711,'The module is incompatible with the new core version going to be installed'),(1248,'The module is not released for your X-Cart version'),(2904,'The module may be checked only if a valid license key is present.'),(2350,'The module may not be disabled due to the limitations of the module architecture.'),(163,'The module to uninstall has not been found'),(2096,'The module version is incompatible with your core version and cannot be enabled. Minimum core version required for this module is X.'),(2095,'The module version is incompatible with your core version and cannot be installed. Minimum core version required for this module is X.'),(169,'The modules have been updated'),(2228,'The name is empty'),(3351,'The news message has been added'),(3350,'The news message has been updated'),(2390,'The notification has been updated'),(2207,'The number of values in the row does not match the number of column headers for this CSV file'),(1814,'The only remaining active administrator profile cannot be deleted.'),(1913,'The order subtotal exceeds the maximum allowed value ({{max_order_amount}})'),(1964,'The order subtotal exceeds the maximum allowed value ({{max_order_amount}}), please remove some items from the cart.'),(1914,'The order subtotal less than the minimum allowed value ({{min_order_amount}})'),(1965,'The order subtotal less than the minimum allowed value ({{min_order_amount}}), please add some items to the cart.'),(1249,'The page has been added'),(3106,'The page has been updated'),(1734,'The password is the one you specified during checkout.'),(1735,'The password is the one you specified.'),(348,'The process of export is complete. You can follow this_link to check the results and download the files containing data.'),(1609,'The process of export may take much time. Please do not close this page until the export is complete'),(1608,'The process of export may take much time. You may close the page, the operation will be in progress as background. If the operation takes long enough, we will send you a notification when it is complete.'),(1502,'The process of import may take much time. Please do not close this page until the import is complete'),(1501,'The process of import may take much time. You may close the page, the operation will be in progress as background. If the operation takes long enough, we will send you a notification when it is complete.'),(2453,'The process of quick data calculation may take a while to complete. Please do not close this page until the process is fully completed.'),(2656,'The process of sales calculation may take a while to complete. Please do not close this page until the process is fully completed.'),(3139,'The process of sitemap generation may take a while to complete. Please do not close this page until the process is fully completed.'),(3335,'The product SKU#\"X\" is already set as Related for the product'),(2046,'The product SKU#\"X\" is already set as featured for the category'),(3332,'The product SKU#\"X\" is already set as related for the product'),(1932,'The product class has been added'),(1931,'The product class has been updated'),(2581,'The product for which you attempted to upload an attachment has not been found'),(2391,'The product has been added'),(2147,'The product has been updated'),(1250,'The product option group has been added successfully'),(1251,'The product option group has been updated successfully'),(1252,'The product option groups have been updated successfully'),(1253,'The product option groups have not been successfully updated'),(1934,'The product selection has been added'),(1933,'The product selection has been updated'),(3143,'The product tab has been added'),(3142,'The product tab has been updated'),(2199,'The product with \"{{value}}\" SKU does not exist'),(3807,'The products return has been registered.'),(1474,'The profile has been registered. The password has been sent to the user\'s email address'),(1473,'The profiles have been merged'),(1565,'The provided file contains the following language labels:'),(3646,'The related payment not found. Apparently it was deleted.'),(1254,'The requested page could not be found.'),(1255,'The restoration procedure is irreversible and erases all data tables from your store database. It is highly recommended that you back your present database data up before restoring one of the previous states from a back-up.'),(3124,'The role has been added'),(3123,'The role has been updated'),(1256,'The same as shipping'),(1954,'The script found {{number}} errors during import'),(3382,'The script found {{number}} errors during update inventory'),(1953,'The script found {{number}} errors during verification'),(2786,'The secure protocol for your website is disabled.'),(2787,'The secure protocol for your website is enabled.'),(2498,'The secure protocol is enabled for your website. But X-Cart hasn\'t found the valid SSL certificate on your server.'),(1835,'The selected payment method is obsolete or invalid. Select another payment method'),(1257,'The selected shipping markups have been deleted successfully'),(174,'The selected shipping method has been deleted successfully'),(176,'The selected zones have been deleted successfully'),(2162,'The service name X is reserved and cannot be used for an address field.'),(2826,'The settings in this section determine the content of email notifications sent to admin.'),(2823,'The settings in this section determine the content of email notifications sent to customer.'),(1843,'The settings of payment method successfully updated'),(2169,'The specified amount of product exceeds maximum amount of product in stock'),(1258,'The state has been added successfully'),(269,'The string is different from that of the title number of columns - X instead of Y'),(2365,'The system detects that some updates are available for enabled modules. It is strongly recommended to have all enabled modules updated to latest version for better compatibility before the install new ones from Marketplace.'),(2477,'The system has been restored to the selected snapshot of X'),(2633,'The system has detected one or more problems with some of the modules at your store:'),(1716,'The system has detected that some custom modifications were made by editing core and module files, not by writing new modules. In order to proceed with the upgrade you should decide what to do with the modifications'),(2641,'The system has detected that the license key that was activated for your store is invalid.'),(2478,'The system has failed to restore because there was no snapshot of X'),(1938,'The tax class has been added'),(1937,'The tax class has been updated'),(3261,'The template has been added'),(3260,'The template has been updated'),(3312,'The test email notification has been sent to X'),(83,'The text label has been added successfully'),(79,'The text label has been deleted'),(84,'The text label has been modified successfully'),(81,'The text label has not been added, because its name has not been specified'),(1259,'The text label has not been added, because its translation to the default application language has not been specified'),(1260,'The text label has not been added, because its translation to the default interface language has not been specified'),(82,'The text label has not been added, because such a text label already exists'),(80,'The text label has not been deleted: it has been either not found or not specified'),(1261,'The text label has not been modified, because its translation to the default application language has not been specified'),(1262,'The text label has not been modified, because its translation to the default interface language has not been specified'),(3642,'The transaction will be marked as'),(1263,'The upgrade is completed. Please, do not close this page until you check your web site and check that everything works properly'),(214,'The user will be registered; a password will be sent to the user via email'),(2209,'The value in the column \"{{column}}\" will be adjusted according to HTML specification to prevent potential XSS attack'),(2683,'The value must be greater than the current maximum order number in the order list'),(1689,'The value must be in range'),(279,'The value of the X field has an incorrect format'),(277,'The value of the X field must be greater than Y'),(278,'The value of the X field must be less than Y'),(280,'The value of the X field should not be longer than Y'),(1519,'The values are average'),(3251,'Theme tweaker'),(2973,'There are currently no coupons.'),(2411,'There are expired license keys'),(2412,'There are expired license keys activated in store'),(2442,'There are no activated license keys'),(1264,'There are no categories'),(3243,'There are no comments yet. Be the first to leave a comment'),(1546,'There are no images loaded for this product'),(1478,'There are no labels translated to X'),(1265,'There are no markups selected'),(3627,'There are no payment configurations for this store.'),(2711,'There are no permissions to import user access level'),(2713,'There are no permissions to import user roles'),(1266,'There are no rates available for specified source/destination and/or package measurements/weight.'),(1773,'There are no shipping methods available'),(1621,'There are no shipping methods defined for this carrier'),(3285,'There are some custom CSS styles in your store. These styles may affect the look of the installed template. Review the custom styles and disable them if necessary.'),(2496,'There are unsaved changes on the page. If you choose to continue, these changes will be lost. Do you want to proceed?'),(1162,'There is a maximum purchase limit of MaxQuantity'),(1161,'There is a minimum purchase limit of MinQuantity'),(186,'There is already an account with your email address. You can sign in or continue as guest'),(2844,'There is already state with code {{code}} in {{country}}'),(2932,'There is no such a coupon, please check the spelling: X'),(1268,'There is no user with specified email address'),(1269,'There were no orders placed'),(417,'There\'s no payment method available'),(3728,'There\'s no post offices available'),(2989,'These Open Graph meta tags were generated automatically based on general product information.'),(1970,'These attributes can be applied to all the products in the store.'),(1968,'These attributes can be applied to the \"{{name}}\" product class.'),(1969,'These attributes can only be applied to this particular product.'),(1270,'These components require your attention'),(1271,'These components will be updated'),(1272,'These instructions will appear below the order invoice on the page which customers see after they confirm their order.'),(1273,'These links were already provided to you after this store was installed and will be emailed to you again after you start the upgrade process'),(2006,'These links were already provided to you after this store was installed and will be emailed to you again after you start the upgrade process.'),(2747,'These options separated by X, you can change it by modify X label'),(3599,'These payment methods were imported from your X-Payments. You can add them to your store at the '),(3302,'This action will remove all flexy-templates. Are you sure to proceed?'),(1791,'This address was used as a'),(1275,'This address was used as a billing address during the recent purchase'),(1276,'This address was used as a shipping address during the recent purchase'),(2954,'This comment will be visible to shop administrators only'),(1277,'This component is automatically calculated by shipping add-on module and cannot be edited'),(2963,'This coupon cannot be combined with other coupons'),(1278,'This e-mail address is already in use by another user.'),(1279,'This email address is used for an existing account. Enter another email address or sign in'),(2428,'This feature is available only for paid (non-free) X-Cart license plans'),(3443,'This feature is not yet available. You will be redirected to the feature request page where you can vote to have this feature implemented in one of the upcoming versions.'),(3363,'This field can be used to set a fixed shipping fee for the product. Make sure the field value is a positive number (greater than zero).'),(198,'This field is required'),(2916,'This field is required.'),(1280,'This is a default zone which covers all addresses. It\'s impossible to edit this zone\'s countries, states etc'),(230,'This is a demo store with powerful X-Cart engine inside'),(2999,'This is the login name you created when signing up for PayPal Payments Advanced.'),(3006,'This is the login name you created when signing up for Payflow.'),(3007,'This is the password you created when signing up for PayPal Payflow or the password you created for API calls.'),(3001,'This is the password you created when signing up for PayPal Payments Advanced or the password you created for API calls.'),(414,'This language is added by module and cannot be removed.'),(1616,'This method does not support the current store currency and is not available for customers'),(2658,'This method is displayed because you are logged in as admin and operating as another user'),(1617,'This method is in test mode'),(328,'This module is available for X-Cart hosted stores only.'),(2022,'This module uses PHP\'s cURL functions which are disabled on your web server'),(1281,'This month'),(1769,'This operation is irreversible. Are you sure you want to proceed?'),(3865,'This operation will cancel order. Payment authorization will be voided. Please confirm to proceed.'),(3866,'This operation will capture funds from customer. Please confirm to proceed.'),(3867,'This operation will refund funds to customer. Please confirm to proceed.'),(3564,'This options is relevant only if you share your Skrill account with other online shops.'),(2788,'This order was not checked by the AntiFraud service!'),(2310,'This page allows you to adjust the types of email notifications your store sends to users'),(1521,'This page allows you to configure Shipping methods, zones and charges.'),(1528,'This page allows you to edit global attributes, which are available for all products in your store, and attributes specific for classes of your products.'),(2468,'This page is intended for the creation and management of discount coupons.'),(2473,'This page is intended for the management of volume discounts based on the order subtotal.'),(1619,'This payment method cannot be enabled until you configure it'),(2287,'This payment method is Active.'),(2288,'This payment method is Inactive.'),(2789,'This payment method is not configured.'),(2857,'This process may take much time. Please do not close this page until the task is complete'),(179,'This product has been added to your bag'),(51,'This product is out of stock or it has been disabled for sale'),(3086,'This product will be shown in coming soon section'),(3085,'This product will be shown in new arrivals'),(1288,'This quarter'),(1284,'This section displays 10 top-selling products for today, this week and this month'),(1285,'This section displays order placement statistics'),(1517,'This section displays order processing statistics'),(3026,'This setting determines whether or not the \"Buy Now with PayPal\" button should be displayed on product list pages (in list view) and product details pages.'),(2566,'This shipping method is'),(2567,'This shipping method is not configured.'),(3005,'This should be the same partner name that is used when logging into your PayPal Payflow account.'),(1286,'This site requires JavaScript to function properly.'),(2463,'This tool allows you to get rid of any content that might have been created in your store for testing purposes and which you no longer need.'),(187,'This user name is used for an existing account. Enter another user name or sign in'),(3584,'This value must be set in exactly the same way as it is set on the payment gateway end.'),(1287,'This week'),(349,'This will increase the shipping cost by XX'),(1289,'This year'),(2197,'Three columns'),(1290,'Through'),(1291,'Thumbnail'),(2790,'Time left'),(1402,'Timeout error'),(1292,'Title'),(23,'To activate your X-Cart license, enter your secret key into the field below and click Activate.'),(24,'To activate your X-Cart or commercial module license, enter your license key into the field below and click Activate.'),(3604,'To be able to use the payment methods defined in X-Payments you should import information about them from X-Payments. Click the button below and X-Payments will return a list of payment methods available for this shopping cart.'),(281,'To boost your sales try to use Discounts coupons, Sale, Product Advisor, Volume discounts addons. Also you may be interested in all Marketing extensions from our Marketplace'),(1741,'To change the password, log into your company account and use the \'Modify profile\' link'),(1580,'To change the roles of your profile, contact the store administrator'),(1296,'To contact us please fill the form below'),(1394,'To continue, please, sign in'),(1297,'To email'),(342,'To enable secure protocol for your website pages you need a valid SSL certificate purchased for the website domain and installed on your server.'),(3062,'To enable this payment method, you need <Multi-vendor> module installed.'),(3061,'To enable this payment method, you need Multi-vendor module installed.'),(283,'To fix this problem, do the following: 3 points'),(266,'To get the format of the import data you can export your products to a file'),(1527,'To have attributes specific for product classes, define product classes first.'),(341,'To make the online store use the secure protocol you need an SSL certificate purchased for the website domain and installed on your server.'),(2491,'To make your changes visible in the customer area, cache rebuild is required. It will take several seconds. You don’t need to close the storefront, the operation is executed in the background.'),(3396,'To move your existing subscribers to MailChimp lists, <export your subscribers data> from X-Cart and use the import feature under your MailChimp account.'),(1298,'To place the order please accept Terms and Conditions'),(1299,'To place the order please complete the previous steps first'),(3567,'To process your customers\' payments with Skrill, you need a Skrill account. If you do not have one yet, you can sign up for free at http://www.skrill.com'),(1300,'To recover your password, please type in the valid e-mail address you use as a login'),(3724,'To request a return please fill the form below'),(3588,'To set up the integration you should follow '),(3851,'To set up the integration, go to the _Site management_'),(25,'To setup Tax Rates, find and install the appropriate addons from Marketplace'),(2791,'To setup Tax Rates, find and install the appropriate addons from Marketplace\', {\'url\': url(\'addons_list_marketplace\', \'\', {\'tag\': \'Taxes'),(3763,'To start registration process for Canada Post merchant account click on the \"Register\" button.'),(2946,'To use the coupon, your order subtotal must be at least X'),(2945,'To use the coupon, your order subtotal must be between X and Y'),(2947,'To use the coupon, your order subtotal must not exceed Y'),(1301,'Today'),(3130,'Too large value for absolute discount'),(2644,'Tools'),(3346,'Top News'),(201,'Top X products'),(93,'Top banner'),(1302,'Top sellers'),(1303,'Top selling products'),(219,'Total'),(3460,'Total amount of orders'),(3747,'Total items weight'),(3788,'Total weight'),(1747,'Totals'),(1165,'Track package'),(3793,'Tracking details'),(1173,'Tracking information has been sent'),(2388,'Tracking number'),(1171,'Tracking number is changed from \"{{old_number}}\" to \"{{new_number}}\"'),(1168,'Tracking numbers'),(3741,'Tracking pin'),(3729,'Tracking pins'),(2984,'Traditional'),(2393,'Transaction'),(2792,'Transaction ID'),(2065,'Transaction amount mismatch'),(3551,'Transaction key'),(3645,'Transaction result'),(2035,'Transaction type'),(2607,'Transactions details'),(1304,'Translation driver'),(119,'Translations'),(3784,'Transmit shipment'),(312,'Trial period X days'),(1972,'Trial period expires today'),(1971,'Trial period is expired'),(1767,'Try search-as-you-type feature...'),(1833,'Try to change the search criteria or find the needed solution in marketplace'),(2793,'Try to change the search criteria or find the needed solution in marketplace\', {\'URL\': url(\'addons_list_marketplace\', \'\', {\'tag\': \'Payment processing'),(1834,'Try to search worldwide or find the needed solution in marketplace'),(2794,'Try to search worldwide or find the needed solution in marketplace\', {\'URL\': url(\'addons_list_marketplace\', \'\', {\'tag\': \'Payment processing'),(1441,'Try to unpack them manually'),(282,'Trying to access the shop at X'),(2572,'Trying to run pre-upgrade hooks while not all archives were unpacked'),(3692,'Trying to use unaccepted template change.'),(2987,'Tweet'),(3293,'Twig-template path'),(1305,'Twitter'),(2196,'Two columns with left sidebar'),(2195,'Two columns with right sidebar'),(1306,'Type'),(1307,'Type of Account'),(3447,'Type: checkbox'),(3446,'Type: select box'),(3593,'U.S.P.S. module allows to use online shipping rates calculation via USPS Web Tools Ecommerce API.'),(2603,'UPS'),(3315,'UPS module allows to use online shipping rates calculation via UPS service.'),(3265,'URL'),(3837,'URL is copied'),(1602,'URLs'),(2604,'USPS'),(1845,'Unable to delete file'),(1464,'Unable to delete module X files: some dirs have no writable permissions: Y'),(2706,'Unable to download the contents of {{url}}'),(2707,'Unable to get at the contents of {{url}}'),(287,'Unable to install module X because some modules, which it depends on, have not been installed or activated yet'),(3288,'Unable to save edited content. Errors: '),(2705,'Unable to write data to file {{file}}'),(2639,'Unallowed modules will be disabled automatically on the next visit any page in the administrator interface.'),(2044,'Unavailable'),(1310,'Uncheck all'),(106,'Undelete'),(1311,'Understanding Online Payments'),(1312,'Unexpected error: version value is not passed'),(3704,'Unexpected result was received from ePDQ (transaction status is not set)'),(3715,'Unexpected result was received from iDEAL (transaction status is not set)'),(1393,'Unfortunately, you don\'t have permissions to access this page.'),(3045,'Unfortunately, your API credentials could not be obtained from your PayPal account automatically.'),(1313,'Uninstall'),(1314,'Units & Formats'),(1315,'Units of measurement'),(2985,'Universal Analytics'),(1316,'Unknown'),(2902,'Unknown core version'),(1482,'Unknown language: X'),(3720,'Unknown payment transaction'),(2149,'Unknown payment. If you see this message after returning from the payment page, please contact the store administrator for information about the status of your payment.'),(3289,'Unknown temporary file'),(2069,'Unlimited'),(3753,'Unpackaged'),(1317,'Unpacking archives, please wait...'),(1722,'Unselect all'),(1318,'Unset'),(52,'Update'),(3449,'Update MailChimp Lists'),(3619,'Update default card'),(1319,'Update exceptions'),(1960,'Update existing items, but skip new items'),(1320,'Update module'),(2804,'Update modules'),(1321,'Update product'),(1322,'Update profile'),(3380,'Update quantity'),(3387,'Update quantity import guide'),(1323,'Updated components'),(1324,'Updates are available'),(1325,'Updates for the X-Cart core and/or installed modules are available'),(1326,'Updates for your version ({{version}})'),(2813,'Updates mode'),(2795,'Updating data from the marketplace...'),(1327,'Upgrade'),(2443,'Upgrade access level cannot be changed for default free license'),(2439,'Upgrade access level has been successfully assigned to your license keys'),(2440,'Upgrade access level tooltip message'),(1328,'Upgrade available'),(1329,'Upgrade core'),(1708,'Upgrade for X-Cart core is available'),(1330,'Upgrade module'),(2818,'Upgrade not allowed'),(2321,'Upgrade note'),(1331,'Upgrade to version {{version}}'),(1332,'Upload'),(1333,'Upload add-on'),(1334,'Upload and restore'),(1335,'Upload file'),(1497,'Upload files'),(1532,'Upload from server'),(1533,'Upload from your computer'),(3501,'Upload store data to MailChimp'),(100,'Upload via URL'),(3021,'Use PayPal authentication method'),(3613,'Use X-Payments configuration bundle'),(1336,'Use a merchant account from your financial institution or choose a bundled payment solution to accept credit cards and other methods of payment on your website.'),(1337,'Use a merchant account from your financial institution to accept online payments'),(3246,'Use custom css'),(1338,'Use custom js'),(1339,'Use default logo'),(1341,'Use dynamic image help'),(1340,'Use dynamic image resizing'),(3056,'Use existing PayPal account'),(3054,'Use existing account from'),(3582,'Use of Restriction key must be disabled in your Quantum Gateway merchant center account at all times.'),(3653,'Use one of the following cards to'),(2017,'Use our new nifty module to automatically backup your store and be able to restore it if anything crops up.'),(1342,'Use the category name'),(1743,'Use the following key to access safe mode'),(2262,'Use the form below to provide your license information.'),(1343,'Use the navigation bar above this dialog to navigate through the catalog categories'),(3580,'Use the same tax rates for all user membership levels'),(1344,'Use this section to back the database of your online store up. Please note that the database backup procedure can take up to several minutes.'),(1536,'Use this section to back up the database of your online store. Please note that the database backup procedure can take up to several minutes.'),(1345,'Use this section to define shipping zones.'),(1346,'Use this section to define your store\'s shipping methods.'),(1347,'Use this section to manage the list of existing countries. This list is used in the shipping settings and calculations, and in the registration form at the Customer Front-end.'),(1348,'Use this section to manage the lists of counties, provinces, regions and states of different countries. The lists are used in shipping settings and calculations, and in the registration form at the Customer Front-end.'),(1349,'Use this section to restore the database of your online store. Please note that the database restoration procedure can take up to several minutes'),(1350,'Use this section to review the list of existing membership levels and add new ones'),(3617,'Used credit cards'),(2063,'User'),(250,'User X is logged in'),(1706,'User activity'),(1749,'User filled in Contact Us form'),(1351,'User membership'),(1352,'User type'),(1353,'Username or e-mail'),(1354,'Users'),(1355,'Uses count'),(1356,'Uses left'),(2636,'Using the modules with this type of license violation is illegal'),(2279,'VALID THRU'),(1357,'VAT'),(1358,'Validate key'),(1359,'Value'),(2204,'Variant attribute \"{{column}}\" cannot be empty'),(1503,'Verification results'),(2335,'Verified'),(2336,'Verifying data before importing...'),(1360,'Version'),(1361,'Version change'),(99,'Via URL'),(1729,'View all low inventory products'),(1915,'View all modules'),(1362,'View all open orders'),(2122,'View all ordered items'),(225,'View cart'),(97,'View image'),(1641,'View in list'),(1363,'View logs'),(2438,'View more addons in Marketplace'),(2665,'View order history'),(3651,'View payment information'),(1364,'View profile'),(2358,'View storefront'),(1365,'View system logs'),(1366,'View update log'),(3103,'Visible for'),(3158,'Visible in products filter'),(1367,'Visit module details page'),(1368,'Visit storefront'),(2484,'Visit the template store'),(2083,'Void'),(2691,'Void multiple[TT]'),(2690,'Void partially[TT]'),(3781,'Void shipment'),(2653,'Void[S]'),(2689,'Void[TT]'),(1369,'Volume discounts'),(1656,'WARNING! There are no more available administrators\' profiles. You will not be able to manage your store after you delete this profile.'),(369,'WE'),(2986,'Want help with SEO? Ask X-Cart Guru'),(2586,'Want to change or add another accounting system? Choose the accounting system you require below and configure it.'),(1370,'Warning'),(1675,'Warning!'),(1695,'Warning! CSV file was not specified.'),(1673,'Warning! InnoDB engine is not supported. It is required for software operation'),(1631,'Warning! Installing this module will overwrite all language labels translated to the appropriate language.'),(3718,'Warning! Please re-check public and private key values!'),(1698,'Warning! The file you have specified in the \'File (CSV) for upload\' field has not been uploaded to the server.'),(1696,'Warning! The file you have specified in the \'File (CSV) local\' field does not exist or cannot be read.'),(2464,'Warning! The selected types of content data will be deleted permanently.'),(1371,'Warning! There is not enough product items in stock to process the order'),(3717,'Warning! This payment method requires OpenSSL extension. Please install and enable this extension in your PHP configuration.'),(1534,'Warning: The restoration procedure is irreversible and erases all the data tables from the store database. It is highly recommended that you back up your current database before restoring one of the previous states from a back-up.'),(1372,'Warning: this operation can not be reverted!'),(2681,'Warnings'),(318,'Watch this short video and learn the basics of how online payment processing works'),(1373,'Watch video'),(1480,'We are already aware of this problem and working on it. If you would like to get in touch, feel free to contact us via our Help center at _URL_'),(2016,'We are doing our best to make your upgrade process not only easy to do, but safe.'),(1486,'We have found a valid SSL certificate installed on the server. Now you can switch the store to use the secure protocol for the store back-end and checkout, sign-in and profile pages.'),(2988,'We recommend to use share button instead of like'),(3209,'We use this email in case we need additional information on your review. We do not use it for any kind of mailing lists or spam subscriptions'),(3120,'We were unable to process this request'),(3640,'We will authorize'),(2018,'We will email you with emergency links to disable custom modules and stay only with original add-ons.'),(3470,'Web ID'),(1374,'Web server'),(3836,'Webhook URL is your store\'s URL through which Stripe informs your store about any changes in the order'),(3257,'Webmaster Mode allows you to change the storefront design in click-and-edit mode'),(3254,'Webmaster mode'),(3259,'Webmaster mode is disabled'),(3258,'Webmaster mode is enabled'),(1724,'Website'),(392,'Week'),(39,'Weight'),(40,'Weight X'),(1375,'Weight modifier'),(2541,'Weight range'),(1582,'Welcome'),(217,'Welcome to X-Cart'),(1376,'What is benchmark?'),(1588,'What to export'),(2529,'What type of shipping rates would you like to use?'),(314,'What\'s new'),(3547,'When AustraliaPost returns shipping methods which does not exists in the available methods list, these methods will be created in the list automatically'),(1377,'When the export is completed, you will be prompted to download the product data file'),(1865,'Widgets cache has been cleaned'),(1866,'Widgets cache has not been cleaned completely'),(2032,'Width'),(1378,'Width (px)'),(2370,'Will be deleted:'),(1710,'Will be installed'),(2367,'Will be updated if core update is selected'),(2597,'Win app'),(3211,'Write your review'),(2242,'Wrong \"default\" format ({{value}}). Value should be one of \"Yes\" or \"No\"'),(2241,'Wrong \"owner\" format ({{value}}). Value should be one of \"Yes\" or \"No\"'),(2243,'Wrong \"priceModifier\" format ({{value}}). Correct examples: +1, +1%, -1, -1%'),(2240,'Wrong \"type\" value ({{value}}). This should be \"C\", \"S\" or \"T\"'),(2244,'Wrong \"weightModifier\" format ({{value}}). Correct examples: +1, +1%, -1, -1%'),(2712,'Wrong access level format'),(2249,'Wrong added format'),(2870,'Wrong address same format'),(2869,'Wrong anonymous format'),(2221,'Wrong arrival date format'),(2256,'Wrong billing address format'),(2231,'Wrong box height format'),(2230,'Wrong box length format'),(2229,'Wrong box width format'),(3596,'Wrong container type selected: {{value}}. For large package size only the following types are allowed: RECTANGULAR, NONRECTANGULAR, VARIABLE'),(2257,'Wrong country code format'),(2873,'Wrong currency format'),(2222,'Wrong date format'),(2217,'Wrong enabled format'),(2250,'Wrong first login date format'),(2233,'Wrong format of Clean URL value (allowed alpha-numeric, \"_\" and \"-\" chars)'),(2418,'Wrong format: Field contains unallowed characters'),(3359,'Wrong free shipping format'),(3360,'Wrong freight fixed fee format'),(2224,'Wrong inventory tracking format'),(2886,'Wrong item order modifier format'),(2232,'Wrong items per box format'),(2254,'Wrong language format'),(2251,'Wrong last login date format'),(2248,'Wrong login format'),(2227,'Wrong low limit level format'),(2226,'Wrong low stock notification format'),(1379,'Wrong method_id specifed'),(2878,'Wrong order item format'),(2880,'Wrong order item name format'),(2881,'Wrong order item price format'),(2884,'Wrong order item quantity format'),(2879,'Wrong order item sku format'),(2882,'Wrong order item subtotal format'),(2883,'Wrong order item total format'),(2877,'Wrong order modifier format'),(2868,'Wrong order number format'),(2893,'Wrong order transaction currency format'),(2887,'Wrong order transaction format'),(2892,'Wrong order transaction id format'),(2888,'Wrong order transaction method format'),(2890,'Wrong order transaction value format'),(2235,'Wrong position format'),(2216,'Wrong price format'),(3384,'Wrong product quantity value format (\"{{value}}\")'),(2253,'Wrong referer format'),(2714,'Wrong role format'),(2219,'Wrong shippable format'),(2255,'Wrong shipping address format'),(2247,'Wrong show title format'),(2258,'Wrong state id format'),(2252,'Wrong status format'),(2225,'Wrong stock level format'),(2871,'Wrong subtotal format'),(3058,'Wrong token of Express Checkout. Please try again. If the problem persists, contact the administrator.'),(2872,'Wrong total format'),(2237,'Wrong type format'),(2223,'Wrong update date format'),(2220,'Wrong use separate box format'),(3165,'Wrong useClasses format'),(1380,'Wrong value is specified for arrival date field. The field was not updated.'),(2218,'Wrong weight format'),(257,'X GB'),(152,'X Language (Code: Y)'),(256,'X MB'),(326,'X attributes in group'),(254,'X bytes'),(2931,'X code is already used for other coupon, please specify a different code'),(2930,'X coupon(s) has been created'),(2929,'X coupon(s) has been removed'),(261,'X days'),(299,'X entities has been created'),(298,'X entities has been removed'),(2150,'X expired shopping cart(s) have been successfully removed'),(199,'X field is required'),(1471,'X file type'),(262,'X hours'),(271,'X image unable to load'),(221,'X item'),(294,'X item available'),(171,'X item in bag'),(183,'X items'),(3818,'X items ($)'),(295,'X items available'),(172,'X items in bag'),(2816,'X items selected'),(255,'X kB'),(111,'X labels'),(416,'X language labels have been removed'),(415,'X languages have been removed'),(319,'X methods available'),(263,'X minutes'),(202,'X module settings'),(2323,'X module will be disabled'),(2325,'X module will be upgraded'),(1476,'X module(s) selected'),(2462,'X modules selected'),(2324,'X modules will be disabled'),(2326,'X modules will be upgraded'),(260,'X months'),(2959,'X off'),(246,'X orders'),(330,'X orders on last day'),(332,'X orders on last month'),(331,'X orders on last week'),(297,'X product(s) has been created'),(296,'X product(s) has been removed'),(350,'X products'),(251,'X products found'),(244,'X results found'),(333,'X revenue on last day'),(335,'X revenue on last month'),(334,'X revenue on last week'),(264,'X seconds'),(427,'X shipping methods have been created'),(428,'X shipping methods have been removed'),(3170,'X star_1'),(3169,'X stars_2'),(3168,'X stars_3'),(3167,'X stars_4'),(3166,'X stars_5'),(419,'X states have been removed'),(420,'X states have been successfully created'),(259,'X years'),(421,'X zones have been removed'),(422,'X zones have been successfully created'),(344,'X, including images and file attachments'),(1381,'X-Cart'),(120,'X-Cart News'),(2850,'X-Cart Team have done their best to make your upgrade process as enjoyable as possible.'),(3610,'X-Cart automatically checks the connection to X-Payments after the settings are saved.<br/> If the module is configured properly, a \"Test transaction completed successfully\" message is displayed at the top of the page.'),(2510,'X-Cart could not find a valid SSL certificate on your server X.'),(2509,'X-Cart could not find a valid SSL certificate on your server.'),(2508,'X-Cart could not find a valid SSL certificate on your server. Although you can switch the store to use the secure protocol for the website pages, most Internet browsers will likely display a warning message scaring your website visitors away.'),(2142,'X-Cart could not find data in your file.'),(2497,'X-Cart found some issues with installed SSL certificate'),(2408,'X-Cart license key has been successfully verified'),(2409,'X-Cart license key has been successfully verified and activated. But this key has expired and do not allow upgrade store.'),(1382,'X-Cart online store builder'),(1383,'X-Cart shopping cart software'),(2819,'X-Cart v5.3 requires PHP version 5.4 or better. Please update the PHP version installed on your server before you proceed.'),(3664,'X-Payments'),(3693,'X-Payments Dashboard'),(3607,'X-Payments configuration ID'),(3694,'X-Payments considers this transaction as potentially fraudlent.'),(3606,'X-Payments returned the following payment methods for your shopping cart:'),(3629,'X-Payments transaction'),(1384,'XML parser'),(1385,'XML sitemap'),(3133,'XML sitemap URL: X'),(2280,'YEAR'),(1386,'Yahoo!'),(1387,'Yandex'),(395,'Year'),(2088,'Year when store started its operation'),(1388,'Yes'),(1389,'Yes, I agree with License agreement'),(2364,'Yes, I agree with License agreements'),(2015,'Yes, I have made the full backup of my store files and database'),(1908,'Yes/No'),(2432,'Yesterday'),(149,'You are going to delete the X language'),(2516,'You are logged in as: user'),(1390,'You are not allowed to access this resource!'),(3269,'You are now in layout editing mode'),(3270,'You are now in preview mode'),(2512,'You are operating as:'),(2515,'You are operating as: user'),(1752,'You are sure to clear your cart?'),(2638,'You can also contact our CR department for help with this issue'),(1667,'You can build your web-site during FREE evaluation, but you cannot use this installation for real sales without buying a license.'),(2193,'You can change the CSV delimiter for all subsequent imports and exports using this link'),(2192,'You can change the charset for all subsequent imports and exports using this link'),(302,'You can choose if to download your database data'),(2899,'You can continue as guest or create an account'),(2994,'You can define an order id prefix, which would precede each order number in your shop, to make it unique'),(3563,'You can define an order id prefix, which would precede each order number in your shop, to make it unique (each transaction id must be unique for a Skrill account)'),(2555,'You can define the following values:'),(2608,'You can find the failed transaction here'),(2507,'You can get more information using this service: '),(145,'You can install these updates after purchasing and activating your X-Cart license key'),(1740,'You can now use the following credentials to access your account'),(2796,'You can purchase AntiFraud Service subscription'),(3465,'You can register MailChimp account'),(2553,'You can set up different shipping rates depending on the weight, price or quantity of items in the order.'),(284,'You can upload the database data directly from your local computer'),(3331,'You cannot choose this product'),(1538,'You cannot save database data to a file on the web server (\'var/backup/sqldump.sql.php\').'),(2718,'You cannot update administrator profile ({{value}}). Row is skipped'),(2717,'You cannot update administrator profile ({{value}}). Row will be skipped'),(3194,'You have already reviewed this product'),(2933,'You have already used the coupon'),(1827,'You have an unpaid order #{{ORDER}}'),(3395,'You have configured MailChimp as your primary email newsletter tool. New subscribers will be added directly to your MailChimp lists (this X-Cart list will be skipped). You can manage your subscriber lists under your MailChimp account <here>'),(1615,'You have no payment methods enabled in your shop'),(1397,'You have selected to delete your profile. Please, confirm you want to proceed'),(3558,'You have sent a request for activation on the X.'),(1581,'You have the following roles:'),(3272,'You have unsaved changes. Are you really sure to exit the preview?'),(3388,'You just added'),(33,'You must register your installation before you can use it for real sales'),(2011,'You need hard and soft reset links in case some 3rd party module crashes your web-store'),(2797,'You need these links in case you want to recover your store'),(3815,'You need to install the PHP mcrypt extension to use the Sage Pay integration'),(3695,'You should accept the changes at the'),(2503,'You should check available free disk space yourself before continuing installation'),(2502,'You should check available free disk space yourself before continuing upgrade'),(2320,'You should confirm that you have created backup before upgrading the store.'),(1824,'You tried to buy more items of \"{{product}}\" product {{description}} than are in stock. We have {{amount}} item(s) only. Please adjust the product quantity.'),(1541,'You will be able to provide additional product info (images, attributes, etc.) after you submit this form.'),(3464,'You will need a valid and working MailChimp Account in order to be able to use this module.'),(2108,'Your \"Password reset key\" has expired. Please enter the email address associated with your user account to get a new \"Password reset key\".'),(3044,'Your API credentials have been successfully obtained from your PayPal account and saved for use by your X-Cart store.'),(1799,'Your Account'),(2919,'Your Message'),(3015,'Your PayPal Publisher ID is X'),(3835,'Your Stripe account is no longer accessible. Please connect with Stripe once again.'),(1666,'Your X-Cart installation is licensed for evaluation purposes only.'),(1391,'Your access link has been expired'),(315,'Your account email is X.'),(1407,'Your account information will be e-mailed to you shortly'),(1408,'Your account information will be e-mailed to you shortly.'),(316,'Your account password is X.'),(2995,'Your account settings'),(3060,'Your address data was not received from PayPal. Please try again. If the problem persists, contact the administrator.'),(229,'Your cart'),(3624,'Your configuration string is not correct'),(1392,'Your custom addons were prepared for certain core version'),(3250,'Your custom file is successfully saved'),(1409,'Your e-mail'),(3201,'Your email'),(430,'Your first name'),(431,'Your last name'),(1410,'Your name'),(1739,'Your new password'),(1950,'Your order details will be sent to your e-mail address'),(3424,'Your order details will be sent to your email address'),(2997,'Your partner name is PayPal'),(3198,'Your product rating is saved. Thank you!'),(1411,'Your products will be exported as a CSV file.'),(1748,'Your profile modified'),(2328,'Your request has been sent successfully'),(3212,'Your review'),(3199,'Your review has been updated. Thank your for sharing your opinion with us!'),(180,'Your shopping bag - X item'),(181,'Your shopping bag - X items'),(1412,'Your shopping bag is empty'),(1413,'Your state'),(1414,'Your store'),(1485,'Your store is configured to use the secure protocol for the store back-end and checkout, sign-in and profile pages.'),(1415,'Your store is currently unable to calculate taxes'),(2332,'Your version (X) can be upgraded to'),(3394,'Z - A'),(195,'Zero cannot be used'),(1416,'Zip code'),(1417,'Zip/postal code masks'),(3416,'Zipcode'),(1418,'Zone'),(426,'Zone address masks help'),(425,'Zone city masks help'),(177,'Zone details have been updated successfully'),(1419,'Zone name'),(1472,'Zone not found (X)'),(424,'Zone zipcode masks help'),(1420,'Zones'),(2360,'Zoom image'),(2736,'[Edit]'),(2064,'\\\'RESULT\\\' argument not found'),(2059,'\\\'status\\\' request argument can not found'),(3502,'_MailChimp ecommerce info text_'),(184,'_X_ item'),(185,'_X_ items'),(2039,'a side box'),(3089,'a2cp-source-code-PAB'),(3334,'a2cp-source-code-REL'),(1794,'address during the recent purchase'),(2075,'always'),(1421,'and'),(1753,'attributes'),(3554,'authorize_key_help'),(3553,'authorize_md5_key_help'),(1792,'billing'),(1422,'by'),(1403,'cURL error'),(1679,'cannot create directory'),(288,'cannot set X permissions'),(2314,'checkbox.onoff.off'),(2313,'checkbox.onoff.on'),(1986,'cm'),(3508,'cs_categories'),(3510,'cs_did_you_mean'),(3509,'cs_pages'),(3507,'cs_products'),(3504,'cs_see_details'),(3505,'cs_see_more_results_for'),(3503,'cs_showing_results_for'),(3506,'cs_suggestions'),(3202,'customers'),(2077,'daily'),(1577,'default'),(665,'default-meta-description'),(2734,'default-meta-keywords'),(2733,'default-site-title'),(1483,'deleted'),(2524,'deliveryTime.help'),(3771,'deposit your items at a Post Office'),(1423,'details'),(1651,'dimensions'),(1424,'disabled'),(3277,'disabled blocks'),(1987,'dm'),(1857,'done'),(1425,'downloads'),(2605,'eBay'),(3700,'ePDQ Currency'),(3702,'ePDQ Enable logging of ePDQ transactions'),(3701,'ePDQ Invoice number prefix'),(3697,'ePDQ PSPID'),(3698,'ePDQ SHA-IN pass phrase'),(3699,'ePDQ SHA-OUT pass phrase'),(3696,'ePDQ settings note'),(2073,'each'),(1589,'editable'),(437,'[email protected]'),(2296,'emailNotificationAdminHeader'),(2297,'emailNotificationAdminSignature'),(2293,'emailNotificationCustomerHeader'),(2295,'emailNotificationCustomerSignature'),(2294,'emailNotificationGreeting'),(1694,'empty'),(3765,'enable merchant wizard'),(1426,'enabled'),(3087,'expected on'),(2041,'expired'),(2978,'fedex.CODStatusOptionComment'),(1681,'file does not exist'),(2543,'flat rate'),(3654,'for this order'),(749,'from'),(1427,'from URL'),(1428,'from local computer'),(1429,'from local server'),(2000,'g'),(1430,'hard reset'),(3466,'here'),(2331,'hide list'),(2076,'hourly'),(3711,'iDEAL Currency'),(3713,'iDEAL Enable logging of iDEAL transactions'),(3712,'iDEAL Invoice number prefix'),(3705,'iDEAL Merchant ID'),(3709,'iDEAL Private Key'),(3710,'iDEAL Private Key Password'),(3707,'iDEAL Public Certificate File'),(3708,'iDEAL Public Key'),(3706,'iDEAL SubID'),(1645,'if you have any questions'),(2495,'imgsize-category-Default'),(2492,'imgsize-product-Default'),(2493,'imgsize-product-LGThumbnailGrid'),(2494,'imgsize-product-LGThumbnailList'),(3663,'in'),(1431,'in description'),(1432,'in title'),(2634,'inactive license key(s);'),(1988,'inches'),(2635,'installed module(s) not allowed by the type of X-Cart license activated at your store.'),(1466,'invalid module ID passed: X'),(1433,'is available'),(1652,'item(s)'),(1751,'item(s) in stock'),(223,'items'),(1434,'items available'),(1999,'kg'),(1574,'label name,'),(1575,'label translation.'),(3442,'label.coming_soon'),(1568,'labels count:'),(1573,'language code,'),(1997,'lbs'),(1435,'less'),(1603,'local files'),(1985,'mm'),(1468,'module version X is not equal to the core one (Y)'),(4,'module-sort-Alphabetically'),(2,'module-sort-Most popular'),(3,'module-sort-Newest'),(1436,'modules'),(2079,'monthly'),(2664,'more'),(1437,'ms'),(1590,'multi value'),(58,'n/a'),(2700,'na_admin'),(2672,'na_customer'),(1438,'never'),(2175,'no comments'),(1439,'none'),(1440,'not all archives were unpacked'),(439,'not all upgrade packs were downloaded'),(1442,'not available for sale'),(1443,'not installed'),(1444,'not ready to download packs. Please, try again'),(2831,'notification.section.administrator'),(2830,'notification.section.customer'),(1707,'now disabled'),(1445,'of'),(3641,'on your credit card in order to attach this credit card to your account. The amount will be released back to your card after a while.'),(1446,'options'),(1447,'or'),(3052,'or go to checkout as a New customer'),(2898,'or proceed with'),(2798,'or use the form below'),(3204,'out of'),(1639,'outdated'),(1998,'oz'),(3600,'page.'),(2289,'paymentStatus.Active'),(2290,'paymentStatus.Inactive'),(3027,'paypal_welcome_text'),(2544,'per item'),(245,'per page'),(2545,'per weight unit'),(305,'percent X off'),(1395,'please sign in'),(2267,'price-All'),(2269,'price-Free'),(2268,'price-Paid'),(1659,'products'),(1448,'proxy'),(1912,'requested for'),(1511,'requested once or twice'),(1510,'requested only once'),(147,'required'),(3238,'reviewMetaDescription'),(1449,'sale'),(2841,'same as shipping'),(2074,'save'),(3612,'section.'),(3770,'shipments are picked up by Canada Post'),(1793,'shipping'),(2550,'shippingFormula.Free'),(2547,'shippingFormula.Items'),(2546,'shippingFormula.Shipping'),(2548,'shippingFormula.Subtotal'),(2549,'shippingFormula.Weight'),(2568,'shippingStatus.Active'),(2569,'shippingStatus.Inactive'),(2538,'shippingTableType.All'),(2537,'shippingTableType.Items'),(2535,'shippingTableType.Subtotal'),(2536,'shippingTableType.Weight'),(1450,'should be performed manually'),(2375,'show list'),(1451,'soft reset'),(1680,'subdirectories problems'),(49,'submit_restore_pass'),(3659,'tab and get back here to configure methods.'),(2525,'tableType.help'),(7,'tag-Accounting'),(8,'tag-Administration'),(6,'tag-All'),(2270,'tag-Catalog Management'),(9,'tag-Delivery'),(10,'tag-Development'),(11,'tag-Fulfillment'),(12,'tag-Marketing'),(13,'tag-Payment processing'),(2271,'tag-Search and Navigation'),(14,'tag-Statistics'),(15,'tag-Translation'),(16,'tag-User experience'),(17,'tag-Website design'),(2471,'the categories and product classes to which the coupon may be applied;'),(1718,'the custom modifications will be lost'),(2469,'the dates the coupon should be valid for;'),(2040,'the main column'),(2470,'the order subtotal range for which the coupon can be used;'),(2799,'the same as billing'),(2732,'title-delimiter'),(2897,'to enjoy checkout'),(1452,'trying to install a non-marketplace module: X'),(1453,'trying to unpack non-downloaded archives'),(1467,'unable to add module entry to the installation list: X'),(1454,'unable to install: not all archives were unpacked. Please, try again'),(1455,'unable to test files: not all archives were unpacked'),(1469,'unable to upload module'),(2461,'unavailable'),(2072,'units'),(1456,'unknown'),(1851,'unknown error'),(1633,'upgrade core'),(3316,'ups.CODStatusOptionComment'),(3594,'usps.CODStatusOptionComment'),(1671,'verified version'),(2330,'view list'),(3206,'votes'),(3748,'warning: parcel is overweight'),(3263,'webmasterMode.Disabled'),(3262,'webmasterMode.Enabled'),(2078,'weekly'),(1650,'weight'),(2472,'whether the coupon may be used by everyone or only by users with specific memberships.'),(3667,'with'),(2080,'yearly'),(1457,'you save'),(1720,'your web site may crash'),(1951,'{{count}} created'),(1952,'{{count}} updated'),(2704,'{{file}} file could not be copied to a new location {{newPath}}'),(1882,'{{module}} license agreement'),(1966,'{{name}} attributes'),(1841,'{{paymentMethod}} settings'),(3597,'{{value}} is an invalid container type for a REGULAR package. Valid Container is: VARIABLE');
CREATE TABLE `xlite_language_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(11) DEFAULT NULL,
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `IDX_610C29E2BF396750` (`id`),
KEY `ci` (`code`,`id`),
CONSTRAINT `FK_610C29E2BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_languages` (`lng_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_language_translations` VALUES (1,1,'Afar','en'),(2,2,'Abkhazian','en'),(3,3,'Afrikaans','en'),(4,4,'Akan','en'),(5,5,'Albanian','en'),(6,6,'Amharic','en'),(7,7,'Arabic','en'),(8,8,'Aragonese','en'),(9,9,'Armenian','en'),(10,10,'Assamese','en'),(11,11,'Avaric','en'),(12,12,'Avestan','en'),(13,13,'Aymara','en'),(14,14,'Azerbaijani','en'),(15,15,'Bashkir','en'),(16,16,'Bambara','en'),(17,17,'Basque','en'),(18,18,'Belarusian','en'),(19,19,'Bengali','en'),(20,20,'Bihari','en'),(21,21,'Bislama','en'),(22,22,'Bosnian','en'),(23,23,'Breton','en'),(24,24,'British','en'),(25,25,'Bulgarian','en'),(26,26,'Burmese','en'),(27,27,'Catalan','en'),(28,28,'Chamorro','en'),(29,29,'Chechen','en'),(30,30,'Chinese','en'),(31,31,'Church Slavic','en'),(32,32,'Chuvash','en'),(33,33,'Cornish','en'),(34,34,'Corsican','en'),(35,35,'Cree','en'),(36,36,'Czech','en'),(37,37,'Danish','en'),(38,38,'Divehi','en'),(39,39,'Dutch','en'),(40,40,'Dzongkha','en'),(41,41,'English','en'),(42,42,'Esperanto','en'),(43,43,'Estonian','en'),(44,44,'Ewe','en'),(45,45,'Faroese','en'),(46,46,'Fijian','en'),(47,47,'Finnish','en'),(48,48,'French','en'),(49,49,'Western Frisian','en'),(50,50,'Fulah','en'),(51,51,'Georgian','en'),(52,52,'German','en'),(53,53,'Gaelic','en'),(54,54,'Irish','en'),(55,55,'Galician','en'),(56,56,'Manx','en'),(57,57,'Greek','en'),(58,58,'Guarani','en'),(59,59,'Gujarati','en'),(60,60,'Haitian','en'),(61,61,'Hausa','en'),(62,62,'Hebrew','en'),(63,63,'Herero','en'),(64,64,'Hindi','en'),(65,65,'Hiri Motu','en'),(66,66,'Croatian','en'),(67,67,'Hungarian','en'),(68,68,'Igbo','en'),(69,69,'Icelandic','en'),(70,70,'Ido','en'),(71,71,'Sichuan Yi','en'),(72,72,'Inuktitut','en'),(73,73,'Interlingue','en'),(74,74,'Interlingua','en'),(75,75,'Indonesian','en'),(76,76,'Inupiaq','en'),(77,77,'Italian','en'),(78,78,'Javanese','en'),(79,79,'Japanese','en'),(80,80,'Kalaallisut','en'),(81,81,'Kannada','en'),(82,82,'Kashmiri','en'),(83,83,'Kanuri','en'),(84,84,'Kazakh','en'),(85,85,'Khmer or Cambodian','en'),(86,86,'Kikuyu','en'),(87,87,'Kinyarwanda','en'),(88,88,'Kirghiz','en'),(89,89,'Komi','en'),(90,90,'Kongo','en'),(91,91,'Korean','en'),(92,92,'Kuanyama','en'),(93,93,'Kurdish','en'),(94,94,'Lao','en'),(95,95,'Latin','en'),(96,96,'Latvian','en'),(97,97,'Limburgan','en'),(98,98,'Lingala','en'),(99,99,'Lithuanian','en'),(100,100,'Luxembourgish','en'),(101,101,'Luba-Katanga','en'),(102,102,'Ganda','en'),(103,103,'Macedonian','en'),(104,104,'Marshallese','en'),(105,105,'Malayalam','en'),(106,106,'Maori','en'),(107,107,'Marathi','en'),(108,108,'Malay','en'),(109,109,'Malagasy','en'),(110,110,'Maltese','en'),(111,111,'Mongolian','en'),(112,112,'Nauru','en'),(113,113,'Navajo','en'),(114,114,'Ndebel','en'),(115,115,'Ndebel','en'),(116,116,'Ndonga','en'),(117,117,'Nepali','en'),(118,118,'Norwegian','en'),(119,119,'Chichewa','en'),(120,120,'Occitan','en'),(121,121,'Ojibwa','en'),(122,122,'Oriya','en'),(123,123,'Oromo','en'),(124,124,'Ossetian','en'),(125,125,'Panjabi','en'),(126,126,'Persian','en'),(127,127,'Pali','en'),(128,128,'Polish','en'),(129,129,'Portuguese','en'),(130,130,'Pushto','en'),(131,131,'Quechua','en'),(132,132,'Romansh','en'),(133,133,'Romanian','en'),(134,134,'Rundi','en'),(135,135,'Russian','en'),(136,136,'Sango','en'),(137,137,'Sanskrit','en'),(138,138,'Sinhala','en'),(139,139,'Slovak','en'),(140,140,'Slovenian','en'),(141,141,'Northern Sami','en'),(142,142,'Samoan','en'),(143,143,'Shona','en'),(144,144,'Sindhi','en'),(145,145,'Somali','en'),(146,146,'Soth','en'),(147,147,'Spanish','en'),(148,148,'Sardinian','en'),(149,149,'Serbian','en'),(150,150,'Swati','en'),(151,151,'Sundanese','en'),(152,152,'Swahili','en'),(153,153,'Swedish','en'),(154,154,'Tahitian','en'),(155,155,'Tamil','en'),(156,156,'Tatar','en'),(157,157,'Telugu','en'),(158,158,'Tajik','en'),(159,159,'Tagalog','en'),(160,160,'Thai','en'),(161,161,'Tibetan','en'),(162,162,'Tigrinya','en'),(163,163,'Tonga','en'),(164,164,'Tswana','en'),(165,165,'Tsonga','en'),(166,166,'Turkmen','en'),(167,167,'Turkish','en'),(168,168,'Twi','en'),(169,169,'Uighur','en'),(170,170,'Ukrainian','en'),(171,171,'Urdu','en'),(172,172,'Uzbek','en'),(173,173,'Venda','en'),(174,174,'Vietnamese','en'),(175,175,'Welsh','en'),(176,176,'Walloon','en'),(177,177,'Wolof','en'),(178,178,'Xhosa','en'),(179,179,'Yiddish','en'),(180,180,'Yoruba','en'),(181,181,'Zhuang','en'),(182,182,'Zulu','en');
CREATE TABLE `xlite_languages` (
`lng_id` int(11) NOT NULL AUTO_INCREMENT,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
`code3` char(3) COLLATE utf8_unicode_ci NOT NULL,
`r2l` tinyint(1) NOT NULL,
`added` tinyint(1) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`module` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lng_id`),
UNIQUE KEY `UNIQ_3940C19DD7077436` (`lng_id`),
UNIQUE KEY `code3` (`code3`),
UNIQUE KEY `code2` (`code`),
KEY `added` (`added`),
KEY `enabled` (`enabled`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_languages` VALUES (1,'aa','aar',0,0,0,NULL),(2,'ab','abk',0,0,0,NULL),(3,'af','afr',0,0,0,NULL),(4,'ak','aka',0,0,0,NULL),(5,'sq','alb',0,0,0,NULL),(6,'am','amh',0,0,0,NULL),(7,'ar','ara',0,0,0,NULL),(8,'an','arg',0,0,0,NULL),(9,'hy','arm',0,0,0,NULL),(10,'as','asm',0,0,0,NULL),(11,'av','ava',0,0,0,NULL),(12,'ae','ave',0,0,0,NULL),(13,'ay','aym',0,0,0,NULL),(14,'az','aze',0,0,0,NULL),(15,'ba','bak',0,0,0,NULL),(16,'bm','bam',0,0,0,NULL),(17,'eu','baq',0,0,0,NULL),(18,'be','bel',0,0,0,NULL),(19,'bn','ben',0,0,0,NULL),(20,'bh','bih',0,0,0,NULL),(21,'bi','bis',0,0,0,NULL),(22,'bs','bos',0,0,0,NULL),(23,'br','bre',0,0,0,NULL),(24,'gb','gbr',0,0,0,'XC\\GbTranslation'),(25,'bg','bul',0,0,0,NULL),(26,'my','bur',0,0,0,NULL),(27,'ca','cat',0,0,0,NULL),(28,'ch','cha',0,0,0,NULL),(29,'ce','che',0,0,0,NULL),(30,'zh','chi',0,0,0,NULL),(31,'cu','chu',0,0,0,NULL),(32,'cv','chv',0,0,0,NULL),(33,'kw','cor',0,0,0,NULL),(34,'co','cos',0,0,0,NULL),(35,'cr','cre',0,0,0,NULL),(36,'cs','cze',0,0,0,NULL),(37,'da','dan',0,0,0,NULL),(38,'dv','div',0,0,0,NULL),(39,'nl','dut',0,0,0,NULL),(40,'dz','dzo',0,0,0,NULL),(41,'en','eng',0,1,1,NULL),(42,'eo','epo',0,0,0,NULL),(43,'et','est',0,0,0,NULL),(44,'ee','ewe',0,0,0,NULL),(45,'fo','fao',0,0,0,NULL),(46,'fj','fij',0,0,0,NULL),(47,'fi','fin',0,0,0,NULL),(48,'fr','fre',0,0,0,'CDev\\FrTranslation'),(49,'fy','fry',0,0,0,NULL),(50,'ff','ful',0,0,0,NULL),(51,'ka','geo',0,0,0,NULL),(52,'de','ger',0,0,0,'CDev\\DeTranslation'),(53,'gd','gla',0,0,0,NULL),(54,'ga','gle',0,0,0,NULL),(55,'gl','glg',0,0,0,NULL),(56,'gv','glv',0,0,0,NULL),(57,'el','gre',0,0,0,NULL),(58,'gn','grn',0,0,0,NULL),(59,'gu','guj',0,0,0,NULL),(60,'ht','hat',0,0,0,NULL),(61,'ha','hau',0,0,0,NULL),(62,'he','heb',0,0,0,NULL),(63,'hz','her',0,0,0,NULL),(64,'hi','hin',0,0,0,NULL),(65,'ho','hmo',0,0,0,NULL),(66,'hr','hrv',0,0,0,NULL),(67,'hu','hun',0,0,0,NULL),(68,'ig','ibo',0,0,0,NULL),(69,'is','ice',0,0,0,NULL),(70,'io','ido',0,0,0,NULL),(71,'ii','iii',0,0,0,NULL),(72,'iu','iku',0,0,0,NULL),(73,'ie','ile',0,0,0,NULL),(74,'ia','ina',0,0,0,NULL),(75,'id','ind',0,0,0,NULL),(76,'ik','ipk',0,0,0,NULL),(77,'it','ita',0,0,0,NULL),(78,'jv','jav',0,0,0,NULL),(79,'ja','jpn',0,0,0,NULL),(80,'kl','kal',0,0,0,NULL),(81,'kn','kan',0,0,0,NULL),(82,'ks','kas',0,0,0,NULL),(83,'kr','kau',0,0,0,NULL),(84,'kk','kaz',0,0,0,NULL),(85,'km','khm',0,0,0,NULL),(86,'ki','kik',0,0,0,NULL),(87,'rw','kin',0,0,0,NULL),(88,'ky','kir',0,0,0,NULL),(89,'kv','kom',0,0,0,NULL),(90,'kg','kon',0,0,0,NULL),(91,'ko','kor',0,0,0,NULL),(92,'kj','kua',0,0,0,NULL),(93,'ku','kur',0,0,0,NULL),(94,'lo','lao',0,0,0,NULL),(95,'la','lat',0,0,0,NULL),(96,'lv','lav',0,0,0,NULL),(97,'li','lim',0,0,0,NULL),(98,'ln','lin',0,0,0,NULL),(99,'lt','lit',0,0,0,NULL),(100,'lb','ltz',0,0,0,NULL),(101,'lu','lub',0,0,0,NULL),(102,'lg','lug',0,0,0,NULL),(103,'mk','mac',0,0,0,NULL),(104,'mh','mah',0,0,0,NULL),(105,'ml','mal',0,0,0,NULL),(106,'mi','mao',0,0,0,NULL),(107,'mr','mar',0,0,0,NULL),(108,'ms','may',0,0,0,NULL),(109,'mg','mlg',0,0,0,NULL),(110,'mt','mlt',0,0,0,NULL),(111,'mn','mon',0,0,0,NULL),(112,'na','nau',0,0,0,NULL),(113,'nv','nav',0,0,0,NULL),(114,'nr','nbl',0,0,0,NULL),(115,'nd','nde',0,0,0,NULL),(116,'ng','ndo',0,0,0,NULL),(117,'ne','nep',0,0,0,NULL),(118,'no','nor',0,0,0,NULL),(119,'ny','nya',0,0,0,NULL),(120,'oc','oci',0,0,0,NULL),(121,'oj','oji',0,0,0,NULL),(122,'or','ori',0,0,0,NULL),(123,'om','orm',0,0,0,NULL),(124,'os','oss',0,0,0,NULL),(125,'pa','pan',0,0,0,NULL),(126,'fa','per',0,0,0,NULL),(127,'pi','pli',0,0,0,NULL),(128,'pl','pol',0,0,0,NULL),(129,'pt','por',0,0,0,NULL),(130,'ps','pus',0,0,0,NULL),(131,'qu','que',0,0,0,NULL),(132,'rm','roh',0,0,0,NULL),(133,'ro','rum',0,0,0,NULL),(134,'rn','run',0,0,0,NULL),(135,'ru','rus',0,0,0,'CDev\\RuTranslation'),(136,'sg','sag',0,0,0,NULL),(137,'sa','san',0,0,0,NULL),(138,'si','sin',0,0,0,NULL),(139,'sk','slo',0,0,0,NULL),(140,'sl','slv',0,0,0,NULL),(141,'se','sme',0,0,0,NULL),(142,'sm','smo',0,0,0,NULL),(143,'sn','sna',0,0,0,NULL),(144,'sd','snd',0,0,0,NULL),(145,'so','som',0,0,0,NULL),(146,'st','sot',0,0,0,NULL),(147,'es','spa',0,0,0,NULL),(148,'sc','srd',0,0,0,NULL),(149,'sr','srp',0,0,0,NULL),(150,'ss','ssw',0,0,0,NULL),(151,'su','sun',0,0,0,NULL),(152,'sw','swa',0,0,0,NULL),(153,'sv','swe',0,0,0,NULL),(154,'ty','tah',0,0,0,NULL),(155,'ta','tam',0,0,0,NULL),(156,'tt','tat',0,0,0,NULL),(157,'te','tel',0,0,0,NULL),(158,'tg','tgk',0,0,0,NULL),(159,'tl','tgl',0,0,0,NULL),(160,'th','tha',0,0,0,NULL),(161,'bo','tib',0,0,0,NULL),(162,'ti','tir',0,0,0,NULL),(163,'to','ton',0,0,0,NULL),(164,'tn','tsn',0,0,0,NULL),(165,'ts','tso',0,0,0,NULL),(166,'tk','tuk',0,0,0,NULL),(167,'tr','tur',0,0,0,NULL),(168,'tw','twi',0,0,0,NULL),(169,'ug','uig',0,0,0,NULL),(170,'uk','ukr',0,0,0,NULL),(171,'ur','urd',0,0,0,NULL),(172,'uz','uzb',0,0,0,NULL),(173,'ve','ven',0,0,0,NULL),(174,'vi','vie',0,0,0,NULL),(175,'cy','wel',0,0,0,NULL),(176,'wa','wln',0,0,0,NULL),(177,'wo','wol',0,0,0,NULL),(178,'xh','xho',0,0,0,NULL),(179,'yi','yid',0,0,0,NULL),(180,'yo','yor',0,0,0,NULL),(181,'za','zha',0,0,0,NULL),(182,'zu','zul',0,0,0,NULL);
CREATE TABLE `xlite_mailchimp_list_group` (
`id` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`list_id` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`title` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`enabled` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_2F783133DAE168B` (`list_id`),
CONSTRAINT `FK_2F783133DAE168B` FOREIGN KEY (`list_id`) REFERENCES `xlite_mailchimp_lists` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_mailchimp_list_group_name` (
`id` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`group_id` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`subscriberCount` int(10) unsigned NOT NULL,
`subscribeByDefault` tinyint(1) NOT NULL,
`enabled` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_5917FD4DFE54D947` (`group_id`),
CONSTRAINT `FK_5917FD4DFE54D947` FOREIGN KEY (`group_id`) REFERENCES `xlite_mailchimp_list_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_mailchimp_list_segments` (
`id` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`list_id` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`created_date` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`static` tinyint(1) NOT NULL,
`useOrdersLastMonth` tinyint(1) NOT NULL,
`ordersLastMonth` int(11) NOT NULL,
`useOrderAmount` tinyint(1) NOT NULL,
`orderAmount` decimal(14,4) NOT NULL,
`useMemberships` tinyint(1) NOT NULL,
`useProducts` tinyint(1) NOT NULL,
`enabled` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_93CC76423DAE168B` (`list_id`),
CONSTRAINT `FK_93CC76423DAE168B` FOREIGN KEY (`list_id`) REFERENCES `xlite_mailchimp_lists` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_mailchimp_lists` (
`id` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`date_created` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`date_updated` int(11) NOT NULL,
`list_rating` decimal(3,2) NOT NULL,
`subscribe_url_short` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`subscribe_url_long` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`member_count` int(11) NOT NULL,
`open_rate` decimal(5,2) NOT NULL,
`click_rate` decimal(5,2) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`subscribeByDefault` tinyint(1) NOT NULL,
`isRemoved` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_mailchimp_profile_interests` (
`group_name_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`profile_id` int(11) NOT NULL,
PRIMARY KEY (`group_name_id`,`profile_id`),
KEY `IDX_BA74923AF717C8DA` (`group_name_id`),
KEY `IDX_BA74923ACCFA12B8` (`profile_id`),
CONSTRAINT `FK_BA74923ACCFA12B8` FOREIGN KEY (`profile_id`) REFERENCES `xlite_profiles` (`profile_id`) ON DELETE CASCADE,
CONSTRAINT `FK_BA74923AF717C8DA` FOREIGN KEY (`group_name_id`) REFERENCES `xlite_mailchimp_list_group_name` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_mailchimp_segment_subscriptions` (
`segment_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`profile_id` int(11) NOT NULL,
PRIMARY KEY (`segment_id`,`profile_id`),
KEY `IDX_CE45B298DB296AAD` (`segment_id`),
KEY `IDX_CE45B298CCFA12B8` (`profile_id`),
CONSTRAINT `FK_CE45B298CCFA12B8` FOREIGN KEY (`profile_id`) REFERENCES `xlite_profiles` (`profile_id`) ON DELETE CASCADE,
CONSTRAINT `FK_CE45B298DB296AAD` FOREIGN KEY (`segment_id`) REFERENCES `xlite_mailchimp_list_segments` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_mailchimp_store` (
`id` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`list_id` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL,
`name` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`main` tinyint(1) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_95CF70793DAE168B` (`list_id`),
CONSTRAINT `FK_95CF70793DAE168B` FOREIGN KEY (`list_id`) REFERENCES `xlite_mailchimp_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_mailchimp_subscriptions` (
`list_id` varchar(32) COLLATE utf8_unicode_ci NOT NULL,
`profile_id` int(11) NOT NULL,
PRIMARY KEY (`list_id`,`profile_id`),
KEY `IDX_CF18140A3DAE168B` (`list_id`),
KEY `IDX_CF18140ACCFA12B8` (`profile_id`),
CONSTRAINT `FK_CF18140ACCFA12B8` FOREIGN KEY (`profile_id`) REFERENCES `xlite_profiles` (`profile_id`) ON DELETE CASCADE,
CONSTRAINT `FK_CF18140A3DAE168B` FOREIGN KEY (`list_id`) REFERENCES `xlite_mailchimp_lists` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_measure_dumps` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`data` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`text` longtext COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_measures` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date` int(10) unsigned NOT NULL,
`fsTime` int(10) unsigned NOT NULL,
`dbTime` int(10) unsigned NOT NULL,
`cpuTime` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_membership_coupons` (
`coupon_id` int(10) unsigned NOT NULL,
`membership_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`coupon_id`,`membership_id`),
KEY `IDX_560DE2166C5951B` (`coupon_id`),
KEY `IDX_560DE211FB354CD` (`membership_id`),
CONSTRAINT `FK_560DE211FB354CD` FOREIGN KEY (`membership_id`) REFERENCES `xlite_memberships` (`membership_id`) ON DELETE CASCADE,
CONSTRAINT `FK_560DE2166C5951B` FOREIGN KEY (`coupon_id`) REFERENCES `xlite_coupons` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_membership_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`name` varchar(128) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_571DB741BF396750` FOREIGN KEY (`id`) REFERENCES `xlite_memberships` (`membership_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_membership_translations` VALUES (1,1,'Wholesaler','en'),(2,1,'Оптовый покупатель','ru');
CREATE TABLE `xlite_memberships` (
`membership_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`position` int(11) NOT NULL,
`enabled` tinyint(1) NOT NULL,
PRIMARY KEY (`membership_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_memberships` VALUES (1,10,1);
CREATE TABLE `xlite_menu_quick_flags` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`menu_id` int(10) unsigned DEFAULT NULL,
`submenus_count_all` int(11) NOT NULL,
`submenus_count_enabled` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `UNIQ_B0327DB0CCD7E912` (`menu_id`),
CONSTRAINT `FK_B0327DB0CCD7E912` FOREIGN KEY (`menu_id`) REFERENCES `xlite_menus` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_menu_quick_flags` VALUES (1,3,2,2),(3,1,0,0),(4,2,12,12),(5,4,0,0),(6,5,0,0),(8,6,0,0),(9,7,0,0),(10,8,0,0),(11,9,3,2),(12,10,0,0),(13,11,0,0),(14,12,0,0),(15,14,3,3),(16,13,0,0),(17,15,0,0),(18,16,0,0),(19,17,0,0),(20,18,3,3),(21,19,0,0),(22,20,0,0),(23,21,0,0),(24,22,3,3),(25,23,0,0),(26,24,0,0),(27,25,0,0),(28,26,2,2),(29,27,0,0),(30,28,0,0),(31,29,3,3),(32,30,0,0),(33,31,0,0),(34,32,0,0);
CREATE TABLE `xlite_menu_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),
KEY `ci` (`code`,`id`),
KEY `id` (`id`),
CONSTRAINT `FK_CC54E72BBF396750` FOREIGN KEY (`id`) REFERENCES `xlite_menus` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_menu_translations` VALUES (1,1,'Home','en'),(2,1,'Главная','ru'),(3,1,'主页','zh'),(4,3,'My Account','en'),(5,3,'Мой профиль','ru'),(6,3,'我的账户','zh'),(7,4,'My orders','en'),(8,4,'Мои заказы','ru'),(9,4,'订单(复数)','zh'),(10,5,'My address book','en'),(11,5,'Мои адреса','ru'),(12,5,'地址簿','zh'),(13,6,'Shipping','en'),(14,6,'Доставка','ru'),(15,7,'New!','en'),(16,7,'Новинки','ru'),(17,8,'Coming soon','en'),(18,8,'Скоро в продаже','ru'),(19,9,'Hot deals','en'),(20,9,'Акции','ru'),(21,10,'Sale','en'),(22,10,'Распродажа','ru'),(23,11,'Bestsellers','en'),(24,11,'Бестселлеры','ru'),(25,12,'Special offers','en'),(26,12,'Специальные предложения','ru'),(27,13,'Contact us','en'),(28,13,'Напишите нам','ru'),(29,14,'Categories','en'),(30,14,'Товары','ru'),(31,15,'Apparel','en'),(32,15,'Одежда','ru'),(33,16,'iGoods','en'),(34,16,'Электроника','ru'),(35,17,'Toys','en'),(36,17,'Игрушки','ru'),(37,18,'Offers','en'),(38,18,'Акции','ru'),(39,19,'Sale','en'),(40,19,'Распродажа','ru'),(41,20,'Coming soon','en'),(42,20,'Скоро в продаже','ru'),(43,21,'New!','en'),(44,21,'Новинки','ru'),(45,22,'Info links','en'),(46,22,'Информация','ru'),(47,23,'Shipping','en'),(48,23,'Правила доставки','ru'),(49,24,'Sitemap','en'),(50,24,'Карта сайта','ru'),(51,25,'Terms & Conditions','en'),(52,25,'Условия использования','ru'),(53,26,'Services','en'),(54,26,'Сервисы','ru'),(55,27,'Shipping info','en'),(56,27,'Доставка','ru'),(57,28,'Contact us','en'),(58,28,'Напишите нам','ru'),(59,29,'My X-Cart','en'),(60,29,'Мой X-Cart','ru'),(61,30,'Address book','en'),(62,30,'Мои адреса','ru'),(63,31,'Order list','en'),(64,31,'Мои заказы','ru'),(65,32,'Account details','en'),(66,32,'Личный кабинет','ru');
CREATE TABLE `xlite_menus` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned DEFAULT NULL,
`link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`lpos` int(11) NOT NULL,
`rpos` int(11) NOT NULL,
`depth` int(11) NOT NULL,
`type` varchar(1) COLLATE utf8_unicode_ci NOT NULL,
`position` int(11) NOT NULL,
`enabled` tinyint(1) NOT NULL,
`visibleFor` varchar(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `IDX_AC666883727ACA70` (`parent_id`),
KEY `enabled` (`enabled`,`type`),
KEY `position` (`position`),
CONSTRAINT `FK_AC666883727ACA70` FOREIGN KEY (`parent_id`) REFERENCES `xlite_menus` (`id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_menus` VALUES (1,2,'{home}',2,3,0,'P',100,1,'AL'),(2,NULL,'link',1,64,-1,'P',0,1,'AL'),(3,2,'{my account}',4,9,0,'P',600,1,'L'),(4,3,'?target=order_list',5,6,1,'P',100,1,'L'),(5,3,'?target=address_book',7,8,1,'P',200,1,'L'),(6,2,'shipping.html',10,11,0,'P',200,1,'AL'),(7,2,'{new arrivals}',12,13,0,'P',400,1,'AL'),(8,2,'{coming soon}',14,15,0,'P',500,1,'AL'),(9,2,NULL,16,23,0,'P',150,1,'AL'),(10,9,'{sale}',17,18,1,'P',100,1,'AL'),(11,9,'{bestsellers}',19,20,1,'P',200,1,'AL'),(12,9,'{special offers}',21,22,1,'P',300,0,'AL'),(13,2,'{contact us}',24,25,0,'P',700,1,'AL'),(14,2,NULL,26,33,0,'F',100,1,'AL'),(15,14,'apparel',27,28,1,'F',100,1,'AL'),(16,14,'igoods',29,30,1,'F',200,1,'AL'),(17,14,'toys',31,32,1,'F',300,1,'AL'),(18,2,NULL,34,41,0,'F',200,1,'AL'),(19,18,'{sale}',35,36,1,'F',100,1,'AL'),(20,18,'{coming soon}',37,38,1,'F',200,1,'AL'),(21,18,'{new arrivals}',39,40,1,'F',300,1,'AL'),(22,2,NULL,42,49,0,'F',300,1,'AL'),(23,22,'shipping.html',43,44,1,'F',100,1,'AL'),(24,22,'?target=map',45,46,1,'F',200,1,'AL'),(25,22,'terms-and-conditions.html',47,48,1,'F',300,1,'AL'),(26,2,NULL,50,55,0,'F',400,1,'AL'),(27,26,'shipping.html',51,52,1,'F',100,1,'AL'),(28,26,'{contact us}',53,54,1,'F',200,1,'AL'),(29,2,NULL,56,63,0,'F',500,1,'L'),(30,29,'?target=address_book',57,58,1,'F',100,1,'L'),(31,29,'?target=order_list',59,60,1,'F',200,1,'L'),(32,29,'?target=profile',61,62,1,'F',300,1,'L');
CREATE TABLE `xlite_module_keys` (
`keyId` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`author` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`keyValue` char(64) COLLATE utf8_unicode_ci NOT NULL,
`keyType` int(11) NOT NULL,
`xcnPlan` bigint(20) NOT NULL,
`keyData` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
`active` tinyint(1) NOT NULL,
PRIMARY KEY (`keyId`),
UNIQUE KEY `an` (`author`,`name`,`xcnPlan`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_modules` (
`moduleID` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`author` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`authorEmail` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`enabled` tinyint(1) NOT NULL,
`installed` tinyint(1) NOT NULL,
`yamlLoaded` tinyint(1) NOT NULL,
`date` int(11) NOT NULL,
`rating` decimal(14,4) NOT NULL,
`votes` int(11) NOT NULL,
`downloads` int(11) NOT NULL,
`price` decimal(14,2) NOT NULL,
`currency` varchar(3) COLLATE utf8_unicode_ci NOT NULL,
`majorVersion` varchar(8) COLLATE utf8_unicode_ci NOT NULL,
`minorVersion` int(11) NOT NULL,
`build` int(11) NOT NULL,
`minorRequiredCoreVersion` int(11) NOT NULL,
`revisionDate` int(11) NOT NULL,
`packSize` bigint(20) NOT NULL,
`xcnPlan` bigint(20) NOT NULL,
`moduleName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`authorName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` longtext COLLATE utf8_unicode_ci NOT NULL,
`iconURL` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`pageURL` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`authorPageURL` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`dependencies` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
`tags` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
`fromMarketplace` tinyint(1) NOT NULL,
`isLanding` tinyint(1) NOT NULL,
`landingPosition` int(11) NOT NULL,
`isSystem` tinyint(1) NOT NULL,
`hasLicense` tinyint(1) NOT NULL,
`editionState` int(11) NOT NULL,
`editions` longtext COLLATE utf8_unicode_ci NOT NULL COMMENT '(DC2Type:array)',
`xbProductId` int(11) NOT NULL,
`isSkin` tinyint(1) NOT NULL,
`private` tinyint(1) NOT NULL,
PRIMARY KEY (`moduleID`),
UNIQUE KEY `moduleVersion` (`author`,`name`,`majorVersion`,`minorVersion`,`fromMarketplace`),
KEY `enabled` (`enabled`),
KEY `date` (`date`),
KEY `downloads` (`downloads`),
KEY `rating` (`rating`),
KEY `ani` (`author`,`name`,`installed`),
KEY `anmm` (`author`,`name`,`majorVersion`,`minorVersion`),
KEY `anf` (`author`,`name`,`fromMarketplace`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_modules` VALUES (1,'PayWithAmazon','Amazon','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',3,0,0,0,0,0,'Pay with Amazon','Amazon Payments','This module enables Pay with Amazon functionality',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(2,'ESelectHPP','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'Moneris (eSELECTplus- Hosted Pay Page)','X-Cart team','Accept credit and debit cards via an online transaction processing engine. USA and Canada',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(3,'AuctionInc','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,3,0,0,0,0,'AuctionInc ShippingCalc','X-Cart team','Provide your customers with accurate \"real-time\" comparative domestic or international shipping rates from\nyour choice of services from Fedex, UPS, USPS and DHL. No carrier accounts required. Full support for your\nitem dimensions and dimensional rates. Shipping origins from any country supported. A host of advanced\nfeatures include: shipping promotions, bundled handling fees, drop-shipping from multiple origins, and a\npackaging engine that accurately predicts appropriate packaging for multiple items and quantities. Free\nmonth-long trial, then subscription to AuctionInc required.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(4,'CustomProductTabs','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Custom product tabs','X-Cart team','Add additional tabs on the product page. Custom name, custom content - html text or product videos, whatever describes your product best.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(5,'UPS','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,2,0,0,0,0,'UPS','X-Cart team','Gets shipping quotes for UPS delivery methods.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(6,'WebmasterKit','XC','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Webmaster Kit','X-Cart team','This module helps web developers. It is used to find specific templates (the same as Webmaster mode functionality in X-Cart 4), SQL logging, benchmarking.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(7,'NextPreviousProduct','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Previous and Next product','X-Cart team','Display \"Previous\" and \"Next product\" links on your product sheets, be it a category page, a search results page or products of a particular brand.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(8,'Pilibaba','XC','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Pilibaba Chinese Checkout','X-Cart team','Start accepting CNY payment and take orders from 1.3 Billion shoppers in China. Support all Chinese debit/credit cards and give merchants the flexibility to convert CNY payment into either USD,EUR or 12 supported currencies.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(9,'SagePay','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Sage Pay (Form)','X-Cart team','Enables taking credit card payments for your online store via SagePay payment gateway (Form protocol method).',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(10,'MultiCurrency','XC','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,1,0,0,0,'Multicurrency','X-Cart team','Show product prices in multiple currencies for your customers around the world.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(11,'Geolocation','XC','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',1,1,0,0,0,0,'Geolocation','X-Cart team','Use free IP geolocation database GeoLite by Maxmind to improve the user experience of non-logged in customers - \"guess\" their country and address for more precise pre-login shipping cost estimation',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(12,'News','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,1,0,0,0,0,'News','X-Cart team','Share the company and products news and updates with your community.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(13,'OgoneEcommerce','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'Ingenico Payment Services (Ogone)','X-Cart team','Enable online payment processing with a level-1 PCI DSS compliant provider based in Europe.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(14,'ThemeTweaker','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Theme tweaker','X-Cart team','This extension allows you to tweak your store design by adding and editing custom CSS styles and JavaScript code directly in the store back end. Also you can upload images to link them from your CSS styles.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(15,'ProductVariants','XC','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,2,0,0,0,'Product Variants','X-Cart team','Allows to manage products variants.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(16,'Upselling','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Related Products','X-Cart team','This module gives you the ability to add a list of products which will be offered along with the product being viewed. You may use this feature to promote products, e.g. making them related or recommended.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(17,'NewsletterSubscriptions','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,3,0,0,0,0,'Newsletter subscriptions','X-Cart team','The module adds a sign up form into your site footer inviting your customers to subscribe for your company newsletters. The list of subscribers is stored in the admin back-end and can also be forwarded to Mailchimp.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(18,'CrispWhiteSkin','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,2,0,0,0,'Crisp White skin','X-Cart team','Light and clean skin developed in minimalist style and combining flat and material design will make your store look clean and modern.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,1,0),(19,'Add2CartPopup','XC','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',1,4,0,0,0,0,'Add to Cart Popup','X-Cart team','Adds a promotional popup dialog that is displayed after a customer adds a product to cart.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(20,'Sitemap','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'Site Map','X-Cart team','Enable a sitemap on your site for easier customers\' navigation.The sitemap can include categories and static pages.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(21,'FroalaEditor','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',0,0,1,0,0,0,'Froala WYSIWYG editor integration','X-Cart team','Enables Froala WYSIWYG editor for editing product and category descriptions.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(22,'EPDQ','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'Barclaycard ePDQ e-Commerce','X-Cart team','Enables taking payments for your online store via Barclaycard ePDQ e-Commerce payment system (Basic e-Commerce integration).',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(23,'BulkEditing','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Bulk Editing','X-Cart team','The module allows to edit products in bulk. Choose products for editing and select the parameter that needs to be updated for them.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(24,'FastLaneCheckout','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Fast Lane Checkout','X-Cart team','Modern multi-step checkout asks for a separate piece of information at a separate step. As a result, it looks looks clean for customers and seems secure and easy to fill in.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(25,'IdealPayments','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'iDEAL Payments','X-Cart team','Enables taking credit card payments for your online store via iDEAL payment system.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(26,'UpdateInventory','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,1,0,0,0,0,'Update Inventory','X-Cart team','Allows to update products quantity via CSV simple file.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(27,'FreeShipping','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,3,0,0,0,0,'Free Shipping and Shipping freights','X-Cart team','Attract more customers by offering Free Shipping. Mark the products that are shipped for free. Add a possibility to specify shipping freight to products.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(28,'ColorSchemes','XC','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Color Schemes','X-Cart team','This module adds three new color schemes to the base X-Cart design theme.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,1,0),(29,'MailChimp','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,2,0,0,0,'MailChimp Integration with E-commerce support','X-Cart team','MailChimp is an email marketing service with powerful tools to manage your email campaigns and subscribers while gathering advanced analytics information on your campaign performance.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(30,'ProductFilter','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,2,0,0,0,'Product Filter','X-Cart team','Allows customers to filter products.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(31,'Stripe','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'Stripe','X-Cart team','Enables taking credit card payments for your online store via Stripe',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(32,'Reviews','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Product reviews','X-Cart team','Adds an ability to add products reviews and manage them in admin area',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(33,'CanadaPost','XC','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,1,0,0,0,0,'Canada Post','X-Cart team','Gets shipping quotes for Canada Post delivery methods.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(34,'Paypal','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',3,0,0,0,0,0,'PayPal','X-Cart team','Enables taking payments for your online store via PayPal services.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(35,'Bestsellers','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Bestsellers','X-Cart team','Lists best-selling products at any place of the customer interface.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(36,'Wholesale','CDev','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',1,2,0,0,0,0,'Wholesale','X-Cart team','Enables wholesale pricing depending on product quantity and customer membership level. Also the module allows you to set the minimum purchase quantity per membership level.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(37,'USPS','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'U.S.P.S.','X-Cart team','Gets shipping quotes for USPS delivery methods.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(38,'UserPermissions','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'User permissions','X-Cart team','Allows you to restrict access to backend functions to only those employees who need them. You can define administrator roles and configure which groups of back-end functions are available to users having these roles.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(39,'Egoods','CDev','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',1,1,0,0,0,0,'E-goods','X-Cart team','Allows to sell files that customers can download after the purchase. Requires to have the FileAttachments module priorly installed and enabled.',NULL,'','','a:1:{i:0;s:20:\"CDev\\FileAttachments\";}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(40,'GoogleAnalytics','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Google Analytics','X-Cart team','Enables tracking and analyzing your website e-commerce statistics with Google Analytics.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(41,'SocialLogin','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Social Login','X-Cart team','Enables authentication via OAuth 2.0 providers (Google & Facebook).',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(42,'XPaymentsConnector','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'X-Payments connector','X-Cart team','PCI compliant credit card processing through major payment gateways without redirects that allows PCI compliant credit card storing for re-using and subscriptions. X-Payments integrates with over 40 payment providers including but not limited to: PayPal, BrainTree, Authorize.Net AIM/CIM, Chase Paymentech, CyberSource, Elavon, Moneris (former eSelect), First Data, Intuit Quickbooks, Ogone, Sage Pay, Realex, WorldPay and many others.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(43,'Quantum','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'QuantumGateway','X-Cart team','Enables taking credit card payments for your online store via QuantumGateway (QGWdatabase Engine API).',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(44,'XMLSitemap','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'XML sitemap','X-Cart team','Module generates an XML file with information for search engines.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(45,'Moneybookers','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,2,0,0,0,0,'Skrill','X-Cart team','The module allows you to accept payments using cards, over 20 local payment methods and more than 80 banks (iframe integration method)',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(46,'SimpleCMS','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Simple CMS','X-Cart team','Allows you to add a company logo and favicon, modify the primary website menu, edit the footer links and add custom website pages. When used with TinyMCE and Go Social modules, allows you to configure OpenGraph tags for your pages and edit their contents in the WYSIWYG mode. The module is incompatible with modules integrating your store with third-party CMS solutions.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(47,'ContactUs','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Contact us','X-Cart team','Enables \"Contact us\" page',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(48,'SalesTax','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,2,0,0,0,'Sales Tax','X-Cart team','Setup the rules for calculating sales tax. The rates can depend on product classes, customer\'s membership levels and address. When several tax rates are applicable to one product, you can specify the priority of their application.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(49,'VolumeDiscounts','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'Volume Discounts','X-Cart team','Enables discounts depending on the total price of ordered products and the customer membership level.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(50,'TwoCheckout','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'2Checkout.com','X-Cart team','Enables taking credit card payments for your online store via 2Checkout.com payment gateway.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(51,'ProductAdvisor','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Product Advisor','X-Cart team','Adds specific products lists to the catalog: new arrivals, coming soon, recently viewed etc.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(52,'PINCodes','CDev','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',1,1,0,0,0,0,'PIN Codes','X-Cart team','Allows to sell PIN codes attached to products.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(53,'Sale','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Sale','X-Cart team','Module allows you set special sale prices for certain products.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(54,'FeaturedProducts','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Featured Products','X-Cart team','Shows your best and most profitable products to customers.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(55,'FedEx','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'FedEx','X-Cart team','Gets shipping quotes for FedEx delivery methods.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(56,'GoSocial','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Go Social','X-Cart team','Adds social media sharing functions like Facebook comments, OpenGraph meta tags and share buttons for product pages.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(57,'AustraliaPost','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,1,0,0,0,0,'Australia Post','X-Cart team','Gets shipping quotes for Australia Post delivery methods.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(58,'AuthorizeNet','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Authorize.Net SIM','X-Cart team','Enables taking credit card payments for your online store via AuthorizeNet payment gateway (Server Integration Method).',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(59,'Coupons','CDev','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,1,0,0,0,0,'Coupons','X-Cart team','Allows to configure discounts which customers can activate in your shop with a coupon code',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(60,'FileAttachments','CDev','',0,1,0,1480536628,0.0000,0,0,0.00,'USD','5.3',1,0,0,0,0,0,'File attachments','X-Cart team','Allows you to attach files to goods that can be downloaded from the detailed pages of this product by visitors.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(61,'FlyoutCategoriesMenu','QSL','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',1,2,0,0,0,0,'Flyout Categories Menu','Qualiteam Software','The module changes the default categories menu in the Customer area by introducing a flyout expanding menu style',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(62,'CloudSearch','QSL','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'CloudSearch','Qualiteam','CloudSearch is a SaaS solution that integrates with X-Cart 5 to enable dynamic, real-time product search with highly relevant search results. Power up your store with enterprise-class search technologies for better conversion!',NULL,'http://www.x-cart.com/extensions/addons/cloudsearch.html?sl=en','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(63,'SpecialOffersBase','QSL','',1,1,1,1480536628,0.0000,0,0,0.00,'USD','5.3',2,0,0,0,0,0,'Special Offers (base)','Qualiteam Software','This is the base module that allows other modules to add different types of special offers.',NULL,'','','a:0:{}','a:0:{}',0,0,0,0,0,0,'a:0:{}',0,0,0),(64,'AmazonS3Images','CDev','[email protected]',0,0,0,0,0.0000,0,960,0.00,'USD','5.3',2,0,0,1397073600,13189120,1,'Amazon S3 images','X-Cart team','Gives you the ability to move all your category and product images over to the \"cloud\" storage services offered by Amazon. This reduces your website\'s bandwidth and allows you to use your Amazon CloudFront CDN account to get your images loaded in customers\' browsers really fast.','http://my.x-cart.com/sites/default/files/addons/CDev/AmazonS3Images/icon.png','https://market.x-cart.com/addons/amazon-s3-images.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:14:\"Administration\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(65,'AustraliaPost','CDev','[email protected]',0,0,0,0,0.0000,0,9072,0.00,'USD','5.3',1,1,0,1398693926,102400,0,'Australia Post','X-Cart team','Gets shipping quotes for Australia Post delivery methods.','http://my.x-cart.com/sites/default/files/addons/CDev/AustraliaPost/icon.png','https://market.x-cart.com/addons/australia-post.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(66,'AuthorizeNet','CDev','[email protected]',0,0,0,0,0.0000,0,10431,0.00,'USD','5.3',2,0,0,1397141922,71680,0,'Authorize.Net SIM','X-Cart team','Enables taking credit card payments for your online store via AuthorizeNet payment gateway (Server Integration Method).','http://my.x-cart.com/sites/default/files/addons/CDev/AuthorizeNet/icon.png','https://market.x-cart.com/addons/authorize-net-sim.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(67,'Bestsellers','CDev','[email protected]',0,0,0,0,0.0000,0,11101,0.00,'USD','5.3',2,0,0,1397141922,71680,0,'Bestsellers','X-Cart team','Lists best-selling products at any place of the customer interface.','http://my.x-cart.com/sites/default/files/addons/CDev/Bestsellers/icon.png','https://market.x-cart.com/addons/bestsellers.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(68,'Catalog','CDev','[email protected]',0,0,0,0,0.0000,0,7345,0.00,'USD','5.3',1,0,0,1397073600,61440,0,'Catalog','X-Cart team','Disables checkout and makes your website a plain catalog of products which customers can browse but can\'t buy online.','http://my.x-cart.com/sites/default/files/addons/CDev/Catalog/iconAlt.png','https://market.x-cart.com/addons/catalog.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(69,'ContactUs','CDev','[email protected]',0,0,0,0,0.0000,0,9469,0.00,'USD','5.3',2,0,0,1400529600,102400,0,'Contact us','X-Cart team','Enables \"Contact us\" page','http://my.x-cart.com/sites/default/files/addons/CDev/ContactUs/icon.png','https://market.x-cart.com/addons/contact-us.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:14:\"Administration\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(70,'Coupons','CDev','[email protected]',0,0,0,0,0.0000,0,9590,0.00,'USD','5.3',1,1,0,1400529600,266240,1,'Coupons','X-Cart team','Allows to configure discounts which customers can activate in your shop with a coupon code','http://my.x-cart.com/sites/default/files/addons/CDev/Coupons/icon.png','https://market.x-cart.com/addons/discount-coupons.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(71,'DeTranslation','CDev','[email protected]',0,0,0,0,0.0000,0,3472,0.00,'USD','5.3',2,0,0,1398628800,235520,0,'Translation: German','X-Cart team','German translation pack. This translation is a contribution of X-Cart community. Kindly shared by one of X-Cart merchants for free, this translation may contain some non-translated labels which appeared in later versions of X-Cart 5 or which were added by custom modules you installed.','http://my.x-cart.com/sites/default/files/addons/CDev/DeTranslation/icon.png','https://market.x-cart.com/addons/german-translation.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(72,'DrupalConnector','CDev','[email protected]',0,0,0,0,0.0000,0,1583,0.00,'USD','5.2',6,0,0,1398693927,337920,0,'Drupal Connector [DEPRECATED]','X-Cart team','Exports X-Cart widgets and pages to Drupal.','http://my.x-cart.com/sites/default/files/addons/CDev/DrupalConnector/iconAlt.png','https://market.x-cart.com/addons/drupal-connector.html','','a:0:{}','a:1:{i:0;s:14:\"Administration\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(73,'Egoods','CDev','[email protected]',0,0,0,0,0.0000,0,5349,0.00,'USD','5.3',1,1,0,1398628800,153600,1,'E-goods','X-Cart team','Allows to sell files that customers can download after the purchase. Requires to have the FileAttachments module priorly installed and enabled.','http://my.x-cart.com/sites/default/files/addons/CDev/Egoods/iconAlt.png','https://market.x-cart.com/addons/e-goods.html','','a:1:{i:0;s:20:\"CDev\\FileAttachments\";}','a:3:{i:0;s:11:\"Fulfillment\";i:1;s:18:\"Catalog Management\";i:2;s:8:\"Shipping\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(74,'FeaturedProducts','CDev','[email protected]',0,0,0,0,0.0000,0,9484,0.00,'USD','5.3',2,0,0,1400529600,133120,0,'Featured Products','X-Cart team','Shows your best and most profitable products to customers.','http://my.x-cart.com/sites/default/files/addons/CDev/FeaturedProducts/icon.png','https://market.x-cart.com/addons/featured-products.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:21:\"Search and Navigation\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(75,'FileAttachments','CDev','[email protected]',0,0,0,0,0.0000,0,7136,0.00,'USD','5.3',1,0,0,1400529600,133120,1,'File attachments','X-Cart team','Allows you to attach files to goods that can be downloaded from the detailed pages of this product by visitors.','http://my.x-cart.com/sites/default/files/addons/CDev/FileAttachments/iconAlt.png','https://market.x-cart.com/addons/file-attachments.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(76,'FrTranslation','CDev','[email protected]',0,0,0,0,0.0000,0,4006,0.00,'USD','5.3',2,0,0,1398628800,225280,0,'Translation: French','X-Cart team','French translation pack. This translation is a contribution of X-Cart community. Kindly shared by one of X-Cart merchants for free, this translation may contain some non-translated labels which appeared in later versions of X-Cart 5 or which were added by custom modules you installed.','http://my.x-cart.com/sites/default/files/addons/CDev/FrTranslation/icon.png','https://market.x-cart.com/addons/french-translation.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(77,'GoogleAnalytics','CDev','[email protected]',0,0,0,0,0.0000,0,9215,0.00,'USD','5.3',2,0,0,1397073600,256000,0,'Google Analytics','X-Cart team','Enables tracking and analyzing your website e-commerce statistics with Google Analytics.','http://my.x-cart.com/sites/default/files/addons/CDev/GoogleAnalytics/icon.png','https://market.x-cart.com/addons/google-analytics.html','','a:0:{}','a:2:{i:0;s:10:\"Statistics\";i:1;s:3:\"SEO\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(78,'GoSocial','CDev','[email protected]',0,0,0,0,0.0000,0,12069,0.00,'USD','5.3',2,0,0,1400529600,204800,0,'Go Social','X-Cart team','Adds social media sharing functions like Facebook comments, OpenGraph meta tags and share buttons for product pages.','http://my.x-cart.com/sites/default/files/addons/CDev/GoSocial/icon.png','https://market.x-cart.com/addons/go-social.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(79,'MarketPrice','CDev','[email protected]',0,0,0,0,0.0000,0,8002,0.00,'USD','5.3',1,2,0,1398628800,71680,0,'Market price','X-Cart team','Adds support for the product market price.','http://my.x-cart.com/sites/default/files/addons/CDev/MarketPrice/icon.png','https://market.x-cart.com/addons/market-price.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(80,'Moneybookers','CDev','[email protected]',0,0,0,0,0.0000,0,8507,0.00,'USD','5.3',1,2,0,1398685587,368640,0,'Skrill','X-Cart team','The module allows you to accept payments using cards, over 20 local payment methods and more than 80 banks (iframe integration method)','http://my.x-cart.com/sites/default/files/addons/CDev/Moneybookers/icon.png','https://market.x-cart.com/addons/skrill.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(81,'PaypalWPS','CDev','[email protected]',0,0,0,0,0.0000,0,2084,0.00,'USD','5.1',4,0,0,1400583771,81920,0,'PayPal (outside of the US) [DEPRECATED]','X-Cart team','Enables taking credit card payments for your online store via PayPal (Website Payments Standard).','http://my.x-cart.com/sites/default/files/addons/CDev/PaypalWPS/iconAlt.png','http://www.x-cart.com/extensions/addons/paypal-standard.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(82,'ProductAdvisor','CDev','[email protected]',0,0,0,0,0.0000,0,8283,0.00,'USD','5.3',2,0,0,1398628800,204800,1,'Product Advisor','X-Cart team','Adds specific products lists to the catalog: new arrivals, coming soon, recently viewed etc.','http://my.x-cart.com/sites/default/files/addons/CDev/ProductAdvisor/icon.png','https://market.x-cart.com/addons/product-advisor.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:21:\"Search and Navigation\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(83,'ProductOptions','CDev','[email protected]',0,0,0,0,0.0000,0,485,0.00,'USD','5.0',2,0,0,1397073600,317440,0,'Product Options [DEPRECATED]','X-Cart team','In the earlier versions of X-Cart the module used to allow a customer to choose options when buying a product. Since version 5.0 it is recommended to use built-in interface for attributes configuration and the \"Product Variants\" module for this purpose.','http://my.x-cart.com/sites/default/files/addons/CDev/ProductOptions/iconAlt.png','','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(84,'Quantum','CDev','[email protected]',0,0,0,0,0.0000,0,4835,0.00,'USD','5.3',1,0,0,1397141931,40960,0,'QuantumGateway','X-Cart team','Enables taking credit card payments for your online store via QuantumGateway (QGWdatabase Engine API).','http://my.x-cart.com/sites/default/files/addons/CDev/Quantum/iconAlt.png','https://market.x-cart.com/addons/quantum-gateway.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(85,'RuTranslation','CDev','[email protected]',0,0,0,0,0.0000,0,4256,0.00,'USD','5.3',2,0,0,1400529600,757760,0,'Translation: Russian','X-Cart team','Russian translation pack','http://my.x-cart.com/sites/default/files/addons/CDev/RuTranslation/icon.png','https://market.x-cart.com/addons/russian-translation.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(86,'SalesTax','CDev','[email protected]',0,0,0,0,0.0000,0,11235,0.00,'USD','5.3',2,0,2,1400529600,143360,0,'Sales Tax','X-Cart team','Setup the rules for calculating sales tax. The rates can depend on product classes, customer\'s membership levels and address. When several tax rates are applicable to one product, you can specify the priority of their application.','http://my.x-cart.com/sites/default/files/addons/CDev/SalesTax/icon.png','https://market.x-cart.com/addons/sales-tax.html','','a:0:{}','a:1:{i:0;s:5:\"Taxes\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(87,'Sale','CDev','[email protected]',0,0,0,0,0.0000,0,9067,0.00,'USD','5.3',2,0,0,1400529600,194560,1,'Sale','X-Cart team','Module allows you set special sale prices for certain products.','http://my.x-cart.com/sites/default/files/addons/CDev/Sale/icon.png','https://market.x-cart.com/addons/sale.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(88,'SimpleCMS','CDev','[email protected]',0,0,0,0,0.0000,0,17932,0.00,'USD','5.3',2,0,0,1400583253,317440,0,'Simple CMS','X-Cart team','Allows you to add custom website pages and modify the primary website menu and the footer links. After installing additional TinyMCE and Go Social modules you can configure OpenGraph tags for your pages and edit their contents in the WYSIWYG mode. This module is incompatible with modules integrating your store with third-party CMS solutions.','http://my.x-cart.com/sites/default/files/addons/CDev/SimpleCMS/icon.png','https://market.x-cart.com/addons/simple-cms.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";i:2;s:14:\"Administration\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(89,'SocialLogin','CDev','[email protected]',0,0,0,0,0.0000,0,6493,0.00,'USD','5.3',2,0,0,1398628800,133120,1,'Social Login','X-Cart team','Enables authentication via OAuth 2.0 providers (Google & Facebook).','http://my.x-cart.com/sites/default/files/addons/CDev/SocialLogin/icon.png','https://market.x-cart.com/addons/social-login','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:6:\"Social\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(90,'System','CDev','',0,0,0,0,0.0000,0,326,0.00,'USD','5.1',7,0,0,1398694670,337920,-1,'System','X-Cart team','System module','http://my.x-cart.com/sites/default/files/addons/CDev/System/icon.png','','','a:0:{}','a:0:{}',1,0,0,1,0,0,'a:0:{}',0,0,0),(91,'TinyMCE','CDev','[email protected]',0,0,0,0,0.0000,0,17400,0.00,'USD','5.3',1,3,0,1397073600,2590720,0,'TinyMCE integration','X-Cart team','Enables TinyMCE WYSIWYG editor for editing product and category descriptions.','http://my.x-cart.com/sites/default/files/addons/CDev/TinyMCE/icon.png','https://market.x-cart.com/addons/tinymce.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(92,'TwoCheckout','CDev','[email protected]',0,0,0,0,0.0000,0,6069,0.00,'USD','5.3',1,0,0,1397074545,51200,0,'2Checkout.com','X-Cart team','Enables taking credit card payments for your online store via 2Checkout.com payment gateway.','http://my.x-cart.com/sites/default/files/addons/CDev/TwoCheckout/iconAlt.png','https://market.x-cart.com/addons/2checkout.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(93,'UserPermissions','CDev','[email protected]',0,0,0,0,0.0000,0,4700,0.00,'USD','5.3',1,0,0,1397073600,81920,1,'User permissions','X-Cart team','Allows you to restrict access to backend functions to only those employees who need them. You can define administrator roles and configure which groups of back-end functions are available to users having these roles.','http://my.x-cart.com/sites/default/files/addons/CDev/UserPermissions/iconAlt.png','https://market.x-cart.com/addons/user-permissions.html','','a:0:{}','a:3:{i:0;s:14:\"Administration\";i:1;s:11:\"Fulfillment\";i:2;s:18:\"Catalog Management\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(94,'USPS','CDev','[email protected]',0,0,0,0,0.0000,0,12838,0.00,'USD','5.3',1,0,0,1398693931,153600,0,'U.S.P.S.','X-Cart team','Gets shipping quotes for USPS delivery methods.','http://my.x-cart.com/sites/default/files/addons/CDev/USPS/iconAlt.png','https://market.x-cart.com/addons/usps.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(95,'VAT','CDev','[email protected]',0,0,0,0,0.0000,0,5165,0.00,'USD','5.3',2,0,2,1400581250,296960,0,'Value Added Tax / Goods and Services Tax','X-Cart team','Define the value added tax rates for customers (VAT, GST). Set up different rates based on customer\'s membership level and address. Tax exemption based on customer\'s VAT ID is supported.','http://my.x-cart.com/sites/default/files/addons/CDev/VAT/icon.png','https://market.x-cart.com/addons/uk-vat.html','','a:0:{}','a:1:{i:0;s:5:\"Taxes\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(96,'VolumeDiscounts','CDev','[email protected]',0,0,0,0,0.0000,0,5597,0.00,'USD','5.3',1,0,0,1400529600,122880,1,'Volume Discounts','X-Cart team','Enables discounts depending on the total price of ordered products and the customer membership level.','http://my.x-cart.com/sites/default/files/addons/CDev/VolumeDiscounts/iconAlt.png','https://market.x-cart.com/addons/volume-discounts.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(97,'Wholesale','CDev','[email protected]',0,0,0,0,0.0000,0,9738,0.00,'USD','5.3',1,2,0,1400529600,276480,1,'Wholesale','X-Cart team','Enables wholesale pricing depending on product quantity and customer membership level. Also the module allows you to set the minimum purchase quantity per membership level.','http://my.x-cart.com/sites/default/files/addons/CDev/Wholesale/icon.png','https://market.x-cart.com/addons/wholesale.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(98,'XMLSitemap','CDev','[email protected]',0,0,0,0,0.0000,0,11454,0.00,'USD','5.3',2,0,0,1400529600,163840,0,'XML sitemap','X-Cart team','Module generates an XML file with information for search engines.','http://my.x-cart.com/sites/default/files/addons/CDev/XMLSitemap/icon.png','https://market.x-cart.com/addons/xml-sitemap.html','','a:0:{}','a:1:{i:0;s:3:\"SEO\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(99,'XMLSitemapDrupal','CDev','[email protected]',0,0,0,0,0.0000,0,1219,0.00,'USD','5.2',1,0,0,1397141926,51200,0,'XML sitemap for Drupal [DEPRECATED]','X-Cart team','Module generates an XML file with information for search engines.','http://my.x-cart.com/sites/default/files/addons/CDev/XMLSitemapDrupal/iconAlt.png','http://www.x-cart.com/extensions/addons/xml-sitemap-drupal.html','','a:2:{i:0;s:20:\"CDev\\DrupalConnector\";i:1;s:15:\"CDev\\XMLSitemap\";}','a:2:{i:0;s:9:\"Marketing\";i:1;s:14:\"Administration\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(100,'Paypal','CDev','[email protected]',0,0,0,0,0.0000,0,19686,0.00,'USD','5.3',3,0,0,1400529600,870400,0,'PayPal','X-Cart team','Enables taking payments for your online store via PayPal services.','http://my.x-cart.com/sites/default/files/addons/CDev/Paypal/icon.png','https://market.x-cart.com/addons/paypal.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(101,'XPaymentsConnector','CDev','[email protected]',0,0,0,0,0.0000,0,14737,0.00,'USD','5.3',1,0,0,1398685801,1413632,0,'X-Payments connector','X-Cart team','PCI compliant credit card processing through major payment gateways without redirects that allows PCI compliant credit card storing for re-using and subscriptions. X-Payments integrates with over 40 payment providers including but not limited to: PayPal, BrainTree, Authorize.Net AIM/CIM, Chase Paymentech, CyberSource, Elavon, Moneris (former eSelect), First Data, Intuit Quickbooks, Ogone, Sage Pay, Realex, WorldPay and many others.','http://my.x-cart.com/sites/default/files/addons/CDev/XPaymentsConnector/iconAlt.png','https://market.x-cart.com/addons/xpayments-connector.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(102,'ThemeTweaker','XC','[email protected]',0,0,0,0,0.0000,0,13368,0.00,'USD','5.3',2,0,0,1400583254,4024320,0,'Theme tweaker','X-Cart team','This extension allows you to tweak your store design by adding and editing custom CSS styles and JavaScript code directly in the store back end. Also you can upload images to link them from your CSS styles.','http://my.x-cart.com/sites/default/files/addons/XC/ThemeTweaker/icon.png','https://market.x-cart.com/addons/theme-tweaker.html','','a:0:{}','a:2:{i:0;s:13:\"Design tweaks\";i:1;s:14:\"Administration\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(103,'InstantSearch','CDev','[email protected]',0,0,0,0,0.0000,0,1383,0.00,'USD','5.1',2,0,0,1398628800,81920,1,'Instant Search [DEPRECATED]','X-Cart team','Starting from v.5.2 the module won\'t be supported. Consider the \"Cloud Search\" instead. More details: http://blog.x-cart.com/cloud-search-goes-free-to-replace-instant-search.html','http://my.x-cart.com/sites/default/files/addons/CDev/InstantSearch/iconAlt.png','http://www.x-cart.com/extensions/addons/instant-search.html','','a:0:{}','a:1:{i:0;s:21:\"Search and Navigation\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(104,'ProductComparison','XC','[email protected]',0,0,0,0,0.0000,0,5505,0.00,'USD','5.3',2,0,0,1400529600,143360,1,'Product Comparison','X-Cart team','Allows customers to compare products.','http://my.x-cart.com/sites/default/files/addons/XC/ProductComparison/icon.png','https://market.x-cart.com/addons/product-comparison.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:21:\"Search and Navigation\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(105,'ProductFilter','XC','[email protected]',0,0,0,0,0.0000,0,9277,0.00,'USD','5.3',2,0,2,1398691782,245760,1,'Product Filter','X-Cart team','Allows customers to filter products.','http://my.x-cart.com/sites/default/files/addons/XC/ProductFilter/icon.png','https://market.x-cart.com/addons/product-filter.html','','a:0:{}','a:2:{i:0;s:21:\"Search and Navigation\";i:1;s:15:\"User experience\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(106,'RESTAPI','XC','[email protected]',0,0,0,0,0.0000,0,7452,0.00,'USD','5.3',2,0,0,1397141927,163840,0,'REST API','X-Cart team','Allows external applications to work with your store data via REST API.','http://my.x-cart.com/sites/default/files/addons/XC/RESTAPI/icon.png','https://market.x-cart.com/addons/rest-api.html','','a:0:{}','a:1:{i:0;s:11:\"Development\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(107,'FedEx','CDev','[email protected]',0,0,0,0,0.0000,0,10119,0.00,'USD','5.3',1,0,0,1398693928,133120,0,'FedEx','X-Cart team','Gets shipping quotes for FedEx delivery methods.','http://my.x-cart.com/sites/default/files/addons/CDev/FedEx/iconAlt.png','https://market.x-cart.com/addons/fedex.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(108,'CanadaPost','XC','[email protected]',0,0,0,0,0.0000,0,8410,0.00,'USD','5.3',1,1,0,1400605539,860160,0,'Canada Post','X-Cart team','Gets shipping quotes for Canada Post delivery methods.','http://my.x-cart.com/sites/default/files/addons/XC/CanadaPost/icon.png','https://market.x-cart.com/addons/canadapost.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(109,'ColorSchemes','XC','[email protected]',0,0,0,0,0.0000,0,12321,0.00,'USD','5.3',2,0,0,1400529600,1474560,0,'Color Schemes','X-Cart team','This module adds three new color schemes to the base X-Cart design theme.','http://my.x-cart.com/sites/default/files/addons/XC/ColorSchemes/icon.png','https://market.x-cart.com/addons/color-schemes.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(110,'UPS','XC','[email protected]',0,0,0,0,0.0000,0,11116,0.00,'USD','5.3',1,2,0,1398693934,143360,0,'UPS','X-Cart team','Gets shipping quotes for UPS delivery methods.','http://my.x-cart.com/sites/default/files/addons/XC/UPS/icon.png','https://market.x-cart.com/addons/ups.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(111,'GiftCertificates','RedSqui','[email protected]',0,0,0,0,0.0000,0,823,75.00,'USD','5.3',4,0,0,1395259200,708608,0,'GiftCertificates','Vladimir Serov','Enables customers to buy and use gift certificates.','http://my.x-cart.com/sites/default/files/addons/RedSqui/GiftCertificates/iconAlt.png','https://market.x-cart.com/addons/gift-certificates.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',536881108,0,0),(112,'Justuno','Justuno','[email protected]',0,0,0,0,0.0000,0,37,0.00,'USD','5.1',0,0,0,1378713159,44544,0,'Justuno','Justuno','The Social Incentive Platform','http://my.x-cart.com/sites/default/files/addons/Justuno/Justuno/iconAlt.png','https://market.x-cart.com/addons/justuno-for-xcart.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(113,'PINCodes','CDev','[email protected]',0,0,0,0,0.0000,0,6040,0.00,'USD','5.3',1,1,0,1400529600,225280,1,'PIN Codes','X-Cart team','Allows to sell PIN codes attached to products.','http://my.x-cart.com/sites/default/files/addons/CDev/PINCodes/icon.png','https://market.x-cart.com/addons/pin-codes.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(114,'Mobile','XC','[email protected]',0,0,0,0,0.0000,0,2433,249.00,'USD','5.2',20,0,10,1400529600,2503680,0,'Mobile skin','X-Cart team','This module enables the mobile view for your store.','http://my.x-cart.com/sites/default/files/addons/XC/Mobile/iconAlt.png','https://market.x-cart.com/addons/mobile.html','','a:0:{}','a:2:{i:0;s:15:\"Mobile Commerce\";i:1;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',536881124,0,0),(115,'ProductVariants','XC','[email protected]',0,0,0,0,0.0000,0,12317,0.00,'USD','5.3',2,0,2,1400529600,419840,1,'Product Variants','X-Cart team','Allows to manage products variants.','http://my.x-cart.com/sites/default/files/addons/XC/ProductVariants/icon.png','https://market.x-cart.com/addons/product-variants.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(116,'YandexMetrika','STaM','[email protected]',0,0,0,0,0.0000,0,110,10.00,'USD','5.2',1,0,0,1393617600,41472,0,'Yandex Metrika','STaM LLC','Enables tracking and analyzing your X-Cart website e-commerce statistics with Yandex Metrika.','http://my.x-cart.com/sites/default/files/addons/STaM/YandexMetrika/icon.png','https://market.x-cart.com/addons/yandex-metrics-by-stamllc.html','','a:0:{}','a:2:{i:0;s:10:\"Statistics\";i:1;s:3:\"SEO\";}',1,0,0,0,0,0,'a:0:{}',20604,0,0),(117,'Pay2Pay','STaM','[email protected]',0,0,0,0,0.0000,0,5,79.00,'USD','5.2',2,0,0,1393617600,52224,0,'Pay2Pay','STaM LLC','Enables taking credit card payments for your online store via Pay2Pay payment gateway.','http://my.x-cart.com/sites/default/files/addons/STaM/Pay2Pay/icon.png','https://market.x-cart.com/addons/pay2pay-payment-module-by-stamllc.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',536881120,0,0),(118,'PartnerProgram','STaM','[email protected]',0,0,0,0,0.0000,0,50,240.00,'USD','5.2',6,0,0,1412798400,835584,0,'Partner Program','STaM LLC','Module allows you to add an Affiliate program to your store.','http://my.x-cart.com/sites/default/files/addons/STaM/PartnerProgram/icon.png','https://market.x-cart.com/addons/partner-program-by-stamllc.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,2,0,0,0,'a:0:{}',20588,0,0),(119,'GoogleExperiments','STaM','[email protected]',0,0,0,0,0.0000,0,4,49.90,'USD','5.2',1,0,0,1393617600,27136,0,'Google Experiments','STaM LLC','Enables content experiments support with Google Analytics.','http://my.x-cart.com/sites/default/files/addons/STaM/GoogleExperiments/icon.png','https://market.x-cart.com/addons/google-experiment-module-by-stamllc.html','','a:2:{i:0;s:20:\"CDev\\GoogleAnalytics\";i:1;s:14:\"CDev\\SimpleCMS\";}','a:2:{i:0;s:9:\"Marketing\";i:1;s:3:\"SEO\";}',1,0,0,0,0,0,'a:0:{}',536881119,0,0),(120,'Qiwi','XC','[email protected]',0,0,0,0,0.0000,0,796,0.00,'USD','5.3',1,0,0,1397073600,71680,0,'Qiwi','X-Cart team','Enables receiving payments for your online store via Qiwi payment system.','http://my.x-cart.com/sites/default/files/addons/XC/Qiwi/iconAlt.png','https://market.x-cart.com/addons/qiwi-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(121,'Webmoney','XC','[email protected]',0,0,0,0,0.0000,0,467,0.00,'USD','5.3',1,0,0,1397073600,61440,0,'WebMoney','X-Cart team','Enables receiving payments for your online store via WebMoney payment system','http://my.x-cart.com/sites/default/files/addons/XC/Webmoney/iconAlt.png','https://market.x-cart.com/addons/webmoney-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(122,'Cart2cart','MagneticOne','[email protected]',0,0,0,0,0.0000,0,156,0.00,'USD','5.3',0,2,0,1390248000,133632,0,'Migrate Data to X-Cart','MagneticOne','Allows you to use the Cart2Cart service right out of your store admin panel and install Connection Bridge to transfer your products, orders, customers information and other data from your current shopping cart to X-Cart.','http://my.x-cart.com/sites/default/files/addons/MagneticOne/Cart2cart/iconAlt.png','https://market.x-cart.com/addons/migrate-data-to-x-cart.html','','a:0:{}','a:0:{}',1,0,0,0,1,0,'a:0:{}',0,0,0),(123,'AbandonedCartReminder','QSL','[email protected]',0,0,0,0,0.0000,0,1217,165.00,'USD','5.3',2,0,2,1401086589,393216,0,'Abandoned Cart Reminder','Qualiteam','This module gives unfinished orders a second chance and allows you to remind customers of their abandoned carts by sending an e-mail notification manually or automatically.','http://my.x-cart.com/sites/default/files/addons/QSL/AbandonedCartReminder/iconAlt.png','https://market.x-cart.com/addons/abandoned-cart-reminder.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,1,3,0,1,0,'a:0:{}',536881107,0,0),(124,'Banner','QSL','[email protected]',0,0,0,0,0.0000,0,3367,49.00,'USD','5.3',2,0,0,1401048000,226816,0,'Banner System','Qualiteam','It allows admin to place both images and HTML-code banners anywhere in X-Cart via the special interface in admin area. This module is useful for promoting products, events, offers, etc.','http://my.x-cart.com/sites/default/files/addons/QSL/Banner/icon.png','https://market.x-cart.com/addons/banner-system.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:13:\"Design tweaks\";}',1,0,0,0,1,0,'a:0:{}',536881105,0,0),(125,'ProductFeeds','QSL','[email protected]',0,0,0,0,0.0000,0,875,99.00,'USD','5.3',2,0,2,1400616000,1436160,0,'Product Feeds','Qualiteam','Product Feeds module allows you to export your products into popular comparison shopping websites: Nextag, Pricegrabber, Shopzilla, eBay Commerce Network (shopping.com) and Google Shopping.','http://my.x-cart.com/sites/default/files/addons/QSL/ProductFeeds/iconAlt.png','https://market.x-cart.com/addons/product-feeds.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,1,0,'a:0:{}',536881106,0,0),(126,'FreshGreenTheme','PerceptionSystemPvtLtd','[email protected]',0,0,0,0,0.0000,0,418,0.00,'USD','5.2',0,0,0,1401307200,1229824,0,'Fresh Green','Perception System Pvt. Ltd.','Fresh-Green theme suitable for every type of store. This theme utilizes the power of x-cart next simplicity.','http://my.x-cart.com/sites/default/files/addons/PerceptionSystemPvtLtd/FreshGreenTheme/iconAlt.png','https://market.x-cart.com/addons/fresh-green-theme.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(127,'Add2CartPopup','XC','[email protected]',0,0,0,0,0.0000,0,12815,0.00,'USD','5.3',1,4,0,1400529600,122880,0,'Add to Cart Popup','X-Cart team','Adds a promotional popup dialog that is displayed after a customer adds a product to cart.','http://my.x-cart.com/sites/default/files/addons/XC/Add2CartPopup/icon.png','https://market.x-cart.com/addons/add-to-cart-popup.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:18:\"Catalog Management\";}',1,0,2,0,0,0,'a:0:{}',0,0,0),(128,'Reviews','XC','[email protected]',0,0,0,0,0.0000,0,10126,0.00,'USD','5.3',2,0,0,1400529600,522240,1,'Product reviews','X-Cart team','Adds an ability to add products reviews and manage them in admin area','http://my.x-cart.com/sites/default/files/addons/XC/Reviews/icon.png','https://market.x-cart.com/addons/product-reviews.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:6:\"Social\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(129,'SagePay','XC','[email protected]',0,0,0,0,0.0000,0,10235,0.00,'USD','5.3',2,0,0,1397159237,71680,0,'Sage Pay (Form)','X-Cart team','Enables taking credit card payments for your online store via SagePay payment gateway (Form protocol method).','http://my.x-cart.com/sites/default/files/addons/XC/SagePay/icon.png','https://market.x-cart.com/addons/sagepay-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(130,'Stripe','XC','[email protected]',0,0,0,0,0.0000,0,9637,0.00,'USD','5.3',1,0,0,1400583259,471040,0,'Stripe','X-Cart team','Enables taking credit card payments for your online store via Stripe','http://my.x-cart.com/sites/default/files/addons/XC/Stripe/iconAlt.png','https://market.x-cart.com/addons/stripe-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(131,'Upselling','XC','[email protected]',0,0,0,0,0.0000,0,5763,0.00,'USD','5.3',2,0,0,1397073600,143360,1,'Related Products','X-Cart team','This module gives you the ability to add a list of products which will be offered along with the product being viewed. You may use this feature to promote products, e.g. making them related or recommended.','http://my.x-cart.com/sites/default/files/addons/XC/Upselling/icon.png','https://market.x-cart.com/addons/related-products.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";i:2;s:21:\"Search and Navigation\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(132,'Wishlist','SpurIT','[email protected]',0,0,0,0,0.0000,0,230,99.00,'USD','5.2',1,0,0,1401307200,244736,0,'Wishlist','SpurIT','The Wishlist module allows your customers to create a list of products which they want to purchase. All products for convenience can be placed to various categories lists. It is a great tool for your customers to plan their shopping.','http://my.x-cart.com/sites/default/files/addons/SpurIT/Wishlist/icon.png','https://market.x-cart.com/addons/wishlist-by-spurit.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',536881118,0,0),(133,'WhoPurchased','SpurIT','[email protected]',0,0,0,0,0.0000,0,123,49.00,'USD','5.2',3,0,0,1401307200,49664,0,'Customers Who Purchased','SpurIT','This plugin shows a list of products which were purchased by other buyers along with the product being viewed. The administrator has an ability to disable the plugin, limit the list to current category of products and products in stock only, limit a number of products in the list. This solution is widely used on other eCommerce platforms and has been acknowledged by significant increase of sales.','http://my.x-cart.com/sites/default/files/addons/SpurIT/WhoPurchased/icon.png','https://market.x-cart.com/addons/customers-who-purchased-by-spurit.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,0,'a:0:{}',536881117,0,0),(134,'StockChart','SpurIT','[email protected]',0,0,0,0,0.0000,0,2,49.00,'USD','5.2',1,0,0,1400788800,65536,0,'Stock Chart','SpurIT','This extension indicates the availability of your product variations. It displays your current inventory available for customers.','http://my.x-cart.com/sites/default/files/addons/SpurIT/StockChart/icon.png','https://market.x-cart.com/addons/stock-chart-by-spurit.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',536881116,0,0),(135,'AbandonedOrdersRecovering','SpurIT','[email protected]',0,0,0,0,0.0000,0,8,200.00,'USD','5.2',1,0,0,1401307200,408064,0,'Abandoned Orders Recovering','SpurIT','This extension recoups lost revenue by reminding customers about their abandoned cart and offering a deal or promotion to encourage them to complete their orders.','http://my.x-cart.com/sites/default/files/addons/SpurIT/AbandonedOrdersRecovering/icon.png','https://market.x-cart.com/addons/abandoned-orders-recovering-by-spurit.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,0,'a:0:{}',536881114,0,0),(136,'SEConnector','SpurIT','[email protected]',0,0,0,0,0.0000,0,2,149.00,'USD','5.2',0,0,0,1400788800,49664,0,'Socialengine Connector','SpurIT','Integration with the SocialEngine community CMS.','http://my.x-cart.com/sites/default/files/addons/SpurIT/SEConnector/icon.png','https://market.x-cart.com/addons/social-engine-connector-by-spurit.html','','a:0:{}','a:1:{i:0;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',536881115,0,0),(137,'ProductVideo','PerceptionSystemPvtLtd','[email protected]',0,0,0,0,0.0000,0,515,5.00,'USD','5.3',1,0,0,1400702400,37888,0,'Product Video','Perception System Pvt. Ltd.','Allows you to add youtube video to your product on product-details page.','http://my.x-cart.com/sites/default/files/addons/PerceptionSystemPvtLtd/ProductVideo/icon.png','https://market.x-cart.com/addons/product-video.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',20615,0,0),(138,'BannerPro','PerceptionSystemPvtLtd','[email protected]',0,0,0,0,0.0000,0,196,29.00,'USD','5.3',1,0,0,1401544882,290304,0,'Banner Pro','Perception System Pvt. Ltd.','Banner Pro x-cart Module allows to upload picture banners to display on store front-end with amazing animated jQuery effects.','http://my.x-cart.com/sites/default/files/addons/PerceptionSystemPvtLtd/BannerPro/icon.png','https://market.x-cart.com/addons/banner-pro-by-perception-system.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:13:\"Design tweaks\";}',1,0,0,0,0,0,'a:0:{}',536881126,0,0),(139,'Ecc','Webgility','[email protected]',0,0,0,0,0.0000,0,1128,0.00,'USD','5.3',1,0,0,1401457707,244224,0,'Unify for Quickbooks','Webgility','Unify for QuickBooks - Simplify your e-commerce business by integrating X-Cart with QuickBooks. Works with QuickBooks Online, Pro, Premier, Enterprise and Point of Sale.','http://my.x-cart.com/sites/default/files/addons/Webgility/Ecc/iconAlt.png','https://market.x-cart.com/addons/unify-for-quickbooks-by-webgility.html','','a:0:{}','a:1:{i:0;s:10:\"Accounting\";}',1,0,4,0,0,0,'a:0:{}',0,0,0),(140,'Robokassa','XC','[email protected]',0,0,0,0,0.0000,0,741,0.00,'USD','5.3',1,0,0,1400583771,51200,0,'Robokassa','X-Cart team','Robokassa allows all types of payments \"in the single window\": Credit Cards, SMS payments aka \"Mobile Commerce\", e-currencies (WebMoney, Yandex.Money), Instant payment terminals, Internet-Banking, iPhone application payments. Coupon decreasing the processing fee from 5% down to 2.9% within first 3 months is available. Contact us to get your promo-code!','http://my.x-cart.com/sites/default/files/addons/XC/Robokassa/iconAlt.png','https://market.x-cart.com/addons/robokassa-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(141,'LoyaltyProgram','QSL','[email protected]',0,0,0,0,0.0000,0,758,99.00,'USD','5.3',3,0,0,1401652800,476672,0,'Loyalty Program','Qualiteam','Increase customer loyalty and turn your visitors into returning customers by giving them reward points for purchases made in your store and letting them cash the points in for discounts on future orders.','http://my.x-cart.com/sites/default/files/addons/QSL/LoyaltyProgram/iconAlt.png','https://market.x-cart.com/addons/loyalty-program.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,1,0,'a:0:{}',536881111,0,0),(142,'MyBestDressSkin','QSL','[email protected]',0,0,0,0,0.0000,0,110,99.00,'USD','5.3',0,0,0,1396468800,818688,0,'Template #38 \"My Best Dress\"','Qualiteam','The \"My Best Dress\" X-Cart Design Template (#38). This template is good for the following themes: Accessories, Beauty, Clothing, Jewelry, Medical, Wedding.','http://my.x-cart.com/sites/default/files/addons/QSL/MyBestDressSkin/icon.png','http://www.x-cart.com/extensions/xcart-templates/mybestdress.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',442,0,0),(143,'CustomSkin','XC','[email protected]',0,0,0,0,0.0000,0,6059,0.00,'USD','5.3',1,1,0,1397141928,40960,0,'Custom skin','X-Cart team','Development module that simplifies the process of implementing design changes.','http://my.x-cart.com/sites/default/files/addons/XC/CustomSkin/icon.png','https://market.x-cart.com/addons/custom-skin.html','','a:0:{}','a:1:{i:0;s:11:\"Development\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(144,'DisqusComments','XC','[email protected]',0,0,0,0,0.0000,0,766,0.00,'USD','5.3',1,0,0,1400529600,40960,0,'Disqus comments','X-Cart team','Make commenting easier and more interactive with Disqus. Replies, subscriptions and email notifications. Sharing in Twitter and Facebook. Moderation of posts within Disqus admin area. Simple yet powerful.','http://my.x-cart.com/sites/default/files/addons/XC/DisqusComments/iconAlt.png','https://market.x-cart.com/addons/disqus-comments.html','','a:0:{}','a:1:{i:0;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(145,'EMS','XC','[email protected]',0,0,0,0,0.0000,0,608,0.00,'USD','5.3',1,0,0,1400529600,92160,0,'EMS Russian Post','X-Cart team','Gets shipping quotes for EMS delivery methods.','http://my.x-cart.com/sites/default/files/addons/XC/EMS/iconAlt.png','https://market.x-cart.com/addons/ems-russian-post.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(146,'Olark','XC','[email protected]',0,0,0,0,0.0000,0,1984,0.00,'USD','5.3',1,0,0,1398628800,40960,0,'Livechat - Olark','X-Cart team','The module adds Olark Live Chat to your website: neat in customer area, powerful and informative in admin back-end. Understand who\'s on your website, see where your customers are and co-browse with them, chat with the visitors proactively, help them solve the concerns and see how your sales grow.','http://my.x-cart.com/sites/default/files/addons/XC/Olark/iconAlt.png','https://market.x-cart.com/addons/olark-live-chat.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:14:\"Administration\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(147,'WebmasterKit','XC','[email protected]',0,0,0,0,0.0000,0,9507,0.00,'USD','5.3',2,0,0,1398628800,3256320,0,'Webmaster Kit','X-Cart team','This module helps web developers. It is used to find specific templates (the same as Webmaster mode functionality in X-Cart 4), SQL logging, benchmarking.','http://my.x-cart.com/sites/default/files/addons/XC/WebmasterKit/icon.png','https://market.x-cart.com/addons/webmaster-kit.html','','a:0:{}','a:1:{i:0;s:11:\"Development\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(148,'Napoleon','Edessertnet','[email protected]',0,0,0,0,0.0000,0,229,0.00,'USD','5.1',4,0,0,1400268422,93184,0,'Napoleon Recommendation Service','Edessertnet','Amazon quality product recommender. It boosts sales, increases average order value, conversion and loyalty. Suggest products that will get your visitors to respond!','http://my.x-cart.com/sites/default/files/addons/Edessertnet/Napoleon/iconAlt.png','https://market.x-cart.com/addons/edessertnet-product-recommendations.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:21:\"Search and Navigation\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(149,'ShopGate','QSL','[email protected]',0,0,0,0,0.0000,0,678,0.00,'USD','5.3',1,0,0,1400702400,2048000,0,'Shopgate - Mobile Commerce','Qualiteam','Boost your mobile sales with your individual mobile website or native Shopping app for iPhone, iPad and Android!\nSign up URL: http://www.shopgate.com/en/partner/x-cart/\';','http://my.x-cart.com/sites/default/files/addons/QSL/ShopGate/iconAlt.png','https://market.x-cart.com/addons/shopgate-mobile-commerce.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";i:2;s:15:\"Mobile Commerce\";}',1,0,5,0,1,0,'a:0:{}',0,0,0),(150,'Shiplark','Webgility','[email protected]',0,0,0,0,0.0000,0,298,0.00,'USD','5.2',2,0,0,1401457333,222208,0,'Shiplark','Webgility','Ship your X-Cart orders faster and smarter! Print FedEx, UPS and USPS labels in one click.','http://my.x-cart.com/sites/default/files/addons/Webgility/Shiplark/iconAlt.png','https://market.x-cart.com/addons/shiplark-by-webgility.html','','a:0:{}','a:4:{i:0;s:11:\"Fulfillment\";i:1;s:14:\"Administration\";i:2;s:10:\"Accounting\";i:3;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(151,'ShopByBrand','QSL','[email protected]',0,0,0,0,0.0000,0,1817,49.00,'USD','5.3',3,0,0,1400568778,310272,0,'Shop By Brand','Qualiteam','Allows customers to navigate and search products by brands / manufacturers / vendors.','http://my.x-cart.com/sites/default/files/addons/QSL/ShopByBrand/icon.png','https://market.x-cart.com/addons/shop-by-brand.html','','a:0:{}','a:2:{i:0;s:21:\"Search and Navigation\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,1,0,'a:0:{}',536881121,0,0),(152,'OneCIntegration','XC','[email protected]',0,0,0,0,0.0000,0,34,399.00,'USD','5.3',1,0,0,1400529600,163840,0,'1C integration','X-Cart team','Upload the products from \"1C\" database and publish them in your online store. Import categories, products (inlcuding images and properties) and product variants. Upload orders from your online store into \"1C\". Update the order statuses in the online store, based on order statuses changes in \"1C\".','http://my.x-cart.com/sites/default/files/addons/XC/OneCIntegration/icon.png','https://market.x-cart.com/addons/1c-integraciya.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:10:\"Accounting\";}',1,0,0,0,0,0,'a:0:{}',20603,0,0),(153,'PosSystem','XC','[email protected]',0,0,0,0,0.0000,0,184,499.00,'USD','5.3',2,0,0,1400702400,708096,0,'POS System','X-Cart team','Turn your X-cart store into a retail Point of Sale. Note: a java virtual machine is required to use \"jZebra\" applet.','http://my.x-cart.com/sites/default/files/addons/XC/PosSystem/icon.png','https://market.x-cart.com/addons/point-of-sale.html','','a:1:{i:0;s:15:\"XC\\SystemFields\";}','a:2:{i:0;s:14:\"Administration\";i:1;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',536881104,0,0),(154,'SystemFields','XC','[email protected]',0,0,0,0,0.0000,0,2451,0.00,'USD','5.3',1,1,0,1400702400,153600,0,'UPC/ISBN and Mnf#/Vendor# fields','X-Cart team','The module adds 2 system fields - UPC/ISBN and Manufacturer/Vendor to products and variants. Admin selects whether to display the fields nowhere, in admin area only or both in admin and customer area.','http://my.x-cart.com/sites/default/files/addons/XC/SystemFields/icon.png','https://market.x-cart.com/addons/system-fields.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(155,'Ecccloud','Webgility','[email protected]',0,0,0,0,0.0000,0,408,0.00,'USD','5.2',4,0,0,1401457266,220672,0,'QuickBooks Online Integration','Webgility','Unify syncs your X-Cart store with QuickBooks Online so you don\'t have to!','http://my.x-cart.com/sites/default/files/addons/Webgility/Ecccloud/iconAlt.png','https://market.x-cart.com/addons/ecc-cloud-quickbooks-and-xero-integration-by-webgility.html','','a:0:{}','a:1:{i:0;s:10:\"Accounting\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(156,'RichGoogleSearchResults','QSL','[email protected]',0,0,0,0,0.0000,0,606,79.00,'USD','5.3',2,0,0,1401134400,35328,0,'Rich google search results','Qualiteam','This module allows search engines to display information about yourproducts and reviews in well-structured format','http://my.x-cart.com/sites/default/files/addons/QSL/RichGoogleSearchResults/icon.png','https://market.x-cart.com/addons/rich-google-search-results.html','','a:0:{}','a:2:{i:0;s:3:\"SEO\";i:1;s:9:\"Marketing\";}',1,0,0,0,0,0,'a:0:{}',536881127,0,0),(157,'PayWithAmazon','Amazon','[email protected]',0,0,0,0,0.0000,0,6497,0.00,'USD','5.3',3,0,0,1401742368,215040,0,'Pay with Amazon','Amazon Payments','This module enables Pay with Amazon functionality','http://my.x-cart.com/sites/default/files/addons/Amazon/PayWithAmazon/icon.png','https://market.x-cart.com/addons/pay-with-amazon-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(158,'CustomerSatisfaction','QSL','[email protected]',0,0,0,0,0.0000,0,267,99.00,'USD','5.3',5,0,0,1401912000,331776,0,'Customer Satisfaction','Qualiteam','Module allows store administrator to know as soon as possible if customer is satisfied with the purchase and to prevent any negative customer reviews by resolving their issues.','http://my.x-cart.com/sites/default/files/addons/QSL/CustomerSatisfaction/iconAlt.png','https://market.x-cart.com/addons/customer-satisfaction.html','','a:0:{}','a:2:{i:0;s:10:\"Statistics\";i:1;s:15:\"User experience\";}',1,0,5,0,0,0,'a:0:{}',536881131,0,0),(159,'Eccxero','Webgility','[email protected]',0,0,0,0,0.0000,0,181,0.00,'USD','5.3',1,0,0,-10800,274944,0,'Unify for Xero','Webgility','Unfiy for Xero - Automate your e-commerce accounting by integrating X-Cart with Xero.','http://my.x-cart.com/sites/default/files/addons/Webgility/Eccxero/iconAlt.png','https://market.x-cart.com/addons/unify-for-xero-by-webgility.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:10:\"Accounting\";}',1,0,4,0,0,0,'a:0:{}',0,0,0),(160,'Eccpos','Webgility','[email protected]',0,0,0,0,0.0000,0,175,0.00,'USD','5.2',4,0,0,-10800,244224,0,'Highlight','Webgility','Highlight connects your X-Cart store. The easy-to-use business intelligence tool designed specifically for online retailers.','http://my.x-cart.com/sites/default/files/addons/Webgility/Eccpos/iconAlt.png','https://www.x-cart.com/extensions/addons/quickBooks-pos-integration-by-webgility.html','','a:0:{}','a:3:{i:0;s:14:\"Administration\";i:1;s:11:\"Fulfillment\";i:2;s:10:\"Accounting\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(161,'SportLifeSkin','QSL','[email protected]',0,0,0,0,0.0000,0,171,99.00,'USD','5.3',0,0,0,-10800,1749504,0,'Template #39 \"Sport Life\"','Qualiteam','The \"Sport Life\" X-Cart Design Template (#39). This template is good for the following themes: Clothing, Entertainment, Jewelry, Sport, Tools & Equipment.','http://my.x-cart.com/sites/default/files/addons/QSL/SportLifeSkin/icon.png','http://www.x-cart.com/extensions/xcart-templates/sport-life.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',441,0,0),(162,'CallForPrice','QSL','[email protected]',0,0,0,0,0.0000,0,606,35.00,'USD','5.3',2,0,0,-10800,134144,0,'Call For Price','Qualiteam','With this module you can hide price and \"Add to cart\" button for particular products and show a \"Call For Price\" message instead.','http://my.x-cart.com/sites/default/files/addons/QSL/CallForPrice/iconAlt.png','https://market.x-cart.com/addons/call-for-price.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,6,0,0,0,'a:0:{}',536881132,0,0),(163,'AppleShop','QSL','[email protected]',0,0,0,0,0.0000,0,181,99.00,'USD','5.3',1,0,1,1404158400,580608,0,'Apple Shop','Qualiteam','The \"Apple Shop\" X-Cart Design Template (#37). This template is good for the following themes: Business, Computers, Electronics, Tools & Equipment','http://my.x-cart.com/sites/default/files/addons/QSL/AppleShop/iconAlt.png','https://market.x-cart.com/xcart-templates/apple-shop.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',443,0,0),(164,'HiTech_14','QSL','[email protected]',0,0,0,0,0.0000,0,79,99.00,'USD','5.3',0,0,1,-10800,369664,0,'Template #14 \"Hi-tech\"','Qualiteam','The \"Hi-tech\" X-Cart Design Template (#14). This template is good for the following themes: Computers, Electronics, Tools & Equipment','http://my.x-cart.com/sites/default/files/addons/QSL/HiTech_14/icon.png','http://www.x-cart.com/extensions/xcart-templates/hi-tech.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',536881072,0,0),(165,'CloudSearch','QSL','[email protected]',0,0,0,0,0.0000,0,11171,0.00,'USD','5.3',2,0,0,-10800,158208,0,'CloudSearch','Qualiteam','CloudSearch is a SaaS solution that integrates with X-Cart 5 to enable dynamic, real-time product search with highly relevant search results. Power up your store with enterprise-class search technologies for better conversion!','http://my.x-cart.com/sites/default/files/addons/QSL/CloudSearch/iconAlt.png','https://market.x-cart.com/addons/cloudsearch.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:21:\"Search and Navigation\";i:2;s:15:\"User experience\";}',1,0,5,0,1,0,'a:0:{}',0,0,0),(166,'Magic360','MagicToolbox','[email protected]',0,0,0,0,0.0000,0,404,159.00,'USD','5.2',5,0,0,1473282000,453120,0,'Magic 360 for XC 5','Magic Toolbox','Spin products round in 360 degrees and zoom them.','http://my.x-cart.com/sites/default/files/addons/MagicToolbox/Magic360/icon.png','https://market.x-cart.com/addons/magic-360-for-xc-5.html','','a:0:{}','a:4:{i:0;s:15:\"User experience\";i:1;s:13:\"Design tweaks\";i:2;s:11:\"Development\";i:3;s:8:\"Products\";}',1,0,5,0,0,0,'a:0:{}',21087,0,0),(167,'MagicScroll','MagicToolbox','[email protected]',0,0,0,0,0.0000,0,393,0.00,'USD','5.2',5,0,0,-10800,495104,0,'Magic Scroll for XC 5','Magic Toolbox','Effortlessly scroll through images and/or text on your web pages.','http://my.x-cart.com/sites/default/files/addons/MagicToolbox/MagicScroll/iconAlt.png','https://market.x-cart.com/magic-scroll-for-xc-5.html','','a:0:{}','a:3:{i:0;s:15:\"User experience\";i:1;s:13:\"Design tweaks\";i:2;s:11:\"Development\";}',1,0,0,0,0,0,'a:0:{}',21056,0,0),(168,'MagicSlideshow','MagicToolbox','[email protected]',0,0,0,0,0.0000,0,838,0.00,'USD','5.2',5,0,0,-10800,395264,0,'Magic Slideshow for XC 5','Magic Toolbox','Display one image after another. Fade or slide, fast or slow, text or just images. It\'s your choice!','http://my.x-cart.com/sites/default/files/addons/MagicToolbox/MagicSlideshow/iconAlt.png','https://market.x-cart.com/magic-slideshow-for-xc-5.html','','a:0:{}','a:3:{i:0;s:15:\"User experience\";i:1;s:13:\"Design tweaks\";i:2;s:11:\"Development\";}',1,0,0,0,0,0,'a:0:{}',21058,0,0),(169,'MagicZoom','MagicToolbox','[email protected]',0,0,0,0,0.0000,0,396,0.00,'USD','5.2',6,0,0,1412798400,636928,0,'Magic Zoom for XC 5','Magic Toolbox','Zoom into images when you hover over an image. A beautiful effect.','http://my.x-cart.com/sites/default/files/addons/MagicToolbox/MagicZoom/iconAlt.png','https://market.x-cart.com/magic-zoom-for-xc-5.html','','a:0:{}','a:3:{i:0;s:15:\"User experience\";i:1;s:13:\"Design tweaks\";i:2;s:11:\"Development\";}',1,0,0,0,0,0,'a:0:{}',21055,0,0),(170,'FbWall','Webkulsoftware','[email protected]',0,0,0,0,0.0000,0,36,29.00,'USD','5.3',0,0,0,1407700800,158720,0,'Facebook Wall Feed','Webkul Software Pvt. Ltd.','Facebook Wall Feed will grab your Facebook wall post automatically in your website as a module, You can display feed of the posts on your Facebook page or profile or group on your website by just put your Facebook Account ID or Facebook account name with access token. Requires to have the Facebook Wall Feed module properly installed and enabled.','http://my.x-cart.com/sites/default/files/addons/Webkulsoftware/FbWall/icon.png','https://market.x-cart.com/addons/facebook-wall-by-webkulsoftware.html','','a:0:{}','a:1:{i:0;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',536881135,0,0),(171,'FifthDimension','FiveDimLog','[email protected]',0,0,0,0,0.0000,0,61,0.00,'USD','5.2',1,0,0,1404417600,67072,0,'5th Dimension','5th Dimension Logistics ','Enables taking payments for your online store via 5th Dimension payment gateway (Payment Redirect Method).','http://my.x-cart.com/sites/default/files/addons/FiveDimLog/FifthDimension/iconAlt.png','https://market.x-cart.com/addons/5th-dimension-logistics-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(172,'AudioBooks','QSL','[email protected]',0,0,0,0,0.0000,0,24,99.00,'USD','5.3',0,0,1,-10800,969216,0,'AudioBooks','Qualiteam','This template is good for the following themes: Books, Education, Gifts, Media, Music','http://my.x-cart.com/sites/default/files/addons/QSL/AudioBooks/icon.png','https://www.x-cart.com/extensions/xcart-templates/audiobooks.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',449,0,0),(173,'WordPress','QSL','[email protected]',0,0,0,0,0.0000,0,642,249.00,'USD','5.3',3,0,0,1404849600,1016320,0,'Blog System in X-Cart 5','Qualiteam','This module extends your X-Cart store with a fully functional blog using the most popular blogging software in the world. It allows you to add WordPress features to your existing X-Cart store.','http://my.x-cart.com/sites/default/files/addons/QSL/WordPress/iconAlt.png','https://market.x-cart.com/addons/blog-system-in-xcart-5.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:13:\"Design tweaks\";i:2;s:4:\"Blog\";}',1,0,0,0,1,0,'a:0:{}',536881133,0,0),(174,'VitalitySkin','QSL','[email protected]',0,0,0,0,0.0000,0,18,99.00,'USD','5.3',2,0,0,1404849600,431616,0,'Vitality','Qualiteam','The \"Vitality\" X-Cart Design Template (#13). This template is good for the following themes: Exterior design, Medical, Nature, Nutritional supplements.','http://my.x-cart.com/sites/default/files/addons/QSL/VitalitySkin/iconAlt.png','https://market.x-cart.com/xcart-templates/vitality.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',536881073,0,0),(175,'IGmodule','Ingroove','[email protected]',0,0,0,0,0.0000,0,41,0.00,'USD','5.1',1,0,0,1414440000,738816,0,'Diib Analytics','InGroove Inc.','Effortlessly add easy to use predictive analytics to your X-Cart store.','http://my.x-cart.com/sites/default/files/addons/Ingroove/IGmodule/iconAlt.png','https://market.x-cart.com/addons/diib-analytics-by-diib.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:10:\"Statistics\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(176,'MeritusPayment','MPS','[email protected]',0,0,0,0,0.0000,0,64,0.00,'USD','5.3',0,0,0,1405540800,40960,0,'Meritus: Payment XP','MPS','Developed with card-not-present transactions in mind, Payment XP provides merchants with the ability to process credit and debit card, all in a PCI compliant solution loaded with tools to manage fraud and fight chargebacks.','http://my.x-cart.com/sites/default/files/addons/MPS/MeritusPayment/icon.png','https://market.x-cart.com/addons/meritus-XP-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(177,'WatchWorld','QSL','[email protected]',0,0,0,0,0.0000,0,41,99.00,'USD','5.3',0,0,1,1406059200,658432,0,'Template #40 \"WatchWorld\"','Qualiteam','The \"Watch world\" X-Cart Design Template (#40). This template is good for the following themes: Accessories, Clothing, Gifts, Hotels, Jewelry, Watches','http://my.x-cart.com/sites/default/files/addons/QSL/WatchWorld/icon.png','https://www.x-cart.com/extensions/xcart-templates/watch-world.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',411,0,0),(178,'CustomProductTabs','XC','[email protected]',0,0,0,0,0.0000,0,2789,0.00,'USD','5.3',2,0,0,1472540197,122880,1,'Custom product tabs','X-Cart team','Add additional tabs on the product page. Custom name, custom content - html text or product videos, whatever describes your product best.','http://my.x-cart.com/sites/default/files/addons/XC/CustomProductTabs/icon.png','https://market.x-cart.com/addons/custom-product-tabs.html','','a:0:{}','a:2:{i:0;s:13:\"Design tweaks\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(179,'EPDQ','XC','[email protected]',0,0,0,0,0.0000,0,3357,0.00,'USD','5.3',1,0,0,-10800,61440,0,'Barclaycard ePDQ e-Commerce','X-Cart team','Enables taking payments for your online store via Barclaycard ePDQ e-Commerce payment system (Basic e-Commerce integration).','http://my.x-cart.com/sites/default/files/addons/XC/EPDQ/iconAlt.png','https://market.x-cart.com/addons/barclays-epdq-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(180,'IdealPayments','XC','[email protected]',0,0,0,0,0.0000,0,4336,0.00,'USD','5.3',1,0,0,-10800,102400,0,'iDEAL Payments','X-Cart team','Enables taking credit card payments for your online store via iDEAL payment system.','http://my.x-cart.com/sites/default/files/addons/XC/IdealPayments/iconAlt.png','https://market.x-cart.com/addons/iDEAL-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(181,'XPaymentsSubscriptions','QSL','[email protected]',0,0,0,0,0.0000,0,500,0.00,'USD','5.3',1,0,0,1406122809,368640,0,'X-Payments subscriptions','Qualiteam','This module allows to create product subscriptions and process them via X-Payments module.','http://my.x-cart.com/sites/default/files/addons/QSL/XPaymentsSubscriptions/iconAlt.png','https://market.x-cart.com/addons/x-payments-subscriptions-and-installements.html','','a:1:{i:0;s:23:\"CDev\\XPaymentsConnector\";}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(182,'CustomerRewards','BCSE','[email protected]',0,0,0,0,0.0000,0,33,149.00,'USD','5.2',1,0,0,1408305600,289792,0,'Customer Rewards','BCS Engineering','Allow customers to accrue points to receive discounts','http://my.x-cart.com/sites/default/files/addons/BCSE/CustomerRewards/icon.png','https://market.x-cart.com/addons/customer-rewards-by-bcse.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,2,0,0,0,'a:0:{}',536881137,0,0),(183,'FacebookProducts','BCSE','[email protected]',0,0,0,0,0.0000,0,25,50.00,'USD','5.3',0,0,0,1408564800,47104,0,'Facebook Products','BCS Engineering','Post your products to Facebook','http://my.x-cart.com/sites/default/files/addons/BCSE/FacebookProducts/icon.png','https://market.x-cart.com/addons/facebook-products-by-bcse.html','','a:0:{}','a:1:{i:0;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',536881138,0,0),(184,'CatalogOrderForm','BCSE','[email protected]',0,0,0,0,0.0000,0,31,40.00,'USD','5.3',2,0,0,1408535363,31744,0,'Catalog Order Form','BCS Engineering','New page for customers to enter in multiple skus to add to their cart.','http://my.x-cart.com/sites/default/files/addons/BCSE/CatalogOrderForm/icon.png','https://market.x-cart.com/addons/catalog-order-form-by-bcse.html','','a:0:{}','a:3:{i:0;s:15:\"User experience\";i:1;s:21:\"Search and Navigation\";i:2;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',536881139,0,0),(185,'BuyMac','QSL','[email protected]',0,0,0,0,0.0000,0,105,99.00,'USD','5.3',0,0,1,1406577600,436224,0,'Buy Mac','Qualiteam','The \"Buy Mac\" X-Cart Design Template (#32). This template is good for the following themes: Books, Cars, Computers, Electronics, Gifts, Music','http://my.x-cart.com/sites/default/files/addons/QSL/BuyMac/icon.png','https://www.x-cart.com/extensions/xcart-templates/buymac.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',448,0,0),(186,'ExitOffers','QSL','[email protected]',0,0,0,0,0.0000,0,207,49.00,'USD','5.3',0,0,0,-10800,116736,0,'Exit Offers','Qualiteam','Allows you to recover orders by showing a special popup offer to customers before they leave your web site.','http://my.x-cart.com/sites/default/files/addons/QSL/ExitOffers/icon.png','https://market.x-cart.com/addons/exit-offers.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,4,0,0,0,'a:0:{}',536881134,0,0),(187,'Socialtab','Webkulsoftware','[email protected]',0,0,0,0,0.0000,0,180,29.00,'USD','5.3',0,0,0,1407700800,186368,0,'Social Tab','Webkul Software Pvt. Ltd.','Social Tabs is a brilliant sliding social media tab module and super useful for your social media feeds and it is very slick in design. Purpose of this addon to embed the social media post like Facebook, Twitter, LinkedIn etc on your website. This module can be applied at both side of web page (right and left)','http://my.x-cart.com/sites/default/files/addons/Webkulsoftware/Socialtab/icon.png','https://market.x-cart.com/addons/social-tab-by-webkulsoftware.html','','a:0:{}','a:1:{i:0;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',536881136,0,0),(188,'Fitness','QSL','[email protected]',0,0,0,0,0.0000,0,51,99.00,'USD','5.3',0,1,1,1407355200,274944,0,'Fitness','Qualiteam','The \"Fitness\" X-Cart Design Template (#16). This template is good for the following themes: Cars, Fitness, Interior & Furniture, Sport, Tools & Equipment','http://my.x-cart.com/sites/default/files/addons/QSL/Fitness/icon.png','https://market.x-cart.com/xcart-templates/sport-fitness.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',536881071,0,0),(189,'FlyoutCategoriesMenu','QSL','[email protected]',0,0,0,0,0.0000,0,3774,0.00,'USD','5.3',1,2,0,1407873600,71680,0,'Flyout Categories Menu','Qualiteam','The module changes the default categories menu in the Customer area by introducing a flyout expanding menu style','http://my.x-cart.com/sites/default/files/addons/QSL/FlyoutCategoriesMenu/icon.png','https://market.x-cart.com/addons/flyout-categories-menu.html','','a:0:{}','a:3:{i:0;s:15:\"User experience\";i:1;s:13:\"Design tweaks\";i:2;s:21:\"Search and Navigation\";}',1,0,5,0,0,0,'a:0:{}',536881140,0,0),(190,'Integration','UnisenderInc','[email protected]',0,0,0,0,0.0000,0,604,0.00,'USD','5.2',1,0,0,1408910400,79360,0,'Unisender Integration','Unisender Inc','Create and send professional newsletters! The module integrates your store with UniSender, a popular service for mailing and bulk SMS messaging.','http://my.x-cart.com/sites/default/files/addons/UnisenderInc/Integration/iconAlt.png','https://market.x-cart.com/addons/unisender-integration-by-unisender.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(191,'Storelocator','PerceptionSystemPvtLtd','[email protected]',0,0,0,0,0.0000,0,110,29.99,'USD','5.3',2,0,0,1412280000,1348096,0,'Storelocator','Perception System Pvt. Ltd.','Fetch Your Store With Store Locator','http://my.x-cart.com/sites/default/files/addons/PerceptionSystemPvtLtd/Storelocator/icon.png','https://market.x-cart.com/addons/store-locator-by-perception-system.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,2,0,0,0,'a:0:{}',20582,0,0),(192,'AutoParts','QSL','[email protected]',0,0,0,0,0.0000,0,181,99.00,'USD','5.3',0,0,1,1409083200,456192,0,'AutoParts','Qualiteam','This template is good for the following themes: Cars, Electronics, Tools & Equipment','http://my.x-cart.com/sites/default/files/addons/QSL/AutoParts/icon.png','https://market.x-cart.com/xcart-templates/autoparts.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',447,0,0),(193,'PayU','PayU','[email protected]',0,0,0,0,0.0000,0,518,0.00,'USD','5.2',1,0,0,1409688000,43008,0,'PayU Russia','PayU Russia','Enables taking payments for your online store via PayU system.','http://my.x-cart.com/sites/default/files/addons/PayU/PayU/iconAlt.png','https://market.x-cart.com/addons/payU-Russia-payment-module-by-PayU.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(194,'BooksStoreSkin','QSL','[email protected]',0,0,0,0,0.0000,0,19,99.00,'USD','5.3',1,0,0,1409601600,312320,0,'Books Store','Qualiteam','The \"Books Store\" X-Cart Design Template (#30). This template is good for the following themes: Books, Clothing, Education, Flowers, Gifts, Hotels, Media.','http://my.x-cart.com/sites/default/files/addons/QSL/BooksStoreSkin/icon.png','https://market.x-cart.com/xcart-templates/books-store.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',450,0,0),(195,'FAQ','Guru','[email protected]',0,0,0,0,0.0000,0,330,15.00,'USD','5.3',1,0,0,1410120000,87040,0,'FAQ','X-Cart Guru','Enables FAQ page','http://my.x-cart.com/sites/default/files/addons/Guru/FAQ/icon.png','https://market.x-cart.com/addons/FAQ-module-by-XcartGuru.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:14:\"Administration\";i:2;s:15:\"User experience\";}',1,0,3,0,0,0,'a:0:{}',536881157,0,0),(196,'InfiniteScroll','QSL','[email protected]',0,0,0,0,0.0000,0,692,79.00,'USD','5.3',0,0,0,-10800,81920,0,'Infinite Scroll','Qualiteam','This module allows you to replace the pager in product lists with the infinite scroll that adds more results to the list when the customer scrolls the page down.','http://my.x-cart.com/sites/default/files/addons/QSL/InfiniteScroll/icon.png','https://market.x-cart.com/addons/infinite-scroll.html','','a:0:{}','a:3:{i:0;s:15:\"User experience\";i:1;s:13:\"Design tweaks\";i:2;s:21:\"Search and Navigation\";}',1,0,3,0,0,0,'a:0:{}',536881159,0,0),(197,'DetailedImagesSlider','Guru','[email protected]',0,0,0,0,0.0000,0,137,35.00,'USD','5.2',1,0,0,1411070400,178176,0,'Detailed images slider','X-Cart Guru','Display your detailed product images in a responsive slider directly on the product page.','http://my.x-cart.com/sites/default/files/addons/Guru/DetailedImagesSlider/icon.png','https://market.x-cart.com/addons/detailed-images-slider-by-XcartGuru.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";i:2;s:13:\"Design tweaks\";}',1,0,4,0,0,0,'a:0:{}',20578,0,0),(198,'Mandrill','XC','[email protected]',0,0,0,0,0.0000,0,295,0.00,'USD','5.3',1,1,0,1411416000,296960,0,'Mandrill Integration (for transactional emails)','X-Cart team','Mandrill is a scalable and affordable email infrastructure service, with the powerful marketing-friendly analytics tools.','http://my.x-cart.com/sites/default/files/addons/XC/Mandrill/icon.png','https://market.x-cart.com/addons/mandrill-transactional-emails-integration.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:10:\"Statistics\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(199,'MailChimp','XC','[email protected]',0,0,0,0,0.0000,0,2315,0.00,'USD','5.3',2,0,0,1411418909,532480,0,'MailChimp Integration with E-commerce support','X-Cart team','MailChimp is an email marketing service with powerful tools to manage your email campaigns and subscribers while gathering advanced analytics information on your campaign performance.','http://my.x-cart.com/sites/default/files/addons/XC/MailChimp/icon.png','https://market.x-cart.com/addons/mailchimp-integration-with-e-commerce-360.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:10:\"Statistics\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(200,'HorizontalCategoriesMenu','QSL','[email protected]',0,0,0,0,0.0000,0,875,19.95,'USD','5.3',1,1,0,1411631989,130048,0,'Horizontal Flyout Categories Menu','Qualiteam','The module changes the default categories menu to the horizontal flyout expanding menu','http://my.x-cart.com/sites/default/files/addons/QSL/HorizontalCategoriesMenu/iconAlt.png','https://market.x-cart.com/addons/horizontal-flyout-categories-menu.html','','a:0:{}','a:3:{i:0;s:21:\"Search and Navigation\";i:1;s:13:\"Design tweaks\";i:2;s:15:\"User experience\";}',1,0,0,0,1,0,'a:0:{}',20579,0,0),(201,'YandexMoney','XC','[email protected]',0,0,0,0,0.0000,0,538,0.00,'USD','5.3',1,0,0,1412020800,92160,0,'Yandex Payment Solution','X-Cart team','The means of accepting all payment options popular in Russia - bank cards, Yandex Payment Solution and Webmoney, mobile payments and cash.','http://my.x-cart.com/sites/default/files/addons/XC/YandexMoney/iconAlt.png','https://market.x-cart.com/addons/yandex-money.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(202,'Electronics','QSL','[email protected]',0,0,0,0,0.0000,0,14,99.00,'USD','5.3',0,0,1,1413230400,504320,0,'Template #19 \"Electronics\"','Qualiteam','The \"Electronics\" X-Cart Design Template (#19). This template is good for the following themes: Books, Computers, Education, Electronics','http://my.x-cart.com/sites/default/files/addons/QSL/Electronics/icon.png','https://www.x-cart.com/extensions/xcart-templates/electronics.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',536881069,0,0),(203,'iGoods','QSL','[email protected]',0,0,0,0,0.0000,0,80,99.00,'USD','5.3',0,0,0,1413316800,233984,0,'Template #28 \"iGoods\"','Qualiteam','The \"iGoods\" X-Cart Design Template (#28). This template is good for the following themes: Business, Computers, Electronics, Tools & Equipment','http://my.x-cart.com/sites/default/files/addons/QSL/iGoods/icon.png','https://www.x-cart.com/extensions/xcart-templates/igoods.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',452,0,0),(204,'PaymentWall','Webkulsoftware','[email protected]',0,0,0,0,0.0000,0,0,49.00,'USD','5.2',0,0,0,1414616400,97280,0,'PaymentWall Payment Gateway','Webkul Software Pvt. Ltd.','Paymentwall Payment Gateway is a payment addons work with checkout for payment in X-Cart X-Cart. It will work live as well as Debugging mode. It Accept global payments by integrating Paymentwall Gateway.','http://my.x-cart.com/sites/default/files/addons/Webkulsoftware/PaymentWall/icon.png','https://market.x-cart.com/addons/paymentwall-integration-by-webkulsoftware.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',20596,0,0),(205,'Health','QSL','[email protected]',0,0,0,0,0.0000,0,36,99.00,'USD','5.3',0,0,1,1413403200,361984,0,'Template #9 \"Health\"','Qualiteam','This template is good for the following themes: Beauty, Garden, Interior & Furniture, Medical, Nutritional supplements','http://my.x-cart.com/sites/default/files/addons/QSL/Health/icon.png','https://www.x-cart.com/extensions/xcart-templates/health.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',465,0,0),(206,'Akismet','XC','[email protected]',0,0,0,0,0.0000,0,596,0.00,'USD','5.3',0,0,0,1413748800,40960,0,'Akismet - the Spam Filter','X-Cart team','Filter out the spam on the Contact Us form and in the Product Reviews. A hosted web service that saves you time by automatically detecting comment and trackback spam.','http://my.x-cart.com/sites/default/files/addons/XC/Akismet/iconAlt.png','https://market.x-cart.com/addons/akismet-the-spam-filter.html','','a:0:{}','a:1:{i:0;s:14:\"Administration\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(207,'ESelectHPP','XC','[email protected]',0,0,0,0,0.0000,0,2128,0.00,'USD','5.3',1,0,0,1413748800,51200,0,'Moneris (eSELECTplus- Hosted Pay Page)','X-Cart team','Accept credit and debit cards via an online transaction processing engine. USA and Canada','http://my.x-cart.com/sites/default/files/addons/XC/ESelectHPP/iconAlt.png','https://market.x-cart.com/addons/moneris-eselect-plus-hosted-pay-page.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(208,'FreeShipping','XC','[email protected]',0,0,0,0,0.0000,0,6241,0.00,'USD','5.3',1,3,0,-10800,133120,1,'Free Shipping and Shipping freights','X-Cart team','Attract more customers by offering Free Shipping. Mark the products that are shipped for free. Add a possibility to specify shipping freight to products.','http://my.x-cart.com/sites/default/files/addons/XC/FreeShipping/icon.png','https://market.x-cart.com/addons/free-shipping.html','','a:0:{}','a:1:{i:0;s:8:\"Shipping\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(209,'InternetSecure','XC','[email protected]',0,0,0,0,0.0000,0,157,0.00,'USD','5.3',1,0,0,1413748800,40960,0,'InternetSecure','X-Cart team','The complete solution to accept credit cards, including Visa, MasterCard, American Express and Discover in two currencies (Canadian and US dollars).','http://my.x-cart.com/sites/default/files/addons/XC/InternetSecure/iconAlt.png','https://market.x-cart.com/addons/internet-secure-merchant-link-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(210,'MightyCallReact','XC','[email protected]',0,0,0,0,0.0000,0,995,0.00,'USD','5.3',1,1,0,1413800433,40960,0,'Contact Us Page by MightyCall','X-Cart team','Create a snazzy-looking Contact Us page in just minutes that you can customize to blend in with your current business website. Includes special features like ClickToCall, Contact Form, Business Hours and more. Allow customers to request a call back or e-mail from you with a click of a button.','http://my.x-cart.com/sites/default/files/addons/XC/MightyCallReact/icon.png','https://market.x-cart.com/addons/contact-us-page-by-mightycall.html','','a:1:{i:0;s:14:\"CDev\\ContactUs\";}','a:3:{i:0;s:14:\"Administration\";i:1;s:13:\"Design tweaks\";i:2;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(211,'News','XC','[email protected]',0,0,0,0,0.0000,0,5513,0.00,'USD','5.3',1,1,0,1413748800,163840,1,'News','X-Cart team','Share the company and products news and updates with your community.','http://my.x-cart.com/sites/default/files/addons/XC/News/icon.png','https://market.x-cart.com/addons/news-module.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(212,'NlTranslation','XC','[email protected]',0,0,0,0,0.0000,0,614,0.00,'USD','5.3',2,0,0,-10800,348160,0,'Translation: Dutch','X-Cart team','Dutch translation pack. This translation is a contribution of X-Cart community. Kindly shared by one of X-Cart merchants for free, this translation may contain some non-translated labels which appeared in later versions of X-Cart 5 or which were added by custom modules you installed.','http://my.x-cart.com/sites/default/files/addons/XC/NlTranslation/icon.png','https://market.x-cart.com/addons/dutch-translation-by-community-members.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(213,'OgoneEcommerce','XC','[email protected]',0,0,0,0,0.0000,0,1244,0.00,'USD','5.3',1,0,0,1413748800,51200,0,'Ingenico Payment Services (Ogone)','X-Cart team','Enable online payment processing with a level-1 PCI DSS compliant provider based in Europe.','http://my.x-cart.com/sites/default/files/addons/XC/OgoneEcommerce/iconAlt.png','https://market.x-cart.com/addons/ogone-ingenico-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(214,'PayUIndia','XC','[email protected]',0,0,0,0,0.0000,0,385,0.00,'USD','5.3',1,0,0,-10800,40960,0,'PayU India','X-Cart team','Accept Credit cards and Debit cards of Indian Banks, enable Net banking options. The customer is redirected to a payment page hosted by PayU. Mobile optimized, PCI compliant, with intelligent retry framework.','http://my.x-cart.com/sites/default/files/addons/XC/PayUIndia/iconAlt.png','https://market.x-cart.com/addons/payu-india-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(215,'TwoFactorAuthentication','XC','[email protected]',0,0,0,0,0.0000,0,1814,0.00,'USD','5.3',1,0,0,1413748800,153600,1,'Two factor authentication','X-Cart team','The module integrates your store with Authy.com to protect your accounts with Two-Factor Authentication system. You can enable it for each type of accounts: admin, supplier or customer.','http://my.x-cart.com/sites/default/files/addons/XC/TwoFactorAuthentication/iconAlt.png','https://market.x-cart.com/addons/two-factor-authorization.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:14:\"Administration\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(216,'VKComments','XC','[email protected]',0,0,0,0,0.0000,0,249,0.00,'USD','5.3',1,0,0,-10800,51200,0,'VKComments','X-Cart team','Enable comments for the users of popular social network Vkontakte.Each comment posted via the widget will be automatically transferred to the comment contributor\'s page.The record includes a link to the product in your store. Posted on the contributor\'s \"wall\",it will also appear in the Newsfeed of his/her Friends and followers.','http://my.x-cart.com/sites/default/files/addons/XC/VKComments/iconAlt.png','https://market.x-cart.com/addons/vk-comments.html','','a:0:{}','a:1:{i:0;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(217,'AntiSpam','QSL','[email protected]',0,0,0,0,0.0000,0,285,69.00,'USD','5.3',1,0,0,-10800,145408,0,'AntiSpam','Qualiteam','Uses Honeypot, reCaptcha and other methods to block SPAM bots creating fake user accounts and mass-submitting forms on your website.','http://my.x-cart.com/sites/default/files/addons/QSL/AntiSpam/icon.png','https://market.x-cart.com/addons/antispam.html','','a:0:{}','a:1:{i:0;s:14:\"Administration\";}',1,0,1,0,0,0,'a:0:{}',20592,0,0),(218,'ProductVideos','CSI','[email protected]',0,0,0,0,0.0000,0,64,65.00,'USD','5.3',0,0,0,1414050470,116736,0,'Product Videos','CFL Systems, Inc.','Add unlimited number of videos to product details pages. Reference videos uploaded to Youtube, Metacafe, Vimeo, DailyMotion or self-hosted.','http://my.x-cart.com/sites/default/files/addons/CSI/ProductVideos/icon.png','https://market.x-cart.com/addons/product-videos-by-cfl-systems.html','','a:0:{}','a:1:{i:0;s:15:\"User experience\";}',1,0,7,0,0,0,'a:0:{}',21108,0,0),(219,'XCDN','CSI','[email protected]',0,0,0,0,0.0000,0,41,45.00,'USD','5.3',0,0,0,1414659837,40960,0,'xCDN','CFL Systems, Inc.','This module allows you to setup your store to use CDN for images, css and js files.','http://my.x-cart.com/sites/default/files/addons/CSI/XCDN/icon.png','https://market.x-cart.com/addons/xcdn-by-cfl-systems.html','','a:0:{}','a:3:{i:0;s:3:\"SEO\";i:1;s:18:\"Catalog Management\";i:2;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',21098,0,0),(220,'AntiFraud','QSL','[email protected]',0,0,0,0,0.0000,0,551,0.00,'USD','5.3',0,0,0,1414935960,184832,0,'AntiFraud Service Connector','Qualiteam','AntiFraud service reduces chargebacks by identifying online fraud using sophisticated checking algorithm. It is best for merchants selling e-goods with immediate electronic delivery (like software, music, content, etc.) and for merchants trading overseas.','http://my.x-cart.com/sites/default/files/addons/QSL/AntiFraud/iconAlt.png','https://market.x-cart.com/addons/antifraud.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(221,'Clothing','QSL','[email protected]',0,0,0,0,0.0000,0,818,149.00,'USD','5.3',0,1,0,1415781937,1618432,0,'Clothing','Qualiteam','The \"Clothing\" X-Cart Design Template (#42). This template is good for the following themes: Accessories, Clothing, Jewelry, Watches, Wedding','http://my.x-cart.com/sites/default/files/addons/QSL/Clothing/iconAlt.png','https://market.x-cart.com/xcart-templates/clothing.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,7,0,1,0,'a:0:{}',20597,0,0),(222,'ShippingEasy','Qualiteam','[email protected]',0,0,0,0,0.0000,0,526,0.00,'USD','5.3',0,0,0,1415197885,138240,0,'ShippingEasy','Qualiteam','Save time and money with the shipping solution built for eCommerce retailers! ShippingEasy downloads orders in real-time and automates your shipping based on carrier, service, package and more','http://my.x-cart.com/sites/default/files/addons/Qualiteam/ShippingEasy/iconAlt.png','https://market.x-cart.com/addons/shipping-easy-shipping-automation.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(223,'MultiVendor','XC','[email protected]',0,0,0,0,0.0000,0,1062,0.00,'USD','5.3',2,0,0,1416862800,1495040,1,'Multi-vendor','X-Cart team','Create an online mall where multiple vendors can sell their own products and manage their orders through a single marketplace.','http://my.x-cart.com/sites/default/files/addons/XC/MultiVendor/icon.png','https://market.x-cart.com/addons/suppliers-multivendors.html','','a:0:{}','a:3:{i:0;s:14:\"Administration\";i:1;s:11:\"Fulfillment\";i:2;s:18:\"Catalog Management\";}',1,0,4,0,0,2,'a:2:{i:0;s:18:\"20598_Multi-vendor\";i:1;s:18:\"536881125_Ultimate\";}',0,0,0),(224,'NextPreviousProduct','XC','[email protected]',0,0,0,0,0.0000,0,5768,0.00,'USD','5.3',2,0,0,1416862800,92160,1,'Previous and Next product','X-Cart team','Display \"Previous\" and \"Next product\" links on your product sheets, be it a category page, a search results page or products of a particular brand.','http://my.x-cart.com/sites/default/files/addons/XC/NextPreviousProduct/icon.png','https://market.x-cart.com/addons/next-previous-product.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:21:\"Search and Navigation\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(225,'SimplifyCommerce','XC','[email protected]',0,0,0,0,0.0000,0,486,0.00,'USD','5.3',1,0,0,1416862800,317440,0,'Simplify Commerce by MasterCard','X-Cart team','Accept all major card brands for payments in your store with Simplify Commerce by MasterCard. Easy set up with a low, flat rate; no monthly fees and no extra fees. Level 1 PCI certified.','http://my.x-cart.com/sites/default/files/addons/XC/SimplifyCommerce/iconAlt.png','https://market.x-cart.com/addons/simplify-commerce-by-mastercard-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(226,'VirtualMerchant','XC','[email protected]',0,0,0,0,0.0000,0,244,0.00,'USD','5.3',1,0,0,1416862800,51200,0,'Converge (formerly Virtual Merchant by Elavon)','X-Cart team','A secure server-based system. Accept Visa, JCB, MasterCard, American Express, Discover, Diners and UnionPay in the United States, Canada and Puerto Rico.','http://my.x-cart.com/sites/default/files/addons/XC/VirtualMerchant/iconAlt.png','https://market.x-cart.com/addons/converge-virtual-merchant-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(227,'AlternativeClothes','QSL','[email protected]',0,0,0,0,0.0000,0,50,99.00,'USD','5.3',0,1,1,1417035600,1018368,0,'Alternative clothes','Qualiteam','The \"Alternative clothes\" X-Cart Design Template (#43). This template is good for the following themes: Accessories, Clothing, Jewelry, Watches','http://my.x-cart.com/sites/default/files/addons/QSL/AlternativeClothes/iconAlt.png','https://market.x-cart.com/xcart-templates/alternative-clothes.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20605,0,0),(228,'HouseholdSkin','QSL','[email protected]',0,0,0,0,0.0000,0,19,99.00,'USD','5.3',0,0,1,1417035600,269312,0,'Household Equipment Skin','Qualiteam','The \"Household Equipment\" X-Cart Design Template (#11). This template is good for the following themes: Flowers, Food & Drink, Gifts, Hobbies & Crafts, Interior & Furniture','http://my.x-cart.com/sites/default/files/addons/QSL/HouseholdSkin/icon.png','https://www.x-cart.com/extensions/xcart-templates/household-equipment.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',536881075,0,0),(229,'HidePrices','QSL','[email protected]',0,0,0,0,0.0000,0,115,35.00,'USD','5.3',1,0,0,1417593089,85504,0,'Hide Prices','Qualiteam','This module hides prices and disables checkout for non-registered customers.','http://my.x-cart.com/sites/default/files/addons/QSL/HidePrices/iconAlt.png','https://market.x-cart.com/addons/hide-prices.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,3,0,0,0,'a:0:{}',20606,0,0),(230,'MobileAdmin','QSL','[email protected]',0,0,0,0,0.0000,0,1687,0.00,'USD','5.3',0,0,0,1417986000,897024,0,'X-Cart Mobile Admin','Qualiteam','Manage your X-Cart store easily right from your Android-based smartphone. Download and install FREE X-Cart Mobile Admin application from AppStore or Google play, connect it with your store and get a complete control over the store at your fingertips!','http://my.x-cart.com/sites/default/files/addons/QSL/MobileAdmin/iconAlt.png','https://market.x-cart.com/addons/mobile-admin.html','','a:0:{}','a:3:{i:0;s:14:\"Administration\";i:1;s:18:\"Catalog Management\";i:2;s:15:\"Mobile Commerce\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(231,'PayPalHere','QSL','[email protected]',0,0,0,0,0.0000,0,444,0.00,'USD','5.3',0,0,0,1417986000,192000,0,'PayPal Here','Qualiteam','The easiest way to accept any form of payment. Wherever your business goes, your sales can go too. Available on iOS and Android.','http://my.x-cart.com/sites/default/files/addons/QSL/PayPalHere/iconAlt.png','https://market.x-cart.com/addons/PayPal-Here-payment-module.html','','a:0:{}','a:2:{i:0;s:18:\"Payment processing\";i:1;s:15:\"Mobile Commerce\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(232,'ProductQuestions','QSL','[email protected]',0,0,0,0,0.0000,0,456,69.00,'USD','5.3',2,0,0,1418072400,274432,0,'Product Questions','Qualiteam','This module allows visitors to ask questions on your products and receive answers from your staff.','http://my.x-cart.com/sites/default/files/addons/QSL/ProductQuestions/iconAlt.png','https://market.x-cart.com/addons/product-questions.html','','a:0:{}','a:1:{i:0;s:15:\"User experience\";}',1,0,3,0,0,0,'a:0:{}',20608,0,0),(233,'MultilevelMenu','QSL','[email protected]',0,0,0,0,0.0000,0,479,39.00,'USD','5.3',0,3,1,1418158800,92672,0,'Multilevel Primary Menu','Qualiteam','This module allow admin to add advanced multilevel top menu','http://my.x-cart.com/sites/default/files/addons/QSL/MultilevelMenu/iconAlt.png','https://market.x-cart.com/addons/multilevel-primary-menu.html','','a:1:{i:0;s:14:\"CDev\\SimpleCMS\";}','a:3:{i:0;s:21:\"Search and Navigation\";i:1;s:13:\"Design tweaks\";i:2;s:15:\"User experience\";}',1,0,6,0,1,0,'a:0:{}',20609,0,0),(234,'Auction','QSL','[email protected]',0,0,0,0,0.0000,0,96,499.00,'USD','5.3',0,0,0,1418158800,575488,0,'Auction in X-Cart 5','Qualiteam','Turn your X-Cart store into a classic auction site with contemporary design. Create auction listings based on regular products and have full control over each listing for the entire auction duration.','http://my.x-cart.com/sites/default/files/addons/QSL/Auction/icon.png','https://market.x-cart.com/addons/auction-in-xcart-5.html','','a:0:{}','a:1:{i:0;s:7:\"Auction\";}',1,0,5,0,1,0,'a:0:{}',20610,0,0),(235,'PDFInvoice','QSL','[email protected]',0,0,0,0,0.0000,0,199,99.00,'USD','5.3',0,1,0,1418158800,70144,0,'PDF Invoice','Qualiteam','Makes PDF invoice','http://my.x-cart.com/sites/default/files/addons/QSL/PDFInvoice/icon.png','https://market.x-cart.com/addons/PDF-Invoice.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:10:\"Accounting\";}',1,0,4,0,1,0,'a:0:{}',20611,0,0),(236,'Braintree','QSL','[email protected]',0,0,0,0,0.0000,0,257,0.00,'USD','5.3',0,0,0,1418850000,783360,0,'Braintree payment gateway','Qualiteam','Braintree is a full-stack payments platform that makes it easy to accept payments in your app or website. The service replaces the traditional model of sourcing a payment gateway and merchant account from different providers.','http://my.x-cart.com/sites/default/files/addons/QSL/Braintree/iconAlt.png','https://market.x-cart.com/addons/braintree-for-xcart5.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,2,0,0,0,'a:0:{}',20614,0,0),(237,'CustomerAttachments','XC','[email protected]',0,0,0,0,0.0000,0,474,0.00,'USD','5.3',1,2,0,1421787600,163840,1,'Customer Files Uploads & Product Attachments','X-Cart team','Allow your customers to attach files to a product before purchasing so that the store administrator could download those files when processing the order','http://my.x-cart.com/sites/default/files/addons/XC/CustomerAttachments/icon.png','https://market.x-cart.com/addons/files-uploads-product-attachments.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:18:\"Catalog Management\";}',1,0,1,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(238,'Parcels','VIPparcel','[email protected]',0,0,0,0,0.0000,0,0,10.00,'USD','5.2',2,0,0,1432715505,3221504,0,'VIPparcel','VIPparcel','VIPparcel is a service designed to help businesses like yours save on both international and domestic shipping cost by using USPS.','http://my.x-cart.com/sites/default/files/addons/VIPparcel/Parcels/icon.png','https://market.x-cart.com/addons/vipparcel.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',20693,0,0),(239,'VariantsTableView','QSL','[email protected]',0,0,0,0,0.0000,0,232,35.00,'USD','5.3',2,0,0,1422565200,58880,0,'Variants Table View','Qualiteam','Show all possible product variants as a table on the product page to enable bulk adding to cart of different variants','http://my.x-cart.com/sites/default/files/addons/QSL/VariantsTableView/iconAlt.png','https://market.x-cart.com/addons/variants-table-view.html','','a:1:{i:0;s:18:\"XC\\ProductVariants\";}','a:3:{i:0;s:21:\"Search and Navigation\";i:1;s:13:\"Design tweaks\";i:2;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',20624,0,0),(240,'GTS','CSI','[email protected]',0,0,0,0,0.0000,0,149,55.00,'USD','5.3',0,0,0,1423774800,55296,0,'Google Trusted Stores Integration','CFL Systems, Inc.','Integrate your store with Google Trusted Stores.','http://my.x-cart.com/sites/default/files/addons/CSI/GTS/icon.png','https://market.x-cart.com/addons/google-trusted-stores-integration-by-cfl-systems.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,4,0,0,0,'a:0:{}',21100,0,0),(241,'MultiCurrency','XC','[email protected]',0,0,0,0,0.0000,0,1976,0.00,'USD','5.3',2,0,1,1423039914,296960,1,'Multicurrency','X-Cart team','Show product prices in multiple currencies for your customers around the world.','http://my.x-cart.com/sites/default/files/addons/XC/MultiCurrency/icon.png','https://market.x-cart.com/addons/multicurrency-for-xcart5.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:11:\"Translation\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(242,'VePlatform','VeInteractive','[email protected]',0,0,0,0,0.0000,0,116,0.00,'USD','5.2',2,0,0,-10800,1899520,0,'VePlatform','Ve Interactive LTD','Instantly increase your sales by adding the VePlatform\'s integrated remarketing and\r\n re-engagement apps that convert customers who abandon your site.','http://my.x-cart.com/sites/default/files/addons/VeInteractive/VePlatform/iconAlt.png','https://market.x-cart.com/addons/VePlatform.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(243,'Banner','Get4click','[email protected]',0,0,0,0,0.0000,0,115,0.00,'USD','5.2',0,0,0,1424206800,16896,0,'Get4click','Get4click LLC','Increase your sales through Get4click. Get4click brings additional customers to your store through our partner network of selected online merchants.','http://my.x-cart.com/sites/default/files/addons/Get4click/Banner/iconAlt.png','https://market.x-cart.com/addons/Get4click.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(244,'ProductsMapPricing','CSI','[email protected]',0,0,0,0,0.0000,0,41,45.00,'USD','5.3',0,0,0,1425545788,66048,0,'Products MAP Pricing','CFL Systems, Inc.','Show MAP pricing to customers to satisfy manufacturer requirements while at the same time products can be purchased at a lower price.','http://my.x-cart.com/sites/default/files/addons/CSI/ProductsMapPricing/icon.png','https://market.x-cart.com/addons/products-map-pricing-by-cfl-systems.html','','a:0:{}','a:1:{i:0;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',21109,0,0),(245,'EBay','QSL','[email protected]',0,0,0,0,0.0000,0,1235,0.00,'USD','5.3',1,0,0,1422828646,448512,0,'X-Cart eBay Integration','Qualiteam','Connect your store in minutes and manage your eBay listings in seconds. One by one or in bulk, manually or automatically: send and update products, variants, images, descriptions and prices. Import orders back to X-Cart and manage them in the X-Cart admin area.','http://my.x-cart.com/sites/default/files/addons/QSL/EBay/iconAlt.png','https://market.x-cart.com/addons/ebay-integration.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:14:\"Administration\";i:2;s:11:\"Fulfillment\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(246,'Beanstream','XC','[email protected]',0,0,0,0,0.0000,0,155,0.00,'USD','5.3',1,0,0,1425243600,51200,0,'Beanstream / Digital River (Hosted Payment Form)','X-Cart team','When your customers enter their card number on the payment page, they are seamlessly transferred from your website domain and are temporarily \"hosted\" on Beanstream\'s PCI level one compliant servers. For the merchants in Canada, the UK and the USA.','http://my.x-cart.com/sites/default/files/addons/XC/Beanstream/iconAlt.png','https://market.x-cart.com/addons/beanstream.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(247,'NetbanxHostedPayment','XC','[email protected]',0,0,0,0,0.0000,0,113,0.00,'USD','5.3',1,0,0,1425243600,61440,0,'Netbanx (Optimal Payments)','X-Cart team','Available in the US, Canada, UK, Europe and many other countries.Process all major credit and debit cards including Visa, MasterCard, AMEX, Discover, JCB and Carta Si. PCI compliant, with the support of 3d secure and advanced fraud-screening tools.','http://my.x-cart.com/sites/default/files/addons/XC/NetbanxHostedPayment/iconAlt.png','https://market.x-cart.com/addons/netbanx-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(248,'ExtendedSimpleCMS','QSL','[email protected]',0,0,0,0,0.0000,0,233,0.00,'USD','5.3',0,0,0,1426576102,10240,0,'Extended Simple CMS [DEPRECATED]','Qualiteam','This module allows you to create awesome multilevel primary and footer menus.','http://my.x-cart.com/sites/default/files/addons/QSL/ExtendedSimpleCMS/icon.png','https://market.x-cart.com/addons/extended-simple-cms.html','','a:0:{}','a:3:{i:0;s:21:\"Search and Navigation\";i:1;s:13:\"Design tweaks\";i:2;s:15:\"User experience\";}',1,0,4,0,1,0,'a:0:{}',0,0,0),(249,'MyWishlist','QSL','[email protected]',0,0,0,0,0.0000,0,772,99.00,'USD','5.3',0,10,2,1425544139,182272,0,'My Wishlist','Qualiteam','My Wishlist allows your customer to collect the favorited products into one wishlist in which the customer can buy them, track them in the catalog and send the list to friends as desired shopping list','http://my.x-cart.com/sites/default/files/addons/QSL/MyWishlist/iconAlt.png','https://market.x-cart.com/addons/my-wishlist.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,1,0,'a:0:{}',20650,0,0),(250,'Api','ShipStation','[email protected]',0,0,0,0,0.0000,0,326,0.00,'USD','5.3',0,0,0,1426595200,32256,0,'ShipStation','ShipStation','Wherever you sell, however you ship, ShipStation helps you create shipping labels easily and efficiently.','http://my.x-cart.com/sites/default/files/addons/ShipStation/Api/iconAlt.png','https://market.x-cart.com/addons/ShipStation-app-for-xcart.html','','a:0:{}','a:1:{i:0;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(251,'SeventyOnePounds','AutomatedShippingRefunds71LBS','[email protected]',0,0,0,0,0.0000,0,137,0.00,'USD','5.3',0,0,0,1426540577,21504,0,'71Lbs Automated Shipping Refunds','71 LBS','71Lbs audits FedEx & UPS shipping accounts and automatically claims refunds for any\n late deliveries - even by 60 seconds. It is a \"Set it & Forget it\" system.','http://my.x-cart.com/sites/default/files/addons/AutomatedShippingRefunds71LBS/SeventyOnePounds/iconAlt.png','https://market.x-cart.com/addons/71Lbs.html','','a:0:{}','a:1:{i:0;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(252,'Arabic','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,34,159.99,'USD','5.3',1,0,0,1427925357,578048,0,'Translation: Arabic','Xcart Language Packs','Translates your shop interface to Arabic language. Includes the translation of both the Storefront and Administrator zone.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Arabic/iconAlt.png','https://market.x-cart.com/addons/translation-arabic.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20656,0,0),(253,'Urdu','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,1,159.99,'USD','5.3',1,0,0,1427926166,608768,0,'Translation: Urdu','Xcart Language Packs','Translate your X-Cart store interface to Urdu with this module. Both the Customer Storefront and the Administrator Area are covered.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Urdu/iconAlt.png','https://market.x-cart.com/addons/translation-urdu.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20683,0,0),(254,'Turkish','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,13,159.99,'USD','5.3',1,0,0,1427926142,516096,0,'Translation: Turkish','Xcart Language Packs','Use this language pack to translate your X-Cart online store (both Admin Area and Storefront) to Turkish.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Turkish/iconAlt.png','https://market.x-cart.com/addons/translation-turkish.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20682,0,0),(255,'Thai','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,2,159.99,'USD','5.3',1,0,0,1427926124,711680,0,'Translation: Thai','Xcart Language Packs','Translate your X-Cart shop Customer and Administrator Zones interface into the Thai language with the help of this module.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Thai/iconAlt.png','https://market.x-cart.com/addons/translation-thai.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20681,0,0),(256,'Swedish','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,2,159.99,'USD','5.3',1,0,0,1427926099,510464,0,'Translation: Swedish','Xcart Language Packs','This language pack translates your shop interface to Swedish. Both the customer area and the admin interface are translated.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Swedish/iconAlt.png','https://market.x-cart.com/addons/translation-swedish.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20680,0,0),(257,'Romanian','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,4,159.99,'USD','5.3',1,0,0,1427926043,532992,0,'Translation: Romanian','Xcart Language Packs','This language pack translates your store to Romanian. Includes both the Customer and Administrator area translation.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Romanian/iconAlt.png','https://market.x-cart.com/addons/translation-romanian.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20679,0,0),(258,'Portuguese','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,1,159.99,'USD','5.3',1,0,0,1427926018,524800,0,'Translation: Portuguese','Xcart Language Packs','The module translates your shop interface to the Portuguese language. It includes the translation of both the Customer front-end and Administrator back-end.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Portuguese/iconAlt.png','https://market.x-cart.com/addons/translation-portuguese.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20678,0,0),(259,'Polish','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,1,159.99,'USD','5.3',1,0,0,1427925995,521728,0,'Translation: Polish','Xcart Language Packs','Translate your shop interface to Polish with this module, which contains the translation for both the Front-end and Administrator area.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Polish/iconAlt.png','https://market.x-cart.com/addons/translation-polish.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20677,0,0),(260,'Persian','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,0,159.99,'USD','5.3',1,0,0,1427925977,593408,0,'Translation: Persian','Xcart Language Packs','Use this language pack to translate your X-Cart based store to Persian. Translation of both interfaces, the Customer Storefront and the Administrator Backend, are included in the module.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Persian/iconAlt.png','https://market.x-cart.com/addons/translation-persian.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20676,0,0),(261,'Norwegian','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,0,159.99,'USD','5.3',1,0,0,1427925947,507392,0,'Translation: Norwegian','Xcart Language Packs','The module translates your shop interface to the Norwegian language. It includes the translation of both the Customer Storefront and the Administrator Zone.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Norwegian/iconAlt.png','https://market.x-cart.com/addons/translation-norwegian.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20675,0,0),(262,'Malay','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,1,159.99,'USD','5.3',1,0,0,1427925923,514560,0,'Translation: Malay','Xcart Language Packs','The module translates your shop interface to Malay. It includes text entities for both the Customer Storefront and the Administrator Backend.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Malay/iconAlt.png','https://market.x-cart.com/addons/translation-malay.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20674,0,0),(263,'Korean','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,3,159.99,'USD','5.3',1,0,0,1427925901,530944,0,'Translation: Korean','Xcart Language Packs','Your X-Cart shop interface will be translated to Korean by this module. Both the customer area and the admin zone are modified.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Korean/iconAlt.png','https://market.x-cart.com/addons/translation-korean.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20673,0,0),(264,'Japanese','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,22,159.99,'USD','5.3',1,0,0,1427925877,561152,0,'Translation: Japanese','Xcart Language Packs','This language pack will translate your X-Cart store interface to Japanese. Both the Customer Storefront and the Administrator Backend are converted.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Japanese/iconAlt.png','https://market.x-cart.com/addons/translation-japanese.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20672,0,0),(265,'Italian','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,18,159.99,'USD','5.3',1,0,0,1427925848,528384,0,'Translation: Italian','Xcart Language Packs','Use this module to translate your online store (both Admin interface and Storefront) to the Italian language.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Italian/iconAlt.png','https://market.x-cart.com/addons/translation-italian.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20671,0,0),(266,'Indonesian','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,2,159.99,'USD','5.3',1,0,0,1427925824,510976,0,'Translation: Indonesian','Xcart Language Packs','This language module translates your X-Cart shop interface to Indonesian. The package includes translation of both the Storefront and the Administrator Area.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Indonesian/iconAlt.png','https://market.x-cart.com/addons/translation-indonesian.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20670,0,0),(267,'Icelandic','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,0,159.99,'USD','5.3',1,0,0,1427925798,517120,0,'Translation: Icelandic','Xcart Language Packs','Translate your shop interface to Icelandic with this module, which contains the translation for both the Front-end and the Administrator area.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Icelandic/iconAlt.png','https://market.x-cart.com/addons/translation-icelandic.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20669,0,0),(268,'Hungarian','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,0,159.99,'USD','5.3',1,0,0,1427925766,522240,0,'Translation: Hungarian','Xcart Language Packs','Translate your X-Cart Customer and Administrator Interface to Hungarian with this pack.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Hungarian/iconAlt.png','https://market.x-cart.com/addons/translation-hungarian.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20668,0,0),(269,'Hindi','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,1,159.99,'USD','5.3',1,0,0,1427925722,716800,0,'Translation: Hindi','Xcart Language Packs','This language pack translates your X-Cart online store to Hindi. Both the customer area and the admin interface are translated.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Hindi/iconAlt.png','https://market.x-cart.com/addons/translation-hindi.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20667,0,0),(270,'Hebrew','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,1,159.99,'USD','5.3',1,0,0,1427925693,553472,0,'Translation: Hebrew','Xcart Language Packs','Translates your X-Cart based store to Hebrew. It includes the translation of both the Customer and Administrator interfaces.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Hebrew/iconAlt.png','https://market.x-cart.com/addons/translation-hebrew.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20666,0,0),(271,'Greek','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,2,159.99,'USD','5.3',1,0,0,1427922000,668672,0,'Translation: Greek','Xcart Language Packs','Translates your shop interface to the Greek language. The pack translates both the Customer front-end and Administrator area.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Greek/iconAlt.png','https://market.x-cart.com/addons/translation-greek.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20665,0,0),(272,'German','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,9,159.99,'USD','5.3',1,0,0,1427922000,530432,0,'Translation: German','Xcart Language Packs','Translates your shop interface to German. Includes the translation of both the Storefront and Administrator back-end.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/German/iconAlt.png','https://market.x-cart.com/addons/translation-german.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20664,0,0),(273,'French','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,18,159.99,'USD','5.3',1,0,0,1427922000,537600,0,'Translation: French','Xcart Language Packs','The module translates your shop interface to French. It includes the translation for both the Customer front-end and Administrator back-end.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/French/iconAlt.png','https://market.x-cart.com/addons/translation-french.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20663,0,0),(274,'Finnish','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,5,159.99,'USD','5.3',1,0,0,1427925626,506880,0,'Translation: Finnish','Xcart Language Packs','Translates your X-Cart store interface to Finnish. Both the Customer front-end and Administrator back-end are covered.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Finnish/iconAlt.png','https://market.x-cart.com/addons/translation-finnish.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20662,0,0),(275,'Danish','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,10,159.99,'USD','5.3',1,0,0,1427925523,509440,0,'Translation: Danish','Xcart Language Packs','The module translates your X-Cart store interface to Danish. The package includes both the Customer and Administrator areas translation.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Danish/iconAlt.png','https://market.x-cart.com/addons/translation-danish.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20660,0,0),(276,'Czech','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,0,159.99,'USD','5.3',1,0,0,1427925493,519680,0,'Translation: Czech','Xcart Language Packs','Translates your shop interface to Czech. Includes translation for both the Customer front-end and the Administrator back-end','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Czech/iconAlt.png','https://market.x-cart.com/addons/translation-czech.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20659,0,0),(277,'Bulgarian','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,2,159.99,'USD','5.3',1,0,0,1427925392,633344,0,'Translation: Bulgarian','Xcart Language Packs','Translate your X-Cart interface to the Bulgarian language. The package includes the translation for both the Storefront and the Administrator zone.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Bulgarian/iconAlt.png','https://market.x-cart.com/addons/translation-bulgarian.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20658,0,0),(278,'Bengali','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,0,159.99,'USD','5.3',1,0,0,1427922000,718336,0,'Translation: Bengali','Xcart Language Packs','Translate your X-Cart shop interface to Bengali with this module. It contains the translation for both the Storefront and the Administrator Zone','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Bengali/iconAlt.png','https://market.x-cart.com/addons/translation-bengali.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20657,0,0),(279,'Spanish','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,36,159.99,'USD','5.3',1,0,0,1427926074,532992,0,'Translation: Spanish','Xcart Language Packs','Translate your X-Cart based online store to Spanish. The package includes the translation for both the Customer front-end and Administrator back-end.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Spanish/iconAlt.png','https://market.x-cart.com/addons/translation-spanish.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,0,0,0,0,0,'a:0:{}',20651,0,0),(280,'Dutch','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,0,159.99,'USD','5.3',1,0,0,1427839175,518656,0,'Translation: Dutch','Xcart Language Packs','This module translates your shop interface (Admin and Customer area) to Dutch.','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Dutch/iconAlt.png','https://market.x-cart.com/addons/translation-dutch.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,1,11,0,0,0,'a:0:{}',20661,0,0),(281,'Sitemap','XC','[email protected]',0,0,0,0,0.0000,0,2129,0.00,'USD','5.3',1,0,0,1427144400,61440,1,'Site Map','X-Cart team','Enable a sitemap on your site for easier customers\' navigation.The sitemap can include categories and static pages.','http://my.x-cart.com/sites/default/files/addons/XC/Sitemap/iconAlt.png','https://market.x-cart.com/addons/site_map.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:21:\"Search and Navigation\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(282,'Curtains_n_Blinds','QSL','[email protected]',0,0,0,0,0.0000,0,97,99.00,'USD','5.3',0,1,1,1427749200,1071616,0,'Curtains & Blinds','Qualiteam','The \"Curtains & Blinds\" X-Cart Design Template (#44). This template is good for the following themes: Interior & Furniture, Accessories, Books, Clothing, Fashion','http://my.x-cart.com/sites/default/files/addons/QSL/Curtains_n_Blinds/iconAlt.png','https://market.x-cart.com/xcart-templates/curtains-n-blinds.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20655,0,0),(283,'Bulk_Order','Ship200','[email protected]',0,0,0,0,0.0000,0,39,0.00,'USD','5.2',2,0,0,1442782800,31744,0,'Ship200 Bulk Order','Ship200','This addon will integrate all shipping carriers: UPS, Fedex, USPS (Stamps.com and Endicia.com) into your backend/admin. It will connect your store to Ship200, and add the ability to download orders to Ship200 for creating shipping labels in bulk.','http://my.x-cart.com/sites/default/files/addons/Ship200/Bulk_Order/iconAlt.png','https://market.x-cart.com/addons/Ship200_Bulk_Order.html','','a:0:{}','a:1:{i:0;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(284,'Onebyone','Ship200','[email protected]',0,0,0,0,0.0000,0,57,0.00,'USD','5.2',2,0,0,1442866735,37888,0,'Ship200 OneByOne','Ship200','This addon will integrate all shipping carriers: UPS, Fedex, USPS (Stamps.com and Endicia.com) into your backed/admin. It will add \"Create Shipping Label\" and \"Make Return Label\" to order detail page.','http://my.x-cart.com/sites/default/files/addons/Ship200/Onebyone/iconAlt.png','https://market.x-cart.com/addons/Ship200_OneByOne.html','','a:0:{}','a:1:{i:0;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(285,'Testimonial','PerceptionSystemPvtLtd','[email protected]',0,0,0,0,0.0000,0,80,29.99,'USD','5.3',2,0,0,1429563600,713728,0,'Video and Content Testimonial','Perception System Pvt. Ltd.','Testimonial Module is a reliable and full-featured module that enables your clients to share their views about your products/services. This module supports text as well as video testimonials through which you can convince your visitors to become your customers.','http://my.x-cart.com/sites/default/files/addons/PerceptionSystemPvtLtd/Testimonial/icon.png','https://market.x-cart.com/addons/testimonial-module-by-perception-system.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',20686,0,0),(286,'LinkedinGroupFeed','Webkulsoftware','[email protected]',0,0,0,0,0.0000,0,0,29.00,'USD','5.2',0,0,0,1430082000,123392,0,'Linkedin Group Feed','Webkul Software Pvt. Ltd.','This is the best Linkedin group feed Plugin in Xcart. This brilliant module show your Linkedin group post in awesome manner. Xcart Linkedin Group Feed loads all your Linkedin group feed automatically by provide some required information.','http://my.x-cart.com/sites/default/files/addons/Webkulsoftware/LinkedinGroupFeed/iconAlt.png','https://market.x-cart.com/addons/Linkedin-Group-Feed-by-webkulsoftware.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',20687,0,0),(287,'AuctionInc','XC','[email protected]',0,0,0,0,0.0000,0,4135,0.00,'USD','5.3',1,3,0,1430082000,327680,0,'AuctionInc ShippingCalc','X-Cart team','Provide your customers with accurate \"real-time\" comparative domestic or international shipping rates from\nyour choice of services from Fedex, UPS, USPS and DHL. No carrier accounts required. Full support for your\nitem dimensions and dimensional rates. Shipping origins from any country supported. A host of advanced\nfeatures include: shipping promotions, bundled handling fees, drop-shipping from multiple origins, and a\npackaging engine that accurately predicts appropriate packaging for multiple items and quantities. Free\nmonth-long trial, then subscription to AuctionInc required.','http://my.x-cart.com/sites/default/files/addons/XC/AuctionInc/icon.png','https://market.x-cart.com/addons/shipping-calc-by-auction-inc.html','','a:0:{}','a:3:{i:0;s:14:\"Administration\";i:1;s:11:\"Fulfillment\";i:2;s:8:\"Shipping\";}',1,0,5,0,0,0,'a:0:{}',0,0,0),(288,'HiddenProducts','CSI','[email protected]',0,0,0,0,0.0000,0,62,40.00,'USD','5.3',0,0,0,1430344006,58368,0,'Hidden Products','CFL Systems, Inc.','This module adds \'Hidden but available for sale\' functionality for products.','http://my.x-cart.com/sites/default/files/addons/CSI/HiddenProducts/icon.png','https://market.x-cart.com/addons/hidden-products-by-cfl-systems.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";i:2;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',21103,0,0),(289,'MinimumOrderFee','CSI','[email protected]',0,0,0,0,0.0000,0,10,45.00,'USD','5.3',0,0,0,1431035360,61952,0,'Minimum Order Fee','CFL Systems, Inc.','The Minimum Order Fee module allows admin to set minimum purchase on orders and charge a fee if this limit is not reached. The fee can be set as percentage of the order subtotal or fixed amount and can be restricted to certain memberships only.','http://my.x-cart.com/sites/default/files/addons/CSI/MinimumOrderFee/icon.png','https://market.x-cart.com/addons/minimum-order-fee-by-cfl-systems.html','','a:0:{}','a:1:{i:0;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',21105,0,0),(290,'Dresscode','QSL','[email protected]',0,0,0,0,0.0000,0,28,99.00,'USD','5.3',0,0,1,1434229200,601088,0,'DressCode with Xmas','Qualiteam','The \"DressCode with Xmas\" X-Cart Design Template (#27). This template is good for the following themes: Accessories, Clothing, Jewelry, Watches, Wedding','http://my.x-cart.com/sites/default/files/addons/QSL/Dresscode/icon.png','https://market.x-cart.com/xcart-templates/dresscode.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',453,0,0),(291,'OrderPrefixSuffix','CSI','[email protected]',0,0,0,0,0.0000,0,25,45.00,'USD','5.3',0,0,0,1431985877,37888,0,'Order Prefix/Suffix','CFL Systems, Inc.','Add Prefix and/or Suffix to store\'s orders numbers.','http://my.x-cart.com/sites/default/files/addons/CSI/OrderPrefixSuffix/icon.png','https://market.x-cart.com/addons/order-prefix-suffix-by-cfl-systems.html','','a:0:{}','a:3:{i:0;s:15:\"User experience\";i:1;s:11:\"Fulfillment\";i:2;s:10:\"Accounting\";}',1,0,0,0,0,0,'a:0:{}',21106,0,0),(292,'Chinese','XcartLanguagePacks','[email protected]',0,0,0,0,0.0000,0,18,159.99,'USD','5.3',1,0,0,1432245466,477184,0,'Translation: Chinese','Xcart Language Packs','Translates your shop interface to Chinese Traditional. Includes translation for both the Customer front-end and Administrator back-end.\nWarning! Installing this module will overwrite any existing label translations for this language.\n','http://my.x-cart.com/sites/default/files/addons/XcartLanguagePacks/Chinese/iconAlt.png','https://market.x-cart.com/addons/translation-chinese-alternative.html','','a:0:{}','a:1:{i:0;s:11:\"Translation\";}',1,1,12,0,0,0,'a:0:{}',20691,0,0),(293,'FreshModernFlatTheme','PerceptionSystemPvtLtd','[email protected]',0,0,0,0,0.0000,0,5,49.00,'USD','5.2',1,0,5,1432501200,4828160,0,'Fresh Modern Flat Theme','Perception System Pvt. Ltd.','Fresh Modern Flat is a unique and colorful theme that enables to make your store better among other eCommerce stores available on the web.','http://my.x-cart.com/sites/default/files/addons/PerceptionSystemPvtLtd/FreshModernFlatTheme/icon.png','https://market.x-cart.com/addons/Fresh-Modern-Flat-Theme.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',20692,0,0),(294,'Coinzone','Coinzone','[email protected]',0,0,0,0,0.0000,0,0,0.00,'USD','5.1',10,0,0,1432674000,29696,0,'Coinzone','Coinzone B.V.','Bitcoin Payments powered by Coinzone','http://my.x-cart.com/sites/default/files/addons/Coinzone/Coinzone/iconAlt.png','https://market.x-cart.com/addons/Bitcoin-Payments-by-Coinzone.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(295,'EBSIndia','XC','[email protected]',0,0,0,0,0.0000,0,118,0.00,'USD','5.3',1,1,0,1433106000,92160,0,'EBS India','X-Cart team','Accept Visa, MasterCard, Maestro, AMEX, JCB, Diners. Offer international payments and multi-currency services. Payment processing provider in India with PCI DSS Level 1 since 2010.','http://my.x-cart.com/sites/default/files/addons/XC/EBSIndia/icon.png','https://market.x-cart.com/addons/ebs-india-payment-method.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(296,'PoliPayment','XC','[email protected]',0,0,0,0,0.0000,0,169,0.00,'USD','5.3',1,0,0,1433106000,51200,0,'Poli Payment','X-Cart team','Easy payments. POLi enables your customers to pay via their internet banking. Our software populates the payment details and tells you as soon as the payment is complete.','http://my.x-cart.com/sites/default/files/addons/XC/PoliPayment/iconAlt.png','https://market.x-cart.com/addons/poli-payment-method.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(297,'SofortBanking','XC','[email protected]',0,0,0,0,0.0000,0,115,0.00,'USD','5.3',2,0,0,1433106000,174080,0,'SOFORT Banking','X-Cart team','Enables receiving payments for your online store via SOFORT Banking payment system.','http://my.x-cart.com/sites/default/files/addons/XC/SofortBanking/icon.png','https://market.x-cart.com/addons/sofort-banking.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(298,'Booking','QSL','[email protected]',0,0,0,0,0.0000,0,33,495.00,'USD','5.2',3,0,0,1433970000,265728,0,'Booking','Qualiteam','Allows your customers to book, rent or make reservations.','http://my.x-cart.com/sites/default/files/addons/QSL/Booking/icon.png','https://market.x-cart.com/addons/booking.html','','a:0:{}','a:1:{i:0;s:7:\"Booking\";}',1,0,1,0,0,0,'a:0:{}',20698,0,0),(299,'AvaTax','XC','[email protected]',0,0,0,0,0.0000,0,329,0.00,'USD','5.3',1,2,0,1433797200,133120,0,'AvaTax Sales Tax Automation','X-Cart team','The fastest, easiest, most accurate and affordable way to calculate sales tax, manage tax exemptions and file returns. Avalara determines the tax rates automatically based on 100,000+ taxability rules in 11,000+ taxing jurisdictions.','http://my.x-cart.com/sites/default/files/addons/XC/AvaTax/icon.png','https://market.x-cart.com/addons/avatax-sales-tax-automation.html','','a:0:{}','a:1:{i:0;s:5:\"Taxes\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(300,'HiddenCoupons','CSI','[email protected]',0,0,0,0,0.0000,0,2,40.00,'USD','5.3',0,0,0,1434318293,38912,0,'Hidden Coupons','CFL Systems, Inc.','This module hides the coupon code on checkout, order confirmation and invoice pages.','http://my.x-cart.com/sites/default/files/addons/CSI/HiddenCoupons/icon.png','https://market.x-cart.com/addons/hidden-coupons-by-cfl-systems.html','','a:1:{i:0;s:12:\"CDev\\Coupons\";}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',21102,0,0),(301,'TaxExempt','QSL','[email protected]',0,0,0,0,0.0000,0,40,99.00,'USD','5.3',2,0,0,1435784400,60416,0,'Tax Exempt','Qualiteam','Enable tax exemption for particular customers or for selected products.','http://my.x-cart.com/sites/default/files/addons/QSL/TaxExempt/iconAlt.png','https://market.x-cart.com/addons/tax-exemption.html','','a:0:{}','a:2:{i:0;s:5:\"Taxes\";i:1;s:10:\"Accounting\";}',1,0,2,0,1,0,'a:0:{}',20701,0,0),(302,'Intimates','QSL','[email protected]',0,0,0,0,0.0000,0,154,99.00,'USD','5.3',0,0,1,1435784400,1133056,0,'Intimates','Qualiteam','The \"Intimates\" X-Cart Design Template (#45). This template is good for the following themes: Accessories, Clothing, Jewelry, Watches, Wedding','http://my.x-cart.com/sites/default/files/addons/QSL/Intimates/icon.png','https://market.x-cart.com/xcart-templates/intimates.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20702,0,0),(303,'Genesis','EMerchantPay','[email protected]',0,0,0,0,0.0000,0,28,0.00,'USD','5.3',1,0,0,-10800,925696,0,'eMerchantPay','eMerchantPay','Accept payments through eMerchantPay\'s Payment Gateway - Genesis','http://my.x-cart.com/sites/default/files/addons/EMerchantPay/Genesis/iconAlt.png','https://market.x-cart.com/addons/emerchantpay.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(304,'AccountNotes','CSI','[email protected]',0,0,0,0,0.0000,0,19,50.00,'USD','5.3',1,0,0,1437034313,162304,0,'Account Notes','CFL Systems, Inc.','Account Notes module allows admin to add notes to profiles. Add records about phone calls, shopping behavior, restrictions, etc.','http://my.x-cart.com/sites/default/files/addons/CSI/AccountNotes/icon.png','https://market.x-cart.com/addons/account-notes-by-cfl-systems.html','','a:0:{}','a:3:{i:0;s:11:\"Fulfillment\";i:1;s:14:\"Administration\";i:2;s:15:\"User experience\";}',1,0,3,0,0,0,'a:0:{}',21099,0,0),(305,'PopupAnywhere','QSL','[email protected]',0,0,0,0,0.0000,0,152,99.00,'USD','5.3',2,0,0,1439921783,220672,0,'Pop-up Anywhere','Qualiteam','Create unlimited number of attractive and informative popup messages for your customers regardless of the page they land on when arriving on your site.','http://my.x-cart.com/sites/default/files/addons/QSL/PopupAnywhere/icon.png','https://market.x-cart.com/addons/popup-anywhere.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,1,0,'a:0:{}',20705,0,0),(306,'GbTranslation','XC','[email protected]',0,0,0,0,0.0000,0,167,0.00,'USD','5.3',2,0,0,0,92160,0,'Translation: British English','X-Cart team','British english translation pack','http://my.x-cart.com/sites/default/files/addons/XC/GbTranslation/icon.png','https://market.x-cart.com/addons/translation-british-english.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(307,'EProcessingNetwork','QSL','[email protected]',0,0,0,0,0.0000,0,5,39.00,'USD','5.3',0,0,0,1440363600,30208,0,'eProcessing Network - Database Engine','Qualiteam','Accepting credit and debit cards, checks, gift cards via an online secure real-time transaction processing engine. This payment extension uses the Database Engine Template (DBE).','http://my.x-cart.com/sites/default/files/addons/QSL/EProcessingNetwork/icon.png','https://market.x-cart.com/addons/eprocessing-network-database-engine.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,1,0,1,0,'a:0:{}',20706,0,0),(308,'CCBill','QSL','[email protected]',0,0,0,0,0.0000,0,4,39.00,'USD','5.3',0,0,0,1440429545,32768,0,'CCBill','Qualiteam','Accept payments online via CCBill in your X-Cart store.','http://my.x-cart.com/sites/default/files/addons/QSL/CCBill/icon.png','https://market.x-cart.com/addons/ccbill-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,3,0,1,0,'a:0:{}',20707,0,0),(309,'FirstDataPayeezyGatewayHP','QSL','[email protected]',0,0,0,0,0.0000,0,49,39.00,'USD','5.3',0,0,0,1440363600,86016,0,'First Data Payeezy Gateway','Qualiteam','Accepting payments via First Data Payeezy Gateway - Hosted Payment Pages (formerly FirstData Global Gateway e4).','http://my.x-cart.com/sites/default/files/addons/QSL/FirstDataPayeezyGatewayHP/icon.png','https://market.x-cart.com/addons/payeeze-by-firstdata.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,5,0,1,0,'a:0:{}',20708,0,0),(310,'Dark','QSL','[email protected]',0,0,0,0,0.0000,0,10,49.00,'USD','5.2',4,0,14,1440536400,522240,0,'Dark','Qualiteam','The \"Dark\" X-Cart Design Template (#46). This template is good for the following themes: Baby, Beauty, Books, Business, Clothing, Cars, Computers, Education, Electronics, Fashion, Hobbies & Crafts, Hotels, Interior & Furniture, Medical, Music, Nature, Nutritional supplements, Wedding, Wine, Winter.','http://my.x-cart.com/sites/default/files/addons/QSL/Dark/icon.png','https://www.x-cart.com/extensions/xcart-templates/dark.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20959,0,0),(311,'Light','QSL','[email protected]',0,0,0,0,0.0000,0,20,49.00,'USD','5.3',0,0,1,1440536400,413184,0,'Light','Qualiteam','The \"Light\" X-Cart Design Template (#47). This template is good for the following themes: Baby, Beauty, Books, Business, Clothing, Computers, Education, Electronics, Fashion, Hobbies & Crafts, Hotels, Interior & Furniture, Medical, Music, Nature, Nutritional supplements, Wedding, Wine, Winter.','http://my.x-cart.com/sites/default/files/addons/QSL/Light/icon.png','https://market.x-cart.com/light.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20960,0,0),(312,'GraphicStock','QSL','[email protected]',0,0,0,0,0.0000,0,94,149.00,'USD','5.3',1,2,1,1440536400,957952,0,'Graphic Stock','Qualiteam','The \"Graphic Stock\" X-Cart Design Template (#48). This template is good for the following themes: Graphics, cars, books, accessories, equipment','http://my.x-cart.com/sites/default/files/addons/QSL/GraphicStock/iconAlt.png','https://market.x-cart.com/xcart-templates/graphicstock.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20961,0,0),(313,'CartIcons','QSL','[email protected]',0,0,0,0,0.0000,0,106,14.95,'USD','5.3',0,0,0,1441573200,111616,0,'Cart Icons','Qualiteam','Decorate cart buttons and icons in your online store.','http://my.x-cart.com/sites/default/files/addons/QSL/CartIcons/icon.png','https://market.x-cart.com/addons/cart-icons.html','','a:0:{}','a:1:{i:0;s:13:\"Design tweaks\";}',1,0,4,0,1,0,'a:0:{}',20962,0,0),(314,'WordPressIntegration','QSL','[email protected]',0,0,0,0,0.0000,0,263,0.00,'USD','5.3',0,0,0,1439067600,463360,0,'X-Cart 5 to WordPress Integration','Qualiteam','Sell and promote your products by embedding X-Cart products and categories directly in your WordPress blog posts','http://my.x-cart.com/sites/default/files/addons/QSL/WordPressIntegration/icon.png','https://market.x-cart.com/addons/xcart-in-wordpress.html','','a:1:{i:0;s:10:\"XC\\RESTAPI\";}','a:3:{i:0;s:9:\"Marketing\";i:1;s:13:\"Design tweaks\";i:2;s:4:\"Blog\";}',1,0,6,0,1,0,'a:0:{}',0,0,0),(315,'FashionAccessories','QSL','[email protected]',0,0,0,0,0.0000,0,12,99.00,'USD','5.3',0,0,1,1442350800,872448,0,'Fashion Accessories','Qualiteam','The \"Fashion Accessories\" X-Cart Design Template (#21). This template is good for the following themes: Accessories, Beauty, Clothing, Fashion, Jewelry, Wedding','http://my.x-cart.com/sites/default/files/addons/QSL/FashionAccessories/icon.png','https://market.x-cart.com/xcart-templates/fashion-accessories.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',457,0,0),(316,'EGateway','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',0,0,0,1443128400,35840,0,'E-Gateway','Qualiteam','Accepting Visa, Amex, Mastercard, Diners Club and JCB in the Australia, US, Canada, Europe, Europe, UK and most other regions.','http://my.x-cart.com/sites/default/files/addons/QSL/EGateway/icon.png','https://market.x-cart.com/addons/e-gateway-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,7,0,1,0,'a:0:{}',20964,0,0),(317,'GlobalTransport','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',0,0,0,1443128400,62976,0,'Global Transport Secure eCommerce','Qualiteam','Accepting Visa, MasterCard, American Express, Discover, JCB, Diners Club, China Union Pay.','http://my.x-cart.com/sites/default/files/addons/QSL/GlobalTransport/icon.png','https://market.x-cart.com/addons/global-transport-secure-ecommerce-payment-module.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20965,0,0),(318,'BackInStock','QSL','[email protected]',0,0,0,0,0.0000,0,217,69.00,'USD','5.3',0,0,1,1443183084,210944,0,'Back in Stock Notifications','Qualiteam','Drive more sales by making it easy for your customers to sign up for Back in Stock email notifications for the products they wanted to buy, but missed out. Send an automatic message once the product is available again!','http://my.x-cart.com/sites/default/files/addons/QSL/BackInStock/icon.png','https://market.x-cart.com/addons/back-in-stock-notifications.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";i:2;s:18:\"Catalog Management\";}',1,0,0,0,1,0,'a:0:{}',20966,0,0),(319,'MembershipProducts','QSL','[email protected]',0,0,0,0,0.0000,0,10,69.00,'USD','5.3',0,0,1,1444078800,68608,0,'Paid memberships','Qualiteam','Sell premium memberships in your store. The module expands the \"Memberships\" feature of X-Cart, enabling the ability to sell paid memberships as regular products.','http://my.x-cart.com/sites/default/files/addons/QSL/MembershipProducts/icon.png','https://market.x-cart.com/addons/paid-memberships.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:10:\"Accounting\";}',1,0,0,0,1,0,'a:0:{}',20967,0,0),(320,'ChronoPay','XC','[email protected]',0,0,0,0,0.0000,0,1,39.00,'USD','5.3',1,0,0,1444683600,51200,0,'ChronoPay','X-Cart team','Accept payments for any goods and services in the internet by bank cards (VISA, MasterCard, Maestro, American Express, Diners, JCB) and the most popular payment systems (Yandex.Money, Qiwi, Webmoney) all over the world: in America, Russia, Europe and Asia','http://my.x-cart.com/sites/default/files/addons/XC/ChronoPay/icon.png','https://market.x-cart.com/addons/chronopay.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20971,0,0),(321,'CustomOrderStatuses','XC','[email protected]',0,0,0,0,0.0000,0,374,0.00,'USD','5.3',2,0,0,-10800,71680,1,'Custom Order Statuses','X-Cart team','This module allows you to edit the existing order statuses and add new statuses.','http://my.x-cart.com/sites/default/files/addons/XC/CustomOrderStatuses/icon.png','https://market.x-cart.com/addons/custom-order-statuses.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:11:\"Fulfillment\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(322,'DIBSFlexWin','XC','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',1,0,0,1444683600,51200,0,'DIBS FlexWin','X-Cart team','FlexWin is the most frequently used payment window for DIBS, and is the most extended payment service provided. Released in 2007, the FlexWin layout is well known to shoppers all around Scandinavia.','http://my.x-cart.com/sites/default/files/addons/XC/DIBSFlexWin/icon.png','https://market.x-cart.com/addons/hosted-dibs-flexwin.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20972,0,0),(323,'DatatransUPP','XC','[email protected]',0,0,0,0,0.0000,0,8,39.00,'USD','5.3',1,1,0,1444683600,51200,0,'Datatrans (Universal payment page)','X-Cart team','The leading Payment Service Provider in Switzerland. It works together with a large number of Swiss acquirers/finance companies. All finance companies and methods of payment are automatically open to Datatrans customers.','http://my.x-cart.com/sites/default/files/addons/XC/DatatransUPP/icon.png','https://market.x-cart.com/addons/datatrans-universal-payment-page.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20969,0,0),(324,'DisableDragNDrop','XC','[email protected]',0,0,0,0,0.0000,0,365,0.00,'USD','5.3',0,0,0,1445202000,20480,0,'Disable drag\'n\'drop add to cart','X-Cart team','Disables the default drag-n-drop adding products to cart to replace it with the \'add to cart\' button on the product list pages (category, search results)','http://my.x-cart.com/sites/default/files/addons/XC/DisableDragNDrop/iconAlt.png','https://market.x-cart.com/addons/disable-drag-n-drop.html','','a:0:{}','a:1:{i:0;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(325,'EWAYStoredShared','XC','[email protected]',0,0,0,0,0.0000,0,99,0.00,'USD','5.3',1,0,0,1444683600,81920,0,'eWAY Responsive Shared Page','X-Cart team','Integration with eWAY using Responsive Shared Page method. It also comes with the built-in integration with 3D Secure, PayPal, MasterPass and Visa Checkout. Once this payment method is selected on checkout page, your customer is redirectedto a form hosted by eWay to enter payment information.','http://my.x-cart.com/sites/default/files/addons/XC/EWAYStoredShared/iconAlt.png','https://market.x-cart.com/addons/eway-responsive-shared-page.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',0,0,0),(326,'Geolocation','XC','[email protected]',0,0,0,0,0.0000,0,357,0.00,'USD','5.3',1,1,0,1445202000,2426880,1,'Geolocation','X-Cart team','Use free IP geolocation database GeoLite by Maxmind to improve the user experience of non-logged in customers - \"guess\" their country and address for more precise pre-login shipping cost estimation','http://my.x-cart.com/sites/default/files/addons/XC/Geolocation/icon.png','https://market.x-cart.com/addons/geolocation.html','','a:0:{}','a:1:{i:0;s:15:\"User experience\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(327,'PitneyBowes','XC','[email protected]',0,0,0,0,0.0000,0,1611,0.00,'USD','5.3',2,0,0,1444683600,1832960,0,'Pitney Bowes International','X-Cart team','PB\'s International Shipping service provides: guaranteed fully landed costs (duties, taxes, & tariffs) in the checkout, simple international parcel fulfilment, prohibited goods screening & export compliance, end to end parcel tracking, and insurance.','http://my.x-cart.com/sites/default/files/addons/XC/PitneyBowes/icon.png','','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(328,'ProductTags','XC','[email protected]',0,0,0,0,0.0000,0,774,0.00,'USD','5.3',2,0,0,1445202000,174080,1,'Product Tags','X-Cart team','Assign one or multiple tags to your products and improve the navigation for your customers, who can narrow the search results by tags in the Product Filters or, vice versa, see all products with the same tag.','http://my.x-cart.com/sites/default/files/addons/XC/ProductTags/icon.png','https://market.x-cart.com/addons/product-tags.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:21:\"Search and Navigation\";}',1,0,0,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(329,'WorldpayHPP','XC','[email protected]',0,0,0,0,0.0000,0,16,39.00,'USD','5.3',1,0,0,1444683600,51200,0,'Worldpay Pay Page','X-Cart team','The card payment processing is managed by Worldpay, so you and your customers can be confident that payment details are safe and secure. Some elements of the payment page are customizable to fit your brand','http://my.x-cart.com/sites/default/files/addons/XC/WorldpayHPP/icon.png','https://market.x-cart.com/addons/worldpay-hosted-payment-page.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',20973,0,0),(330,'ImageWatermark','CSI','[email protected]',0,0,0,0,0.0000,0,39,69.00,'USD','5.3',0,1,0,1444727108,4056064,0,'Image Watermark','CFL Systems, Inc.','This module allows you to watermark products and categories images with text and/or image.','http://my.x-cart.com/sites/default/files/addons/CSI/ImageWatermark/iconAlt.png','https://market.x-cart.com/addons/image-watermark-by-cfl-systems.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',21104,0,0),(331,'PaymentMethodFees','QSL','[email protected]',0,0,0,0,0.0000,0,87,49.00,'USD','5.3',1,0,0,-10800,95232,0,'Payment Method Fees','Qualiteam','This module allows you to configure discounts and extra fees for particular payment methods.','http://my.x-cart.com/sites/default/files/addons/QSL/PaymentMethodFees/icon.png','https://market.x-cart.com/addons/payment-method-fees.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20974,0,0),(332,'Paysafecard','QSL','[email protected]',0,0,0,0,0.0000,0,3,39.00,'USD','5.3',0,0,1,1444856400,49152,0,'Paysafecard','Qualiteam','Europe\'s leading prepaid solution for paying online, it enables your customers to pay online without a credit card. They purchase paysafecard at the nearest sales outlet ( $10, $25, $50, or $100) and pay with it at webshops by entering the 16-digit paysafecard PIN','http://my.x-cart.com/sites/default/files/addons/QSL/Paysafecard/icon.png','https://market.x-cart.com/addons/paysafecard.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20975,0,0),(333,'TenPay','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',0,0,1,1444856400,73216,0,'TenPay','Qualiteam','The extension integrates your store with a major Chinese payments solution enabling Chinese consumers to pay online and cross-border. Tenpay wallets can be topped up with cash, (e-)bank transfers and stored credit or debit cards.','http://my.x-cart.com/sites/default/files/addons/QSL/TenPay/icon.png','https://market.x-cart.com/addons/tenpay-china.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20976,0,0),(334,'Pagseguro','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',0,0,1,1444856400,599552,0,'PagSeguro - Padrao','Qualiteam','A Brazilian payment gateway supporting more than 25 payment methods with just one contract: credit and debit cards, bank deposits and more. To make payment, the customers are directed to PagSeguro page, and after that they\'re returned back to your store','http://my.x-cart.com/sites/default/files/addons/QSL/Pagseguro/icon.png','https://market.x-cart.com/addons/pagseguro-padrao.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20977,0,0),(335,'HiddenCategories','CSI','[email protected]',0,0,0,0,0.0000,0,27,50.00,'USD','5.3',0,0,0,1445204641,51712,0,'Hidden Categories','CFL Systems, Inc.','This module adds \'Hidden but available for sale\' functionality for categories.','http://my.x-cart.com/sites/default/files/addons/CSI/HiddenCategories/icon.png','https://market.x-cart.com/addons/hidden-categories-by-cfl-systems.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";i:2;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',21101,0,0),(336,'Giropay','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',0,0,1,1445288400,421376,0,'Giropay','Qualiteam','GiroCheckout is a simple, fast and secure solution for the integration of several payment methods - both national and international - in your online store. The highest safety standards and a transparent fee model distinguish GiroCheckout.','http://my.x-cart.com/sites/default/files/addons/QSL/Giropay/icon.png','https://market.x-cart.com/addons/giropay.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20979,0,0),(337,'Candles','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,99,139.00,'USD','5.3',2,2,1,1445893200,1993216,0,'Candles','TemplateMonster.com','Warm, cozy and relaxing - all the atmosphere the candles create. Banner carousel, built-in multilevel menu and other tools to attract customers attention. Fully responsive, SEO friendly and crossbrowser compatible.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/Candles/icon.png','https://market.x-cart.com/xcart-templates/candles.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20980,0,0),(338,'CoffeeShop','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,9,139.00,'USD','5.3',1,0,1,1445979600,1529344,0,'CoffeeShop','TemplateMonster.com','Unique atmosphere of elegance, serenity and comfort. Animated banner, new tabs, multilevel menu, optimized both for mobile navigation and desktops. Fully responsive, SEO friendly and crossbrowser compatible.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/CoffeeShop/icon.png','https://www.x-cart.com/extensions/xcart-templates/coffee-shop.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20981,0,0),(339,'OrganicCosmetics','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,12,139.00,'USD','5.3',1,1,0,1446039505,1380864,0,'Organic Cosmetics','TemplateMonster.com','Green pastel colors and subtle paper background lay stress on the natural origin of the products you sell. Beautiful banners, sticky multilevel categories menu, convenient navigation, etc. Fully responsive, SEO friendly and crossbrowser compatible.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/OrganicCosmetics/iconAlt.png','https://market.x-cart.com/xcart-templates/organic-cosmetics.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20982,0,0),(340,'Localizer','Localizer','[email protected]',0,0,0,0,0.0000,0,161,0.00,'USD','5.2',0,0,0,1450774394,18944,0,'Localizer','Localizer','Localize your website in just 3 easy steps with Localizer!','http://my.x-cart.com/sites/default/files/addons/Localizer/Localizer/iconAlt.png','https://market.x-cart.com/addons/localizer-for-xcart.html','','a:0:{}','a:4:{i:0;s:9:\"Marketing\";i:1;s:11:\"Translation\";i:2;s:3:\"SEO\";i:3;s:21:\"Search and Navigation\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(341,'FastSpring','QSL','[email protected]',0,0,0,0,0.0000,0,15,39.00,'USD','5.3',0,0,1,1446066000,205824,0,'FastSpring - Popup Storefronts','Qualiteam','Integrate your website with FastSpring, using the \"Popup Storefronts\" method. It creates a pop up (a lightbox area) over the checkout page of your online store, allowing a customer to pay for the order quickly without going to a different web page','http://my.x-cart.com/sites/default/files/addons/QSL/FastSpring/icon.png','https://market.x-cart.com/addons/fastspring.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20983,0,0),(342,'OrderStatus','CSI','[email protected]',0,0,0,0,0.0000,0,98,45.00,'USD','5.3',1,0,0,1446673934,62976,0,'Order Status','CFL Systems, Inc.','Customers can check order status without being logged in or having an account.','http://my.x-cart.com/sites/default/files/addons/CSI/OrderStatus/icon.png','https://market.x-cart.com/addons/order-status-by-cfl-systems.html','','a:0:{}','a:3:{i:0;s:15:\"User experience\";i:1;s:11:\"Fulfillment\";i:2;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',21107,0,0),(343,'ProductStickers','QSL','[email protected]',0,0,0,0,0.0000,0,176,49.00,'USD','5.3',0,0,0,1447275600,91648,0,'Product stickers','Qualiteam','This module will allow you to add custom stickers to your products','http://my.x-cart.com/sites/default/files/addons/QSL/ProductStickers/icon.png','https://market.x-cart.com/addons/product-stickers.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:13:\"Design tweaks\";}',1,0,8,0,1,0,'a:0:{}',20985,0,0),(344,'MobilePhones','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,63,139.00,'USD','5.3',1,0,1,1447275600,1763328,0,'MobilePhones','TemplateMonster.com','Stylish minimalistic design in white, black and coral. Sticky multilevel categories menu, banners, info blocks, google map, convenient and clear navigation. Fully responsive, SEO friendly and crossbrowser compatible.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/MobilePhones/icon.png','https://market.x-cart.com/xcart-templates/mobile-phones.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20987,0,0),(345,'ProductsCarousel','QSL','[email protected]',0,0,0,0,0.0000,0,109,49.00,'USD','5.3',1,2,0,1447275600,168448,0,'Products carousel','Qualiteam','Enable responsive and user-friendly product carousel for Bestsellers, Featured Products, New Arrivals, Product Recommendations, Cooming Soon and Products on Sale.','http://my.x-cart.com/sites/default/files/addons/QSL/ProductsCarousel/icon.png','https://market.x-cart.com/addons/products-carousel.html','','a:0:{}','a:3:{i:0;s:13:\"Design tweaks\";i:1;s:21:\"Search and Navigation\";i:2;s:18:\"Catalog Management\";}',1,0,0,0,1,0,'a:0:{}',20986,0,0),(346,'WebmasterSiteVerification','CSI','[email protected]',0,0,0,0,0.0000,0,16,35.00,'USD','5.3',0,0,0,1447837545,26112,0,'Webmaster Site Verification','CFL Systems, Inc.','Verify your site with 3rd party services including Google, Bing, Pinterest and Yandex.','http://my.x-cart.com/sites/default/files/addons/CSI/WebmasterSiteVerification/icon.png','https://market.x-cart.com/addons/webmaster-site-verification-by-cfl-systems.html','','a:0:{}','a:4:{i:0;s:6:\"Social\";i:1;s:3:\"SEO\";i:2;s:9:\"Marketing\";i:3;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',21111,0,0),(347,'GroceryStore','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,12,139.00,'USD','5.3',1,0,1,1447966800,3250176,0,'GroceryStore','TemplateMonster.com','Basil green and grey colors arise sensation of naturality and healthy lifestyle. Full width slider, banners, info blocks, animated elements, google map, etc. Fully responsive, SEO friendly and crossbrowser compatible.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/GroceryStore/icon.png','http://www.x-cart.com/extensions/xcart-templates/grocery-store.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20989,0,0),(348,'HolidayDecoration','QSL','[email protected]',0,0,0,0,0.0000,0,78,39.00,'USD','5.3',1,0,0,1480537163,267264,0,'Holiday Decoration','Qualiteam','The module adds holiday decoration to the store front.','http://my.x-cart.com/sites/default/files/addons/QSL/HolidayDecoration/iconAlt.png','https://market.x-cart.com/addons/holiday-decoration.html','','a:0:{}','a:1:{i:0;s:13:\"Design tweaks\";}',1,1,1,0,0,0,'a:0:{}',20990,0,0),(349,'NaturalCosmetics','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,162,139.00,'USD','5.3',3,0,1,-10800,2685440,0,'Natural Cosmetics','TemplateMonster.com','The template is designed in white, green and black colors to lay emphasis on the idea of naturalness of your products. Animated elements, banners, dropdown categories menu, menu in the footer, etc. Responsive, SEO friendly and crossbrowser compatible.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/NaturalCosmetics/icon.png','https://market.x-cart.com/xcart-templates/natural-cosmetics.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20993,0,0),(350,'AdvancedSecurity','QSL','[email protected]',0,0,0,0,0.0000,0,27,199.00,'USD','5.3',1,0,1,1449176400,8296448,0,'Block Users by IP / Country / User agent','Qualiteam','The module protects your store from bots and fraud customers, by limiting or restricting access to it with the help of flexible settings and filters, taking into account IP, address and user behaviour.','http://my.x-cart.com/sites/default/files/addons/QSL/AdvancedSecurity/icon.png','https://market.x-cart.com/addons/block-users-by-IP-country-user-agent.html','','a:0:{}','a:1:{i:0;s:14:\"Administration\";}',1,0,7,0,1,0,'a:0:{}',20994,0,0),(351,'DHL','XC','[email protected]',0,0,0,0,0.0000,0,365,0.00,'USD','5.3',1,1,0,1449435600,1105920,0,'DHL Shipping','X-Cart team','Get real-time shipping quotes for DHL delivery methods. The integration supports COD (cash on delivery) and insurance.','http://my.x-cart.com/sites/default/files/addons/XC/DHL/icon.png','https://market.x-cart.com/addons/DHL-shipping.html','','a:0:{}','a:1:{i:0;s:8:\"Shipping\";}',1,0,9,0,0,0,'a:0:{}',0,0,0),(352,'SkuVault','SkuVault','[email protected]',0,0,0,0,0.0000,0,32,0.00,'USD','5.2',0,0,0,1480337586,105472,0,'SkuVault','Danny Shaw','Integrates your store with SkuVault.','http://my.x-cart.com/sites/default/files/addons/SkuVault/SkuVault/iconAlt.png','https://market.x-cart.com/addons/SkuVault.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:14:\"Administration\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(353,'OutdoorFurniture','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,59,139.00,'USD','5.3',1,1,1,-10800,1472512,0,'Outdoor Furniture','TemplateMonster.com','Very clear and pleasant theme in white, black and spring green will enhance your store\'s visitors experience. Big slider, banners, animated blocks, intuitive navigation, info blocks, etc. Responsive, SEO friendly and crossbrowser compatible.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/OutdoorFurniture/icon.png','https://market.x-cart.com/xcart-templates/outdoor-furniture.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20995,0,0),(354,'Blog','PerceptionSystemPvtLtd','[email protected]',0,0,0,0,0.0000,0,135,29.00,'USD','5.3',2,0,0,1450040400,706048,0,'Easy Blog in x-cart 5','Perception System Pvt. Ltd.','Blog Module for x-cart aimed to share engaging information related to your store products/services to enable business to get advantage like google SEO, Brand recognition, increase website traffic, better conversion, more leads and ultimately, sales.','http://my.x-cart.com/sites/default/files/addons/PerceptionSystemPvtLtd/Blog/icon.png','https://market.x-cart.com/addons/blog-by-perception-system.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',21080,0,0),(355,'AggregionIntegration','AggregionLtd','[email protected]',0,0,0,0,0.0000,0,22,0.00,'USD','5.2',1,0,0,1450126800,137216,0,'Aggregion integration','Aggregion Ltd.','Module for integration with Aggregion','http://my.x-cart.com/sites/default/files/addons/AggregionLtd/AggregionIntegration/iconAlt.png','https://market.x-cart.com/addons/Aggregion-Integration.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(356,'Segment','QSL','[email protected]',0,0,0,0,0.0000,0,82,0.00,'USD','5.3',1,0,1,0,164352,0,'Segment Integration','Qualiteam','Segment is a powerful data aggregator, it tracks e-commerce events and sends this info to such apps as Mixpanel, Google Analytics, Localytics, RJ Metrics, SalesForce, HubSpot, Optimizely, Clicky and other data processing tools.','http://my.x-cart.com/sites/default/files/addons/QSL/Segment/iconAlt.png','https://market.x-cart.com/addons/segment-integration.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(357,'FatouratiPayment','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.2',0,0,0,1451250000,33792,0,'Fatourati Payments','Qualiteam','Enables taking credit card payments for your online store via FATOURATI payment gateway (Maroc Telecommerce).','http://my.x-cart.com/sites/default/files/addons/QSL/FatouratiPayment/icon.png','https://market.x-cart.com/addons/fatourati-payments.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',20998,0,0),(358,'MTCPayment','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.2',0,0,0,-10800,34816,0,'MTC Payments','Qualiteam','Enables taking credit card payments for your online store via MTCPayment payment gateway (Maroc Telecommerce).','http://my.x-cart.com/sites/default/files/addons/QSL/MTCPayment/icon.png','https://market.x-cart.com/addons/MTC-Payments.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',20999,0,0),(359,'SecurePay','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',0,0,1,1451250000,40448,0,'SecurePay (SecureFrame)','Qualiteam','Secure Pay module integrates your store with SecurePay\'s SecureFrame, a simple and flexible method of accepting payments in your store seamlessly via an iFrame.','http://my.x-cart.com/sites/default/files/addons/QSL/SecurePay/icon.png','https://market.x-cart.com/addons/secure-pay.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',21000,0,0),(360,'Dwolla','QSL','[email protected]',0,0,0,0,0.0000,0,2,69.00,'USD','5.3',0,0,1,-10800,960000,0,'Dwolla','Qualiteam','Dwolla network connects with U.S. banks and credit unions to provide safe, fast, account-to-account transfers at low costs. The integration uses Dwolla Direct option.','http://my.x-cart.com/sites/default/files/addons/QSL/Dwolla/icon.png','https://market.x-cart.com/addons/dwolla.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,7,0,0,0,'a:0:{}',21001,0,0),(361,'RealexHostedPayment','QSL','[email protected]',0,0,0,0,0.0000,0,27,39.00,'USD','5.3',0,0,0,1451336400,32256,0,'Realex Hosted payments','Qualiteam','Integration with Global Iris/Realex payment gateway - Hosted Payment Page API','http://my.x-cart.com/sites/default/files/addons/QSL/RealexHostedPayment/icon.png','https://market.x-cart.com/addons/realex-hosted-payments.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',21002,0,0),(362,'ShippingPerProduct','BCSE','[email protected]',0,0,0,0,0.0000,0,7,99.95,'USD','5.2',0,0,0,1460467095,44032,0,'Shipping Per Product','BCS Engineering','Choose shipping per product.','http://my.x-cart.com/sites/default/files/addons/BCSE/ShippingPerProduct/iconAlt.png','https://market.x-cart.com/addons/shipping-per-product.html','','a:0:{}','a:1:{i:0;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',21030,0,0),(363,'TwoCheckoutInline','QSL','[email protected]',0,0,0,0,0.0000,0,8,39.00,'USD','5.3',0,0,0,1452080511,81920,0,'2Checkout - Inline Checkout','Qualiteam','Integration with 2Checkout payment gateway - Inline Checkout API. User stays on your site during the payment.','http://my.x-cart.com/sites/default/files/addons/QSL/TwoCheckoutInline/icon.png','https://market.x-cart.com/addons/2checkout-Inline-Checkout.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',21003,0,0),(364,'Redirects','NovaHorizons','[email protected]',0,0,0,0,0.0000,0,96,34.99,'USD','5.3',1,0,0,1471550400,52736,0,'Redirects','Nova Horizons, LLC','This module allows you to easily set up redirects within your store.','http://my.x-cart.com/sites/default/files/addons/NovaHorizons/Redirects/icon.png','https://market.x-cart.com/addons/redirects-by-Nova-Horizons.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:3:\"SEO\";}',1,0,0,0,1,0,'a:0:{}',21016,0,0),(365,'FinpayPayment','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',0,0,0,1452718800,34816,0,'Finpay','Qualiteam','The module integrates your website with indonesian payment gateway: Finpay.','http://my.x-cart.com/sites/default/files/addons/QSL/FinpayPayment/icon.png','https://market.x-cart.com/addons/finpay.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',21007,0,0),(366,'OrderReports','QSL','[email protected]',0,0,0,0,0.0000,0,35,249.00,'USD','5.3',0,0,0,1453064400,53760,0,'Order reports','Qualiteam','Get statistics about what are your bestselling products and categories, what countries and states you get the most orders from, what marketing campaign drove the most revenue to you.','http://my.x-cart.com/sites/default/files/addons/QSL/OrderReports/icon.png','https://market.x-cart.com/addons/order-reports.html','','a:0:{}','a:3:{i:0;s:9:\"Marketing\";i:1;s:14:\"Administration\";i:2;s:10:\"Statistics\";}',1,0,6,0,0,0,'a:0:{}',21008,0,0),(367,'NotFinishedOrders','XC','[email protected]',0,0,0,0,0.0000,0,583,0.00,'USD','5.3',2,0,0,1471465327,102400,1,'Not Finished Orders','X-Cart team','This addon allows you to track not finished orders and contact customers, who have failed to proceed through the payment process.','http://my.x-cart.com/sites/default/files/addons/XC/NotFinishedOrders/icon.png','https://market.x-cart.com/addons/not-finished-orders.html','','a:0:{}','a:1:{i:0;s:11:\"Fulfillment\";}',1,1,10,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(368,'UpdateInventory','XC','[email protected]',0,0,0,0,0.0000,0,1235,0.00,'USD','5.3',1,1,0,1474574400,61440,1,'Update Inventory','X-Cart team','Allows to update products quantity via CSV simple file.','http://my.x-cart.com/sites/default/files/addons/XC/UpdateInventory/icon.png','https://market.x-cart.com/addons/update-inventory.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,1,12,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(369,'SiteStructuredData','CSI','[email protected]',0,0,0,0,0.0000,0,23,85.00,'USD','5.3',0,0,0,-10800,200704,0,'Site Structured Data','CFL Systems, Inc.','Site Structured Data module is an X-Cart 5 add-on which allows webmasters to easily add Structured Data Markup to the website - Logo, Company Info, Breadcrumbs, Rich Snippets, etc.','http://my.x-cart.com/sites/default/files/addons/CSI/SiteStructuredData/icon.png','https://market.x-cart.com/addons/site-structured-data-by-cfl-systems.html','','a:0:{}','a:4:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";i:2;s:3:\"SEO\";i:3;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',21096,0,0),(370,'AdvancedQuantity','QSL','[email protected]',0,0,0,0,0.0000,0,74,79.00,'USD','5.3',3,0,1,1453755600,279552,0,'Fractional and Fixed quantities','Qualiteam','Sell products with quantity represented in fractional numbers, products available in packages containing fixed quantity of items, and set allowed quantities to be added to cart at a time.','http://my.x-cart.com/sites/default/files/addons/QSL/AdvancedQuantity/iconAlt.png','https://market.x-cart.com/addons/fractional-and-fixed-quantities.html','','a:0:{}','a:2:{i:0;s:18:\"Catalog Management\";i:1;s:10:\"Accounting\";}',1,0,5,0,0,0,'a:0:{}',21010,0,0),(371,'ShoppingDaySkin','QSL','[email protected]',0,0,0,0,0.0000,0,45,99.00,'USD','5.3',0,0,1,1453842000,946176,0,'Shopping Day','Qualiteam','The \"Shopping Day\" X-Cart Design Template (#23). This template is good for the following themes: Accessories, Books, Clothing, Food & Drink, Supermarket.','http://my.x-cart.com/sites/default/files/addons/QSL/ShoppingDaySkin/iconAlt.png','https://market.x-cart.com/xcart-templates/shopping-day.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',456,0,0),(372,'ExridPayment','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',0,0,0,1453928400,37376,0,'Exrid','Qualiteam','Enables taking credit card payments for your online store via EXRID payment gateway (Iran).','http://my.x-cart.com/sites/default/files/addons/QSL/ExridPayment/icon.png','https://market.x-cart.com/addons/exrid.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',21011,0,0),(373,'QuickPayLinkPayment','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',0,0,0,1453928400,70656,0,'QuickPay Link','Qualiteam','Integration with QuickPay Link payment gateway.','http://my.x-cart.com/sites/default/files/addons/QSL/QuickPayLinkPayment/icon.png','https://market.x-cart.com/addons/quickpay-link.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',21012,0,0),(374,'PayWayPayment','QSL','[email protected]',0,0,0,0,0.0000,0,9,39.00,'USD','5.3',0,0,0,1453928400,47104,0,'PayWay Net','Qualiteam','Integration with PayWay Net payment gateway. PayWay Net is a secure, flexible online payment system. You can offer your customers credit card payments and PayPal payments.','http://my.x-cart.com/sites/default/files/addons/QSL/PayWayPayment/icon.png','https://market.x-cart.com/addons/payway-net.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',21013,0,0),(375,'AlipayPayment','QSL','[email protected]',0,0,0,0,0.0000,0,1,39.00,'USD','5.3',0,0,0,1454014683,35840,0,'Alipay','Qualiteam','Enables taking credit card payments for your online store via Alipay payment gateway (Alibaba Corporation).','http://my.x-cart.com/sites/default/files/addons/QSL/AlipayPayment/icon.png','https://market.x-cart.com/addons/alipay.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',21014,0,0),(376,'SpecialOffersBase','QSL','[email protected]',0,0,0,0,0.0000,0,829,0.00,'USD','5.3',2,0,0,1454446800,218112,0,'Special Offers (base)','Qualiteam','This is the base module that allows other modules to add different types of special offers.','http://my.x-cart.com/sites/default/files/addons/QSL/SpecialOffersBase/iconAlt.png','https://market.x-cart.com/addons/special-offers-base.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(377,'SpecialOffersBuyXGetY','QSL','[email protected]',0,0,0,0,0.0000,0,73,99.00,'USD','5.3',0,0,0,1454446800,76288,0,'Special Offers: Buy X Get Y','Qualiteam','This module adds variations of the \"Buy X Get Y\" special offer type. Requires the base Special Offers module.','http://my.x-cart.com/sites/default/files/addons/QSL/SpecialOffersBuyXGetY/icon.png','https://market.x-cart.com/addons/buy-x-get-y.html','','a:1:{i:0;s:21:\"QSL\\SpecialOffersBase\";}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,1,0,'a:0:{}',21015,0,0),(378,'FashionHouse','QSL','[email protected]',0,0,0,0,0.0000,0,174,149.00,'USD','5.3',1,7,1,1454965200,1051648,0,'Fashion House','Qualiteam','The \"Fashion House\" X-Cart Design Template (#49). Stylish and clear template in light pastel pallet and straight cornered modern flat design, presented in three color schemes: pink, blue and teal. Full-width slider, banners, product carousels, etc. Fully responsive, SEO friendly and cross-browser compatible.','http://my.x-cart.com/sites/default/files/addons/QSL/FashionHouse/icon.png','https://market.x-cart.com/xcart-templates/fashion-house.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',20997,0,0),(379,'ToolsStore','QSL','[email protected]',0,0,0,0,0.0000,0,30,99.00,'USD','5.3',2,0,0,1455570000,372736,0,'Tools Store','Qualiteam','The \"Tools Store\" X-Cart Design Template (#50). This template is good for the following themes: Tools, Industry','http://my.x-cart.com/sites/default/files/addons/QSL/ToolsStore/icon.png','https://market.x-cart.com/xcart-templates/tools-store.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',21017,0,0),(380,'PostAffiliatePro','QualityUnit','[email protected]',0,0,0,0,0.0000,0,27,0.00,'USD','5.3',1,0,0,1475784000,59904,0,'Post Affiliate Pro integration','QualityUnit','Track clicks and sales to your Post Affiliate Pro or Porst Affiliate Network easily! When configured, the module will automatically track all the needed data to your Post Affiliate Pro or Porst Affiliate Network. You can track total cost, order ID , product ID and lifetime commissions.','http://my.x-cart.com/sites/default/files/addons/QualityUnit/PostAffiliatePro/iconAlt.png','https://market.x-cart.com/addons/post-affiliate-pro-integration.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,1,0,'a:0:{}',0,0,0),(381,'V12Payment','QSL','[email protected]',0,0,0,0,0.0000,0,1,39.00,'USD','5.3',0,0,0,1457643600,60416,0,'V12 Retail Finance - Take 5','Qualiteam','Integration with V12 Retail Finance payment gateway (\"Take 5\" payment method)','http://my.x-cart.com/sites/default/files/addons/QSL/V12Payment/icon.png','https://market.x-cart.com/addons/V12-retail-finance-take-5.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',21022,0,0),(382,'TwitterUserTimeline','Tienda','[email protected]',0,0,0,0,0.0000,0,1,10.00,'USD','5.2',0,0,0,1460408400,19456,0,'Twitter User Timeline','Tienda','Show your Tweets in the left hand menu','http://my.x-cart.com/sites/default/files/addons/Tienda/TwitterUserTimeline/icon.png','https://market.x-cart.com/addons/twitter-user-timeline.html','','a:0:{}','a:1:{i:0;s:6:\"Social\";}',1,0,0,0,0,0,'a:0:{}',21027,0,0),(383,'PayProCloud','QSL','[email protected]',0,0,0,0,0.0000,0,16,39.00,'USD','5.3',1,0,1,1459112400,157184,0,'PayPro Cloud','Qualiteam','The module integrates your store with secure PayPro Global online payment processing method - PayPro Cloud.','http://my.x-cart.com/sites/default/files/addons/QSL/PayProCloud/icon.png','https://market.x-cart.com/addons/paypro-cloud.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',21023,0,0),(384,'SpecialOffersSpendXGetY','QSL','[email protected]',0,0,0,0,0.0000,0,23,99.00,'USD','5.3',0,0,0,1459198800,77312,0,'Special Offers: Spend X Get Y','Qualiteam','This module adds variations of the \"Spend X Get Y\" special offer type. Requires the base Special Offers module.','http://my.x-cart.com/sites/default/files/addons/QSL/SpecialOffersSpendXGetY/icon.png','https://market.x-cart.com/addons/spend-x-get-y.html','','a:1:{i:0;s:21:\"QSL\\SpecialOffersBase\";}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,1,0,'a:0:{}',21024,0,0),(385,'NewRelic','QSL','[email protected]',0,0,0,0,0.0000,0,27,0.00,'USD','5.2',0,0,0,1459922806,23552,0,'New Relic','Qualiteam','This module provides an integration with New Relic. New Relic is an analytics tool suite that provides a deep visibility into how your applications are performing in development and production.','http://my.x-cart.com/sites/default/files/addons/QSL/NewRelic/iconAlt.png','https://market.x-cart.com/addons/new-relic.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:10:\"Statistics\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(386,'LiveAgent','QualityUnit','[email protected]',0,0,0,0,0.0000,0,78,0.00,'USD','5.3',1,0,0,1475784000,47616,0,'LiveAgent helpdesk setup','QualityUnit','Easily connect your LiveAgent account with your store and choose which chat button will be used for it. If you do not have an account yet, you can create one really quickly','http://my.x-cart.com/sites/default/files/addons/QualityUnit/LiveAgent/iconAlt.png','https://market.x-cart.com/addons/liveagent.html','','a:0:{}','a:1:{i:0;s:6:\"Social\";}',1,0,0,0,1,0,'a:0:{}',0,0,0),(387,'RegisterOnCheckout','QSL','[email protected]',0,0,0,0,0.0000,0,69,25.00,'USD','5.3',0,0,0,1460322000,38912,0,'Register on Checkout','Qualiteam','Disable checkout from not authorised customers and allows them to register on checkout','http://my.x-cart.com/sites/default/files/addons/QSL/RegisterOnCheckout/icon.png','https://market.x-cart.com/addons/register-on-checkout.html','','a:0:{}','a:1:{i:0;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',21026,0,0),(388,'UltimateSkin','QSL','[email protected]',0,0,0,0,0.0000,0,49,149.00,'USD','5.3',0,0,1,-10800,1289216,0,'Template #51 \"Ultimate skin\"','Qualiteam','The \"Ultimate skin\" X-Cart Design Template (#51). This template is good for the following themes: Accessories, Clothing, Jewelry, Watches, Wedding','http://my.x-cart.com/sites/default/files/addons/QSL/UltimateSkin/icon.png','http://www.x-cart.com/extensions/xcart-templates/ultimate-skin.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,1,0,'a:0:{}',21025,0,0),(389,'InternationalShipping','Swipezoom','[email protected]',0,0,0,0,0.0000,0,0,49.00,'USD','5.2',2,0,0,1461618000,501248,0,'SwipeZoom Global Payments and Shipping','Swipezoom','Start to welcome international customers, accept their payment and ship to their doorstep...within minutes!','http://my.x-cart.com/sites/default/files/addons/Swipezoom/InternationalShipping/icon.png','https://market.x-cart.com/addons/swipezoom-global-payments-and-shipping.html','','a:0:{}','a:2:{i:0;s:18:\"Payment processing\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',21029,0,0),(390,'ArambaIntegration','Vendosoft','[email protected]',0,0,0,0,0.0000,0,1,15.00,'USD','5.2',0,0,0,1461099600,71168,0,'Aramba','Vendosoft LLC','Create and send professional newsletters! The module integrates your store with Aramba, a popular service for mailing and bulk SMS messaging.','http://my.x-cart.com/sites/default/files/addons/Vendosoft/ArambaIntegration/icon.png','https://market.x-cart.com/addons/Aramba.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,0,'a:0:{}',21028,0,0),(391,'Shopify','MagneticOne','[email protected]',0,0,0,0,0.0000,0,7,0.00,'USD','5.3',0,2,0,-10800,121856,0,'Migrate Data from Shopify to X-Cart','MagneticOne','Allows you to use the Cart2Cart service right out of your store admin panel and install Connection Bridge to transfer your products, orders, customers information and other data from your Shopify store to X-Cart.','http://my.x-cart.com/sites/default/files/addons/MagneticOne/Shopify/iconAlt.png','https://market.x-cart.com/addons/migrate-data-from-shopify-to-x-cart.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(392,'Interspire','MagneticOne','[email protected]',0,0,0,0,0.0000,0,3,0.00,'USD','5.3',0,2,0,-10800,124416,0,'Migrate Data from Interspire to X-Cart','MagneticOne','Allows you to use the Cart2Cart service right out of your store admin panel and install Connection Bridge to transfer your products, orders, customers information and other data from your Interspire store to X-Cart.','http://my.x-cart.com/sites/default/files/addons/MagneticOne/Interspire/iconAlt.png','https://market.x-cart.com/addons/migrate-data-from-interspire-to-x-cart.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(393,'Bigcommerce','MagneticOne','[email protected]',0,0,0,0,0.0000,0,5,0.00,'USD','5.3',0,2,0,-10800,122368,0,'Migrate Data from Bigcommerce to X-Cart','MagneticOne','Allows you to use the Cart2Cart service right out of your store admin panel to transfer your products, orders, customers information and other data from your Bigcommerce store to X-Cart.','http://my.x-cart.com/sites/default/files/addons/MagneticOne/Bigcommerce/iconAlt.png','https://market.x-cart.com/addons/migrate-data-from-Bigcommerce-to-X-Cart.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(394,'Zencart','MagneticOne','[email protected]',0,0,0,0,0.0000,0,4,0.00,'USD','5.3',0,2,0,-10800,259072,0,'Migrate Data from Zen Cart to X-Cart','MagneticOne','Allows you to use the Cart2Cart service right out of your store admin panel and install Connection Bridge to transfer your products, orders, customers information and other data from your Zen Cart store to X-Cart.','http://my.x-cart.com/sites/default/files/addons/MagneticOne/Zencart/iconAlt.png','https://market.x-cart.com/addons/migrate-data-from-zencart-to-x-cart.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(395,'Oscommerce','MagneticOne','[email protected]',0,0,0,0,0.0000,0,4,0.00,'USD','5.3',0,2,0,-10800,124416,0,'Migrate Data from osCommerce to X-Cart','MagneticOne','Allows you to use the Cart2Cart service right out of your store admin panel and install Connection Bridge to transfer your products, orders, customers information and other data from your osCommerce store to X-Cart.','http://my.x-cart.com/sites/default/files/addons/MagneticOne/Oscommerce/iconAlt.png','https://market.x-cart.com/addons/migrate-data-from-oscommerce-to-x-cart.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(396,'Woocommerce','MagneticOne','[email protected]',0,0,0,0,0.0000,0,8,0.00,'USD','5.3',0,2,0,-10800,124416,0,'Migrate Data from WooCommerce to X-Cart','MagneticOne','Allows you to use the Cart2Cart service right out of your store admin panel to transfer your products, orders, customers information and other data from your WooCommerce store to X-Cart.','http://my.x-cart.com/sites/default/files/addons/MagneticOne/Woocommerce/iconAlt.png','https://market.x-cart.com/addons/migrate-data-from-WooCommerce-to-X-Cart.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(397,'Prestashop','MagneticOne','[email protected]',0,0,0,0,0.0000,0,13,0.00,'USD','5.3',0,2,0,-10800,124416,0,'Migrate Data from PrestaShop to X-Cart','MagneticOne','Allows you to use the Cart2Cart service right out of your store admin panel and install Connection Bridge to transfer your products, orders, customers information and other data from your PrestaShop store to X-Cart.','http://my.x-cart.com/sites/default/files/addons/MagneticOne/Prestashop/iconAlt.png','https://market.x-cart.com/addons/migrate-data-from-prestashop-to-x-cart.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(398,'Magento','MagneticOne','[email protected]',0,0,0,0,0.0000,0,6,0.00,'USD','5.3',0,2,0,-10800,123904,0,'Migrate Data from Magento to X-Cart','MagneticOne','Allows you to use the Cart2Cart service right out of your store admin panel and install Connection Bridge to transfer your products, orders, customers information and other data from your Magento store to X-Cart.','http://my.x-cart.com/sites/default/files/addons/MagneticOne/Magento/iconAlt.png','https://market.x-cart.com/addons/migrate-data-from-magento-to-x-cart.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(399,'Pilibaba','XC','[email protected]',0,0,0,0,0.0000,0,428,0.00,'USD','5.3',2,0,0,1461531201,245760,0,'Pilibaba Chinese Checkout','X-Cart team','Start accepting CNY payment and take orders from 1.3 Billion shoppers in China. Support all Chinese debit/credit cards and give merchants the flexibility to convert CNY payment into either USD,EUR or 12 supported currencies.','http://my.x-cart.com/sites/default/files/addons/XC/Pilibaba/icon.png','https://market.x-cart.com/addons/pilibaba.html','','a:0:{}','a:2:{i:0;s:18:\"Payment processing\";i:1;s:8:\"Shipping\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(400,'VendorMessages','XC','[email protected]',0,0,0,0,0.0000,0,223,0.00,'USD','5.3',2,0,0,1461531600,409600,1,'Order messages (Beta)','X-Cart team','The module enhances communication system in your store providing an opportunity for customers, administrator and vendors to start conversation or dispute about an order right on the Order details page.','http://my.x-cart.com/sites/default/files/addons/XC/VendorMessages/icon.png','https://market.x-cart.com/addons/order-messages.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:14:\"Administration\";}',1,1,11,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(401,'Netsuite','Webgility','[email protected]',0,0,0,0,0.0000,0,7,0.00,'USD','5.3',1,0,0,1474574400,296960,0,'Unify for NetSuite','Webgility','Unify for NetSuite - Manage your e-commerce business from one place. Unify easily integrates X-Cart with NetSuite.','http://my.x-cart.com/sites/default/files/addons/Webgility/Netsuite/iconAlt.png','https://market.x-cart.com/addons/unify-for-netsuite.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(402,'AmazonFeeds','QSL','[email protected]',0,0,0,0,0.0000,0,26,255.00,'USD','5.3',2,0,1,1461790800,2750976,0,'Amazon Feeds','Qualiteam','The module allows to upload products from your X-Cart store to Amazon one-by-one or in bulk, exporting product details, inventory, pricing and images.','http://my.x-cart.com/sites/default/files/addons/QSL/AmazonFeeds/iconAlt.png','https://market.x-cart.com/addons/amazon-feeds.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,1,0,'a:0:{}',21033,0,0),(403,'EPL','QSL','[email protected]',0,0,0,0,0.0000,0,8,355.00,'USD','5.3',1,0,1,1461877200,139264,0,'Lookup product details by UPC and name','Qualiteam','Get ready product data from external product libraries providing high quality product specifications, descriptions and images from official sources.','http://my.x-cart.com/sites/default/files/addons/QSL/EPL/iconAlt.png','https://market.x-cart.com/addons/lookup-product-details-by-UPC-and-name.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,1,0,'a:0:{}',21032,0,0),(404,'ZhTranslation','XC','[email protected]',0,0,0,0,0.0000,0,54,0.00,'USD','5.3',2,0,0,0,573440,0,'Translation: Chinese','X-Cart team','Chinese translation pack','http://my.x-cart.com/sites/default/files/addons/XC/ZhTranslation/icon.png','https://market.x-cart.com/addons/translation-chinese.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(405,'Testimonials','CSI','[email protected]',0,0,0,0,0.0000,0,79,50.00,'USD','5.3',0,2,0,1462262780,298496,0,'Testimonials','CFL Systems, Inc.','This easy to use and powerful module allows your customers to leave testimonials about your store, products and/or services.','http://my.x-cart.com/sites/default/files/addons/CSI/Testimonials/icon.png','https://market.x-cart.com/addons/testimonials-by-cfl-systems.html','','a:0:{}','a:1:{i:0;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',21110,0,0),(406,'RaboOmniKassaPayment','QSL','[email protected]',0,0,0,0,0.0000,0,3,39.00,'USD','5.3',0,0,0,1465246800,59392,0,'Rabo OmniKassa','Qualiteam','Integration with Rabo OmniKassa payment gateway. Rabo OmniKassa is a secure, flexible online payment system. You can offer your customers various ways to pay for their orders.','http://my.x-cart.com/sites/default/files/addons/QSL/RaboOmniKassaPayment/icon.png','https://market.x-cart.com/addons/rabo-omnikassa.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',21035,0,0),(407,'Backup','QSL','[email protected]',0,0,0,0,0.0000,0,223,49.00,'USD','5.3',2,0,0,1463554063,326144,0,'Backup Master','Qualiteam','Allows you to create full backups of your X-Cart 5 store.','http://my.x-cart.com/sites/default/files/addons/QSL/Backup/iconAlt.png','https://market.x-cart.com/addons/backup-master.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:11:\"Development\";}',1,1,8,0,1,0,'a:0:{}',21036,0,0),(408,'BackgroundVideo','PerceptionSystemPvtLtd','[email protected]',0,0,0,0,0.0000,0,18,19.00,'USD','5.3',1,0,0,1464183079,1500160,0,'Background Video Banner','Perception System Pvt. Ltd.','New design trend to display Video at home page banner. Upload video or add You-tube Video as background with amazing Parallax effect. Best way to create trendy eCommerce Store.','http://my.x-cart.com/sites/default/files/addons/PerceptionSystemPvtLtd/BackgroundVideo/icon.png','https://market.x-cart.com/addons/background-video-banner-by-perception-system.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:13:\"Design tweaks\";}',1,0,0,0,0,0,'a:0:{}',21044,0,0),(409,'BulkEditing','XC','[email protected]',0,0,0,0,0.0000,0,312,0.00,'USD','5.3',2,0,0,1464728400,225280,1,'Bulk Editing','X-Cart team','The module allows to edit products in bulk. Choose products for editing and select the parameter that needs to be updated for them.','http://my.x-cart.com/sites/default/files/addons/XC/BulkEditing/icon.png','https://market.x-cart.com/addons/bulk-editing.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:18:\"Catalog Management\";}',1,1,9,0,0,2,'a:3:{i:0;s:12:\"391_Business\";i:1;s:18:\"20598_Multi-vendor\";i:2;s:18:\"536881125_Ultimate\";}',0,0,0),(410,'CrispWhiteSkin','XC','[email protected]',0,0,0,0,0.0000,0,999,0.00,'USD','5.3',2,0,2,1464859695,1781760,0,'Crisp White skin','X-Cart team','Light and clean skin developed in minimalist style and combining flat and material design will make your store look clean and modern.','http://my.x-cart.com/sites/default/files/addons/XC/CrispWhiteSkin/icon.png','https://market.x-cart.com/xcart-templates/crisp-white-skin.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(411,'FastLaneCheckout','XC','[email protected]',0,0,0,0,0.0000,0,566,0.00,'USD','5.3',2,0,0,1464814800,358400,0,'Fast Lane Checkout','X-Cart team','Modern multi-step checkout asks for a separate piece of information at a separate step. As a result, it looks looks clean for customers and seems secure and easy to fill in.','http://my.x-cart.com/sites/default/files/addons/XC/FastLaneCheckout/icon.png','https://market.x-cart.com/addons/fast-lane-checkout.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(412,'NewsletterSubscriptions','XC','[email protected]',0,0,0,0,0.0000,0,474,0.00,'USD','5.3',1,3,0,1464814800,102400,0,'Newsletter subscriptions','X-Cart team','The module adds a sign up form into your site footer inviting your customers to subscribe for your company newsletters. The list of subscribers is stored in the admin back-end and can also be forwarded to Mailchimp.','http://my.x-cart.com/sites/default/files/addons/XC/NewsletterSubscriptions/icon.png','https://market.x-cart.com/addons/newsletter-subscriptions.html','','a:0:{}','a:2:{i:0;s:9:\"Marketing\";i:1;s:15:\"User experience\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(413,'TreeLikeCategoriesMenu','QSL','[email protected]',0,0,0,0,0.0000,0,38,19.95,'USD','5.3',1,0,0,1465246800,35840,0,'Tree-like Categories Menu','Qualiteam','The module changes the default flyout categories menu in the Customer area by introducing a tree-like menu style. Requires Flyout Categories Menu module to be enabled','http://my.x-cart.com/sites/default/files/addons/QSL/TreeLikeCategoriesMenu/iconAlt.png','https://market.x-cart.com/addons/tree-like-categories-menu.html','','a:0:{}','a:1:{i:0;s:13:\"Design tweaks\";}',1,0,0,0,1,0,'a:0:{}',21040,0,0),(414,'Returns','QSL','[email protected]',0,0,0,0,0.0000,0,42,149.00,'USD','5.3',1,0,0,1465542101,326144,0,'Order returns','Qualiteam','Enable your customers to issue returns for their orders. Return requests are put into a queue, so they can be conveniently processed.','http://my.x-cart.com/sites/default/files/addons/QSL/Returns/icon.png','https://market.x-cart.com/addons/order-returns.html','','a:0:{}','a:2:{i:0;s:11:\"Fulfillment\";i:1;s:14:\"Administration\";}',1,1,7,0,0,0,'a:0:{}',21041,0,0),(415,'ColorSwatches','QSL','[email protected]',0,0,0,0,0.0000,0,48,125.00,'USD','5.3',0,0,1,1466021870,172032,0,'Color swatches','Qualiteam','The module displays product options, such as color, fabric or design as clickable color swatches or small images on the product page.','http://my.x-cart.com/sites/default/files/addons/QSL/ColorSwatches/icon.png','https://market.x-cart.com/addons/color-swatches.html','','a:0:{}','a:2:{i:0;s:18:\"Catalog Management\";i:1;s:13:\"Design tweaks\";}',1,1,6,0,1,0,'a:0:{}',21042,0,0),(416,'PriceCountdown','QSL','[email protected]',0,0,0,0,0.0000,0,29,85.00,'USD','5.3',1,0,1,1466370000,131584,0,'Price countdown','Qualiteam','The module adds countdown widget to the product page, category page or cart page showing the number of days and hours/minutes/seconds left to the end of the offer.','http://my.x-cart.com/sites/default/files/addons/QSL/PriceCountdown/iconAlt.png','https://market.x-cart.com/addons/price-countdown.html','','a:0:{}','a:1:{i:0;s:9:\"Marketing\";}',1,0,0,0,0,0,'a:0:{}',21043,0,0),(417,'XLSExportImport','QSL','[email protected]',0,0,0,0,0.0000,0,35,85.00,'USD','5.3',0,0,1,1466021956,4829696,0,'Excel export / import','Qualiteam','The module adds an opportunity to export and import data in .xls (Excel 5), .xlsx (Excel 2007), .ods (OpenDocument) formats.','http://my.x-cart.com/sites/default/files/addons/QSL/XLSExportImport/icon.png','https://market.x-cart.com/addons/excel-export-import.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,1,0,'a:0:{}',21045,0,0),(418,'Wufoo','QSL','[email protected]',0,0,0,0,0.0000,0,7,39.00,'USD','5.3',1,0,1,1466024400,75776,0,'Wufoo','Qualiteam','Design forms in Wufoo and add them to your store static pages to collect various data from your customers.','http://my.x-cart.com/sites/default/files/addons/QSL/Wufoo/icon.png','https://market.x-cart.com/addons/wufoo.html','','a:1:{i:0;s:14:\"CDev\\SimpleCMS\";}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,1,0,'a:0:{}',21046,0,0),(419,'MonkeyData','MonkeyData','[email protected]',0,0,0,0,0.0000,0,40,0.00,'USD','5.3',0,0,0,1471208400,304128,0,'MonkeyData','MonkeyData','MonkeyData is the best analytics solution for your online store. Get the statistics of all your sales channels in one place! Metrics from X-Cart, Adwords, Amazon, eBay, Facebook and more in clear dashboards. ','http://my.x-cart.com/sites/default/files/addons/MonkeyData/MonkeyData/icon.png','','','a:0:{}','a:0:{}',1,0,0,0,1,0,'a:0:{}',0,0,0),(420,'Muut','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',1,0,1,1469566800,44544,0,'Muut','Qualiteam','Add comment and forum widgets to your site product and static pages, build your community and gain more returning customers.','http://my.x-cart.com/sites/default/files/addons/QSL/Muut/icon.png','https://market.x-cart.com/addons/muut.html','','a:1:{i:0;s:14:\"CDev\\SimpleCMS\";}','a:2:{i:0;s:15:\"User experience\";i:1;s:6:\"Social\";}',1,0,0,0,1,0,'a:0:{}',21053,0,0),(421,'Pnyxe','QSL','[email protected]',0,0,0,0,0.0000,0,0,39.00,'USD','5.3',1,0,1,1469566800,47616,0,'Pnyxe','Qualiteam','Increase user engagement with Pnyxe which allows you to add forum widgets to static pages and comment widgets to product pages.','http://my.x-cart.com/sites/default/files/addons/QSL/Pnyxe/icon.png','https://market.x-cart.com/addons/pnyxe.html','','a:1:{i:0;s:14:\"CDev\\SimpleCMS\";}','a:2:{i:0;s:15:\"User experience\";i:1;s:6:\"Social\";}',1,0,0,0,1,0,'a:0:{}',21052,0,0),(422,'OneCategory','QSL','[email protected]',0,0,0,0,0.0000,0,2,45.00,'USD','5.3',0,0,1,1469652645,24576,0,'One category','Qualiteam','The module disables categories functionality in the storefront, and all products from the store catalog are displayed on the homepage.','http://my.x-cart.com/sites/default/files/addons/QSL/OneCategory/icon.png','https://market.x-cart.com/addons/one-category.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',21050,0,0),(423,'OneProduct','QSL','[email protected]',0,0,0,0,0.0000,0,2,45.00,'USD','5.3',0,0,1,1469653200,47104,0,'One product','Qualiteam','This module changes the store to fit businesses selling one product only. It disables categories block, search block, breadcrumbs, and turns homepage into the product page.','http://my.x-cart.com/sites/default/files/addons/QSL/OneProduct/icon.png','https://market.x-cart.com/addons/one-product.html','','a:0:{}','a:1:{i:0;s:18:\"Catalog Management\";}',1,0,0,0,0,0,'a:0:{}',21051,0,0),(424,'MigrationWizard','XC','[email protected]',0,0,0,0,0.0000,0,221,0.00,'USD','5.3',4,4,1,1469566800,752640,0,'Migration wizard (Beta)','X-Cart team','The module guarantees trouble-free migration from X-Cart 4 to X-Cart 5. It transfers data and settings, and as a result, you get a working store on a new platform within a few minutes.','http://my.x-cart.com/sites/default/files/addons/XC/MigrationWizard/icon.png','https://market.x-cart.com/addons/migration-wizard.html','','a:0:{}','a:2:{i:0;s:14:\"Administration\";i:1;s:18:\"Catalog Management\";}',1,1,4,0,0,0,'a:0:{}',0,0,0),(425,'Highlight','Webgility','[email protected]',0,0,0,0,0.0000,0,22,0.00,'USD','5.3',1,0,0,1471809600,294400,0,'Highlight','Webgility','Highlight - Consolidate your multi-channel data and get a holistic view of your e-commerce business. See what matters to your business.','http://my.x-cart.com/sites/default/files/addons/Webgility/Highlight/iconAlt.png','https://market.x-cart.com/addons/quickBooks-pos-integration-by-webgility.html','','a:0:{}','a:0:{}',1,0,0,0,0,0,'a:0:{}',0,0,0),(426,'HoverImage','QSL','[email protected]',0,0,0,0,0.0000,0,9,19.95,'USD','5.3',0,1,1,1471467600,45056,0,'Hover Image','Qualiteam','This module shows next product image on hover in a product list','http://my.x-cart.com/sites/default/files/addons/QSL/HoverImage/icon.png','https://market.x-cart.com/addons/hover-image.html','','a:0:{}','a:2:{i:0;s:15:\"User experience\";i:1;s:13:\"Design tweaks\";}',1,1,5,0,0,0,'a:0:{}',21070,0,0),(427,'CategoryDescription','CSI','[email protected]',0,0,0,0,0.0000,0,15,35.00,'USD','5.3',1,0,0,1473627600,47616,0,'Category Second Description','CFL Systems, Inc.','Category Second Description module adds an additional description field for categories.','http://my.x-cart.com/sites/default/files/addons/CSI/CategoryDescription/icon.png','https://market.x-cart.com/addons/category-second-description-by-cfl-systems.html','','a:0:{}','a:0:{}',1,1,3,0,0,0,'a:0:{}',21088,0,0),(428,'StandardRTLSkin','QSL','[email protected]',0,0,0,0,0.0000,0,28,149.00,'USD','5.3',0,1,0,1473627600,38912,0,'RTL languages support','Qualiteam','The module adds RTL-languages support into the standard X-Cart skin.','http://my.x-cart.com/sites/default/files/addons/QSL/StandardRTLSkin/icon.png','https://market.x-cart.com/addons/standard-rtl-skin.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,1,2,0,0,0,'a:0:{}',21089,0,0),(429,'G2APay','G2APay','[email protected]',0,0,0,0,0.0000,0,81,0.00,'USD','5.3',0,0,1,1474578000,53248,0,'G2A Pay','G2A Pay','G2A Pay is a global payment gateway providing a solution to accept 150+ payment methods to grow your sales. Your customers can use the checkout they trust and pay with the payment method they know. Connect to international customers by localizing their buying experience wherever they pay.','http://my.x-cart.com/sites/default/files/addons/G2APay/G2APay/icon.png','https://market.x-cart.com/addons/g2a-pay.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,1,1,0,0,0,'a:0:{}',0,0,0),(430,'Onehop','ScreenMagic','[email protected]',0,0,0,0,0.0000,0,27,0.00,'USD','5.3',0,0,0,1475179200,2236928,0,'Onehop SMS','Screenmagic','Onehop SMS extension offers features to engage with your customers at the crucial stages of purchase cycle. Users can configure automated SMS-based notifications to their customers during every step of your e-commerce purchase and fulfillment processes. \n\nOnehop SMS gives users the ability to send best quality of SMS via world’s best and leading SMS service providers. User will be able to send SMS globally via multiple gateways with a single API. \n','http://my.x-cart.com/sites/default/files/addons/ScreenMagic/Onehop/iconAlt.png','https://market.x-cart.com/addons/onehop-sms.html','','a:0:{}','a:5:{i:0;s:11:\"Fulfillment\";i:1;s:9:\"Marketing\";i:2;s:14:\"Administration\";i:3;s:15:\"Mobile Commerce\";i:4;s:6:\"Orders\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(431,'OkpayPayment','OKPAY','[email protected]',0,0,0,0,0.0000,0,8,49.00,'USD','5.3',2,0,0,1476158324,40960,0,'OKPAY Payment Gateway','OKPAY Dev team','OKPAY allows all types of payments \"in the single window\": Credit Cards, SMS payments aka \"Mobile Commerce\", e-currencies (WebMoney, Yandex.Money, WalletOne), Instant payment terminals, Internet-Banking, Cryptocurrencies.','http://my.x-cart.com/sites/default/files/addons/OKPAY/OkpayPayment/iconAlt.png','https://market.x-cart.com/addons/okpay-payment-gateway.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',21117,0,0),(432,'AuthorizenetAcceptjs','QSL','[email protected]',0,0,0,0,0.0000,0,35,39.00,'USD','5.3',4,0,0,1476976103,73728,0,'Authorize.Net Accept.js','Qualiteam','The module integrates your store with Authorize.Net Accept.js to accept payments in a PCI-DSS compliant way.','http://my.x-cart.com/sites/default/files/addons/QSL/AuthorizenetAcceptjs/iconAlt.png','https://market.x-cart.com/addons/authorize-net-accept-js.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',21120,0,0),(433,'PaymentMemberships','QSL','[email protected]',0,0,0,0,0.0000,0,1,99.00,'USD','5.3',0,0,0,1479148608,48128,0,'Memberships for payment methods','Qualiteam','Limit access to payment methods for your customers according to the membership levels the customers belong to.','http://my.x-cart.com/sites/default/files/addons/QSL/PaymentMemberships/iconAlt.png','https://market.x-cart.com/addons/memberships-for-payment-methods.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',21121,0,0),(434,'AllForHome','QSL','[email protected]',0,0,0,0,0.0000,0,0,149.00,'USD','5.3',0,0,0,1480066045,2104320,0,'All for Home','Qualiteam','Minimalist and neutral, this skin is perfect for any design you embark upon. And a wide variety of marketing options will impact your customers satisfaction.','http://my.x-cart.com/sites/default/files/addons/QSL/AllForHome/iconAlt.png','https://market.x-cart.com/xcart-templates/all-for-home.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',21130,0,0),(435,'BlueSnap','XC','[email protected]',0,0,0,0,0.0000,0,0,0.00,'USD','5.3',0,0,0,1480104000,133120,0,'BlueSnap','X-Cart team','The module integrates your X-Cart store with Blue Snap, a payment processor and payment gateway providing a merchant account. The Blue Snap credit card form will be displayed in X-Cart checkout via an iframe, and your customers won’t be redirected to Blue Snap to complete the payment.','http://my.x-cart.com/sites/default/files/addons/XC/BlueSnap/icon.png','https://market.x-cart.com/addons/blue-snap.html','','a:0:{}','a:1:{i:0;s:18:\"Payment processing\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(436,'CanadianTaxes','XC','[email protected]',0,0,0,0,0.0000,0,0,0.00,'USD','5.3',0,0,2,1480104000,153600,0,'Canadian Taxes','X-Cart team','This module has been developed specially for calculating taxes in Canada (GST,PST,HST,QST). Once the module is enabled, you have all destination zones set up as well as provincial rates accordingly assigned.','http://my.x-cart.com/sites/default/files/addons/XC/CanadianTaxes/icon.png','https://market.x-cart.com/addons/canadian-taxes.html','','a:0:{}','a:1:{i:0;s:5:\"Taxes\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(437,'FroalaEditor','XC','[email protected]',0,0,0,0,0.0000,0,1,0.00,'USD','5.3',0,0,1,1480104000,51200,0,'Froala WYSIWYG editor integration','X-Cart team','The new clean lightweight editor offers rich text editing capabilities. It’s fully compatible with X-Cart built-in Inline Editing tool.','http://my.x-cart.com/sites/default/files/addons/XC/FroalaEditor/icon.png','https://market.x-cart.com/addons/froala-wysiwyg-editor-integration.html','','a:0:{}','a:1:{i:0;s:14:\"Administration\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(438,'OrdersImport','XC','[email protected]',0,0,0,0,0.0000,0,1,0.00,'USD','5.3',0,0,0,1480104000,71680,0,'Order import','X-Cart team','The module extends default import functionality and adds an opportunity to add new orders or edit existing orders using the import tool.','http://my.x-cart.com/sites/default/files/addons/XC/OrdersImport/icon.png','https://market.x-cart.com/addons/orders-import.html','','a:0:{}','a:1:{i:0;s:6:\"Orders\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(439,'AlcoholicBeverage','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,0,139.00,'USD','5.3',0,0,1,1480522454,3051008,0,'Alcoholic Beverage','TemplateMonster.com','This dark color scheme is a perfect choice for an alcoholic beverage store. Banner slides and drop-down menus are here to make your website even more appealing.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/AlcoholicBeverage/iconAlt.png','https://market.x-cart.com/xcart-templates/alcoholic-beverage.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(440,'SportsClothesEquipment','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,0,139.00,'USD','5.3',0,0,1,1480523937,3471872,0,'Sports Clothes Equipment','TemplateMonster.com','Clean and modern, this theme is perfect for stores selling sports clothing & equipment. A full-width slider, a parallax banner and other animated elements are here to retain your customers’ attention.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/SportsClothesEquipment/iconAlt.png','https://market.x-cart.com/xcart-templates/sports-clothes-equipment.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(441,'TrustedVendors','XC','[email protected]',0,0,0,0,0.0000,0,0,0.00,'USD','5.3',0,0,2,1480531200,143360,1,'Trusted/Non-trusted vendors','X-Cart team','The module allows the admin to mark vendors as trusted and non-trusted. Products added by the trusted vendors will be visible to your store visitors right away, those of non-trusted vendors will appear on the storefront only after the approval.','http://my.x-cart.com/sites/default/files/addons/XC/TrustedVendors/icon.png','https://market.x-cart.com/addons/trusted-vendors.html','','a:1:{i:0;s:14:\"XC\\MultiVendor\";}','a:2:{i:0;s:14:\"Administration\";i:1;s:18:\"Catalog Management\";}',1,0,0,0,0,2,'a:2:{i:0;s:18:\"20598_Multi-vendor\";i:1;s:18:\"536881125_Ultimate\";}',0,0,0),(442,'Fireworks','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,0,139.00,'USD','5.3',0,0,1,1480524833,1870848,0,'Fireworks','TemplateMonster.com','This holiday X-Cart theme was designed for online fireworks and festive accessories stores.','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/Fireworks/icon.png','https://market.x-cart.com/xcart-templates/fireworks.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',0,0,0),(443,'ScubaDivingEquipment','TemplateMonster','[email protected]',0,0,0,0,0.0000,0,0,139.00,'USD','5.3',0,0,1,1480532031,5289984,0,'Scuba Diving Equipment','TemplateMonster.com','Scuba Diving Equipment Theme','http://my.x-cart.com/sites/default/files/addons/TemplateMonster/ScubaDivingEquipment/icon.png','https://market.x-cart.com/xcart-templates/scuba-diving-equipment.html','','a:0:{}','a:1:{i:0;s:9:\"Templates\";}',1,0,0,0,0,0,'a:0:{}',0,0,0);
CREATE TABLE `xlite_money_modificators` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`class` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`modificator` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`validator` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`position` int(11) NOT NULL,
`behavior` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`purpose` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO `xlite_money_modificators` VALUES (1,'XLite\\Logic\\AttributeSurcharge','modifyMoney','isApply',10,'','net'),(2,'XLite\\Module\\CDev\\Sale\\Logic\\SalePrice','modifyMoney','isApply',5,'','net'),(3,'XLite\\Module\\CDev\\Sale\\Logic\\PercentOff','modifyMoney','isApply',500,'','net');
CREATE TABLE `xlite_news` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`enabled` tinyint(1) NOT NULL,
`date` int(11) NOT NULL,
`metaDescType` varchar(1) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `enabled` (`enabled`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
CREATE TABLE `xlite_news_message_translations` (
`label_id` int(11) NOT NULL AUTO_INCREMENT,
`id` int(10) unsigned DEFAULT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`body` longtext COLLATE utf8_unicode_ci NOT NULL,
`brief_description` longtext COLLATE utf8_unicode_ci NOT NULL,
`metaTags` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`metaDesc` longtext COLLATE utf8_unicode_ci NOT NULL,
`metaTitle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`code` char(2) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`label_id`),