-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenglish
1192 lines (991 loc) · 36.3 KB
/
english
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
sub b0choose0 {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Choose#Choose#
I have read Terms of Use and and will comply with it.#I have read Terms of Use and and will comply with it.#
Yes#Yes#
No#No#
";
}
sub b0eadv {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Contact#Contact#
Your Email Address:#Your Email Address:#
Subject:#Subject:#
Message:#Message:#
Submit#Submit#
";
}
sub b0choose {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#Done#Done
";
}
sub b0cmypage {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Company Page#Company Page#
Buy and sell your automobile here!#Buy and sell your automobile here!#
Place an auto sales ad.#Place an auto sales ad.#
Browse ads by model, year and price classification.#Browse ads by model, year and price classification.#
Remember your password and you can update or delete your ad anytime.#Remember your password and you can update or delete your ad anytime.#
Search ads by entering any search terms.#Search ads by entering any search terms.#
Post any number of photos of your automobile.#Post any number of photos of your automobile.#
Give us your comments and suggestions!#Give us your comments and suggestions!#
Place an Automobile Sales Ad#Place an Automobile Sales Ad#
Place your automobile sales ads by simply fill a form and your ad will be posted.#Place your automobile sales ads by simply fill a form and your ad will be posted.#
Place an Automobile Sales Ad by a Paid Dealer#Place an Automobile Sales Ad by a Paid Dealer#
Dealers just pay an annual fee and can then post ads for free.#Dealers just pay an annual fee and can then post ads for free.#
Browse Ads :#Browse Ads :#
by model#by model#
by year#by year#
by price.#by price.#
Browse ads by model, manufacture year or price.#Browse ads by model, manufacture year or price.#
Update or Delete Ads or Pictures#Update or Delete Ads or Pictures#
Remember your password and you can update or delete your ad and pictures anytime.#Remember your password and you can update or delete your ad and pictures anytime.#
Update or Delete Ads or Pictures by a Paid Dealer#Update or Delete Ads or Pictures by a Paid Dealer#
Update or delete ads and pictures by dealers after paying an annual fee.#Update or delete ads and pictures by dealers after paying an annual fee.#
Search Ads#Search Ads#
Give us comments and suggestions. Ask us your questions. Etc..#Give us comments and suggestions. Ask us your questions. Etc..#
";
}
sub b0dlmaintain {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Login or password incorrect.#Login or password incorrect.#
Shop Maintaining#Shop Maintaining#
Shop Maintain#Shop Maintain#
Retyped password does not match the new password!#Retyped password does not match the new password!#
Address content exceeds <global(contentlength)> letters. Please revise.#Address content exceeds <global(contentlength)> letters. Please revise.#
Description content exceeds global<10contentlength> letters. Please revise.#Description content exceeds global<10contentlength> letters. Please revise.#
Service content exceeds global<10contentlength> letters. Please revise.#Service content exceeds global<10contentlength> letters. Please revise.#
Contact content exceeds global<10contentlength> letters. Please revise.#Contact content exceeds global<10contentlength> letters. Please revise.#
Page 1 content exceeds global<10contentlength> letters. Please revise.#Page 1 content exceeds global<10contentlength> letters. Please revise.#
Page 2 content exceeds global<10contentlength> letters. Please revise.#Page 2 content exceeds global<10contentlength> letters. Please revise.#
Page 3 content exceeds global<10contentlength> letters. Please revise.#Page 3 content exceeds global<10contentlength> letters. Please revise.#
Cannot encode password.#Cannot encode password.#
Shop Name:#Shop Name:#
Login:#Login:#
Service Start Date:#Service Start Date:#
Account Expiration Date:#Account Expiration Date:#
Available Credit for Uploading Pictures:#Available Credit for Uploading Pictures:#
Web Address:#Web Address:#
Maintain Web Address:#Maintain Web Address:#
Address:#Address:#
Phone Number:#Phone Number:#
Email:#Email:#
Upload Homepage Picture#Upload Homepage Picture#
Delete Homepage Picture#Delete Homepage Picture#
Description (Content in About Us Page):#Description (Content in About Us Page):#
Upload Description Picture#Upload Description Picture#
Delete Description Picture#Delete Description Picture#
Service Statement:#Service Statement:#
Upload Service Picture#Upload Service Picture#
Delete Service Picture#Delete Service Picture#
Contact:#Contact:#
Upload Contact Picture#Upload Contact Picture#
Delete Contact Picture#Delete Contact Picture#
You may add up to three web pages to your website:#You may add up to three web pages to your website:#
Page 1:#Page 1:#
Text on Navigation Button:#Text on Navigation Button:#
Title:#Title:#
Content:#Content:#
Upload Display Picture#Upload Display Picture#
Delete Display Picture#Delete Display Picture#
Page 2:#Page 2:#
Page 3:#Page 3:#
New Password:#New Password:#
(Applicable when change password.)#(Applicable when change password.)#
Retype New Password:#Retype New Password:#
Reset:#Reset:#
Reset#Reset#
Press:#Press:#
Submit#Submit#
Maintain#Maintain#
Maintain Account#Maintain Account#
Go Back#Go Back#
";
}
sub b0file {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
File Maintaining#File Maintaining#
Program Name:#Program Name:#
File Name:#File Name:#
File Password:#File Password:#
Owner Password:#Owner Password:#
Reset:#Reset:#
Reset#Reset#
Press:#Press:#
Submit#Submit#
";
}
sub b0home {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Place a sales ad.#Place a sales ad.#
Browse ads by various criteria.#Browse ads by various criteria.#
Remember your password and you can update or delete your ad anytime.#Remember your password and you can update or delete your ad anytime.#
Search ads by entering any search terms.#Search ads by entering any search terms.#
Post any number of photos of your ads.#Post any number of photos of your ads.#
Give us your comments and suggestions!#Give us your comments and suggestions!#
Browse Ads :#Browse Ads :#
Browse ads by classification.#Browse ads by classification.#
Update or Delete Ads or Pictures#Update or Delete Ads or Pictures#
Remember your password and you can update or delete your ad and pictures anytime.#Remember your password and you can update or delete your ad and pictures anytime.#
Update or Delete Ads or Pictures by a Paid Customer#Update or Delete Ads or Pictures by a Paid Customer#
Update or delete ads and pictures by dealers after paying an annual fee.#Update or delete ads and pictures by dealers after paying an annual fee.#
Search Ads#Search Ads#
Search ads by using any search terms.#Search ads by using any search terms.#
Give us comments and suggestions. Ask us your questions. Etc..#Give us comments and suggestions. Ask us your questions. Etc..#
Ads#Ads#
Manage#Manage#
Operator Input#Operator Input#
Operator Update#Operator Update#
Clean#Clean#
Delete Directory#Delete Directory#
Login#Login#
Login or password incorrect.#Login or password incorrect.#
Go Back#Go Back#
";
}
sub b0invoice {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Login or password incorrect.#Login or password incorrect.#
Can only show invoice within a week.#Can only show invoice within a week.#
Your Email Address:#Your Email Address:#
Password:#Password:#
Continue#Continue#
Invoice#Invoice#
Go Back#Go Back#
";
}
sub b0insert {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Modify or Delete the Item#Modify or Delete the Item#
Refresh#Refresh#
Insert#Insert#
Modify or Delete the Item#Modify or Delete the Item#
Place an Item#Place an Item#
The password and retyped password are not the same!#The password and retyped password are not the same!#
You must provide your email address!#You must provide your email address!#
The email and retyped email are not the same!#The email and retyped email are not the same!#
Ad description content exceeds global<contentlength> letters. Please revise.#Ad description content exceeds global<contentlength> letters. Please revise.#
Cannot encode password.#Cannot encode password.#
Classify:#Classify:#
Category:#Category:#
Title:#Title:#
Stock Number:#Stock Number:#
Stock Quantity:#Stock Quantity:#
UPC:#UPC:#
Content:#Content:#
Price(1) Title:#Price(1) Title:#
Price(1):#Price(1):#
Quantity(1):#Quantity(1):#
Total Price(1):#Total Price(1):#
Price(2) Title:#Price(2) Title:#
Price(2):#Price(2):#
Quantity(2):#Quantity(2):#
Total Price(2):#Total Price(2):#
Price(3) Title:#Price(3) Title:#
Price(3):#Price(3):#
Quantity(3):#Quantity(3):#
Total Price(3):#Total Price(3):#
Price(4) Title:#Price(4) Title:#
Price(4):#Price(4):#
Quantity(4):#Quantity(4):#
Total Price(4):#Total Price(4):#
Price(5) Title:#Price(5) Title:#
Price(5):#Price(5):#
Quantity(5):#Quantity(5):#
Total Price(5):#Total Price(5):#
Coupon(1) Title:#Coupon(1) Title:#
Coupon(1) Code:#Coupon(1) Code:#
Coupon(1) Effective Date (mm/dd/yy) to (mm/dd/yy):#Coupon(1) Effective Date (mm/dd/yy) to (mm/dd/yy):#
Coupon(2) Title:#Coupon(2) Title:#
Coupon(2) Code:#Coupon(2) Code:#
Coupon(2) Effective Date (mm/dd/yy) to (mm/dd/yy):#Coupon(2) Effective Date (mm/dd/yy) to (mm/dd/yy):#
Coupon(3) Title:#Coupon(3) Title:#
Coupon(3) Code:#Coupon(3) Code:#
Coupon(3) Effective Date (mm/dd/yy) to (mm/dd/yy):#Coupon(3) Effective Date (mm/dd/yy) to (mm/dd/yy):#
Remark:#Remark:#
Credit Card Name:#Credit Card Name:#
Credit Card Type:#Credit Card Type:#
MasterCard#MasterCard#
Visa#Visa#
American Express#American Express#
Discover Card#Discover Card#
Credit Card Number:#Credit Card Number:#
Credit Card Expire Date(mm/yy):#Credit Card Expire Date(mm/yy):#
Post Date (mm/dd/yy):#Post Date (mm/dd/yy):#
Post Duration:#Post Duration:#
Nonpublish:#Nonpublish:#
Name:#Name:#
Address:#Address:#
ProvinceState:#ProvinceState:#
Zip Code#Zip Code#
Work Phone:#Work Phone:#
Home Phone:#Home Phone:#
Staff Name:#Staff Name:#
Staff Password:#Staff Password:#
Phone:#Phone:#
Email Address:#Email Address:#
Reenter Email Address:#Reenter Email Address:#
Password (optional):#Password (optional):#
Reenter Password:#Reenter Password:#
Reset#Reset#
Submit#Submit#
Go Back#Go Back#
Delete This Item#Delete This Item#
Upload Tag Picture#Upload Tag Picture#
Upload Pictures#Upload Pictures#
Tag Picture#Tag Picture#
Delete#Delete#
Picture#Picture#
";
}
sub b0login {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Login#Login#
You must provide login.#You must provide login.#
You must provide password.#You must provide password.#
Cannot encode password.#Cannot encode password.#
City:#City:#
Login:#Login:#
Password:#Password:#
Reset#Reset#
Submit#Submit#
";
}
sub b0term {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Terms of Use#Terms of Use#
termsofuse#1。 您在使用本网站时同意本规定各条款。 本网站可在没有通知您的情况下修改本规定
。 您在使用本网站时同意遵守本规定各条款,包括修改和更新的条款。 本网站
保留在未通知您的情况下临时或永久修改,停止网站,网站各功能和优惠(包括阻挡
,修改,删除) 的权力。您同意本网站对您或者第三方关于上述事项不负任何责任。
<br><br>2。 您同意使用本网站时不对任何人造成威胁或骚扰。
<br><br>3。 不传送非法的, 有害的, 猥亵的 ,侵犯隐私的信息,数据,文字,文件,链接,软件, 图表,通信或其它资料。 不刊登非法的信息。
<br><br>4 。不在不相关的项目里刊登商品。
<br><br>5 。不使用任何方式影响或干扰本网站的正常运行。
<br><br>6 。不侵犯版权,商标,专利,或其它有关知识产权的物品。
<br><br>7 。 不刊登html, javascript, vbscript 或其它软件scripts 。
<br><br>8 。不造成对种族,宗教,民族,性别,年龄等等的歧视。
<br><br>9 。未经本网站授权不得替他人刊登商品。
<br><br>10。 本网站拥有本网站一切材料的版权。未经许可不得复制本网站的网页和图像。
<br><br>11 。 本网站对本网站提供材料的准确性,完全性,有效性不负任何责任。您同意在任何
情况下对本网站不予追究责任。
<br><br><br> 如您发现有人违反这些规定,请与我们联系。#<br><br><br> 如您发现有人违反这些规定,请与我们联系。#
Agree#Agree#
";
}
sub b1activate {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Your ad has been posted.#Your ad has been posted.#
View your ad.#View your ad.#
Cannot find your ad. Your ad may have already been activated.#Cannot find your ad. Your ad may have already been activated.#
OK#OK#
";
}
sub b1cart {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Shopping Cart#Shopping Cart#
Shopping Cart:#Shopping Cart:#
Item Title#Item Title#
Stock Number#Stock Number#
UPC#UPC#
Unit Quantity#Unit Quantity#
Unit Price#Unit Price#
Purchasing Quantity#Purchasing Quantity#
Price#Price#
Total Quantity:#Total Quantity:#
Change#Change#
Total Price:#Total Price:#
Tax (tax rate #Tax (tax rate #
):#):#
Total Price + Tax:#Total Price + Tax:#
Check out#Check out#
Clear All Items#Clear All Items#
Go Back#Go Back#
Error occurred. Please contact us.#Error occurred. Please contact us.#
";
}
sub b1checkout1 {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Checkout#Checkout#
Your Email Address:#Your Email Address:#
(Set) Password:#Password:#
Continue#Continue#
Go Back#Go Back#
";
}
sub b1checkout2 {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Checkout#Checkout#
Name:#Name:#
Address:#Address:#
City:#City:#
State:#State:#
Zip:#Zip:#
Email:#Email:#
Phone Number:#Phone Number:#
Cell Phone:#Cell Phone:#
Customer Instruction:#Customer Instruction:#
Please provide here the dates and times for us to deliver merchandise to your home.#Please provide here the dates and times for you to come to our store to pick up your goods.#
Submit#Submit#
";
}
sub b1credtpic {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Upload Picture#Upload Picture#
If you would like to upload pictures of your item you can do it. Your picture must be in jpg(jpeg) format and its size cannot exceeds global<picturesize> bytes(Please contact us directly if you need to upload larger size pictures).#If you would like to upload pictures of your item you can do it. Your picture must be in jpg(jpeg) format and its size cannot exceeds global<picturesize> bytes(Please contact us directly if you need to upload larger size pictures).#
Please now upload your picture.#Please now upload your picture.#
File to upload:#File to upload:#
Upload#Upload#
Update Credit#Update Credit#
Upload Picture#Upload Picture#
You can have <numpicture>(pictures.)#You can have <numpicture>(pictures.)#
(You can have) <numpicture>pictures.#(You can have) <numpicture>pictures.#
You are at this limit now.#You are at this limit now.#
Go Back#Go Back#
If you would like to upload more pictures for your item you can do it. There is a
cost for doing this. Your picture must be in jpg(jpeg) format and its size cannot exceeds
global<picturesize> bytes(Please contact us directly if you need to upload larger size pictures). If your
credit is not sufficient please enter the credit card company by clicking the follow button to pay for uploading the pictures.#credit is not sufficient please enter the credit card company by clicking the follow button to pay for uploading the pictures.#
The number of pictures you would like to upload:#The number of pictures you would like to upload:#
Picture post duration:#Picture post duration:#
You have to pay:#You have to pay:#
Price:#Price:#
Tax:#Tax:#
Price + Tax:#Price + Tax:#
Currently you have credit:#Currently you have credit:#
Total Price Due:#Total Price Due:#
Upload each picture cost:#Upload each picture cost:#
Upload Picture#Upload Picture#
Enter Credit Card Company#Enter Credit Card Company#
Make payments with PayPal - it\'s fast, free and secure!#Make payments with PayPal - it\'s fast, free and secure!#
Error#Error#
Error occurred. Please contact us.#Error occurred. Please contact us.#
";
}
sub b1details {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Details#Details#
Stock Number:#Stock Number:#
UPC:#UPC:#
Item Details:#Item Details:#
Price:#Price:#
Unit Quantity:#Unit Quantity:#
Purchasing Quantity:#Purchasing Quantity:#
Add to Cart#Add to Cart#
Shopping Cart#Shopping Cart#
moneyunit#\$#
Phone:#Phone:#
Added to the cart.#Added to the cart.#
OK#Go Back#
";
}
sub b1dlmaintain {
$langindexkey=
"HtmlHeader#Content-type: text/html
#
LangMeta#LangMeta#
Login or password incorrect.#Login or password incorrect.#
Error#Error#
Address too long. Exceeds global<contentlength> bytes. Please reenter.#Address too long. Exceeds global<contentlength> bytes. Please reenter.#
Description too long. Exceeds global<Contentlength> bytes. Please reenter.#Description too long. Exceeds global<Contentlength> bytes. Please reenter.#
Service content too long. Exceeds global<Contentlength> bytes. Please reenter.#Service content too long. Exceeds global<Contentlength> bytes. Please reenter.#
Contact content too long. Exceeds global<Contentlength> bytes. Please reenter.#Contact content too long. Exceeds global<Contentlength> bytes. Please reenter.#
Page 1 content too long. Exceeds global<Contentlength> bytes. Please reenter.#Page 1 content too long. Exceeds global<Contentlength> bytes. Please reenter.#
Page 2 content too long. Exceeds global<Contentlength> bytes. Please reenter.#Page 2 content too long. Exceeds global<Contentlength> bytes. Please reenter.#
Page 3 content too long. Exceeds global<Contentlength> bytes. Please reenter.#Page 3 content too long. Exceeds global<Contentlength> bytes. Please reenter.#
Your account has been updated.#Your account has been updated.#
Return to Homepage.#Return to Homepage.#
Maintain#Maintain#
Maintain Account#Maintain Account#
Go Back#Go Back#
";
}
sub b1done {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Invoice#Invoice#
Invoice Number:#Invoice Number:#
Item Title#Item Title#
Stock Number#Stock Number#
UPC#UPC#
Unit Quantity#Unit Quantity#
Unit Price#Unit Price#
Purchasing Quantity#Purchasing Quantity#
Price#Price#
Total Quantity:#Total Quantity:#
Change#Change#
Total Price:#Total Price:#
Tax (tax rate #Tax (tax rate #
):#):#
Total Price + Tax:#Total Price + Tax:#
charset#utf-8#
Please click this link if you have received the merchandise we delivered to you.#Please click this link if you have received the merchandise we delivered to you.#
Merchandise Received#Merchandise Received#
An email of this invoice has been sent to you.#An email of this invoice has been sent to you.#
We have tried to send an email of this invoice to you but failed.#We have tried to send an email of this invoice to you but failed.#
We will deliver the merchandise you purchased to you.#We will deliver the merchandise you purchased to you.#
Please print this page for your record.#Please print this page for your record.#
Error#Error#
Error occurred. Please contact us.#Error occurred. Please contact us.#
Email#Email#
Time#Time#
Phone#Phone#
Cellphone#Cellphone#
Name#Name#
Address1#Address1#
Address2#Address2#
City#City#
State#State#
Zip#Zip#
All item price#All item price#
Tax#Tax#
Price and tax#Price and tax#
Cart#Cart#
Table#Table#
Customer Instruction#Customer Instruction#
Return to home page.#Return to home page.#
";
}
sub b1file {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
File password incorrect.#File password incorrect.#
Error#Error#
Revise:#Revise:#
Submit#Submit#
Maintain#Maintain#
Maintain Account#Maintain Account#
Go Back#Go Back#
";
}
sub b1fileup {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
File password incorrect.#File password incorrect.#
Error#Error#
Revise:#Revise:#
Submit#Submit#
Maintain#Maintain#
Maintain Account#Maintain Account#
Go Back#Go Back#
";
}
sub b1global {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Surf file error. Please contact us.#Surf file error. Please contact us.#
You are not logged in!#You are not logged in!#
Return to Login.#Return to Login.#
";
}
sub b1invoice {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Invoice#Invoice#
";
}
sub b1insert {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Error#Error#
Number of ads exceeds limit.#Number of ads exceeds limit.#
Name or password incorrect.#Name or password incorrect.#
Post year incorrect. Please reenter.#Post year incorrect. Please reenter.#
Posting date postponed too much. Please reenter.#Posting date postponed too much. Please reenter.#
Ad content too long. Exceeds global<contentlength> bytes. Please reenter.#Ad content too long. Exceeds global<contentlength> bytes. Please reenter.#
Posting month incorrect. Please reenter.#Posting month incorrect. Please reenter.#
Posting date incorrect. Please reenter.#Posting date incorrect. Please reenter.#
Insert#Insert#
The server has problem sending email. Please contact us.#The server has problem sending email. Please contact us.#
Your ad posting:#Your ad posting:#
charset#charset#
Keep this email for later accessing your ad. You may update or delete your ad from this email.#Keep this email for later accessing your ad. You may update or delete your ad from this email.#
To activate your ad in#To activate your ad in#
click#click#
To update or delete your ad in#To update or delete your ad in#
An email has been sent to you. To activate the ad go to your email and click the corresponding link.#An email has been sent to you. To activate the ad go to your email and click the corresponding link.#
If you would like to upload a tag picture for this item, click this button#If you would like to upload a tag picture for this item, click this button#
Upload Tag Picture#Upload Tag Picture#
If you would like to upload pictures for this item, click this button#If you would like to upload pictures for this item, click this button#
Upload Pictures#Upload Pictures#
If you would like to add another item, click this button#If you would like to add another item, click this button#
Add Another Item#Add Another Item#
Your item has been posted. Thank you.#Your item has been posted. Thank you.#
If you like to upload pictures for your item, click this button#If you like to upload pictures for your item, click this button#
Logout#Logout#
This form has expired!#This form has expired!#
file cannot be opened.#file cannot be opened.#
";
}
sub b1dlinvoice {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#LangMeta#
Login or password incorrect.#Login or password incorrect.#
Invoice#Invoice#
Invoice will only be kept for no more than a week. If you need to keep invoice for longer time please contact us.#Invoice will only be kept for no more than a week. If you need to keep invoice for longer time please contact us.#
";
}
sub b1dlinvoicedisplay {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#LangMeta#
Login or password incorrect.#Login or password incorrect.#
";
}
sub b1payment {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Payment#Payment#
Pay now with PayPal!#Pay now with PayPal!#
";
}
sub b1picture {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Picture#Picture#
Go Back#Go Back#
Error#Error#
Error occurred. Please contact us.#Error occurred. Please contact us.#
";
}
sub b1received {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Received#Received#
Thank You#Thank You#
Thank you for your purchase. Hope that you enjoy our service and come back again.#Thank you for your purchase. Hope that you enjoy our service and come back again.#
";
}
sub b1search {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Search#Search#
Post date:#Post date:#
Stock Number:#Stock Number:#
UPC:#UPC:#
Ascend#Ascend#
Descend#Descend#
All Classifications#All Classifications#
All Categories#All Categories#
View Selected#View Selected#
Unselect#Unselect#
Total pages:#Total pages:#
Page:#Page:#
Sort by:#Sort by:#
Phone:#Phone:#
Details#Details#
Modify#Modify#
Shopping Cart#Shopping Cart#
";
}
sub b1tagfupload {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Name or password incorrect.#Name or password incorrect.#
Error in reading and parsing of CGI input#Error in reading and parsing of CGI input#
Missing parameters#Missing parameters#
Please complete the picture upload form.#Please complete the picture upload form.#
Data missing#Data missing#
Operator name or password error.#Operator name or password error.#
Picture must be jpg(jpeg), gif or png formats.#Picture must be jpg(jpeg), gif or png formats.#
Picture must be jpg(jpeg) format.#Picture must be jpg(jpeg) format.#
Merchandise not found.#Merchandise not found.#
You\'ve uploaded the picture.#You\'ve uploaded the picture.#
OK#OK#
This form has expired!#This form has expired!#
Upload#Upload#
Go Back#Go Back#
Cannot open file. Please try again or contact us.#Cannot open file. Please try again or contact us.#
";
}
sub b1tagpic {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Upload Picture#Upload Picture#
Please now upload your tag picture file.It must be a jpg(jpeg) file and file size must be no more than global<tagpicturesize> bytes.#Please now upload your tag picture file.It must be a jpg(jpeg) file and file size must be no more than global<tagpicturesize> bytes.#
File to upload:#File to upload:#
Upload#Upload#
";
}
sub b1testret {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Test Return#Test Return#
Accept credit#Accept credit#
";
}
sub b1topleft {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
chinese#chinese#
chineseb#chineseb#
Home#Home#
About Us#About Us#
Browse Items#Browse Items#
Search Items#Search Items#
Service#Service#
Contact#Contact#
Place an Item#Place an Item#
Update/Delete Items#Update/Delete Items#
Invoice#Invoice#
Maintain Account#Maintain Account#
Terms of Use#Terms of Use#
Contact Us#Contact Us#
";
}
sub b1topleftd {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
chinese#chinese#
chineseb#chineseb#
Home#Home#
体About Us#体About Us#
Browse Items#Browse Items#
Search Items#Search Items#
Service#Service#
Contact#Contact#
Place an Item#Place an Item#
Update/Delete Items#Update/Delete Items#
Maintain Account#Maintain Account#
Terms of Use#Terms of Use#
Contact Us#Contact Us#
";
}
sub b1update {
$langindexkey=
"HtmlHeader#Content-type: text/html; charset=utf-8
#
LangMeta#<meta http-equiv='content-type' content='text/html; charset=utf-8'>
#
Update Ads#Update Ads#
Post year incorrect. Please reenter.#Post year incorrect. Please reenter.#
Ad posting date postponed too much. Please reenter.#Ad posting date postponed too much. Please reenter.#
Ad content too long. Exceeds global<contentlength> bytes. Please reenter.#Ad content too long. Exceeds global<contentlength> bytes. Please reenter.#
Posting month incorrect. Please reenter.#Posting month incorrect. Please reenter.#
Posting date incorrect. Please reenter.#Posting date incorrect. Please reenter.#
Operator name or password error.#Operator name or password error.#
Dealer name or password error.#Dealer name or password error.#
You must be a paid dealer to post a car at this site.#You must be a paid dealer to post a car at this site.#
Cannot store data. Please retry.#Cannot store data. Please retry.#
Update#Update#
Your ad has been updated or deleted.#Your ad has been updated or deleted.#
Go Back#Go Back#
Update#Update#
No ad has been updated or deleted.#No ad has been updated or deleted.#
OK#OK#
Done#Done#
Update#Update#
Update or Delete an Advertisement#Update or Delete an Advertisement#
The password and retyped password are not the same!#The password and retyped password are not the same!#
You must provide your email address!#You must provide your email address!#
The email and retyped email are not the same!#The email and retyped email are not the same!#
Ad description content exceeds global<contentlength> letters. Please revise.#Ad description content exceeds global<contentlength> letters. Please revise.#
Cannot encode password.#Cannot encode password.#
Title:#Title:#
Ads Content:#Ads Content:#
Ads Price:#Ads Price:#
Tax:#Tax:#
Total Price:#Total Price:#
Credit Card Name:#Credit Card Name:#
Credit Card Type:#Credit Card Type:#
MasterCard#MasterCard#
Visa#Visa#
American Express#American Express#
Discover Card#Discover Card#
Credit Card Number:#Credit Card Number:#
Credit Card Expire Date(mm/yy):#Credit Card Expire Date(mm/yy):#
Post Date (mm/dd/yy):#Post Date (mm/dd/yy):#
Post Duration:#Post Duration:#
Nonpublish:#Nonpublish:#
Name:#Name:#
Address:#Address:#
ProvinceState:#ProvinceState:#
Zip Code#Zip Code#
Work Phone:#Work Phone:#
Home Phone:#Home Phone:#
Operator Name:#Operator Name:#
Operator Password:#Operator Password:#
Phone:#Phone:#