Filter:   InfoImg
download lang-TEMPLATE.php
Language: PHP
LOC: 787
Project Info
Free Market(freemarket)
Server: SourceForge
Type: cvs
...\freemarket\freemarket\www\
   .htaccess
   admin.php
   article.php
   auth.inc.php
   backend.php
   banners.php
   comments.php
   counter.php
   dhtmllib.js
   download.php
   ezhilit.php
   faq.php
   footer.php
   friend.php
   header.php
   index.php
   lang-croatian.php
   lang-danish.php
   lang-dutch.php
   lang-english.php
   lang-french.php
   lang-german.php
   lang-indonesia.php
   lang-indonesian.php
   lang-italian.php
   lang-japanese.php
   lang-korean.php
   lang-latvian.php
   lang-norwegian.php
   lang-polish.php
   lang-portuguese.php
   lang-quebec.php
   lang-russian.php
   lang-simplifiedchinese.php
   lang-slovak.php
   lang-spanish.php
   lang-swedish.php
   lang-TEMPLATE.php
   ...-traditionalchinese.php
   links.php
   mainfile.php
   memberlist.php
   memberslist.php
   pollBooth.php
   pollcomments.php
   postinfo.html
   print.php
   problems.php
   scroller.js
   search.php
   sections.php
   stats.php
   submit.php
   top.php
   topics.php
   user.php

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
<?php

/*
Welcome to PHP-NUKE

This is the language module with "all" the system messages without any order.

If you made a translation, please sent to me (fburzi@ncc.org.ve) the translated
file and I'll include it in the next release.

*/

function translate($phrase) {
    
    switch($phrase) {

    case "(Are you sure you included a URL? Did ya test them for typos?)":	$tmp = "(Are you sure you included a URL?  Did ya test them for typos?)"; break;
    case "(Did you check URLs?)":	$tmp = "(Did you check URLs?)"; break;
    case "(for changes only)":		$tmp = "(for changes only)"; break;
    case "- are you sure?":		$tmp = "- are you sure?"; break;
    case "Add Author":			$tmp = " Add Author "; break;
    case "Administration Menu":		$tmp = "Administration Menu"; break;
    case "NEW Article":			$tmp = "NEW Article"; break;
    case "Left Blocks":			$tmp = "Left Blocks"; break;
    case "Right Blocks":		$tmp = "Right Blocks"; break;
    case "Admin Block":			$tmp = "Admin Block"; break;
    case "Main Block":			$tmp = "Main Block"; break;
    case "Sections Manager":		$tmp = "Sections Manager"; break;
    case "Logout / Exit":		$tmp = "Logout / Exit"; break;
    case "User doesn't exist!":		$tmp = "User doesn't exist!"; break;
    case "Submit News":			$tmp = "Submit News"; break;
    case "We allow just one vote per day":	$tmp = "We allow just one vote per day"; break;
    case "Surveys/Polls":		$tmp = "Surveys/Polls"; break;
    case "HTTP Referers":		$tmp = "HTTP Referers"; break;
    case "Who is linking our site?":	$tmp = "Who is linking our site?"; break;
    case "Delete Referers":		$tmp = "Delete Referers"; break;
    case "link visited:":		$tmp = "link visited:"; break;
    case "most linked stories":		$tmp = "most linked stories"; break;
    case "Delete Polls":		$tmp = "Delete Polls"; break;
    case "Last":			$tmp = "Last"; break;
    case "Articles":			$tmp = "Articles"; break;
    case "Edit":			$tmp = "Edit"; break;
    case "Delete":			$tmp = "Delete"; break;
    case "Current Active Topics":	$tmp = "Current Active Topics"; break;
    case "Click to Edit":		$tmp = "Click to Edit"; break;
    case "Add a New Topic":		$tmp = "Add a New Topic"; break;
    case "Topic Name:":			$tmp = "Topic Name:"; break;
    case "Topic Text:":			$tmp = "Topic Text:"; break;
    case "Topic Image:":		$tmp = "Topic Image:"; break;
    case "Add Topic!":			$tmp = "Add Topic!"; break;
    case "(just a name without spaces - max: 20 characters)":	$tmp = "(just a name without spaces - max: 20 characters)"; break;
    case "(the full topic text or description - max: 40 characters)":	$tmp = "(the full topic text or description - max:40 characters)"; break;
    case "(image name + extension located in":	$tmp = "(image name + extension located in"; break;
    case "for example: gamesandhobbies":	$tmp = "for example: gamesandhobbies"; break;
    case "for example: Games and Hobbies":	$tmp = "for example: Games and Hobbies"; break;
    case "for example: games.gif":	$tmp = "for example: games.gif"; break;
    case "Edit Topic:":			$tmp = "Edit Topic:"; break;
    case "Save Changes!":		$tmp = "Save Changes!"; break;
    case "Delete Topic":		$tmp = "Delete Topic"; break;
    case "Are you sure you want to delete Topic":	$tmp = "Are you sure you want to delete Topic"; break;
    case "This will delete ALL it's stories and it's comments!":	$tmp = "This will delete ALL it's stories and it's comments!"; break;
    case "changerblock":		$tmp = "Change Block"; break;
    case "deleterblock":		$tmp = "Delete Block"; break;
    case "makerblock":			$tmp = "Make Block"; break;
    case "changelblock":		$tmp = "Change Block"; break;
    case "deletelblock":		$tmp = "Delete Block"; break;
    case "makelblock":			$tmp = "Make Block"; break;
    case "Create New Right Block":	$tmp = "Create New Right Block"; break;
    case "Create New Left Block":	$tmp = "Create New Left Block"; break;
    case "Edit Admin Block":		$tmp = "Edit Admin Block"; break;
    case "Are you sure you want to remove Story ID #":	$tmp = "Are you sure you want to remove Story ID #"; break;
    case "and all it's comments?":	$tmp = "and all it's comments?"; break;
    case "Edit Admins":			$tmp = "Edit Admins"; break;
    case "Add User":			$tmp = "Add User"; break;
    case "Update User":			$tmp = "Update User"; break;
    case "User ID":			$tmp = "User ID"; break;
    case "Preview Story":		$tmp = "Preview Story"; break;
    case "Past Articles":		$tmp = "Past Articles"; break;
    case "comment":	$tmp = "comment"; break;
    case "comments?":	$tmp = "comments?"; break;
    case "Welcome to":	$tmp = "Welcome to"; break;
    case "Votes: ":	$tmp = "Votes: "; break;
    case "Past Surveys":	$tmp = "Past Surveys"; break;
    case "Survey":	$tmp = "Survey"; break;
    case "Total Votes: ":	$tmp = "Total Votes: "; break;
    case "Voting Booth":	$tmp = "Voting Booth"; break;
    case "Other Polls":	$tmp = "Other Polls"; break;
    case "Results":	$tmp = "Results"; break;
    case "Your Name":	$tmp = "Your Name"; break;
    case "New User":	$tmp = "New User"; break;
    case "Title":	$tmp = "Title"; break;
    case "Be Descriptive, Clear and Simple":	$tmp = "Be Descriptive, Clear and Simple"; break;
    case "bad titles='Check This Out!' or 'An Article'.":	$tmp = "bad titles='Check This Out!' or 'An Article'."; break;
    case "The Scoop":	$tmp = "The Scoop"; break;
    case "HTML is fine, but double check those URLs and HTML tags!":	$tmp = "HTML is fine, but double check those URLs and HTML tags!"; break;
    case "You must preview once before you can submit":	$tmp = "You must preview once before you can submit"; break;
    case "Are you sure you included a URL? Did you test them for typos?":	$tmp = "Are you sure you included a URL? Did you test them for typos?"; break;
    case "Select Topic":	$tmp = "Select Topic"; break;
    case "Thanks for your submission.":	$tmp = "Thanks for your submission. We'll look into our 8 magic ball and it might just tell us to post your story. Keep em coming."; break;
    case "We received":		$tmp = "We received"; break;
    case "visitors from":	$tmp = "visitors from"; break;
    case "Operating Systems":	$tmp = "Operating Systems"; break;
    case "Unknown":	$tmp = "Unknown"; break;
    case "Threshold":	$tmp = "Threshold"; break;
    case "No Comments":	$tmp = "No Comments"; break;
    case "Nested":	$tmp = "Nested"; break;
    case "Flat":	$tmp = "Flat"; break;
    case "Thread":	$tmp = "Thread"; break;
    case "Oldest First":	$tmp = "Oldest First"; break;
    case "Newest First":	$tmp = "Newest First"; break;
    case "Highest Scores First":	$tmp = "Highest Scores First"; break;
    case "Save":	$tmp = "Save"; break;
    case "Refresh":	$tmp = "Refresh"; break;
    case "Reply":	$tmp = "Reply"; break;
    case "The comments are owned by the poster. We aren't responsible for their content.":	$tmp = "The comments are owned by the poster. We aren't responsible for their content."; break;
    case "Post Anonymously":	$tmp = "Post Anonymously"; break;
    case "Post":	$tmp = "Post"; break;
    case "Comment":	$tmp = "Comment"; break;
    case "Extrans (html tags to text)":	$tmp = "Extrans (html tags to text)"; break;
    case "HTML Formatted":	$tmp = "HTML Formatted"; break;
    case "Plain Old Text":	$tmp = "Plain Old Text"; break;
    case "Subject":	$tmp = "Subject"; break;
    case "Allowed HTML:":	$tmp = "Allowed HTML:"; break;
    case "User Info":	$tmp = "User Info"; break;
    case "Score: ":	$tmp = "Score: "; break;
    case "by":	$tmp = "by"; break;
    case "on":	$tmp = "on"; break;
    case "Moderate":	$tmp = "Moderate"; break;
    case "This is your personal page":	$tmp = "This is your personal page. Probably you have interest in make some changes. If you want to waste some time, this is the correct place."; break;
    case "My HomePage:":	$tmp = "My HomePage:"; break;
    case "My E-Mail:":		$tmp = "My E-Mail:"; break;
    case "Extra Info:":		$tmp = "Extra Info"; break;
    case "There is no available info for":	$tmp = "There is no available info for"; break;
    case "This web site uses":		$tmp = "This web site uses"; break;
    case "Incorrect Login!":	$tmp = "Incorrect Login!"; break;
    case "New User:":	$tmp = "New User:"; break;
    case "(Password will be sent to the email address you enter.)":	$tmp = "(Password will be sent to the email address you enter.)"; break;
    case "Lost your Password?":	$tmp = "Lost your Password?"; break;
    case "No problem. Just type your Nickname and click on send button.":	$tmp = "No problem. Just type your Nickname and click on send button."; break;
    case "Notice: Account preferences are cookie based.":	$tmp = "Notice: Account preferences are cookie based."; break;
    case "more info...":	$tmp = "more info..."; break;
    case "Sorry, no corresponding user info was found":		$tmp = "Sorry, no corresponding user info was found"; break;
    case "User Password for":	$tmp = "User Password for"; break;
    case "The user account":	$tmp = "The user account"; break;
    case "at":	$tmp = "at"; break;
    case "has this email associated with it.":	$tmp = "has this email associated with it."; break;
    case "A web user from":	$tmp = "A web user from"; break;
    case "has just requested that password be sent.":	$tmp = "has just requested that password be sent."; break;
    case "Your New Password is:":	$tmp = "Your New Password is:"; break;
    case "You can change it after you login at":	$tmp = "You can change it after you login at"; break;
    case "If you didn't ask for this, don't worry. You are seeing this message, not 'them'. If this was an error just login with your new password.":	$tmp = "If you didn't ask for this, don't worry. You are seeing this message, not 'them'. If this was an error just login with your new password."; break;
    case "Password for":	$tmp = "Password for"; break;
    case "mailed.":	$tmp = "mailed."; break;
    case "ERROR: Email address already registered":	$tmp = "ERROR: Email address already registered"; break;
    case "ERROR: Nickname taken":	$tmp = "ERROR: Nickname taken"; break;
    case "ERROR: Name is reserved.":	$tmp = "ERROR: Name is reserved."; break;
    case "ERROR: Invalid email":	$tmp = "ERROR: Invalid email"; break;
    case "ERROR: Email addresses do not contain spaces.":	$tmp = "ERROR: Email addresses do not contain spaces."; break;
    case "ERROR: Invalid Nickname":	$tmp = "ERROR: Invalid Nickname"; break;
    case "Nickname is too long. It must be less than 15 characters.":	$tmp = "Nickname is too long. It must be less than 15 characters."; break;
    case "There cannot be any spaces in the Nickname.":		$tmp = "There cannot be any spaces in the Nickname."; break;
    case "Finish":	$tmp = "Finish"; break;
    case "You or someone else has used your email account":	$tmp = "You or someone else has used your email account"; break;
    case "to register an account at":	$tmp = "to register an account at"; break;
    case "The following is the member information:":	$tmp = "The following is the member information:"; break;
    case "-Nickname: ":		$tmp = "-Nickname: "; break;
    case "-Password: ":		$tmp = "-Password: "; break;
    case "Your Password is: ":		$tmp = "Your Password is: "; break;
    case "You are now registered. You should receive your password at the email account you provided.":		$tmp = "You are now registered. You should receive your password at the email account you provided."; break;
    case "Real Name":	$tmp = "Real Name"; break;
    case "Real Email":	$tmp = "Real Email"; break;
    case "Fake Email":	$tmp = "Fake Email"; break;
    case "Your HomePage":	$tmp = "Your HomePage"; break;
    case "Extra Info":	$tmp = "Extra Info"; break;
    case "(optional)":	$tmp = "(optional)"; break;
    case "(required)":	$tmp = "(required)"; break;
    case "(This Email will not be public but is required, will be used to send your password if you lost it)":		$tmp = "(This Email will not be public but is required, will be used to send your password if you lost it)"; break;
    case "(This Email will be public. Just type what you want, Spam proof)":		$tmp = "(This Email will be public. Just type what you want, Spam proof)"; break;
    case "(255 characters max. Type what others can know about yourself)":		$tmp = "(255 characters max. Type what others can know about yourself)"; break;
    case "(type a new password twice to change it)":		$tmp = "(type a new password twice to change it)"; break;
    case "Save Changes":	$tmp = "Save Changes"; break;
    case "Both passwords are different. They need to be identical.":	$tmp = "Both passwords are different. They need to be identical."; break;
    case "Sorry, your password must be at least":	$tmp = "Sorry, your password mus be at least"; break;
    case "characters long":		$tmp = "characters long"; break;
    case "Something screwed up... don't you hate that?":	$tmp = "Something screwed up... don't you hate that?"; break;
    case "Current Active Sections":	$tmp = "Current Active Sections"; break;
    case "Add a New Section":	$tmp = "Add a New Section"; break;
    case "Section Name:":	$tmp = "Section Name:"; break;
    case "(40 characters Max.)":	$tmp = "(40 characters Max.)"; break;
    case "Add Section!":	$tmp = "Add Section!"; break;
    case "Edit Section:":	$tmp = "Edit Section:"; break;
    case "Delete Section!":	$tmp = "Delete Section!"; break;
    case "Add Article in Sections":	$tmp = "Add Article in Sections"; break;
    case "Add Article!":	$tmp = "Add Article!"; break;
    case "Edit Article":	$tmp = "Edit Article"; break;
    case "Content":	$tmp = "Content"; break;
    case "Delete Article: ":	$tmp = "Delete Article: "; break;
    case "Are you sure you want to delete this article?":	$tmp = "Are you sure you want to delete this article?"; break;
    case "Are you sure you want to delete section":	$tmp = "Are you sure you want to delete section"; break;
    case "Delete Section: ":	$tmp = "Delete Section: "; break;
    case "This will delete ALL its articles!":		$tmp = "This will delete ALL its articles!"; break;
    case "Welcome to the Special Sections at":	$tmp = "Welcome to the Special Sections at"; break;
    case "Here you can find some cool articles not presents in the Home.":	$tmp = "Here you can find some cool articles not presents in the Home."; break;
    case "This is Section":	$tmp = "This is Section"; break;
    case "Following are the articles published under this section.":	$tmp = "Following are the articles published under this section."; break;
    case "Return to Sections Index":	$tmp = "Return to Sections Index"; break;
    case "Back to":	$tmp = "Back to"; break;
    case "Sections Index":	$tmp = "Sections Index"; break;
    case "All Topics":	$tmp = "All Topics"; break;
    case "All Authors":	$tmp = "All Authors"; break;
    case "News number in the Home":	$tmp = "News number in the Home"; break;
    case "Activate Personal Menu":	$tmp = "Activate Personal Menu"; break;
    case "(Check this option and the following text will appear in the Home)":	$tmp = "(Check this option and the following text will appear in the Home)"; break;
    case "(You can use HTML code to put links, for example)":	$tmp = "(You can use HTML code to put your links, for example)"; break;
    case "Select One Theme":	$tmp = "Select One Theme"; break;
    case "This option will change the look for the whole site.":	$tmp = "This option will change the look for the whole site."; break;
    case "The changes will be valid only to you.":	$tmp = "The changes will be valid only to you."; break;
    case "Each user can view the site with different theme.":	$tmp = "Each user can view the site with different theme."; break;
    case "Display Mode":	$tmp = "Display Mode"; break;
    case "Sort Order":	$tmp = "Sort Order"; break;
    case "Comments scored less than this setting will be ignored.":	$tmp = "Comments scored less than this setting will be ignored."; break;
    case "Uncut and Raw":	$tmp = "Uncut and Raw"; break;
    case "Almost Everything":	$tmp = "Almost Everything"; break;
    case "Filter Most Anon":	$tmp = "Filter Most Anon"; break;
    case "Score":	$tmp = "Score"; break;
    case "Anonymous posts start at 0, logged in posts start at 1. Moderators add and subtract points.":	$tmp = "Anonymous posts start at 0, logged in post start at 1. Moderators add and subtract points."; break;
    case "Do Not Display Scores":	$tmp = "Do Not Display Scores"; break;
    case "(Hides score: They still apply, you just don't see them.)":	$tmp = "(Hides score: They still apply, you just don't see them.)"; break;
    case "Max Comment Length":	$tmp = "Max Comment Length"; break;
    case "(Truncates long comments, and adds a Read More link. Set really big to disable)":	$tmp = "(Truncates long comments, and adds a Read More link. Set really big to disable)"; break;
    case "Posted by ":	$tmp = "Posted by "; break;
    case "Posted on ":	$tmp = "Posted on "; break;
    case "on":	$tmp = "on"; break;
    case "Contributed by ":	$tmp = "Contributed by "; break;
    case "writes":	$tmp = "writes"; break;
    case "Menu for":	$tmp = "Menu for"; break;
    case "total words in this text)":	$tmp = "total words in this text)"; break;
    case "votes":	$tmp = "votes"; break;
    case " on...":	$tmp = " on..."; break;
    case "New Article":		$tmp = "New Article"; break;
    case "Delete Topic!":	$tmp = "Delete Topic!"; break;
    case "Click to list all articles in this topic":	$tmp = "Click to list all articles in this topic"; break;
    case "Welcome to the TOP page for":	$tmp = "Welcome to the TOP $top page for"; break;
    case "most read stories":	$tmp = "most read stories"; break;
    case "read:":	$tmp = "read:"; break;
    case "times":	$tmp = "times"; break;    
    case "most commented stories":	$tmp = "most commented stories"; break;
    case "comments:":	$tmp = "comments:"; break;
    case "most voted polls":	$tmp = "most voted polls"; break;
    case "votes:":	$tmp = "votes:"; break;
    case "Edit Article ID:":	$tmp = "Edit Article ID:"; break;
    case "most read articles in special sections":	$tmp = "most read articles in special sections"; break;
    case "No Subject":	$tmp = "No Subject"; break;
    case "Read the rest of this comment...":	$tmp = "Read the rest of this comment..."; break;
    case "All":	$tmp = "All"; break;
    case "week":	$tmp = "week"; break;
    case "weeks":	$tmp = "weeks"; break;
    case "month":	$tmp = "month"; break;
    case "months":	$tmp = "months"; break;
    case "most active news submitters":	$tmp = "most active news submitters"; break;
    case "sent news:":	$tmp = "sent news:"; break;
    case "Delete Article!":	$tmp = "Delete Article!"; break;
    case "Banners Administration":	$tmp = "Banners Administration"; break;
    case "Current Active Banners":	$tmp = "Current Active Banners"; break;
    case "ID":	$tmp = "ID"; break;
    case "Impressions":	$tmp = "Impressions"; break;
    case "Imp. Left":	$tmp = "Imp. Left"; break;
    case "Clicks":	$tmp = "Clicks"; break;
    case "% Clicks":	$tmp = "% Clicks"; break;
    case "Client Name":	$tmp = "Client Name"; break;
    case "Functions":	$tmp = "Functions"; break;
    case "Imp.":	$tmp = "Imp."; break;
    case "Date Started":	$tmp = "Date Started"; break;
    case "Date Ended":	$tmp = "Date Ended"; break;
    case "Finished Banners":	$tmp = "Finished Banners"; break;
    case "Advertising Clients":	$tmp = "Advertising Clients"; break;
    case "Active Banners":	$tmp = "Active Banners"; break;
    case "Contact Name":	$tmp = "Contact Name"; break;
    case "Contact Email":	$tmp = "Contact Email"; break;
    case "Add a New Banner":	$tmp = "Add a New Banner"; break;
    case "Client Name: ":	$tmp = "Client Name: "; break;
    case "Impressions Purchased: ":	$tmp = "Impressions Purchased: "; break;
    case "Image URL: ":	$tmp = "Image URL: "; break;
    case "Click URL: ":	$tmp = "Click URL: "; break;
    case "Add Banner":	$tmp = "Add Banner"; break;
    case "Unlimited":	$tmp = "Unlimited"; break;
    case "Add a New Client":	$tmp = "Add a New Client"; break;
    case "Client Name: ":	$tmp = "Client Name: "; break;
    case "Contact Name: ":	$tmp = "Contact Name: "; break;
    case "Contact Email: ":	$tmp = "Contact Email: "; break;
    case "Client Login: ":	$tmp = "Client Login: "; break;
    case "Client Password: ":	$tmp = "Client Password: "; break;
    case "Add Client":	$tmp = "Add Client"; break;
    case "Delete Banner":	$tmp = "Delete Banner"; break;
    case "Are you sure you want to delete this Banner?":	$tmp = "Are you sure you want to delete this Banner?"; break;
    case "Edit Banner":	$tmp = "Edit Banner"; break;
    case "Add More Impressions: ":	$tmp = "Add More Impressions: "; break;
    case "Purchased: ":	$tmp = "Purchased: "; break;
    case "Made: ":	$tmp = "Made: "; break;
    case "Change Banner":	$tmp = "Change Banner"; break;
    case "Delete Advertising Client":	$tmp = "Delete Advertising Client"; break;
    case "You are about to delete client:":	$tmp = "You are about to delete client:"; break;
    case "and all its Banners!!!":	$tmp = "and all its Banners!!!"; break;
    case "This client doesn't have any banner running now.":	$tmp = "This client doesn't have any banner running now."; break;
    case "This client has the following ACTIVE BANNERS running in":	$tmp = "This client has the following ACTIVE BANNERS running in"; break;
    case "WARNING!!!":	$tmp = "WARNING!!!"; break;
    case "Are you sure you want to delete this Client and ALL its Banners?":	$tmp = "Are you sure you want to delete this Client and ALL its Banners?"; break;
    case "Edit Advertising Client":	$tmp = "Edit Advertising Client"; break;
    case "Change Client":	$tmp = "Change Client"; break;
    case "has just requested a Confirmation Code to change the password.":	$tmp = "has just requested a Confirmation Code to change the password."; break;
    case "Your Confirmation Code is:":	$tmp = "Your Confirmation Code is:"; break;
    case "With this code you can now assign a new password at":	$tmp = "With this code you can now assign a new password at"; break;
    case "If you didn't ask for this, dont worry. Just delete this Email.":	$tmp = "If you didn't ask for this, dont worry. Just delete this Email."; break;
    case "Confirmation Code for":	$tmp = "Confirmation Code for"; break;
    case "Send Password":	$tmp = "Send Password"; break;
    case "Confirmation Info":	$tmp = "You'll receive a Confirmation Code by Email, then return here and retype your Nickname and your Code, after that you'll receive your new Password by Email."; break;
    case "Confirmation Code":	$tmp = "Confirmation Code"; break;
    case "User Login":	$tmp = "User Login"; break;
    case "E-Mail: ":	$tmp = "Email: "; break;
    case "Password: ":	$tmp = "Password: "; break;
    case "As a registered user you can:":	$tmp = "As a registered user you can:"; break;
    case "Post comments with your name":	$tmp = "Post comments with your name"; break;
    case "Send news with your name":	$tmp = "Send news with your name"; break;
    case "Have a personal box in the Home":	$tmp = "Have a personal box in the Home"; break;
    case "Select how many news you want in the Home":	$tmp = "Select how many news you want in the Home"; break;
    case "Customize the comments":	$tmp = "Customize the comments"; break;
    case "Select different themes":	$tmp = "Select different themes"; break;
    case "some other cool stuff...":	$tmp = "some other cool stuff..."; break;
    case "Register Now! It's Free!":	$tmp = "Register Now! It's Free!"; break;
    case "We don't sell/give to others your personal info.":	$tmp = "We don't sell/give to others your personal info."; break;
    case "Nickname: ":	$tmp = "Nickname: "; break;
    case "Confirmation Code: ":	$tmp = "Confirmation Code:"; break;
    case "most active authors":	$tmp = "most active authors"; break;
    case "news published:":	$tmp = "news published:"; break;
    case "previous matches":	$tmp = "previous matches"; break;
    case "next matches":	$tmp = "next matches"; break;
    case "Are you sure you want to delete": $tmp = "Are you sure you want to delete "; break;
    case "Browsers":			$tmp = "Browsers"; break;
    case "Main":			$tmp = "Main"; break;
    case "Admin":			$tmp = "Admin"; break;
    case "Left":			$tmp = "Left"; break;
    case "Right":			$tmp = "Right"; break;
    case "Authors":			$tmp = "Authors"; break;
    case "Users":			$tmp = "Users"; break;
    case "bytes more":			$tmp = "bytes more"; break;
    case "ChangeStory":			$tmp = " Change Story "; break;
    case "RemoveStory":			$tmp = " Remove Story "; break;
    case "Content:": 			$tmp = "Content:"; break;
    case "Create new poll":		$tmp = "Create new poll"; break;
    case "Create":			$tmp = "Create"; break;
    case "Current Poll:": 		$tmp = "Current Poll: "; break;
    case "Delete Author":		$tmp	= "Delete Author"; break;
    case "DeleteStory":			$tmp	= " Delete Story "; break;
    case "DisplayStory":		$tmp = " Display Story "; break;
    case "Edit Left Blocks": 		$tmp = "Edit Left Blocks"; break;
    case "Edit Admin Block": 		$tmp = "Edit Admin Block"; break;
    case "Edit Right Blocks": 		$tmp = "Edit Right Blocks"; break;
    case "Edit Main Block": 		$tmp = "Edit Main Block"; break;
    case "Extended Text":		$tmp	= "Extended Text"; break;
    case "New Poll": 			$tmp	= "New Poll"; break;
    case "View Results": 		$tmp	= "View Results"; break;
    case "Delete Poll": 		$tmp	= "Delete Poll"; break;
    case "EditStory":			$tmp = " Edit Story "; break;
    case "Email":			$tmp	= "Email"; break;
    case "Full Text":			$tmp	= "Full Text"; break;
    case "Go home":			$tmp	= "Go Home"; break;
    case "Go!":				$tmp	= "Ok"; break;
    case "Handle":			$tmp	= "Nickname"; break;
    case "Intro Text":			$tmp	= "Intro Text"; break;
    case "Logged out":			$tmp	= "Logged out"; break;
    case "Logout":			$tmp = "Logout"; break;
    case "Modify Info":			$tmp	= "Modify Info"; break;
    case "Name":			$tmp	= "Name"; break;
    case "Name:":			$tmp	= "Name:"; break;
    case "No New Submission": 		$tmp = "No New Submission"; break;
    case "No New Submissions": 		$tmp = "No New Submissions"; break;
    case "No":				$tmp	= "No"; break;
    case "Notes":			$tmp	= "Notes"; break;
    case "Option":			$tmp	= "Option"; break;
    case "Password":			$tmp	= "Password"; break;
    case "Parent":			$tmp	= "Parent"; break;
    case "Read More...":		$tmp	= "Read More..."; break;
    case "Retype Passowrd":		$tmp="Retype Password"; break;
    case "Please choose a poll from the list below.": $tmp = "Please choose a poll from the list below."; break;
    case "Please enter each available option into a single field": $tmp = "Please enter each available option into a single field"; break;
    case "Polltitle":			$tmp	= "Polltitle"; break;
    case "Post NEW Article": 		$tmp = "Post NEW Article"; break;
    case "PostAdminStory":		$tmp	= "PostAdminStory"; break;
    case "PostStory":			$tmp	= " Post Story "; break;
    case "PreviewAdminStory":		$tmp	= "PreviewAdminStory"; break;
    case "PreviewAgain":		$tmp	= " Preview Again "; break;
    case "Remove an existing poll":	$tmp	= "Remove an existing poll"; break;
    case "Remove existing poll": 	$tmp = "Remove existing poll"; break;
    case "Remove":			$tmp	= "Remove"; break;
    case "Retype Password":		$tmp	= "Retype Password"; break;
    case "Search":			$tmp = "Search"; break;
    case "Search in":			$tmp = "Search in"; break;
    case "Sorry, the new passwords do not match. Click back and try again":	$tmp	= "Sorry, the new passwords do not match. Click back and try again"; break;
    case "Story ID:":			$tmp = "Story ID:"; break;
    case "Subject":			$tmp	= "Subject"; break;
    case "The Story":			$tmp	= "The Story"; break;
    case "Title:":			$tmp = "Title:"; break;
    case "Topic":			$tmp = "Topic"; break;
    case "Topics Manager":		$tmp = "Topics Manager"; break;
    case "URL":				$tmp	= "URL"; break;
    case "Update Author":		$tmp	= " Update Author "; break;
    case "View poll results":		$tmp	= "View poll results"; break;
    case "View":			$tmp	= " View "; break;
    case "WARNING: The chosen poll will be removed IMMEDIATELY from the database!":	$tmp	= "WARNING: The chosen poll will be removed IMMEDIATELY from the database!"; break;
    case "Yes":				$tmp	= "Yes"; break;
    case "You are now logged out":	$tmp	= "You are now logged out"; break;
    case "adminMain":   		$tmp = "adminMain"; break;
    case "adminStory":   		$tmp = "adminStory"; break;
    case "bad pass":			$tmp	= "bad pass"; break;
    case "blocks":   			$tmp = "blocks"; break;
    case "changeblock": 		$tmp = " Change Block "; break;
    case "create":			$tmp	= "create"; break;
    case "createPosted":		$tmp	= "createPosted"; break;
    case "current authors":		$tmp	= "current authors"; break;
    case "datestring":			$tmp = "%A, %B %d @ %T %Z"; break;
    case "deladmin":			$tmp	= "deladmin"; break;
    case "deladminconf":		$tmp	= "deladminconf"; break;
    case "delete":			$tmp	= "delete"; break;
    case "deleteblock": 		$tmp = " Delete Block "; break;
    case "Login":			$tmp	= " Login "; break;
    case "logout":			$tmp	= "logout"; break;
    case "makeblock":			$tmp = " Make Block "; break;
    case "mod_authors":			$tmp	= "mod_authors"; break;
    case "modifyadmin":			$tmp	= "modifyadmin"; break;
    case "remove":			$tmp	= "remove"; break;
    case "removePosted":		$tmp	= " Remove Posted "; break;
    case "update":			$tmp	= "update"; break;
    case "view":			$tmp	= "view"; break;
    case "viewPosted":			$tmp	= " View Posted "; break;
    case "AdminID":			$tmp	= "AdminID";break;
    case "Edit Users": 			$tmp	= "Edit Users";break;
    case "user": 			$tmp	= "User";break;
    case "Modify User": 		$tmp	= "Modify User";break;
    case "Delete User": 		$tmp	= "Delete User";break;
    case "Handle/UserID": 		$tmp	= "User ID";break;
    case "* indicates compulsory fields": $tmp = "* indicates compulsory fields"; break;
    case "You must complete all compulsory fields":	$tmp	= "You must complete all compulsory fields"; break;

// Added for PHP-Nuke 2.0

    case "Miscelaneous Stats":          	$tmp    = "Miscelaneous Stats"; break;
    case "Registered Users: ":          	$tmp    = "Registered Users: "; break;
    case "Active Authors: ":            	$tmp    = "Active Authors: "; break;
    case "Stories Published: ":         	$tmp    = "Stories Published: "; break;
    case "Comments Posted: ":           	$tmp    = "Comments Posted: "; break;
    case "Special Sections: ":          	$tmp    = "Special Sections: "; break;
    case "Articles in Sections: ":      	$tmp    = "Articles in Sections: "; break;
    case "News Waiting to be Published: ":  	$tmp    = "News Waiting to be Published: "; break;
    case "Active Topics: ":           		$tmp    = "Active Topics: "; break;
    case "linksdatestring":			$tmp 	= "%d-%b-%Y"; break;
    case "Section Image:":      	      	$tmp    = "Section Image:"; break;
    case "(example: opinion.gif)":            	$tmp    = "(example: opinion.gif)"; break;
    case "Web Links":        		    	$tmp    = "Web Links"; break;
    case "There are":        	    		$tmp    = "There are"; break;
    case "Links in our Database":    		$tmp    = "Links in our Database"; break;
    case "Add a MAIN Category":	    		$tmp    = "Add a MAIN Category"; break;
    case "Name: ":        		    	$tmp    = "Name: "; break;
    case "Add":        		    		$tmp    = "Add"; break;
    case "Add a SUB-Category":        		$tmp    = "Add a SUB-Category"; break;
    case "in":        		    		$tmp    = "in"; break;
    case "Add a New Link":        		$tmp    = "Add a New Link"; break;
    case "Page Title: ":        		$tmp    = "Page Title: "; break;
    case "Page URL: ":        		    	$tmp    = "Page URL: "; break;
    case "Category: ":        		    	$tmp    = "Category: "; break;
    case "Description: (255 characters max)":   $tmp    = "Description: (255 characters max)"; break;
    case "Add URL":        		    	$tmp    = "Add URL"; break;
    case "Modify Category":        		$tmp    = "Modify Category"; break;
    case "Modify":        		    	$tmp    = "Modify"; break;
    case "Modify Links":        		$tmp    = "Modify Links"; break;
    case "Link ID: ":        		    	$tmp    = "Link ID: "; break;
    case "Description: ":        		$tmp    = "Description: "; break;
    case "Links Waiting for Validation":        $tmp    = "Links Waiting for Validation"; break;
    case "Visit":        		    	$tmp    = "Visit"; break;
    case "Hits: ":        		    	$tmp    = "Hits: "; break;
    case "Email: ":        		    	$tmp    = "Email: "; break;
    case "Category Name: ":        		$tmp    = "Category Name: "; break;
    case "Sub-Category Name: ":        		$tmp    = "Sub-Category Name: "; break;
    case "WARNING: Are you sure you want to delete this Category and ALL its Links?":		$tmp    = "WARNING: Are you sure you want to delete this Category and ALL its Links?"; break;
    case "ERROR: The Category":        		$tmp    = "ERROR: The Category"; break;
    case "already exist!":        		$tmp    = "already exist!"; break;
    case "ERROR: The SubCategory":        	$tmp    = "ERROR: The SubCategory"; break;
    case "ERROR: This URL is already listed in the Database!":			$tmp    = "ERROR: This URL is already listed in the Database!"; break;
    case "ERROR: You need to type a URL for your URL!":				$tmp    = "ERROR: You need to type a URL for your URL!"; break;
    case "ERROR: You need to type a TITLE for your URL!":			$tmp    = "ERROR: You need to type a TITLE for your URL!"; break;
    case "ERROR: You need to type a DESCRIPTION for your URL!":			$tmp    = "ERROR: You need to type a DESCRIPTION for your URL!"; break;
    case "New Link added to the Database":	$tmp    = "New Link added to the Database"; break;
    case "Your Link at": 	    		$tmp    = "Your Link at"; break;
    case "Hello":      		    		$tmp    = "Hello"; break;
    case "We approved your link submission for our search engine.":		$tmp    = "We approved your link submission for our search engine."; break;
    case "You can browse our search engine at:":	$tmp    = "You can browse our search engine at:"; break;
    case "Thanks for your submission!":		$tmp    = "Thanks for you submission!"; break;
    case "team.": 		    		$tmp    = "team."; break;
    case "HOME":        		 	$tmp    = "HOME"; break;
    case "Links Main":        		    	$tmp    = "Links Main"; break;
    case "Add URL":        		    	$tmp    = "Add URL"; break;
    case "New Links":        		    	$tmp    = "New Links"; break;
    case "The Best":        		    	$tmp    = "The Best"; break;
    case "Random Link":        		    	$tmp    = "Random Link"; break;
    case "Your Name: ":        		    	$tmp    = "Your Name: "; break;
    case "Your Email: ":       		    	$tmp    = "Your Email: "; break;
    case "We received your Link submission. Thanks!":	$tmp    = "We received your Link submission. Thanks!"; break;
    case "You'll receive and E-mail when it's approved.":	$tmp    = "You'll receive and E-mail when it's approved."; break;
    case "Links Added to Database":		$tmp    = "Links Added to Database"; break;
    case "Added on: ":        		    	$tmp    = "Added on: "; break;
    case "Edit This Link":        		$tmp    = "Edit This Link"; break;
    case "The":        		    		$tmp    = "The"; break;
    case "Most Visited Links":         		$tmp    = "Most Visited Links"; break;
    case "SubCategories":        		$tmp    = "SubCategories"; break;
    case "Popular Site!":        		$tmp    = "Popular Site!"; break;
    case "Previous Page":        		$tmp    = "Previous Page"; break;
    case "Next Page":           		$tmp    = "Next Page"; break;
    case "Main":      		    		$tmp    = "Main"; break;
    case "Search Results for: ":       		$tmp    = "Search Results for: "; break;
    case "Try to search":  	  		$tmp    = "Try to search"; break;
    case "in others Search Engines":   		$tmp    = "in others Search Engines"; break;
    case "No matches found to your query":	$tmp 	= "No matches found to your query"; break;
    case "Links":				$tmp 	= "Links"; break;
    case "Links in Web Links: ":		$tmp 	= "Links in Web Links: "; break;
    case "Categories in Web Links: ":		$tmp 	= "Categories in Web Links: "; break;
    case "New Submissions: ":			$tmp 	= "New Submissions: "; break;
    case "Configure":				$tmp 	= "Preferences"; break;
    case "Login/Create Account":		$tmp 	= "Login/Create Account"; break;
    case