us.js
37.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
// 简体中文语言包
var frontMsg = {
index : {
language_0 :"",
language_1 : "welcome you:",
language_2 : "[quit]",
language_3 : "consultation",
language_4 : "help",
language_5 : "upgrade",
language_6 : "advice",
language_7 : "micro-blog",
language_8 : "enterprise management",
language_9 : "search email",
language_10 : "dear",
language_11 : "welcome to the speed of cloud mail system, the time is now",
language_12 : "speed of foreign trade marketing mail V2.5.0 upgrade function greatly upgrade, optimizing the signaling mechanism",
language_13 : "the work of the",
language_14 : "a total of",
language_15 : "a customer",
language_16 : "contacts",
language_17 : "transactions this month",
language_18 : "a total turnover",
language_19 : "30 days without contact",
language_20 : "you in the customer company ranked no.",
language_21 : "no.",
language_22 : "the name",
language_23 : "received a total of",
language_24 : "letter",
language_25 : "inbox",
language_26 : "email",
language_27 : "",
language_28 : "unread mail",
language_29 : "the custom sorting mail folders",
language_30 : "among them",
language_31 : "unread",
language_32 : "out",
language_33 : "message, which this year issued",
language_34 : "this quarter",
language_35 : "this month",
language_36 : "this week",
language_37 : "today",
language_38 : "a total of hair",
language_39 : "letter of exploitation",
language_40 : "people reading",
language_41 : "people unsubscribe",
language_42 : "this month to send",
language_43 : "letter of exploitation",
language_44 : "today to send",
language_45 : "letter of exploitation",
language_46 : "recently",
language_47 : "a mail record",
language_48 : "mail",
language_49 : "send mail",
language_50 : "the sender",
language_51 : "the message subject",
language_52 : "the mail source",
language_53 : "the receiving time",
language_54 : "the message size",
language_55 : "Ke Fei speed marketing mail all rights reserved",
language_56 : "operators: Shenzhen City Branch flying speed of Network Technology Co., ltd.",
language_57 : "the company address: Shenzhen City, luohu District Chinese North Baoan International Commodity Exchange Building six",
language_58 : "sales calls",
language_59 : "warning line",
language_60 : "Home",
language_61 : "E-mail",
language_62 : "email marketing",
language_63 : "customer management",
language_64 : "Close All",
language_65 : "advanced search",
language_66 : "Keywords",
language_67 : "optional",
language_68 : "the recipient",
language_69 : "the message properties",
language_70 : "mail",
language_71 : "email",
language_72 : "the mail folder",
language_73 : "mail",
language_74 : "time range",
language_75 : "additional conditions",
language_76 : "without accessories",
language_77 : "read",
language_78 : "not to read",
language_79 : "inquiry",
language_80 : "cancel",
language_81 : "years",
language_82 : "month",
language_83 : "day",
language_84 : "Monday",
language_85 : "Tuesday",
language_86 : "Wednesday",
language_87 : "Thursday",
language_88 : "Friday",
language_89 : "Saturday",
language_90 : "Sunday",
language_91 : "mail",
language_92 : "customer",
language_93 : "file",
language_94 : "all folders",
language_95 : "all purpose",
language_96 : "no limit",
language_97 : "day",
language_98 : "week",
language_99 : "you do not have the permissions!",
language_100 : "add contact",
language_101 : "you do not have permission to add contacts!",
language_102 : "you do not have permission to delete contacts!",
language_103 : "functions are being developed, please pay attention to the updating!",
language_104 : "page load",
language_105 : "error!",
language_106 : "wrote",
language_107 : "has been deleted",
language_108 : "mail",
language_109 : "recycling station",
language_110 : "garbage box",
language_111 : "mail",
language_112 : "draft box",
language_113 : "outgoing mail",
language_114 : "the timing of mail",
language_115 : "enterprise bulletin",
language_116 : "functions are being developed, please pay attention to the updating!",
language_117 : "mailbox configuration",
language_118 : "personal settings",
language_119 : "mailbox statistics",
language_120 : "file management",
language_121 : "abnormal mail",
language_122 : "staff mail",
language_123 : "approval list",
language_124 : "the global search",
language_125 : "abnormal error please refresh retry",
language_126 : "this account does not allocate SMTP and POP3 cannot use!",
language_127 : "ok",
language_128 : "cancel",
language_129 : "can not be empty!",
language_130 : "congratulations to the available!",
language_131 : "please enter the query conditions",
language_132 : "yes",
language_133 : "no",
language_134 : "the confirmation from the system?",
},
mail :{
language_0 : "",
language_1 : "message received",
language_2 : "Total",
language_3 : "messages",
language_4 : "unread messages",
language_5 : "Total space",
language_6 : "Delete",
language_7 : "labeled",
language_8 : "Move to",
language_9 : "View",
language_10 : "Forward",
language_11 : "Shared Mail",
language_12 : "More",
language_13 : "logo",
language_14 : "From",
language_15 : "Theme",
language_16 : "Size",
language_17 : "Inbox",
language_18 : "Sent Mail",
language_19 : "Drafts",
language_20 : "deleted",
language_21 : "exception mail",
language_22 : "Message Classification",
language_23 : "Staff Mail",
language_24 : "Approval Mail",
language_25 : "outgoing mail",
language_26 : "regular mail",
language_27 : "Announcements",
language_28 : "Email Configuration",
language_29 : "Personal Settings",
language_30 : "Mail Statistics",
language_31 : "File Management",
language_32 : "Read",
language_33 : "Unread",
language_34 : "Important Message",
language_35 : "Cancel important messages",
language_36 : "pending messages",
language_37 : "cancel pending messages",
language_38 : "Mail purpose",
language_40 : "Custom label",
language_41 : "Inbox",
language_42 : "junk mail",
language_43 : "New Mail Classification",
language_44 : "with attachments",
language_45 : "Replied",
language_46 : "Emergency Message",
language_47 : "label",
language_48 : "forward the selected message,",
language_49 : "Attachment Forwarding",
language_50 : "my shared",
language_51 : "shared with me",
language_52 : "Export selected messages",
language_53 : "Pending",
language_54 : "Shared Mail",
language_55 : "date",
language_56 : "Mail From",
language_57 : "send",
language_58 : "save draft",
language_59 : "preview",
language_60 : "cancel",
language_61 : "tagging mail",
language_62 : "cc",
language_63 : "the use of bulk single",
language_64 : "the recipient",
language_65 : "emergency",
language_66 : "the receipt of mail",
language_67 : "whether to trace",
language_68 : "the timing signal",
language_69 : "mail note",
language_70 : "cancel",
language_71 : "contact",
language_72 : "recent contacts",
language_73 : "empty",
language_74 : "all the category contact",
language_75 : "the shared contacts",
language_76 : "the high seas contacts",
language_77 : "the internal mail list",
language_78 : "show the selected recipient",
language_79 : "the message is sent...... ",
language_80 : "add cc",
language_81 : "add bcc",
language_82 : "signature",
language_83 : "please select a time zone",
language_84 : "Chinese",
language_85 : "the british",
language_86 : "USA",
language_87 : "send time",
language_88 : "years",
language_89 : "month",
language_90 : "day",
language_91 : "When the",
language_92 : "Divided",
language_93 : "seconds",
language_94 : "this mail will be in Beijing time",
language_95 : "send to each other mailbox",
language_96 : "editor retransmission",
language_97 : "the message tracking",
language_98 : "input tag name",
language_99 : "choose the label color",
language_100 : "choose color",
language_101 : "draft messages",
language_102 : "delete",
language_103 : "export the selected message",
language_104 : "refresh",
language_105 : "state",
language_106 : "deleted mail",
language_107 : "reduction",
language_108 : "Altogether",
language_109 : "by",
language_110 : "rejected",
language_111 : "cancel",
language_112 : "query",
language_114 : "all",
language_115 : "has been audited",
language_116 : "unaudited",
language_117 : "audit",
language_118 : "comment rejected",
language_119 : "the two submitted",
language_120 : "amended to send",
language_121 : "approval",
language_122 : "the approval time",
language_123 : "the message size",
language_124 : "carbon copy recipients",
language_125 : "blind carbon copy recipients",
language_126 : "time",
language_127 : "annex",
language_128 : "notation",
language_129 : "a total of",
language_130 : "page",
language_131 : "location",
language_132 : "auto reply",
language_133 : "automatic forwarding",
language_134 : "mail filtering",
language_135 : "label management",
language_136 : "query log",
language_137 : "use",
language_138 : "do not use",
language_139 : "execution time",
language_140 : "any time",
language_141 : "effect",
language_142 : "to",
language_143 : "automatic forwarding address",
language_144 : "whether to retain the original",
language_145 : "the classification",
language_146 : "class name",
language_147 : "whether to enable",
language_148 : "the operating time",
language_149 : "operation",
language_150 : "email classification",
language_151 : "the execution conditions",
language_152 : "all mail",
language_153 : "the following conditions",
language_154 : "not enabled",
language_155 : "or",
language_156 : "or",
language_157 : "and",
language_158 : "the sender address",
language_159 : "contains",
language_160 : "do not contain",
language_161 : "include attachments",
language_162 : "more than",
language_163 : "less than",
language_164 : "not in the mail list",
language_165 : "write time",
language_166 : "began in the",
language_167 : "at the end of",
language_168 : "the application of account",
language_169 : "all account",
language_170 : "choose account",
language_171 : "manual classification",
language_172 : "the rule name",
language_173 : "all the mail arrive",
language_174 : "meet the conditions of the mail",
language_175 : "send a domain",
language_176 : "",
language_177 : "attachment size",
language_178 : "other message header fields",
language_179 : "whether contains the header fields",
language_180 : "the message length",
language_181 : "the receiving time",
language_182 : "execution mode",
language_183 : "transfer to",
language_184 : "forward to",
language_185 : "mark",
language_186 : "mark",
language_187 : "email alerts",
language_188 : "the bell",
language_189 : "message",
language_190 : "add tags",
language_191 : "mailing labels",
language_192 : "mail number",
language_193 : "mail number",
language_194 : "login time",
language_195 : "return",
language_196 : "reply",
language_197 : "a direct reply",
language_198 : "reply all",
language_199 : "the original message forwarding",
language_200 : "sharing the message",
language_201 : "print mail",
language_202 : "see the letter head",
language_203 : "export mail",
language_204 : "add to address book",
language_205 : "mail",
language_206 : "cc",
language_207 : "note",
language_208 : "save",
language_209 : "mode",
language_300 : "new folder",
language_301 : "enter folder name",
language_302 : "whether to create a classification rule, later do?",
language_303 : "the creation time",
language_304 : "the timing time",
language_305 : "Ke Fei at headquarters",
language_306 : "choose employees",
language_307 : "choose to view",
language_308 : "transfer to",
language_309 : "the staff",
language_310 : "the Department of",
language_311 : "owned enterprises",
language_312 : "off label",
language_313 : "please select list to delete",
language_314 : "are you sure you want to delete this message?",
language_315 : "delete failed, please try again...",
language_316 : "delete anomaly....",
language_317 : "please select list to mark!",
language_318 : "tag failed please try again...",
language_319 : "flag anomalies...",
language_320 : "please select list to export!",
language_321 : "please select list!",
language_322 : "abnormal error please try again!",
language_323 : "can only choose a single list or not select list!",
language_324 : "send mail",
language_325 : "page load",
language_326 : "error! ",
language_327 : "added successfully!",
language_328 : "the operation failed!",
language_329 : "please enter a tag name",
language_330 : "the label already exists!",
language_331 : "no",
language_332 : "FW: mail",
language_333 : "no email inbox!",
language_334 : "not in the mail list",
language_335 : "unknown",
language_336 : "share mailing list no mail",
language_337 : "please enter the email classification name",
language_338 : "a checked exception",
language_339 : "already exists",
language_340 : "congratulations to the available",
language_341 : "the sender address is not in the correct format",
language_342 : "congratulations to input the correct",
language_343 : "please input subject",
language_344 : "please input message size number: only numbers are integers",
language_345 : "please enter a start time and end time",
language_346 : "start time cannot be greater than the end time",
language_347 : "don't have e-mail message",
language_348 : "do not read",
language_349 : "not tracking",
language_350 : "click IP",
language_351 : "click on the address",
language_352 : "no data",
language_353 : "without approval",
language_354 : "have been approved",
language_355 : "has been sent",
language_356 : "cancel audit",
language_357 : "no",
language_358 : "the home page",
language_359 : "on page",
language_360 : "the next page",
language_361 : "the last page",
language_362 : "the current",
language_363 : "page",
language_364 : "record",
language_365 : "you do not have the permissions",
language_366 : "audit success!",
language_367 : "audit failure!",
language_368 : "this operation is not permitted",
language_369 : "you did not select any mail...",
language_370 : "you can only select a mail for approval",
language_371 : "rejected success",
language_372 : "rejected failed!",
language_373 : "this operation is not permitted",
language_374 : "you are not the email approval",
language_375 : "you did not select any mail",
language_376 : "only after approval and rejected status messages may be revoked",
language_377 : "you are not the message of the auditee, prohibit the operation",
language_378 : "can only choose a mail operation",
language_379 : "you are not the email the auditee, can not change the operation",
language_380 : "the success of the operation",
language_381 : "the system is busy, please try again!",
language_382 : "mail analysis of abnormal, please try again!!!",
language_383 : "comment rejected success",
language_384 : "comment rejected failed",
language_385 : "the current state of the mail to prohibit the operation",
language_386 : "you are not the Email Verifier, prohibit the operation",
language_387 : "the theme and content cannot be empty",
language_388 : "success! Mail into the sending state",
language_389 : "current state does not allow this operation",
language_390 : "only rejected (comment rejected) and two submit mail allows submitted again.",
language_391 : "you do not have the permissions",
language_392 : "the State prohibits delete mail",
language_393 : "are you sure you want to delete this mail? Delete will be unable to restore",
language_394 : "export abnormal please try again",
language_395 : "not to inquire the mail",
language_396 : "no theme",
language_397 : "automatic save drafts",
language_398 : "Save Draft manual",
language_399 : "are you sure you want to delete the outgoing mail",
language_400 : "not to send mail",
language_401 : "mobile exception error",
language_402 : "did not find any mail",
language_403 : "delete mail",
language_404 : "outbox",
language_405 : "did not find any mail",
language_406 : "functions are being developed, please pay attention to the updating!!",
language_407 : "Edit email classification",
language_408 : "editor",
language_409 : "Top",
language_410 : "up a",
language_411 : "down a",
language_412 : "the tail",
language_413 : "no.",
language_414 : "a total of",
language_415 : "did not pass validation",
language_416 : "editor",
language_417 : "congratulations to input the correct",
language_418 : "saved successfully!",
language_419 : "save failed!",
language_420 : "please enter the address of the sender",
language_421 : "deleted successfully!",
language_422 : "mobile success",
language_423 : "move failed",
language_424 : "edit tags",
language_425 : "delete tag?",
language_426 : "login name",
language_427 : "login time",
language_428 : "login IP",
language_429 : "the browser",
language_430 : "login area",
language_431 : "operating system",
language_432 : "query failed please try again!",
language_433 : "recovery failed",
language_434 : "no sender address",
language_435 : "annex is loading, please wait...?",
language_436 : "and",
language_437 : "similar, please make sure that you trust!",
language_438 : "please note that the sender does not in contacts!",
language_439 : "quick reply",
language_440 : "the message does not exist or mail no content",
language_441 : "label!",
language_442 : "new label",
language_443 : "system anomaly!",
language_444 : "share the success",
language_445 : "sharing failed",
language_446 : "add contact failure!",
language_447 : "add contact success",
language_448 : "see the attachment",
language_449 : "the original password input error!!!",
language_450 : "the system is forced to use system signature cannot be added!",
language_451 : "add a signature",
language_452 : "male",
language_453 : "successful modification effect relogin!",
language_454 : "changes failed! Please try again!",
language_455 : "the original password is wrong",
language_456 : "two times to enter the wrong password",
language_457 : "modified successfully",
language_458 : "change password anomaly!",
language_459 : "each page display number can only enter numbers",
language_460 : "automatic save drafts can only enter numbers",
language_461 : "editing failed",
language_462 : "the success of the operation please re login effect!",
language_463 : "edit signature",
language_464 : "delete the signature?",
language_465 : "delete failed please try again",
language_466 : "the original mail box",
language_467 : "have been removed (no email inbox)",
language_468 : "have been deleted (outbox) no mail",
language_469 : "please select list to restore",
language_470 : "restore abnormal, please try again!!!",
language_471 : "the number of paging last for",
language_472 : "not to search any mail inbox!",
language_473 : "outbox did not find any mail",
language_474 : "all files",
language_475 : "add attachments",
language_476 : "please enter the recipient's address is correct!",
language_477 : "please enter the correct copy address!",
language_478 : "please enter the correct blind people",
language_479 : "send failed please try again!",
language_480 : "Save Draft email success!",
language_481 : "draft messages failed to save!",
language_482 : "the abolition of cc",
language_483 : "you want to delete all copies to address?",
language_484 : "the abolition of the bcc",
language_485 : "you want to delete all the BCC addresses?",
language_486 : "cancel the bulk single",
language_487 : "bulk single",
language_488 : "read address failure!",
language_489 : "error loading the page data!",
language_490 : "the success of loading to upload queue",
language_491 : "file upload complete",
language_492 : "abnormal! File does not exist or has been damaged!",
language_493 : "wrote",
language_494 : "open the message tracking must use bulk single display, whether to use?",
language_495 : "the wrong",
language_496 : "the message content is empty or EMl file does not exist!",
language_497 : "no recipient address",
language_498 : "temporarily not regularly send mail",
language_499 : "can not be re edit",
language_500 : "read",
language_501 : "letter",
language_502 : "space used about",
language_503 : "no mail",
language_504 : "copy success!",
language_505 : "failed to copy!",
language_506 : "you have not selected to move the message id",
language_507 : "the number of employees",
language_508 : "the default folder categories",
language_509 : "file type",
language_510 : "change",
language_511 : "the failure",
language_512 : "please select the address file to import",
language_513 : "are you sure you want to delete this file? Delete the category will delete the category of all the mail",
language_514 : "ok",
language_515 : "from the contacts",
language_516 : "set as default",
language_517 : "the rapid recovery of success!",
},
yxy_mail :{
language_0 :"",
language_1 :"speed of email marketing system",
language_2 : "mail",
language_3 : "send effect",
language_4 : "send",
language_5 : "customer address",
language_6 : "I report",
language_7 : "subscription code",
language_8 : "mass settings",
language_9 : "you can limit today",
language_10 : "letter",
language_11 : "month limit",
language_12 : "today has made",
language_13 : "this month has been issued",
language_14 : "today you can also send",
language_15 : "when you can send",
language_16 : "mail",
language_17 : "save draft",
language_18 : "classification",
language_19 : "the default folder categories",
language_20 : "sender's name",
language_21 : "suggest setting",
language_22 : "from email",
language_23 : "the proposed set enterprise mailbox, whether to adopt high precision hair pieces",
language_24 : "add attachments",
language_25 : "help",
language_26 : "reply to your inbox",
language_27 : "individual recipient variable%ReceiverName%",
language_28 : "the recipient mailbox",
language_29 : "can only import.Txt or.Xls files, can be downloaded after",
language_30 : "sample download",
language_31 : "subject",
language_32 : "the proposed set of enterprise mailbox",
language_33 : "whether to use the multi subject",
language_34 : "whether to enable the timing signal",
language_35 : "whether to enable the unsubscribe function",
language_36 : "show Chinese",
language_37 : "show English",
language_38 : "whether to set Webpage link",
language_40 : "the link address",
language_41 : "send",
language_42 : "cancel",
language_43 : "mail",
language_44 : "outgoing mail",
language_45 : "draft messages",
language_46 : "the timing of mail",
language_47 : "theme",
language_48 : "time",
language_49 : "delivery",
language_50 : "detailed",
language_51 : "to display per page",
language_52 : "item",
language_53 : "a total of",
language_54 : "page",
language_55 : "the current article",
language_56 : "the home page",
language_57 : "on page",
language_58 : "the next page",
language_59 : "last",
language_60 : "send",
language_61 : "statistics",
language_62 : "times",
language_63 : "a few letters",
language_64 : "address database",
language_65 : "today",
language_66 : "this month",
language_67 : "a total of",
language_68 : "customer address",
language_69 : "address type",
language_70 : "management classification",
language_71 : "increased",
language_72 : "export address",
language_74 : "Email address",
language_75 : "call",
language_76 : "modified time",
language_77 : "delete",
language_78 : "mobile",
language_79 : "email",
language_80 : "unsubscribe report",
language_81 : "unsubscribe query",
language_82 : "return address",
language_83 : "unsubscribe time",
language_84 : "unsubscribe reason",
language_85 : "operation",
language_86 : "query",
language_87 : "the default sender name",
language_89 : "the default mail address",
language_90 : "the default reply address",
language_91 : "send a set of 1",
language_92 : "whether to enable",
language_93 : "day",
language_94 : "can not send the same email address",
language_95 : "do not set the default system settings is subject to",
language_96 : "send a set of 2",
language_97 : "not to send the same message content",
language_98 : "email address storage settings",
language_99 : "automatic emptying",
language_100 : "before the email address",
language_101 : "submit",
language_102 : "cancel",
language_103 : "whether to adopt high precision hair pieces",
language_104 : "unsubscribe",
language_105 : "click",
language_106 : "reply",
language_107 : "forwarding",
language_108 : "send number",
language_109 : "rescind total",
language_110 : "read the number",
language_111 : "read the number",
language_112 : "has been delivering number",
language_113 : "be delivery number",
language_114 : "system anomaly",
language_115 : "file type",
language_116 : "change",
language_117 : "added successfully",
language_118 : "the failure",
language_119 : "please select the address file to import",
language_120 : "are you sure you want to delete this file? Delete the category will delete the category of all the mail",
language_121 : "e-mail address is not in the correct format",
language_122 : "please input the set number of days",
language_123 : "submitted to the success",
language_124 : "failure",
language_125 : "look",
language_126 : "no",
language_127 : "statistical information",
language_128 : "add file classification",
language_129 : "all files",
language_130 : "send success",
language_131 : "please import address",
language_132 : "congratulations to input the correct!",
language_133 : "the sender cannot be empty!",
language_134 : "congratulations to input the correct!",
language_135 : "from email is not in the correct format!",
language_136 : "you mailbox is not in the correct format",
language_137 : "the theme cannot be empty!",
language_138 : "theme rotation",
language_139 : "years",
language_140 : "month",
language_141 : "day",
language_142 : "ten",
language_143 : "Minute",
language_144 : "please input the unsubscribe address!",
language_145 : "delete tag?",
language_146 : "deleted successfully!",
language_147 : "delete failed!",
language_148 : "browse...",
language_149 : "batch import",
language_150 : "please select a time zone",
language_151 : "send time",
language_152 : "this mail will be in Beijing time",
language_153 : "send to each other mailbox",
language_154 : "Chinese",
language_155 : "the british",
language_156 : "USA",
language_157 : "added manually",
language_158 : "batch import",
language_159 : "category",
language_160 : "name",
language_161 : "email",
language_162 : "sex",
language_163 : "male",
language_164 : "female",
language_165 : "save",
language_166 : "choose Import Address type",
language_167 : "customer address",
},
//客户管理
customer : {
language_0 :"",
language_1 : "customer name",
language_2 : "e-mail address",
language_3 : "contact",
language_4 : "the phone number",
language_5 : "area",
language_6 : "letters volume",
language_7 : "the number of receiving",
language_8 : "the last contact time",
language_9 : "packet",
language_10 : "operation",
language_11 : "together",
language_12 : "contacts",
language_13 : "the home page",
language_14 : "on page",
language_15 : "the next page",
language_16 : "the last page",
language_17 : "no.",
language_18 : "page",
language_19 : "total ",
language_20 : "record",
language_21 : "the name",
language_22 : "mobile phone number",
language_23 : "the last link",
language_24 : "the owner",
language_25 : "shared human",
language_26 : "view",
language_27 : "the choice of enterprise",
language_28 : "choose department",
language_29 : "choose employees",
language_30 : "the new contact",
language_31 : "introduction",
language_32 : "export",
language_33 : "wrote",
language_34 : "today's contact",
language_35 : "this week contact",
language_36 : "days without contact",
language_37 : "never contact",
language_38 : "repeated contact",
language_40 : "senior",
language_41 : "the entry time",
language_42 : "contact time",
language_43 : "email",
language_44 : "customer relationship",
language_45 : "the customer state",
language_46 : "today",
language_47 : "this week",
language_48 : "this month",
language_49 : "last month",
language_50 : "in the last three months",
language_51 : "the specified time",
language_52 : "start time",
language_53 : "query",
language_54 : "the end of time",
language_55 : "mailing",
language_56 : "to have to",
language_57 : "never to return",
language_58 : "drive letter",
language_59 : "send more than",
language_60 : "time",
language_61 : "reply more than",
language_62 : "customer name",
language_63 : "mobile phone",
language_64 : "the contact name",
language_65 : "the region",
language_66 : "countries",
language_67 : "provinces, states",
language_68 : "prefecture level city, county",
language_69 : "customer classification",
language_70 : "the customer source",
language_71 : "the specified shared",
language_72 : "if you want to share",
language_73 : "ok",
language_74 : "cancel",
language_75 : "whether or not to join the library",
language_76 : "for more information",
language_77 : "industry",
language_78 : "mobile phone, communication",
language_79 : "consumer electronics",
language_80 : "computer and accessories",
language_81 : "cars, motorcycles and parts",
language_82 : "clothing",
language_83 : "shoes, socks, hats and accessories",
language_84 : "bags",
language_85 : "watches, jewelry, glasses",
language_86 : "sports and entertainment",
language_87 : "toy",
language_88 : "gifts, arts and crafts",
language_89 : "health beauty, personal care",
language_90 : "lighting, lamps and lanterns",
language_91 : "Home Furnishing gardening",
language_92 : "the furniture and interior decoration",
language_93 : "office supplies and stationery",
language_94 : "packaging and paper",
language_95 : "printing and publishing",
language_96 : "security products",
language_97 : "auto parts",
language_98 : "hardware tools",
language_99 : "textile",
language_100 : "home appliances",
language_101 : "electronic components",
language_102 : "general machinery parts",
language_103 : "electrical equipment",
language_104 : "industrial equipment",
language_105 : "environmental protection",
language_106 : "Gage",
language_107 : "transport",
language_108 : "agriculture",
language_109 : "energy",
language_110 : "manufacturing and processing machinery",
language_111 : "building, real estate",
language_112 : "the minerals, metals and materials",
language_113 : "medicine, maintenance",
language_114 : "chemical",
language_115 : "rubber and plastic raw materials and products",
language_116 : "food and beverage",
language_117 : "service equipment",
language_118 : "business services",
language_119 : "inventory",
language_120 : "other",
language_121 : "the size of the workforce",
language_122 : "the detailed address",
language_123 : "Website",
language_124 : "Introduction",
language_125 : "save",
language_126 : "the phone",
language_127 : "city",
language_128 : "enter the customer name",
language_129 : "modify customer classification",
language_130 : "shut down",
language_131 : "select the file to import",
language_132 : ".Csv format",
language_133 : "to download the sample",
language_134 : "customer mail list",
language_135 : "recent contacts",
language_136 : "all contacts",
language_137 : "personal customer mail list",
language_138 : "sharing client mail list",
language_139 : "shared with each other",
language_140 : "I share to each other",
language_141 : "the client mail list",
language_142 : "the internal mail list",
language_143 : "no data",
language_144 : "sharing",
language_145 : "editor",
language_146 : "delete",
language_147 : "unknown",
language_148 : "to",
language_149 : "mobile",
language_150 : "join the high seas library",
language_151 : "can only choose one",
language_152 : "please select a contacts",
language_153 : "delete the customer?",
language_154 : "deleted successfully",
language_155 : "with the customers by mail, cannot be deleted",
language_156 : "delete",
language_157 : "you do not have permission to delete contacts",
language_158 : "please select customer",
language_159 : "share the success",
language_160 : "select the contact or customers!",
language_161 : "can only select a customer",
language_162 : "you did not select any customer",
language_163 : "do not select a new user",
language_164 : "can only select a user",
language_165 : "select the contact or customers",
language_166 : "mobile success",
language_167 : "you can only select the operations of a customer",
language_168 : "join the high seas success",
language_169 : "have mails with the customer, temporarily unable to join the library!",
language_170 : "more",
language_171 : "edit customer",
language_172 : "many Email are null values, please fill in Email or delete input box",
language_173 : "Email is not in the correct format",
language_174 : "multiple telephone has a null value, please fill in the telephone or delete input box",
language_175 : "customer name",
language_176 : "the name of the company",
language_177 : "the customer is your colleagues",
language_178 : "add, confirm again to add!",
language_179 : "the contacts you have added too, do not need to add!",
language_180 : "modified successfully!",
language_181 : "person in that category, not allowed to delete!",
language_182 : "the following email address, you have added too, is not allowed to add:",
language_183 : "the following e-mail has been added to other colleagues, if necessary please manually add:",
language_184 : "the successful introduction:",
language_185 : "failure",
language_186 : "the import file format is incorrect or the contents of a file error!",
language_187 : "the selected file format error",
language_188 : "into the mail list",
language_189 : "affirms join",
language_190 : "you do not have permission to modify the contact!",
language_191 : "already exists",
language_192 : "the classification of failure",
language_193 : "customers",
},
userSet :{
language_0 :"",
language_1 : "personal data",
language_2 : "password safe",
language_3 : "binding mobile phone",
language_4 : "the use of preference",
language_5 : "signature management",
language_6 : "name",
language_7 : "default reply address",
language_8 : "nickname",
language_9 : "don't",
language_10 : "male",
language_11 : "female",
language_12 : "hand machine",
language_13 : "area",
language_14 : "countries",
language_15 : "province",
language_16 : "city",
language_17 : "the name of the company",
language_18 : "position",
language_19 : "password safe",
language_20 : "change password",
language_21 : "binding mobile phone",
language_22 : "the two verification",
language_23 : "the original password",
language_24 :"The new password",
language_25 : "confirm new password",
language_26 : "binding mobile phone",
language_27 : "you bind the mobile phone number is",
language_28 : "you are not binding mobile phone, immediately bound hand Machine",
language_29 : "input mobile phone number",
language_30 : "enter the verification code",
language_31 : "enabled mobile phone verification code login",
language_32 : "yes",
language_33 : "no",
language_34 : "the use of preference",
language_35 : "mail box to display per page number",
language_36 : "Article",
language_37 : "login email",
language_38 : "welcome page",
language_39 : "inbox",
language_40 : "automatic empty your junk mail",
language_41 : "days ago",
language_42 : "automatic empty deleted mail",
language_43 : "automatic save drafts interval",
language_44 : "minutes",
language_45 : "Email automatically save contacts",
language_46 : "mail automatically save contacts",
language_47 : "add a signature",
language_48 : "optional signature",
language_49 : "content",
language_50 : "operation",
language_51 : "signature title",
language_52 : "signature content",
},
get : function( msg_id )
{
//根据消息ID返回对应的消息文
var message = eval( "frontMsg." + msg_id );
if ( message == null || message == "" )
{
message = msg_id + " undefined";
}
//
return message;
}
};