-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlanguages.php
971 lines (742 loc) · 27.6 KB
/
languages.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
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
<?
if($language == 'fr')
{
$langue = array(
// index.php
'tournament' => 'Tournoi',
'news' => 'News',
'rules' => 'Règlement',
'partenaires' => 'Partenaires',
'version' => 'Version',
'administration' => 'Administration',
'sites' => '<a href="http://www.wiitop.net/tn/creer/" target="_blank">créer son tournoi</a> - ',
'oldtn' => 'Archive',
'date' => 'date',
'winner' => 'winner',
// admin/index.php
'password' => 'Password',
// admin/gauche.php
'enregistrerteam' => 'Enregistrer les teams',
'fairearbre' => 'Faire l\'arbre',
'modifierarbre' => 'Modifier l\'arbre',
'changerslots' => 'Changer les slots',
'logins' => 'Créer des logins',
'configtn' => 'Configurer le tournoi',
'modifcss' => 'Modifier le CSS',
'newser' => 'Poster une news',
'modifrules' => 'Modifier le Règlement',
'modifpart' => 'Modifier les Partenaires',
'modifnews' => 'Modifier les News',
'editprofil' => 'Modifier son profil',
'autre' => 'Autres actions',
'faq' => 'FAQ/shootbox',
'module' => 'Modules',
'generercss' => 'Générer Du CSS',
// admin/droite.php
'administration_of' => 'administration du',
'hello' => 'Bonjour',
'youhavedone' => 'Vous avez lancé',
'tournaments' => 'tournois',
'listof' => 'Liste des administrateurs',
'pseudo' => 'Pseudo',
'tournaments_launched' => 'tournois lancés',
'remark' => 'Pour toutes remarques, suggestions, problêmes',
'disconnect' => 'se déconnecter',
// admin/purge.php
'lancertn' => 'Lancer un tournoi',
'nbslots' => 'nombre de slots',
'admindutn' => 'administrateur du tournoi',
'injustice' => 'Attention<br />L\'ancien tournoi va être placé dans l\'historique (sauf s\'il n\'a pas de vainqueur). Vous ne pourrez alors plus le modifier.<br /> De plus vous vous engagé à organiser un tournoi <strong>dans son intégralité</strong> et sans causer d\'<strong>injustices</strong>.',
'maxscore' => 'MaxScore',
'overtime' => 'overtime',
// admin/teams.php
'register' => 'Enregistrer une team',
'slots' => 'slots',
'flag' => 'liste des différents Flags',
'name' => 'Nom',
'players' => 'Joueurs',
'server' => 'Serveur',
'methode' => 'Ou la méthode',
'warning' => 'Attention, il est conseillé de ne laisser que 4 serveur off maximum ( pour un 16 slots / 2 pour un 8 slots / 8 pour un 32 slots )',
'max' => 'Le nombre de team a atteint son maximum',
'check' => 'Veuillez vérifier !<br />
<font size="2">si la première case est vide l\'arbre ne s\'affichera pas</font>',
'maxteam' => 'Les teams ont atteint leur maximum',
// admin/login.php
'creerlogin' => 'Créer un login',
'warning2' => 'attention : un login <strong>headadmin</strong> ne peut être supprimé. Ne faites pas confiance à n\'importe qui.',
// admin/news.php
'titre' => 'titre',
// admin/config.php
'langue' => 'langue',
'design' => 'design',
'generalite' => 'Généralités',
// admin/login.php
'confirmation' => 'êtes vous sur de vouloir supprimer',
// admin/css.php
'css1' => 'laissez vide pour avoir le',
'css2' => 'style par défaut',
// admin/profil.php
'modifpass' => 'modifiez le si vous voulez changer votre password',
'fini' => 'Changements effectués, veuillez vous reconnecter pour qu\'ils puissent prendre effet'
);
}
elseif($language == 'pt')
{
$langue = array(
// index.php
'tournament' => 'Torneio',
'news' => 'Noticias',
'rules' => 'Regras',
'partenaires' => 'Patrocinadores',
'version' => 'Verséo',
'administration' => 'Administrarao ',
'sites' => '<a href="http://www.wiitop.net/tn/creer/" target="_blank">Arranjar um torneio</a> - ',
'oldtn' => 'Torneio velho',
'date' => 'date',
'winner' => 'winner',
// admin/index.php
'password' => 'Palavra passe',
// admin/gauche.php
'enregistrerteam' => 'Registar as equipas',
'fairearbre' => 'Tornar o suporte',
'modifierarbre' => 'Modificar o suporte',
'changerslots' => 'Alterar as faixas',
'logins' => 'Create logins',
'configtn' => 'Config the tournament',
'modifcss' => 'Modify the CSS',
'newser' => 'Post a news',
'modifrules' => 'Modify the rules',
'modifpart' => 'Modify the sponsors',
'modifnews' => 'Modify the news',
'editprofil' => 'Edit Profil',
'autre' => 'Other actions',
'faq' => 'FAQ/shootbox',
'module' => 'Plugins',
'generercss' => 'Generate CSS',
'module' => 'Gérer les modules',
// admin/droite.php
'administration_of' => 'A administração de',
'hello' => 'Olá',
'youhavedone' => 'Você fez',
'tournaments' => 'torneios',
'listof' => 'Lista dos administradores',
'pseudo' => 'Apelido',
'tournaments_launched' => 'torneios feito',
'remark' => 'Para dúvidas, problemas, comentários e sugestões',
'disconnect' => 'para desligar',
// admin/purge.php
'lancertn' => 'Create a tournament',
'nbslots' => 'number of slots',
'admindutn' => 'administrator of the tournament',
'injustice' => 'Warning<br />The previous tournament is going to be saved in the old tournaments (if it has a winner). You won\'t be able to modify it. Anyway, You commited to organise a tournament entirely without unfair situations.',
'maxscore' => 'MaxScore',
'overtime' => 'overtime',
// admin/teams.php
'register' => 'Register a clan',
'slots' => 'slots',
'flag' => 'list of Flags',
'name' => 'Name',
'players' => 'Players',
'server' => 'Server',
'methode' => 'Or this way',
'warning' => 'Warning, it is advised that you should only allow 4 server off ( for a 16 slots / 2 for a 8 slots / 8 for a 32 slots )',
'max' => 'The number of clans reach the maximum',
'check' => 'Please check !<br />
<font size="2">if the first case is empty the bracket won\'t display</font>',
'maxteam' => 'You have reach the limit of teams',
// admin/login.php
'creerlogin' => 'Create a login',
'warning2' => 'Warning : a login <strong>headadmin</strong> can\'t be deleted. Don\'t trust anybody.',
// admin/news.php
'titre' => 'title',
// admin/config.php
'langue' => 'language',
'design' => 'design',
'generalite' => 'Config',
// admin/login.php
'confirmation' => 'Are you sure you want to delete',
// admin/css.php
'css1' => 'keep clear to have the',
'css2' => 'default design',
// admin/profil.php
'modifpass' => 'modify to change the password',
'fini' => 'Done, please re-conect'
);
}
elseif($language == 'ro')
{
$langue = array(
// index.php
'tournament' => 'Tournament',
'news' => 'Stiri',
'rules' => 'Reguli',
'partenaires' => 'Sponsori',
'version' => 'Version',
'administration' => 'Administratie',
'sites' => '<a href="http://www.wiitop.net/tn/creer/" target="_blank">Obtine tournament script</a> - ',
'oldtn' => 'Ultimele meciuri',
'date' => 'date',
'winner' => 'winner',
// admin/index.php
'password' => 'Password',
// admin/gauche.php
'enregistrerteam' => 'Inregistreaza echipele',
'fairearbre' => 'Triaza echipele',
'modifierarbre' => 'Modifica echipele',
'changerslots' => 'Schimba sloturile',
'logins' => 'Creaţi logins',
'configtn' => 'Config turneului',
'modifcss' => 'Modificaţi CSS',
'newser' => 'Post un ştiri',
'modifrules' => 'Modificaţi reguli',
'modifpart' => 'Modificaţi sponsori',
'modifnews' => 'Modificaţi ştiri',
'editprofil' => 'Editare Profil',
'autre' => 'Alte acţiuni',
'faq' => 'FAQ/shootbox',
'module' => 'Plugins',
'generercss' => 'Generaţi CSS',
// admin/droite.php
'administration_of' => 'Administrarea de',
'hello' => 'Bună ziua',
'youhavedone' => 'Aţi făcut',
'tournaments' => 'turnee',
'listof' => 'Lista de Administratori',
'pseudo' => 'Nickname',
'tournaments_launched' => 'face turnee',
'remark' => 'Pentru întrebări, probleme, observaţii şi sugestii',
'disconnect' => 'pentru a deconecta',
// admin/purge.php
'lancertn' => 'Creaţi un turneu',
'nbslots' => 'numar de sloturi',
'admindutn' => 'administrator al turneului',
'injustice' => 'Atenţie <br /> anterior turneul va fi salvat in turnee vechi (dacă are un câştigător). Nu veţi putea să îl modifice. Oricum, Tu angajamentul de a organiza un turneu în întregime, fără neloiale situaţii.',
'maxscore' => 'MaxScore',
'overtime' => 'overtime',
// admin/teams.php
'register' => 'Înregistraţi un clan',
'slots' => 'sloturi',
'flag' => 'Listă de steaguri',
'name' => 'Nume',
'players' => 'Actori',
'server' => 'Server',
'methode' => 'Sau acest fel',
'warning' => 'Atenţie, este informăm că ar trebui să permită doar 4 server off (pentru un 16 sloturi / 2 sloturi pentru un 8 / 8 pentru un 32 sloturi)',
'max' => 'Numărul de grupuri ajunge la maxim',
'check' => 'Vă rugăm să verificaţi!!<br />
<font size="2">în cazul în care primul caz este gol de zbor nu va fi afişată</font>',
'maxteam' => 'Aţi ajunge la limita de echipe',
// admin/login.php
'creerlogin' => 'Creaţi un login',
'warning2' => 'Atenţie: un login <strong> headadmin </ strong> nu pot fi şterse. Nu încredere în nimeni.',
// admin/news.php
'titre' => 'title',
// admin/config.php
'langue' => 'language',
'design' => 'design',
'generalite' => 'Config',
// admin/login.php
'confirmation' => 'Are you sure you want to delete',
// admin/css.php
'css1' => 'keep clear to have the',
'css2' => 'default design',
// admin/profil.php
'modifpass' => 'modify to change the password',
'fini' => 'Done, please re-conect'
);
}
elseif($language == 'swe')
{
$langue = array(
// index.php
'tournament' => 'Tunering',
'news' => 'Nyheter',
'rules' => 'Regler',
'partenaires' => 'Sponsorer',
'version' => 'Version',
'administration' => 'Administration',
'sites' => '<a href="http://www.wiitop.net/tn/creer/create" target="_blank">Get a tournament</a> - ',
'oldtn' => 'Old Tournaments',
'date' => 'date',
'winner' => 'winner',
// admin/index.php
'password' => 'Lösenord',
// admin/gauche.php
'enregistrerteam' => 'Redigera lag',
'fairearbre' => 'Skapa slutspel',
'modifierarbre' => 'Redigera slutspel',
'changerslots' => 'Redigera lagplatser',
'logins' => 'Skapa adminlogins',
'configtn' => 'Konfiguera tunering',
'modifcss' => 'Redigera CSS',
'newser' => 'Skapa Nyheter',
'modifrules' => 'Redigera Regler',
'modifpart' => 'Redigera Sponsorer',
'modifnews' => 'Redigera Nyheter',
'editprofil' => 'Edit Profil',
'autre' => 'Other actions',
'faq' => 'FAQ/shootbox',
'module' => 'Plugins',
'generercss' => 'Generate CSS',
// admin/droite.php
'administration_of' => 'Administration av',
'hello' => 'Hej',
'youhavedone' => 'Du har totalt skapat',
'tournaments' => 'tuneringar',
'listof' => 'Lista på admins',
'pseudo' => 'Namn',
'tournaments_launched' => 'Tunering gjord',
'remark' => 'Om du har négra frégor sé hénvisas du att skicka ett mail till:',
'disconnect' => 'Logga ut',
// admin/purge.php
'lancertn' => 'Skapa tunering',
'nbslots' => 'Hur ménga lagplatser',
'admindutn' => 'Admin fér tunering',
'injustice' => 'Warning<br />The previous tournament is going to be saved in the old tournaments (if it has a winner). You won\'t be able to modify it.<br />Alla som har behörighet av admin måste följa regelverken. Ni måste även ta korrekta beslut.',
'maxscore' => 'MaxScore',
'overtime' => 'overtime',
// admin/teams.php
'register' => 'Registrera Lag',
'slots' => 'slots',
'flag' => 'Lista éver olika flaggor',
'name' => 'Namn',
'players' => 'Spelare',
'server' => 'Server',
'methode' => 'Or this way',
'warning' => 'Warning, it is advised that you should only allow 4 server off ( for a 16 slots / 2 for a 8 slots / 8 for a 32 slots )',
'max' => 'The number of clans reach the maximum',
'check' => 'Please check !<br />
<font size="2">if the first case is empty the bracket won\'t display</font>',
'maxteam' => 'You have reach the limit of teams',
// admin/login.php
'creerlogin' => 'Skapa en inloggning',
'warning2' => 'Varning: inloggning <strong>headadmin</strong> kan inte raderas. Lita inte på någon.',
// admin/news.php
'titre' => 'Titer',
// admin/config.php
'langue' => 'språk',
'design' => 'design',
'generalite' => 'Config',
// admin/login.php
'confirmation' => 'Är du säker på att du vill ta bort',
// admin/css.php
'css1' => 'hålla klara att ha',
'css2' => 'standard design',
// admin/profil.php
'modifpass' => 'modifiera för att ändra lösenord',
'fini' => 'Done, please re-conect'
);
}
elseif($language == 'es')
{
$langue = array(
// index.php
'tournament' => 'Torneo',
'news' => 'Noticias',
'rules' => 'Reglamento',
'partenaires' => 'Patrocinadores',
'version' => 'Versión',
'administration' => 'Administración',
'sites' => '<a href="http://www.wiitop.net/tn/creer/" target="_blank">Obtener un torneo</a> - ',
'oldtn' => 'Old Torneos',
'date' => 'date',
'winner' => 'ganador',
// admin/index.php
'password' => 'Password',
// admin/gauche.php
'enregistrerteam' => 'Register teams',
'fairearbre' => 'Make the bracket',
'modifierarbre' => 'Modify the bracket',
'changerslots' => 'Change the slots',
'logins' => 'Create logins',
'configtn' => 'Config the tournament',
'modifcss' => 'Modify the CSS',
'newser' => 'Post a news',
'modifrules' => 'Modify the rules',
'modifpart' => 'Modify the sponsors',
'modifnews' => 'Modify the news',
'editprofil' => 'Edit Profil',
'autre' => 'Other actions',
'faq' => 'FAQ/shootbox',
'module' => 'Plugins',
'generercss' => 'Generate CSS',
// admin/droite.php
'administration_of' => 'Administration of',
'hello' => 'Hello',
'youhavedone' => 'You did',
'tournaments' => 'tournaments',
'listof' => 'List of Administrators',
'pseudo' => 'Nickname',
'tournaments_launched' => 'tournaments done',
'remark' => 'For questions, problems, remarks and suggestions',
'disconnect' => 'to disconnect',
// admin/purge.php
'lancertn' => 'Create a tournament',
'nbslots' => 'number of slots',
'admindutn' => 'administrator of the tournament',
'injustice' => 'Warning<br />The previous tournament is going to be saved in the old tournaments (if it has a winner). You won\'t be able to modify it. Anyway, You commited to organise a tournament entirely without unfair situations.',
'maxscore' => 'MaxScore',
'overtime' => 'overtime',
// admin/teams.php
'register' => 'Register a clan',
'slots' => 'slots',
'flag' => 'list of Flags',
'name' => 'Name',
'players' => 'Players',
'server' => 'Server',
'methode' => 'Or this way',
'warning' => 'Warning, it is advised that you should only allow 4 server off ( for a 16 slots / 2 for a 8 slots / 8 for a 32 slots )',
'max' => 'The number of clans reach the maximum',
'check' => 'Please check !<br />
<font size="2">if the first case is empty the bracket won\'t display</font>',
'maxteam' => 'You have reach the limit of teams',
// admin/login.php
'creerlogin' => 'Create a login',
'warning2' => 'Warning : a login <strong>headadmin</strong> can\'t be deleted. Don\'t trust anybody.',
// admin/news.php
'titre' => 'title',
// admin/config.php
'langue' => 'language',
'design' => 'design',
'generalite' => 'Config',
// admin/login.php
'confirmation' => 'Are you sure you want to delete',
// admin/css.php
'css1' => 'keep clear to have the',
'css2' => 'default design',
// admin/profil.php
'modifpass' => 'modify to change the password',
'fini' => 'Done, please re-conect'
);
}
elseif($language == 'it')
{
$langue = array(
// index.php
'tournament' => 'Torneo',
'news' => 'Novità',
'rules' => 'Regole',
'partenaires' => 'Sponsor',
'version' => 'Versione',
'administration' => 'Amministrazione',
'sites' => '<a href="http://www.wiitop.net/tn/creer/" target="_blank">Prendi un torneo</a> - ',
'oldtn' => 'Vecchia Tornei',
'date' => 'data',
'winner' => 'vincitore',
// admin/index.php
'password' => 'Password',
// admin/gauche.php
'enregistrerteam' => 'Register teams',
'fairearbre' => 'Make the bracket',
'modifierarbre' => 'Modify the bracket',
'changerslots' => 'Change the slots',
'logins' => 'Create logins',
'configtn' => 'Config the tournament',
'modifcss' => 'Modify the CSS',
'newser' => 'Post a news',
'modifrules' => 'Modify the rules',
'modifpart' => 'Modify the sponsors',
'modifnews' => 'Modify the news',
'editprofil' => 'Edit Profil',
'autre' => 'Other actions',
'faq' => 'FAQ/shootbox',
'module' => 'Plugins',
'generercss' => 'Generate CSS',
// admin/droite.php
'administration_of' => 'Administration of',
'hello' => 'Hello',
'youhavedone' => 'You did',
'tournaments' => 'tournaments',
'listof' => 'List of Administrators',
'pseudo' => 'Nickname',
'tournaments_launched' => 'tournaments done',
'remark' => 'For questions, problems, remarks and suggestions',
'disconnect' => 'to disconnect',
// admin/purge.php
'lancertn' => 'Create a tournament',
'nbslots' => 'number of slots',
'admindutn' => 'administrator of the tournament',
'injustice' => 'Warning<br />The previous tournament is going to be saved in the old tournaments (if it has a winner). You won\'t be able to modify it. Anyway, You commited to organise a tournament entirely without unfair situations.',
'maxscore' => 'MaxScore',
'overtime' => 'overtime',
// admin/teams.php
'register' => 'Register a clan',
'slots' => 'slots',
'flag' => 'list of Flags',
'name' => 'Name',
'players' => 'Players',
'server' => 'Server',
'methode' => 'Or this way',
'warning' => 'Warning, it is advised that you should only allow 4 server off ( for a 16 slots / 2 for a 8 slots / 8 for a 32 slots )',
'max' => 'The number of clans reach the maximum',
'check' => 'Please check !<br />
<font size="2">if the first case is empty the bracket won\'t display</font>',
'maxteam' => 'You have reach the limit of teams',
// admin/login.php
'creerlogin' => 'Create a login',
'warning2' => 'Warning : a login <strong>headadmin</strong> can\'t be deleted. Don\'t trust anybody.',
// admin/news.php
'titre' => 'title',
// admin/config.php
'langue' => 'language',
'design' => 'design',
'generalite' => 'Config',
// admin/login.php
'confirmation' => 'Are you sure you want to delete',
// admin/css.php
'css1' => 'keep clear to have the',
'css2' => 'default design',
// admin/profil.php
'modifpass' => 'modify to change the password',
'fini' => 'Done, please re-conect'
);
}
elseif($language == 'fi')
{
$langue = array(
// index.php
'tournament' => 'Turnaus',
'news' => 'Uutiset',
'rules' => 'säännöt',
'partenaires' => 'Sponsorointi',
'version' => 'Versio',
'administration' => 'Hallinto',
'sites' => '<a href="http://www.wiitop.net/tn/creer/" target="_blank">get turnaus</a> - ',
'oldtn' => 'Vanha Turnaukset',
'date' => 'päivämäärä',
'winner' => 'voittaja',
// admin/index.php
'password' => 'Password',
// admin/gauche.php
'enregistrerteam' => 'Register teams',
'fairearbre' => 'Make the bracket',
'modifierarbre' => 'Modify the bracket',
'changerslots' => 'Change the slots',
'logins' => 'Create logins',
'configtn' => 'Config the tournament',
'modifcss' => 'Modify the CSS',
'newser' => 'Post a news',
'modifrules' => 'Modify the rules',
'modifpart' => 'Modify the sponsors',
'modifnews' => 'Modify the news',
'editprofil' => 'Edit Profil',
'autre' => 'Other actions',
'faq' => 'FAQ/shootbox',
'module' => 'Plugins',
'generercss' => 'Generate CSS',
// admin/droite.php
'administration_of' => 'Administration of',
'hello' => 'Hello',
'youhavedone' => 'You did',
'tournaments' => 'tournaments',
'listof' => 'List of Administrators',
'pseudo' => 'Nickname',
'tournaments_launched' => 'tournaments done',
'remark' => 'For questions, problems, remarks and suggestions',
'disconnect' => 'to disconnect',
// admin/purge.php
'lancertn' => 'Create a tournament',
'nbslots' => 'number of slots',
'admindutn' => 'administrator of the tournament',
'injustice' => 'Warning<br />The previous tournament is going to be saved in the old tournaments (if it has a winner). You won\'t be able to modify it. Anyway, You commited to organise a tournament entirely without unfair situations.',
'maxscore' => 'MaxScore',
'overtime' => 'overtime',
// admin/teams.php
'register' => 'Register a clan',
'slots' => 'slots',
'flag' => 'list of Flags',
'name' => 'Name',
'players' => 'Players',
'server' => 'Server',
'methode' => 'Or this way',
'warning' => 'Warning, it is advised that you should only allow 4 server off ( for a 16 slots / 2 for a 8 slots / 8 for a 32 slots )',
'max' => 'The number of clans reach the maximum',
'check' => 'Please check !<br />
<font size="2">if the first case is empty the bracket won\'t display</font>',
'maxteam' => 'You have reach the limit of teams',
// admin/login.php
'creerlogin' => 'Create a login',
'warning2' => 'Warning : a login <strong>headadmin</strong> can\'t be deleted. Don\'t trust anybody.',
// admin/news.php
'titre' => 'title',
// admin/config.php
'langue' => 'language',
'design' => 'design',
'generalite' => 'Config',
// admin/login.php
'confirmation' => 'Are you sure you want to delete',
// admin/css.php
'css1' => 'keep clear to have the',
'css2' => 'default design',
// admin/profil.php
'modifpass' => 'modify to change the password',
'fini' => 'Done, please re-conect'
);
}
elseif($language == 'de')
{
$langue = array(
// index.php
'tournament' => 'Turnier',
'news' => 'News',
'rules' => 'Regeln',
'partenaires' => 'Sponsoren',
'version' => 'Version',
'administration' => 'Administration',
'sites' => '<a href="http://www.wiitop.net/tn/creer/" target="_blank">Holen Sie sich ein Turnier</a> - ',
'oldtn' => 'Alte Turniere',
'date' => 'date',
'winner' => 'Gewinner',
// admin/index.php
'password' => 'Password',
// admin/gauche.php
'enregistrerteam' => 'Register teams',
'fairearbre' => 'Make the bracket',
'modifierarbre' => 'Modify the bracket',
'changerslots' => 'Change the slots',
'logins' => 'Create logins',
'configtn' => 'Config the tournament',
'modifcss' => 'Modify the CSS',
'newser' => 'Post a news',
'modifrules' => 'Modify the rules',
'modifpart' => 'Modify the sponsors',
'modifnews' => 'Modify the news',
'editprofil' => 'Edit Profil',
'autre' => 'Other actions',
'faq' => 'FAQ/shootbox',
'module' => 'Plugins',
'generercss' => 'Generate CSS',
// admin/droite.php
'administration_of' => 'Administration of',
'hello' => 'Hello',
'youhavedone' => 'You did',
'tournaments' => 'tournaments',
'listof' => 'List of Administrators',
'pseudo' => 'Nickname',
'tournaments_launched' => 'tournaments done',
'remark' => 'For questions, problems, remarks and suggestions',
'disconnect' => 'to disconnect',
// admin/purge.php
'lancertn' => 'Create a tournament',
'nbslots' => 'number of slots',
'admindutn' => 'administrator of the tournament',
'injustice' => 'Warning<br />The previous tournament is going to be saved in the old tournaments (if it has a winner). You won\'t be able to modify it. Anyway, You commited to organise a tournament entirely without unfair situations.',
'maxscore' => 'MaxScore',
'overtime' => 'overtime',
// admin/teams.php
'register' => 'Register a clan',
'slots' => 'slots',
'flag' => 'list of Flags',
'name' => 'Name',
'players' => 'Players',
'server' => 'Server',
'methode' => 'Or this way',
'warning' => 'Warning, it is advised that you should only allow 4 server off ( for a 16 slots / 2 for a 8 slots / 8 for a 32 slots )',
'max' => 'The number of clans reach the maximum',
'check' => 'Please check !<br />
<font size="2">if the first case is empty the bracket won\'t display</font>',
'maxteam' => 'You have reach the limit of teams',
// admin/login.php
'creerlogin' => 'Create a login',
'warning2' => 'Warning : a login <strong>headadmin</strong> can\'t be deleted. Don\'t trust anybody.',
// admin/news.php
'titre' => 'title',
// admin/config.php
'langue' => 'language',
'design' => 'design',
'generalite' => 'Config',
// admin/login.php
'confirmation' => 'Are you sure you want to delete',
// admin/css.php
'css1' => 'keep clear to have the',
'css2' => 'default design',
// admin/profil.php
'modifpass' => 'modify to change the password',
'fini' => 'Done, please re-conect'
);
}
else
{
$language = 'en';
$langue = array(
// index.php
'tournament' => 'Tournament',
'news' => 'News',
'rules' => 'Rules',
'partenaires' => 'Sponsors',
'version' => 'Version',
'administration' => 'Administration',
'sites' => '<a href="http://www.wiitop.net/tn/creer/" target="_blank">Get a tournament</a> - ',
'oldtn' => 'Old Tournaments',
'date' => 'date',
'winner' => 'winner',
// admin/index.php
'password' => 'Password',
// admin/gauche.php
'enregistrerteam' => 'Register teams',
'fairearbre' => 'Make the bracket',
'modifierarbre' => 'Modify the bracket',
'changerslots' => 'Change the slots',
'logins' => 'Create logins',
'configtn' => 'Config the tournament',
'modifcss' => 'Modify the CSS',
'newser' => 'Post a news',
'modifrules' => 'Modify the rules',
'modifpart' => 'Modify the sponsors',
'modifnews' => 'Modify the news',
'editprofil' => 'Edit Profil',
'autre' => 'Other actions',
'faq' => 'FAQ/shootbox',
'module' => 'Plugins',
'generercss' => 'Generate CSS',
// admin/droite.php
'administration_of' => 'Administration of',
'hello' => 'Hello',
'youhavedone' => 'You did',
'tournaments' => 'tournaments',
'listof' => 'List of Administrators',
'pseudo' => 'Nickname',
'tournaments_launched' => 'tournaments done',
'remark' => 'For questions, problems, remarks and suggestions',
'disconnect' => 'to disconnect',
// admin/purge.php
'lancertn' => 'Create a tournament',
'nbslots' => 'number of slots',
'admindutn' => 'administrator of the tournament',
'injustice' => 'Warning<br />The previous tournament is going to be saved in the old tournaments (if it has a winner). You won\'t be able to modify it. Anyway, You commited to organise a tournament entirely without unfair situations.',
'maxscore' => 'MaxScore',
'overtime' => 'overtime',
// admin/teams.php
'register' => 'Register a clan',
'slots' => 'slots',
'flag' => 'list of Flags',
'name' => 'Name',
'players' => 'Players',
'server' => 'Server',
'methode' => 'Or this way',
'warning' => 'Warning, it is advised that you should only allow 4 server off ( for a 16 slots / 2 for a 8 slots / 8 for a 32 slots )',
'max' => 'The number of clans reach the maximum',
'check' => 'Please check !<br />
<font size="2">if the first case is empty the bracket won\'t display</font>',
'maxteam' => 'You have reach the limit of teams',
// admin/login.php
'creerlogin' => 'Create a login',
'warning2' => 'Warning : a login <strong>headadmin</strong> can\'t be deleted. Don\'t trust anybody.',
// admin/news.php
'titre' => 'title',
// admin/config.php
'langue' => 'language',
'design' => 'design',
'generalite' => 'Config',
// admin/login.php
'confirmation' => 'Are you sure you want to delete',
// admin/css.php
'css1' => 'keep clear to have the',
'css2' => 'default design',
// admin/profil.php
'modifpass' => 'modify to change the password',
'fini' => 'Done, please re-conect'
);
}
?>