-
Notifications
You must be signed in to change notification settings - Fork 1
/
translation.php
5638 lines (4419 loc) · 480 KB
/
translation.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
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
$translation=array();
global $translation;
function getTranslation($key,$lang)
{
global $translation;
global $u;
$default_language="english";
if ( is_array($lang) )
{
if ( isset($lang['language']['@attributes']['value']) )
{
$lang=$lang['language']['@attributes']['value'];
}
else
{
if ( isset($lang['language']) )
{
$lang=$lang['language'];
if ( is_array($lang) )
{
$lang=$lang['@attributes']['value'];
}
}
else
{
$lang=$default_language;
}
}
}
if ( isset($u) )
{
if ( isset($u->lang) )
{
if ($u->lang!="undefined")
{
$lang=$u->lang;
}
}
}
if ( isset($translation[$key]) )
{
if ( isset($translation[$key][$lang.""]) )
{
return $translation[$key][$lang];
}
else
{
if ( isset($translation[$key][$default_language]) )
{
return $translation[$key][$default_language];
}
else
{
return "$key **";
}
}
}
else
{
return "$key **";
}
}
$STATIC['languages']=array(
'english'=>'English',
'german'=>'Deutsch (German)',
'afrikaans'=>'Afrikaans',
'albanian'=>'Shqiptar (Albanian)',
'arabic'=>'العربية (Arabic)',
'armenian'=>'հայերեն (Armenian)',
'azerbaijani'=>'Azərbaycan (Azerbaijani)',
'basque'=>'Euskal (Basque)',
'belarusian'=>'Беларускія (Belarusian)',
'bengali'=>'বাঙ্গালী (Bengali)',
'bulgarian'=>'Български (Bulgarian)',
'catalan'=>'Català (Catalan)',
'chinesesimplified'=>'中国简体中文 (Chinese Simplified)',
'chinesetraditional'=>'中国传统文化 (Chinese Traditional)',
'croatian'=>'Hrvatski (Croatian)',
'czech'=>'Český (Czech)',
'danish'=>'Dansk (Danish)',
'dutch'=>'Nederlands (Dutch)',
'esperanto'=>'Esperanto',
'estonian'=>'Eesti (Estonian)',
'filipino'=>'Pilipino (Filipino)',
'finnish'=>'Suomi (Finnish)',
'french'=>'Français (French)',
'galician'=>'Galicia (Galician)',
'georgian'=>'საქართველოს (Georgian)',
'greek'=>'ελληνικά (Greek)',
'gujarati'=>'ગુજરાતી (Gujarati)',
'hatiancreole'=>'Kreyòl Ayisyen (Haitian Creole)',
'hebrew'=>'עברית (Hebrew)',
'hindi'=>'हिंदी (Hindi)',
'hungarian'=>'Magyar (Hungarian)',
'icelandic'=>'Icelandic',
'indonesian'=>'Indonesian',
'irish'=>'Gaeilge (Irish)',
'italian'=>'Italiano (Italian)',
'japanese'=>'日本人 (Japanese)',
'kannada'=>'ಕನ್ನಡ (Kannada)',
'korean'=>'한국의 (Korean)',
'lao'=>'ລາວ (Lao)',
'latin'=>'Latine (Latin)',
'latvian'=>'Latvijas (Latvian)',
'lithuanian'=>'Lietuvos (Lithuanian)',
'macedonian'=>'македонски (Macedonian)',
'malay'=>'Melayu (Malay)',
'maltese'=>'Malti (Maltese)',
'norwegian'=>'Norsk (Norwegian)',
'persian'=>'فارسی (Persian)',
'polish'=>'Polski (Polish)',
'portuguese'=>'Português (Portuguese)',
'romanian'=>'Român (Romanian)',
'russian'=>'Pусский (Russian)',
'serbian'=>'српски (Serbian)',
'slovak'=>'Slovenčina (Slovak)',
'slovenian'=>'Slovenski Jezik (Slovenian)',
'spanish'=>'Español (Spanish)',
'swahili'=>'Kiswahili (Swahili)',
'swedish'=>'Svenska (Swedish)',
'tamil'=>'தமிழ் (Tamil)',
'telugu'=>'తెలుగు (Telugu)',
'thai'=>'ภาษาไทย (Thai)',
'turkish'=>'Türk (Turkish)',
'ukrainian'=>'Український (Ukrainian)',
'urdu'=>'اردو (Urdu)',
'vietnamese'=>'Việt (Vietnamese)',
'welsh'=>'Cymraeg (Welsh)',
'yiddish'=>'ייִדיש (Yiddish)'
);
$translation['installpage2']['english']="HIS supports several types of database technologies.<br/><br/>
Any grayed-out entries below are not compatible with your current system configuration.";
$translation['installpage2']['german']="HIS unterstützt verschiedene Arten von Datenbank-Technologien.<br/><br/>
Jede graue Einträge beliw sind nicht kompatibel mit der aktuellen systemkonfiguration.";
$translation['installpage2']['bulgarian']="HIS поддържа няколко вида технологии за бази данни.<br/><br/>
Всички сиво Записите по-долу не са съвместими със сегашната си конфигурация на системата.";
$translation['installpage2']['chinesesimplified']="其支持多种类型的数据库技术。时<br/><br/>
任何灰色的条目下面是与你当前的系统配置不兼容。";
$translation['installpage2']['chinesetraditional']="其支持多種類型的數據庫技術。時<br/><br/>
任何灰色的條目下面是與你當前的系統配置不兼容。";
$translation['Human Intelligence System']['english']="Human Intelligence System";
$translation['Human Intelligence System']['german']="Human Intelligence System";
$translation['Human Intelligence System']['bulgarian']="Система за човешкия интелект";
$translation['Human Intelligence System']['chinesesimplified']="人类智能系统";
$translation['Human Intelligence System']['chinesetraditional']="人類智能系統";
$translation['Human Intelligence System']['afrikaans']="Menslike Intelligensie System";
$translation['Human Intelligence System']['albanian']="Sistemi Njerëzore Inteligjencës";
$translation['Human Intelligence System']['arabic']="الإنسان الاستخبارات نظام";
$translation['Human Intelligence System']['armenian']="Human Intelligence System";
$translation['Human Intelligence System']['azerbaijani']="İnsan Intelligence sistemi";
$translation['Human Intelligence System']['basque']="Giza Adimen Sistema";
$translation['Human Intelligence System']['belarusian']="Сістэмы чалавека Intelligence";
$translation['Human Intelligence System']['bengali']="হিউম্যান ইন্টেলিজেন্স সিস্টেম";
$translation['Human Intelligence System']['catalan']="Sistema d'Intel · ligència Humana";
$translation['Human Intelligence System']['croatian']="Ljudski Obavještajni Sustav";
$translation['Human Intelligence System']['czech']="Human Intelligence System";
$translation['Human Intelligence System']['danish']="Human Intelligence System";
$translation['Human Intelligence System']['dutch']="Human Intelligence System";
$translation['Human Intelligence System']['esperanto']="Homaj Inteligenteco Sistemo";
$translation['Human Intelligence System']['estonian']="Human Intelligence System";
$translation['Human Intelligence System']['filipino']="Human Intelligence System";
$translation['Human Intelligence System']['finnish']="Human Intelligence System";
$translation['Human Intelligence System']['french']="Système de Renseignement Humain";
$translation['Human Intelligence System']['galician']="Sistema de Intelixencia Humana";
$translation['Human Intelligence System']['georgian']="ადამიანის დაზვერვის სისტემის";
$translation['Human Intelligence System']['greek']="Ανθρώπινο Σύστημα Πληροφοριών";
$translation['Human Intelligence System']['gujarati']="હ્યુમન ઇન્ટેલીજન્સ સિસ્ટમ";
$translation['Human Intelligence System']['hatiancreole']="Imèn Entèlijans Sistèm";
$translation['Human Intelligence System']['hebrew']="מערכת אינטליגנציה אנושית";
$translation['Human Intelligence System']['hindi']="मानव खुफिया प्रणाली";
$translation['Human Intelligence System']['hungarian']="Az Emberi Intelligencia Rendszer";
$translation['Human Intelligence System']['icelandic']="Human Intelligence System";
$translation['Human Intelligence System']['indonesian']="Manusia Sistem Intelijen";
$translation['Human Intelligence System']['irish']="Córas Faisnéise Daonna";
$translation['Human Intelligence System']['italian']="L'intelligenza del sistema umano";
$translation['Human Intelligence System']['japanese']="人間の知能システム";
$translation['Human Intelligence System']['kannada']="ಹ್ಯೂಮನ್ ಇಂಟೆಲಿಜೆನ್ಸ್ ವ್ಯವಸ್ಥೆ";
$translation['Human Intelligence System']['korean']="인간 지능 시스템";
$translation['Human Intelligence System']['lao']="ລະບົບທາງຂອງມະນຸດ";
$translation['Human Intelligence System']['latin']="Humanum Intelligentia System";
$translation['Human Intelligence System']['latvian']="Cilvēka Intelligence System";
$translation['Human Intelligence System']['lithuanian']="Žmogaus Intelektas Sistema";
$translation['Human Intelligence System']['macedonian']="Човечки разузнавачки систем";
$translation['Human Intelligence System']['malay']="Sistem Risikan Manusia";
$translation['Human Intelligence System']['maltese']="Sistema tal-Bniedem Intelligence";
$translation['Human Intelligence System']['norwegian']="Menneskelig Intelligence System";
$translation['Human Intelligence System']['persian']="سیستم هوش انسانی";
$translation['Human Intelligence System']['polish']="Human Intelligence Systemu";
$translation['Human Intelligence System']['portuguese']="Sistema de Inteligência Humana";
$translation['Human Intelligence System']['romanian']="Human Intelligence System";
$translation['Human Intelligence System']['russian']="Системы человека Intelligence";
$translation['Human Intelligence System']['serbian']="Људска интелигенција система";
$translation['Human Intelligence System']['slovak']="Human Intelligence System";
$translation['Human Intelligence System']['slovenian']="Human Intelligence System";
$translation['Human Intelligence System']['spanish']="Sistema de Inteligencia Humana";
$translation['Human Intelligence System']['swahili']="Binadamu Intelligence System";
$translation['Human Intelligence System']['swedish']="Mänsklig intelligens System";
$translation['Human Intelligence System']['tamil']="மனித புலனாய்வு அமைப்பு";
$translation['Human Intelligence System']['telugu']="మానవ మేధస్సు వ్యవస్థ";
$translation['Human Intelligence System']['thai']="ระบบความฉลาดของมนุษย์";
$translation['Human Intelligence System']['turkish']="İnsan İstihbarat Sistemi";
$translation['Human Intelligence System']['ukrainian']="Системи людини Intelligence";
$translation['Human Intelligence System']['urdu']="انسانی انٹیلی جنس کے نظام";
$translation['Human Intelligence System']['vietnamese']="Hệ thống Human Intelligence";
$translation['Human Intelligence System']['welsh']="System Cudd-wybodaeth Ddynol";
$translation['Human Intelligence System']['yiddish']="מענטש ינטעלליגענסע סיסטעם";
$translation['HIS']['english']="HIS";
$translation['HIS']['german']="HIS";
$translation['HIS']['bulgarian']="СЧИ";
$translation['HIS']['chinesesimplified']="HIS";
$translation['HIS']['chinesetraditional']="HIS";
$translation['HIS']['afrikaans']="MISystem";
$translation['HIS']['albanian']="SNI";
$translation['HIS']['arabic']="HIS";
$translation['HIS']['armenian']="HIS";
$translation['HIS']['azerbaijani']="İIS";
$translation['HIS']['basque']="GAS";
$translation['HIS']['belarusian']="СЧI";
$translation['HIS']['bengali']="HIS";
$translation['HIS']['catalan']="SIH";
$translation['HIS']['croatian']="LOS";
$translation['HIS']['czech']="HIS";
$translation['HIS']['danish']="HIS";
$translation['HIS']['dutch']="HIS";
$translation['HIS']['esperanto']="HIS";
$translation['HIS']['estonian']="HIS";
$translation['HIS']['filipino']="HIS";
$translation['HIS']['finnish']="HIS";
$translation['HIS']['french']="SRH";
$translation['HIS']['galician']="SIH";
$translation['HIS']['georgian']="HIS";
$translation['HIS']['greek']="ΑΣΠ";
$translation['HIS']['gujarati']="HIS";
$translation['HIS']['hatiancreole']="IES";
$translation['HIS']['hebrew']="HIS";
$translation['HIS']['hindi']="मखप";
$translation['HIS']['hungarian']="EIR";
$translation['HIS']['icelandic']="HIS";
$translation['HIS']['indonesian']="MSI";
$translation['HIS']['irish']="CFD";
$translation['HIS']['italian']="ISU";
$translation['HIS']['japanese']="HIS";
$translation['HIS']['kannada']="HIS";
$translation['HIS']['korean']="HIS";
$translation['HIS']['lao']="HIS";
$translation['HIS']['latin']="HIS";
$translation['HIS']['latvian']="CIS";
$translation['HIS']['lithuanian']="ŽIS";
$translation['HIS']['macedonian']="ЧРС";
$translation['HIS']['malay']="SRM";
$translation['HIS']['maltese']="SBI";
$translation['HIS']['norwegian']="MIS";
$translation['HIS']['persian']="HIS";
$translation['HIS']['polish']="HIS";
$translation['HIS']['portuguese']="SIH";
$translation['HIS']['romanian']="HIS";
$translation['HIS']['russian']="СЧI";
$translation['HIS']['serbian']="ЉИС";
$translation['HIS']['slovak']="HIS";
$translation['HIS']['slovenian']="HIS";
$translation['HIS']['spanish']="SIH";
$translation['HIS']['swahili']="BIS";
$translation['HIS']['swedish']="MIS";
$translation['HIS']['tamil']="மபஅ";
$translation['HIS']['telugu']="HIS";
$translation['HIS']['thai']="HIS";
$translation['HIS']['turkish']="İİS";
$translation['HIS']['ukrainian']="СЛI";
$translation['HIS']['urdu']="HIS";
$translation['HIS']['vietnamese']="THI";
$translation['HIS']['welsh']="SWD";
$translation['HIS']['yiddish']="HIS";
$translation['iso639']['english']="en";
$translation['iso639']['german']="de";
$translation['iso639']['bulgarian']="bg";
$translation['iso639']['chinesesimplified']="zh";
$translation['iso639']['chinesetraditional']="zh";
$translation['iso639']['afrikaans']="af";
$translation['iso639']['albanian']="sq";
$translation['iso639']['arabic']="ar";
$translation['iso639']['armenian']="hy";
$translation['iso639']['azerbaijani']="az";
$translation['iso639']['basque']="eu";
$translation['iso639']['belarusian']="bl";
$translation['iso639']['bengali']="bn";
$translation['iso639']['catalan']="ca";
$translation['iso639']['croatian']="hr";
$translation['iso639']['czech']="cs";
$translation['iso639']['danish']="da";
$translation['iso639']['dutch']="nl";
$translation['iso639']['esperanto']="eo";
$translation['iso639']['estonian']="et";
$translation['iso639']['filipino']="fp";
$translation['iso639']['finnish']="fi";
$translation['iso639']['french']="fr";
$translation['iso639']['galician']="gl";
$translation['iso639']['georgian']="ka";
$translation['iso639']['greek']="el";
$translation['iso639']['gujarati']="gu";
$translation['iso639']['hatiancreole']="ht";
$translation['iso639']['hebrew']="he";
$translation['iso639']['hindi']="hi";
$translation['iso639']['hungarian']="hu";
$translation['iso639']['icelandic']="is";
$translation['iso639']['indonesian']="id";
$translation['iso639']['irish']="ga";
$translation['iso639']['italian']="it";
$translation['iso639']['japanese']="ja";
$translation['iso639']['kannada']="kn";
$translation['iso639']['korean']="ko";
$translation['iso639']['lao']="";
$translation['iso639']['latin']="la";
$translation['iso639']['latvian']="lv";
$translation['iso639']['lithuanian']="lt";
$translation['iso639']['macedonian']="mk";
$translation['iso639']['malay']="ms";
$translation['iso639']['maltese']="mt";
$translation['iso639']['norwegian']="no";
$translation['iso639']['persian']="";
$translation['iso639']['polish']="pl";
$translation['iso639']['portuguese']="pt";
$translation['iso639']['romanian']="ro";
$translation['iso639']['russian']="ru";
$translation['iso639']['serbian']="sr";
$translation['iso639']['slovak']="sk";
$translation['iso639']['slovenian']="sl";
$translation['iso639']['spanish']="es";
$translation['iso639']['swahili']="sw";
$translation['iso639']['swedish']="sv";
$translation['iso639']['tamil']="ta";
$translation['iso639']['telugu']="te";
$translation['iso639']['thai']="th";
$translation['iso639']['turkish']="tr";
$translation['iso639']['ukrainian']="uk";
$translation['iso639']['urdu']="ur";
$translation['iso639']['vietnamese']="vi";
$translation['iso639']['welsh']="cy";
$translation['iso639']['yiddish']="yi";
$translation['view problems']['english']="view problems";
$translation['view problems']['german']="sehen probleme";
$translation['view problems']['bulgarian']="видите проблеми";
$translation['view problems']['chinesesimplified']="查看问题";
$translation['view problems']['chinesetraditional']="查看問題";
$translation['go back']['english']="Go Back";
$translation['go back']['german']="Zuruckgehen";
$translation['go back']['bulgarian']="Върни се назад";
$translation['go back']['chinesesimplified']="返回";
$translation['go back']['chinesetraditional']="返回";
$translation['go back']['telugu']="తిరిగి వెళ్ళు";
$translation['submit']['english']="Submit";
$translation['submit']['german']="Einreichen";
$translation['submit']['bulgarian']="Подаване";
$translation['submit']['chinesesimplified']="提交";
$translation['submit']['chinesetraditional']="提交";
$translation['submit']['telugu']="Submit";
$translation['Submit']['english']="Submit";
$translation['Submit']['german']="Einreichen";
$translation['Submit']['bulgarian']="Подаване";
$translation['Submit']['chinesesimplified']="提交";
$translation['Submit']['chinesetraditional']="提交";
$translation['Submit']['telugu']="Submit";
$translation['installpage3']['english']="HIS supports several types of file storage technologies.<br/><br/>
Any grayed-out entries below are not compatible with your current system configuration.";
$translation['installpage3']['german']="HIS unterstützt mehrere Arten von Datei-Storage-Technologien.<br/><br/>
Alle ausgegrauten Einträge unterhalb sind nicht kompatibel mit der aktuellen Systemkonfiguration.";
$translation['installpage3']['bulgarian']="Поддържа няколко вида технологии за съхранение на файлове. <br/> <br/>
Всички сиво Записите по-долу не са съвместими със сегашната си конфигурация на системата.";
$translation['installpage3']['chinesesimplified']="HIS支持多种类型的文件存储技术。<br/><br/>
任何灰色的条目下面是与你当前的系统配置不兼容。";
$translation['installpage3']['chinesetraditional']="HIS支持多種類型的文件存儲技術。<br/><br/>
任何灰色的條目下面是與你當前的系統配置不兼容。";
$translation['installpage4']['english']="HIS supports several types of file storage technologies.<br/><br/>
Any grayed-out entries below are not compatible with your current system configuration.";
$translation['installpage4']['german']="HIS unterstützt verschiedene Arten von Datei-Storage-Technologien.<br/><br/>
Alle ausgegrauten Einträge unten sind nicht kompatibel mit der aktuellen Systemkonfiguration.";
$translation['installpage4']['bulgarian']="HIS подкрепя няколко типа технологии за съхранение на файлове.<br/><br/>
Всички в сив цвят вписванията по-долу не са съвместими със сегашната си конфигурация на системата.";
$translation['installpage4']['chinesesimplified']="HIS支持几种类型的文件存储技术。<br/><br/>
任何变灰条目下面与您当前的系统配置不兼容。";
$translation['installpage4']['chinesetraditional']="HIS支持幾種類型的文件存儲技術。<br/><br/>
任何變灰條目下面與您當前的系統配置不兼容。";
$translation['enter database details']['english']="Below you should enter your database connection details. If you're not sure about these, contact your host.";
$translation['enter database details']['german']="Im Folgenden finden Sie sollten geben Sie Ihre Datenbank Details. Wenn Sie nicht sicher über diese sind, wenden Sie Ihrem Gastgeber.";
$translation['enter database details']['bulgarian']="Долу трябва да въведете своите данни за връзка с база данни. Ако не сте сигурни за тези, свържете се с вашия хост.";
$translation['enter database details']['chinesesimplified']="你应该在下面输入数据库连接的详细信息。如果你不知道关于这些,请联系您的主机。";
$translation['enter database details']['chinesetraditional']="你應該在下面輸入數據庫連接的詳細信息。如果你不知道關於這些,請聯繫您的主機。";
$translation['Database Type']['english']="Database Type";
$translation['Database Type']['german']="Database Type";
$translation['Database Type']['bulgarian']="Вид база данни";
$translation['Database Type']['chinesesimplified']="数据库类型";
$translation['Database Type']['chinesetraditional']="數據庫類型";
$translation['Database Host']['english']="Database Host";
$translation['Database Host']['german']="Datenbank-Host";
$translation['Database Host']['bulgarian']="хост базата данни";
$translation['Database Host']['chinesesimplified']="数据库主机";
$translation['Database Host']['chinesetraditional']="數據庫主機";
$translation['User Name']['english']="User Name";
$translation['User Name']['german']="User Name";
$translation['User Name']['bulgarian']="потребителско име";
$translation['User Name']['chinesesimplified']="用户名";
$translation['User Name']['chinesetraditional']="用戶名";
$translation['Password']['english']="Password";
$translation['Password']['german']="Kennwort";
$translation['Password']['bulgarian']="парола";
$translation['Password']['chinesesimplified']="密码";
$translation['Password']['chinesetraditional']="密碼";
$translation['Database Name']['english']="Database Name";
$translation['Database Name']['german']="Database Name";
$translation['Database Name']['bulgarian']="Име на базата данни";
$translation['Database Name']['chinesesimplified']="数据库名称";
$translation['Database Name']['chinesetraditional']="數據庫名稱";
$translation['Table Prefix']['english']="Table Prefix";
$translation['Table Prefix']['german']="Table Prefix";
$translation['Table Prefix']['bulgarian']="Таблица префикс";
$translation['Table Prefix']['chinesesimplified']="表前缀";
$translation['Table Prefix']['chinesetraditional']="表前綴";
$translation['Your database type.']['english']="Your database type.";
$translation['Your database type.']['german']="Ihre Datenbank-Typ.";
$translation['Your database type.']['bulgarian']="Вашата база данни тип.";
$translation['Your database type.']['chinesesimplified']="您的数据库类型。";
$translation['Your database type.']['chinesetraditional']="您的數據庫類型。";
$translation['You should be able to get this info from your web host, if localhost does not work.']['english']="You should be able to get this info from your web host, if localhost does not work.";
$translation['You should be able to get this info from your web host, if localhost does not work.']['german']="Sie sollten in der Lage sein, diese Informationen von Ihrem Webhoster bekommen, wenn localhost nicht funktioniert.";
$translation['You should be able to get this info from your web host, if localhost does not work.']['bulgarian']="Вие трябва да бъдете в състояние да получи тази информация от вашия уеб-домакин, ако Localhost не работи.";
$translation['You should be able to get this info from your web host, if localhost does not work.']['chinesesimplified']="你应该能够得到这个信息从您的虚拟主机'localhost'的,如果不工作。";
$translation['You should be able to get this info from your web host, if localhost does not work.']['chinesetraditional']="你應該能夠得到這個信息從您的虛擬主機'localhost'的,如果不工作。";
$translation['Your database username']['english']="Your database username";
$translation['Your database username']['german']="Ihre Datenbank-Benutzernamen";
$translation['Your database username']['bulgarian']="Вашата база данни име";
$translation['Your database username']['chinesesimplified']="你的数据库用户名";
$translation['Your database username']['chinesetraditional']="你的數據庫用戶名";
$translation['...and your database password.']['english']="...and your database password.";
$translation['...and your database password.']['german']="... und Ihre Datenbank-Passwort.";
$translation['...and your database password.']['bulgarian']="... и парола за базата данни.";
$translation['...and your database password.']['chinesesimplified']="和你的数据库密码。";
$translation['...and your database password.']['chinesetraditional']="和你的數據庫密碼。";
$translation['The name of the database you want to run HIS in. Database needs to exist already.']['english']="The name of the database you want to run HIS in. Database needs to exist already.";
$translation['The name of the database you want to run HIS in. Database needs to exist already.']['german']="Der Name der Datenbank, die Sie HIS in. Database ausführen muss bereits vorhanden sein.";
$translation['The name of the database you want to run HIS in. Database needs to exist already.']['bulgarian']="Името на базата данни, която искате да стартирате инча база данни трябва да съществува вече.";
$translation['The name of the database you want to run HIS in. Database needs to exist already.']['chinesesimplified']="你想运行HIS英寸数据库的数据库的名称必须已经存在。";
$translation['The name of the database you want to run HIS in. Database needs to exist already.']['chinesetraditional']="你想運行HIS英寸數據庫的數據庫的名稱必須已經存在。";
$translation['If you want to run multiple HIS installations in a single database, change this.']['english']="If you want to run multiple HIS installations in a single database, change this.";
$translation['If you want to run multiple HIS installations in a single database, change this.']['german']="Wenn Sie mehrere seiner Installationen in einer einzigen Datenbank ausführen möchten, ändern.";
$translation['If you want to run multiple HIS installations in a single database, change this.']['bulgarian']="Ако искате да стартирате няколко инсталации в единна база данни, да промените това.";
$translation['If you want to run multiple HIS installations in a single database, change this.']['chinesesimplified']="如果你想在一个数据库中运行多个HIS安装,改变这种状况。";
$translation['If you want to run multiple HIS installations in a single database, change this.']['chinesetraditional']="如果你想在一個數據庫中運行多個HIS安裝,改變這種狀況。";
$translation['AWS Access Key']['english']="AWS Access Key";
$translation['AWS Access Key']['german']="AWS Access Key";
$translation['AWS Access Key']['bulgarian']="AWS клавиш за достъп";
$translation['AWS Access Key']['chinesesimplified']="AWS访问密钥";
$translation['AWS Access Key']['chinesetraditional']="AWS訪問密鑰";
$translation['AWS Secret Key']['english']="AWS Access Key";
$translation['AWS Secret Key']['german']="AWS Secret Key";
$translation['AWS Secret Key']['chinesesimplified']="AWS密钥";
$translation['AWS Secret Key']['chinesetraditional']="AWS密鑰";
$translation['AWS Secret Key']['bulgarian']="AWS Secret Key";
$translation['Your AWS Access Key. Never share with anyone.']['english']="Your AWS Access Key. Never share with anyone.";
$translation['Your AWS Access Key. Never share with anyone.']['german']="Ihre AWS Access Key. Nie mit jemandem zu teilen.";
$translation['Your AWS Access Key. Never share with anyone.']['bulgarian']="Вашият AWS ключ за достъп. Никога не споделяйте с никого.";
$translation['Your AWS Access Key. Never share with anyone.']['chinesesimplified']="您的AWS访问密钥。不要与任何人共享。";
$translation['Your AWS Access Key. Never share with anyone.']['chinesetraditional']="您的AWS訪問密鑰。不要與任何人共享。";
$translation['Your AWS Secret Key. Never share with anyone.']['english']="Your AWS Secret Key. Never share with anyone.";
$translation['Your AWS Secret Key. Never share with anyone.']['german']="Ihre AWS Secret Key. Nie mit jemandem zu teilen.";
$translation['Your AWS Secret Key. Never share with anyone.']['bulgarian']="Вашият AWS таен ключ. Никога не споделяйте с никого.";
$translation['Your AWS Secret Key. Never share with anyone.']['chinesesimplified']="您的AWS密钥。不要与任何人共享。";
$translation['Your AWS Secret Key. Never share with anyone.']['chinesetraditional']="您的AWS密鑰。不要與任何人共享。";
$translation['installpage1']['english']="Welcome to Human Intelligence System.<br/><br/>
Let's create a his-config.php text file for you!<br/><br/>
Before getting started, we need some information on the database. You will need to know the following items before proceeding.<br/>
<table width='100%'><tr>
<td valign='top' width='50%'><p>
1. Database name<br/>
2. Database type<br/>
3. Database username<br/>
4. Database password<br/>
5. Database host<br/>
6. Table prefix
</p></td>
<td valign='top'><p>
1. Storage provider (your hard drive, S3, Rackspace?)<br/>
2. Storage address (folder name, bucket name?)<br/>
3. Storage username<br/>
4. Storage password
</p>
</td>
</tr></table>
<p>
If for any reason this automatic file creation doesn't work, don't worry. All this does is fill in the database information to a configuration file. You may also simply open his-config-sample.php in a text editor, fill in your information, and save it as his-config.php.<br/><br/>
In all likelihood, these items were supplied to you by your Web Host. If you do not have this information, then you will need to contact them before you can continue. If you’re all ready...";
$translation['installpage1']['german']="Welcome to Human Intelligence System.<br/><br/>
Lassen Sie uns eine his-config.php Textdatei für Sie!<br/><br/>
Bevor Sie beginnen, benötigen wir einige Angaben in der Datenbank. Sie müssen die folgenden Punkte, bevor Sie fortfahren kennen.<br/><br/>
<table width='100%'><tr>
<td valign='top' width='50%'><p>
1. Name der Datenbank<br/>
2. Datenbank-Typ<br/>
3. Database username<br/>
4. Datenbank-Passwort<br/>
5. Datenbank-Host<br/>
6. Tabellenpräfix
</p></td>
<td valign='top'><p>
1. Storage Provider (Festplatte, S3, Rackspace?)<br/>
2. Storage-Adresse (Ordnernamen, Eimer Namen?)<br/>
3. Lagerung username<br/>
4. Lagerung vergessen
</p>
</td>
</tr></table>
<p>
Wenn aus irgendeinem Grund diese automatische Erstellung der Datei nicht funktioniert, mach dir keine Sorgen. All dies wird in der Datenbank Informationen zu einer Konfigurationsdatei zu füllen. Sie können auch einfach öffnen his-config-sample.php in einem Text-Editor, füllen Sie Ihre Daten, und speichern Sie es als seine-config.php.<br/><br/>
Aller Wahrscheinlichkeit nach wurden diese Artikel die Ihnen von Ihrem Web-Host geliefert. Wenn Sie nicht über diese Informationen verfügen, dann werden Sie brauchen, um sie zu kontaktieren, bevor Sie fortfahren können. Wenn Sie alles fertig ...";
$translation['installpage1']['bulgarian']="Добре дошли в системата за човешкия интелект.<br/><br/>
Нека създадем си config.php текстов файл за вас!<br/><br/>
Преди да започнете, имаме нужда от някаква информация в базата данни. Вие ще трябва да знаете следните елементи, преди да продължите.<br/><br/>
<table width='100%'><tr>
<td valign='top' width='50%'><p>
1. име на базата данни<br/>
2. тип на базата данни<br/>
3. Database потребителско име<br/>
4. Database парола<br/>
5. хост базата данни<br/>
6. Таблица префикс
</p></td>
<td valign='top'><p>
1. Съхранение на доставчика (вашия твърд диск, S3, Rackspace?)<br/>
2. За съхранение адрес (името на папката, името на кофата?)<br/>
3. за съхранение потребителско име<br/>
4. съхранение на парола
</p>
</td>
</tr></table>
<p>
Ако по някаква причина това автоматично създаване на файла не работи, не се притеснявайте. Всичко това не е да попълните в базата данни информация за конфигурационен файл. Можете също така просто да си отвори-довереник sample.php в текстов редактор, попълнете данните си и да го запишете като си-config.php.<br/><br/>
По всяка вероятност, тези елементи са предоставени от вашия уеб-домакин. Ако не разполагате с тази информация, тогава ще трябва да се свържете с тях, преди да можете да продължите. Ако сте готови ...";
$translation['installpage1']['chinesesimplified']="欢迎对人类智慧的系统。<br/><br/>
让我们创建一个他的config.php文件的文本文件,你!<br/><br/>
在开始之前,我们需要对数据库的一些信息。您需要知道以下项目,然后再继续。<br/>
<table width='100%'><tr>
<td valign='top' width='50%'><p>
1。数据库名称<br/>
2。数据库类型<br/>
3。数据库用户名<br/>
4。数据库密码<br/>
5。数据库主机
6。表前缀
</p></td>
<td valign='top'><p>
1。存储供应商(你的硬盘,S3,Rackspace公司?)<br/>
2。存储地址(文件夹名称,桶的名字吗?)<br/>
3。存储的用户名<br/>
4。存储密码
</p>
</td>
</tr></table>
<p>
如果出于任何原因,这个文件自动创建不工作,也不用担心。这一切并填写在资料库中的配置文件。您也可以简单地在文本编辑器打开他的config-sample.php文件,填写您的信息,并保存它的config.php文件。<br/>
在所有的可能性,这些项目提供给您,您的虚拟主机。如果你没有这样的信息,那么您将需要与他们联络,然后才可以继续。如果你都准备好了......";
$translation['installpage1']['chinesetraditional']="歡迎對人類智慧的系統。<br/><br/>
讓我們創建一個他his-config.php文件的文本文件,你!<br/><br/>
在開始之前,我們需要對數據庫的一些信息。您需要知道以下項目,然後再繼續。<br/><br/>
<table width='100%'><tr>
<td valign='top' width='50%'><p>
1。數據庫名稱<br/>
2。數據庫類型<br/>
3。數據庫用戶名<br/>
4。數據庫密碼<br/>
5。數據庫主機<br/>
6。表前綴
</p></td>
<td valign='top'><p>
1。存儲供應商(你的硬盤,S3,Rackspace公司?)<br/>
2。存儲地址(文件夾名稱,桶的名字嗎?)<br/>
3。存儲的用戶名<br/>
4。存儲密碼
</p>
</td>
</tr></table>
<p>
如果出於任何原因,這個文件自動創建不工作,也不用擔心。這一切並填寫在資料庫中的配置文件。您也可以簡單地在文本編輯器打開他的config-sample.php文件,填寫您的信息,並保存它的config.php文件。<br/><br/>
在所有的可能性,這些項目提供給您,您的虛擬主機。如果你沒有這樣的信息,那麼您將需要與他們聯絡,然後才可以繼續。如果你都準備好了......";
$translation['installpage1']['telugu']="మానవ మేధస్సు వ్యవస్థ స్వాగతం.<br/><br/>
యొక్క మీకు his-config.php టెక్స్ట్ ఫైల్ సృష్టించడానికి తెలపండి!<br/><br/>
ప్రారంభించే ముందు, మేము డేటాబేస్ లో కొంత సమాచారం కావాలి. మీరు కొనసాగే ముందు ఈ క్రింది అంశాలను తెలుసు ఉంటుంది.<br/><br/>
<table width='100%'><tr>
<td valign='top' width='50%'><p>
1. డేటాబేస్ పేరు<br/>
2. డేటాబేస్ రకం<br/>
3. డేటాబేస్ యూజర్పేరు<br/>
4. డేటాబేస్ పాస్వర్డ్ను<br/>
5. డేటాబేస్ హోస్ట్<br/>
6. టేబుల్ ఉపసర్గ
</p></td>
<td valign='top'><p>
1. నిల్వ ప్రొవైడర్ (మీ హార్డు డ్రైవు, S3, రాక్స్పేస్?)<br/>
2. నిల్వ చిరునామా (ఫోల్డర్ పేరు, బకెట్ పేరు?)<br/>
3. నిల్వ యూజర్పేరు<br/>
4. నిల్వ పాస్వర్డ్ను
</p>
</td>
</tr></table>
<p>
ఏ కారణం ఈ ఆటోమేటిక్ ఫైలు సృష్టి పని చెయ్యకపోతే, ఆందోళన చెందకండి. ఈ ఆకృతీకరణ ఫైలును డేటాబేస్ సమాచారాన్ని పూరించండి ఉంది లేదు. మీరు కూడా మీ సమాచారాన్ని పూరించండి, ఒక టెక్స్ట్ ఎడిటర్ లో తన-config-sample.php తెరిచి, his-config.php, సేవ్ చేయవచ్చు.<br/><br/>
అన్ని సంభావ్యత లో, ఈ అంశాలు మీ వెబ్ హోస్ట్ ద్వారా మీరు సరఫరా చేయబడ్డాయి. మీరు ఈ సమాచారం లేకపోతే మీరు కొనసాగించడానికి ముందు, మీరు వారిని సంప్రదించండి ఉంటుంది. మీరు అన్ని సిద్ధంగా ఉంటే ...";
$translation['installdbfail']['english']="This either means that the username and password information in your his-config.php file is incorrect or we can't contact the database server. This could mean your host's database server is down.<br/><br/>
- Are you sure you have the correct username and password?<br/>
- Are you sure that you have typed the correct hostname?<br/>
- Are you sure that the database server is running?<br/><br/><br/>
If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the";
$translation['installdbfail']['german']="Das bedeutet entweder, dass der Benutzername und das Kennwort in Ihrem his-config.php falsch sind oder wir können nicht an den Datenbank-Server. Dies könnte bedeuten, dass Ihre Host-Datenbank-Server ausgefallen ist.<br/><br/>
- Sind Sie sicher, dass Sie den richtigen Benutzernamen und Passwort?<br/>
- Sind Sie sicher, dass Sie den richtigen Hostnamen eingegeben?<br/>
- Sind Sie sicher, dass der Datenbankserver läuft?<br/><br/>
Wenn Sie unsicher sind, was diese Begriffe bedeuten, sollten Sie vielleicht bei Ihrem Gastgeber. Wenn Sie weitere Hilfe benötigen können Sie jederzeit besuchen die";
$translation['installdbfail']['bulgarian']="Това означава или, че потребителското име и паролата в си-config.php файл е неточна или не можем да се свърже със сървъра на базата данни. Това може да означава на вашия хост сървъра на базата данни е надолу.<br/><br/>
- Сигурни ли сте, имате правилното потребителско име и парола?<br/>
- Сигурен ли сте, че сте въвели правилно името на хоста?<br/>
- Сигурен ли сте, че сървъра на базата данни работи?<br/><br/>
Ако не сте сигурни какво означават тези термини, вероятно ще трябва да се свържете с вашия хост. Ако все още се нуждаят от помощ, винаги можете да посетите";
$translation['installdbfail']['chinesesimplified']="这意味着两种情况,要么his-config.php文件中的用户名和密码信息是不正确的,否则我们无法联系数据库服务器。这可能意味着您的主机的数据库服务器。<br/><br/>
- 你确定你有正确的用户名和密码?<br/>
- 你确定你输入了正确的主机名?<br/>
- 你是确保数据库服务器正在运行时<br/><br/>
如果你不确定这些条款是什么意思,你应该联系你的主机。如果你还需要帮助,你可以随时访问";
$translation['installfsfail']['english']="This either means that the username and password information in your his-config.php file is incorrect or we can't connect to the file storage server. This could mean the file storage server is down.<br/><br/>
- Are you sure you have the correct username and password (if applicable)?<br/>
- Are you sure that you have typed the correct hostname?<br/>
- Are you sure that the file storage server is running?<br/><br/><br/>
If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the";
$translation['installfsfail']['german']="Das bedeutet entweder, dass der Benutzername und das Kennwort in Ihrem his-config.php falsch sind oder wir können nicht in die Datei Storage-Server zu verbinden. Dies könnte bedeuten, dass die Speicherung von Dateien Server heruntergefahren ist. <br/>
- Sind Sie sicher, dass Sie den richtigen Benutzernamen und das Kennwort ein (falls zutreffend) <br/>?
- Sind Sie sicher, dass Sie den richtigen Hostnamen eingegeben <br/>?
- Sind Sie sicher, dass die Datei Storage Server läuft <br/> <br/>
Wenn Sie unsicher sind, was diese Begriffe bedeuten, sollten Sie vielleicht bei Ihrem Gastgeber. Wenn Sie weitere Hilfe benötigen können Sie jederzeit besuchen die";
$translation['installfsfail']['bulgarian']="Това означава или, че потребителското име и паролата в his-config.php файл е неточна или не може да се свърже към сървъра за съхранение на файлове.Това може да означава файлов сървър за съхранение. <br/> <br/>
- Сигурни ли сте, имате правилното потребителско име и парола (ако е приложимо) <br/>?
- Сигурен ли сте, че сте въвели правилно името на хоста <br/>?
- Сигурни ли сте, файлов сървър за съхранение работи <br/> <br/> <br/>
Ако не сте сигурни какво означават тези термини, вероятно ще трябва да се свържете с вашия хост. Ако все още се нуждаят от помощ, винаги можете да посетите";
$translation['installfsfail']['chinesesimplified']="这意味着两种情况,要么his-config.php文件中的用户名和密码信息是不正确的,否则我们无法连接到文件存储服务器。这可能意味着文件存储服务器已关闭。<br/> <br/>
- 你确定你有正确的用户名和密码(如果适用的话)?<br/>
- 你确定你输入了正确的主机名?<br/>
- 你确定该文件存储服务器正在运行?时<br/><br/>
如果你不确定这些条款是什么意思,你应该联系你的主机。如果你还需要帮助,你可以随时访问";
$translation['installmsfail']['english']="This either means that the username and password information in your his-config.php file is incorrect or we can't connect to the message queue server. This could mean the message queue server is down.<br/><br/>
- Are you sure you have the correct username and password (if applicable)?<br/>
- Are you sure that you have typed the correct hostname?<br/>
- Are you sure that the message queue server is running?<br/><br/><br/>
If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the";
$translation['installmsfail']['german']="Dies bedeutet, dass entweder der Benutzername und das Passwort in der Datei his-config.php falsch ist, oder wir können nicht auf die Message-Queue-Server herstellen. Dies könnte bedeuten, dass die Message Queue Server heruntergefahren ist.<br/><br/>
- Sind Sie sicher, dass Sie den richtigen Benutzernamen und das Kennwort ein (falls zutreffend)?<br/>
- Sind Sie sicher, dass Sie den richtigen Hostnamen eingegeben?<br/>
- Sind Sie sicher, dass die Message-Queue-Server läuft?<br/><br/>
Wenn Sie unsicher sind, was diese Begriffe bedeuten, sollten Sie vielleicht bei Ihrem Gastgeber. Wenn Sie weitere Hilfe benötigen können Sie jederzeit besuchen die";
$translation['installmsfail']['bulgarian']="Това или означава, че потребителското име и парола във файла his-config.php е неточна или не можем да се свърже към сървъра съобщение опашката. Това би могло да означава, че сървърът съобщение опашката е надолу.<br/> <br/>
- Сигурни ли сте, имате правилното потребителско име и парола (ако е приложимо) <br/>?
- Сигурен ли сте, че сте въвели правилно името на хоста <br/>
- Сигурни ли сте, че сървърът съобщение опашка работи?<br/><br/>
Ако не сте сигурни какво означават тези термини, вероятно ще трябва да се свържете с вашия хост. Ако все още се нуждаят от помощ, винаги можете да посетите";
$translation['installmsfail']['chinesesimplified']="这意味着两种情况,要么his-config.php文件中的用户名和密码信息是不正确的,或者我们不能连接到消息队列服务器。这可能意味着,消息队列服务器。<br/><br/>
- 你确定你有正确的用户名和密码(如果适用的话)?<br/>
- 你确定你输入了正确的主机名?<br/>
- 您确定该消息队列服务器正在运行?<br/><br/>
如果你不确定这些条款是什么意思,你应该联系你的主机。如果你还需要帮助,你可以随时访问";
$translation['Error establishing a database connection']['english']="Error establishing a database connection";
$translation['Error establishing a database connection']['german']="Fehler beim Aufbau einer Datenbankverbindung";
$translation['Error establishing a database connection']['chinesesimplified']="建立数据库连接时出错";
$translation['Error establishing a database connection']['bulgarian']="Грешка при установяване на връзка с базата данни";
$translation['Try Again']['english']="Try Again";
$translation['Try Again']['german']="Try Again";
$translation['Try Again']['bulgarian']="Опитайте отново";
$translation['Try Again']['chinesesimplified']="再试一次";
$translation['Error establishing a file storage connection']['english']="Error establishing a file storage connection";
$translation['Error establishing a file storage connection']['german']="Fehler beim Aufbau einer Datei Storage-Verbindung";
$translation['Error establishing a file storage connection']['bulgarian']="Грешка при установяване на връзка за съхранение на файлове";
$translation['Error establishing a file storage connection']['chinesesimplified']="建立一个文件存储连接时出错";
$translation['file storage details']['english']="Below you should enter your file storage connection details. If you're not sure about these, contact our forums.";
$translation['file storage details']['german']="Im Folgenden finden Sie sollten geben Sie Ihre Dateiablage Anschlussdetails. Wenn Sie nicht sicher über diese sind, wenden unserem Forum.";
$translation['file storage details']['chinesesimplified']="你应该在下面输入您的文件存储连接的详细信息。如果你不知道关于这些,请联系我们的论坛。";
$translation['file storage details']['bulgarian']="По-долу можете да въведете вашите файлови връзка съхранение. Ако не сте сигурни за тези, свържете се с нашите форуми.";
$translation['message queue details']['english']="Below you should enter your message queue connection details. If you're not sure about these, contact our forums.";
$translation['message queue details']['german']="Im Folgenden finden Sie sollten geben Sie Ihre Message Queue Verbindung Details. Wenn Sie nicht sicher über diese sind, wenden unserem Forum.";
$translation['message queue details']['chinesesimplified']="你应该在下面输入您的消息队列连接的详细信息。如果你不知道这些,请联系我们的论坛。";
$translation['message queue details']['bulgarian']="По-долу следва Вашето съобщение детайли връзка опашката. Ако не сте сигурни за това, свържете се с нашите форуми.";
$translation['File Storage Type']['english']="File Storage Type";
$translation['File Storage Type']['german']="Dateispeichertyps";
$translation['File Storage Type']['chinesesimplified']="文件存储类型";
$translation['File Storage Type']['bulgarian']="Вид на файла за съхранение";
$translation['Your file storage system.']['english']="Your file storage system";
$translation['Your file storage system.']['german']="Ihre Dateiablage";
$translation['Your file storage system.']['chinesesimplified']="您的文件存储系统";
$translation['Your file storage system.']['bulgarian']="Вашата система за съхранение на файлове";
$translation['S3 Bucket Name']['english']="S3 Bucket Name";
$translation['S3 Bucket Name']['german']="S3 Bucket Namen";
$translation['S3 Bucket Name']['chinesesimplified']="S3存储桶名称";
$translation['S3 Bucket Name']['bulgarian']="Име на S3 Bucket";
$translation['S3 Input Path']['english']="S3 Input Path";
$translation['S3 Input Path']['german']="S3 Eingang Pfad";
$translation['S3 Input Path']['chinesesimplified']="S3输入路径";
$translation['S3 Input Path']['english']="S3 Input Path";
$translation['S3 Input Path']['bulgarian']="Път на S3 Input";
$translation['S3 Output Path']['english']="S3 Output Path";
$translation['S3 Output Path']['german']="S3 Output Path";
$translation['S3 Output Path']['chinesesimplified']="S3输出路径";
$translation['S3 Output Path']['bulgarian']="Път на S3 изход";
$translation['S3 Saved Strings Path']['english']="S3 Saved Strings Path";
$translation['S3 Saved Strings Path']['german']="S3 gespeichert Strings Pfad";
$translation['S3 Saved Strings Path']['chinesesimplified']="S3保存的字符串路径";
$translation['S3 Saved Strings Path']['bulgarian']="S3 Запазени Strings Path";
$translation['Folder Path']['english']="Folder Path";
$translation['Folder Path']['german']="Folder Path";
$translation['Folder Path']['chinesesimplified']="文件夹路径";
$translation['Folder Path']['bulgarian']="Folder Path";
$translation['Folder on local Hard Disk. Needs to exist already. Make sure apache can write to this folder.']['english']="Folder on local Hard Disk. Needs to exist already. Make sure apache can write to this folder.";
$translation['Folder on local Hard Disk. Needs to exist already. Make sure apache can write to this folder.']['german']="Ordner auf der lokalen Festplatte. Muss bereits vorhanden sein. Stellen Sie sicher, dass Apache kann in diesem Ordner zu schreiben.";
$translation['Folder on local Hard Disk. Needs to exist already. Make sure apache can write to this folder.']['chinesesimplified']="在本地硬盘上的文件夹。需要已经存在。请确保Apache可以写入这个文件夹。";
$translation['Folder on local Hard Disk. Needs to exist already. Make sure apache can write to this folder.']['bulgarian']="Папка на локалния твърд диск. Трябва да съществува вече. Уверете се, че Apache да пишете в тази папка.";
$translation['Input Path']['english']="Input Path";
$translation['Input Path']['german']="Eingang Pfad";
$translation['Input Path']['chinesesimplified']="输入路径";
$translation['Input Path']['bulgarian']="Input Path";
$translation['Output Path']['english']="Output Path";
$translation['Output Path']['german']="Output Path";
$translation['Output Path']['chinesesimplified']="输出路径";
$translation['Output Path']['bulgarian']="Output Path";
$translation['Saved Outputs Path']['english']="Saved Outputs Path";
$translation['Saved Outputs Path']['german']="Gespeichert Ausgänge Pfad";
$translation['Saved Outputs Path']['chinesesimplified']="保存的输出路径";
$translation['Saved Outputs Path']['bulgarian']="Запазени Изходи Path";
$translation['Saved Strings Path']['english']="Saved Strings Path";
$translation['Saved Strings Path']['german']="Gespeichert Strings Pfad";
$translation['Saved Strings Path']['chinesesimplified']="保存的字符串路径";
$translation['Saved Strings Path']['bulgarian']="Запазени Strings Path";
$translation['This does not have to be changed']['english']='This does not have to be changed';
$translation['This does not have to be changed']['german']='Dies muss nicht geändert werden';
$translation['This does not have to be changed']['chinesesimplified']='以被改变,这不具有';
$translation['This does not have to be changed']['bulgarian']='Това не трябва да се промени';
$translation['S3 Saved Outputs Path']['english']="S3 Saved Outputs Path";
$translation['S3 Saved Outputs Path']['german']="S3 gespeichert Ausgänge Pfad";
$translation['S3 Saved Outputs Path']['chinesesimplified']="S3保存的输出路径";
$translation['S3 Saved Outputs Path']['bulgarian']="S3 Запазени Изходи Path";
$translation['S3 Bucket Name to store files in. Needs to exist already.']['english']="S3 Bucket Name to store files in. Needs to exist already.";
$translation['S3 Bucket Name to store files in. Needs to exist already.']['german']="S3 Bucket Namen von Dateien in. Geschäft muss bereits vorhanden sein.";
$translation['S3 Bucket Name to store files in. Needs to exist already.']['chinesesimplified']="S3存储桶的名字来存储文件。需要已经存在。";
$translation['S3 Bucket Name to store files in. Needs to exist already.']['bulgarian']="S3 Име Кофа за съхранение на файлове. Трябва да съществува вече.";
$translation['Welcome']['english']="Welcome";
$translation['Welcome']['german']="Willkommen";
$translation['Welcome']['chinesesimplified']="欢迎";
$translation['Welcome']['bulgarian']="добре дошъл";
$translation['Information needed']['english']="Information needed";
$translation['Information needed']['german']="Benötigte Informationen";
$translation['Information needed']['chinesesimplified']="需要的信息";
$translation['Information needed']['bulgarian']="Необходима Информацията";
$translation['Please provide the following information.']['english']="Please provide the following information. Do not worry, you can always change these settings later.";
$translation['Please provide the following information.']['german']="Bitte geben Sie die folgenden Informationen. Mach dir keine Sorgen, können Sie immer diese Einstellungen später.";
$translation['Please provide the following information.']['chinesesimplified']="请提供以下信息。不要担心,你可以随时更改这些设置。";
$translation['Please provide the following information.']['bulgarian']="Моля, представете следната информация. Не се притеснявайте, винаги можете да промените тези настройки по-късно.";
$translation['Welcome to the instantaneous HIS installation process']['english']="Welcome to the instantaneous HIS installation process! You may want to browse the ReadMe documentation at your leisure. Otherwise, just fill in the information below and you’ll be on your way to using the most extendable and powerful personal API platform in the world.";
$translation['Welcome to the instantaneous HIS installation process']['german']="Willkommen in der momentanen HIS Installation! Vielleicht möchten Sie in der Readme-Dokumentation in Ihrer Freizeit zu durchsuchen. Ansonsten einfach in den Informationen unten ausfüllen und Sie werden auf Ihrem Weg zur Verwendung der meisten erweiterbare und leistungsstarke persönliche API-Plattform in der Welt sein.";
$translation['Welcome to the instantaneous HIS installation process']['chinesesimplified']="欢迎来到瞬间他的安装过程!您要浏览的自述文件在您的休闲。否则,只需填写下面的信息,你就可以用自己的方式在世界上最有弹性和强大的个人API平台。";
$translation['Welcome to the instantaneous HIS installation process']['bulgarian']="Добре дошли в моментната си инсталационния процес! Вие може да искате да разглеждате документацията ReadMe в свободното си време. В противен случай, просто попълнете информацията по-долу, и вие ще бъдете по пътя си към използване на най-разтегателна и мощен лично API платформа в света.";
$translation['cantwrite']['english']="Sorry, but I can't write the his-config.php file.<br/><br/>
You can create the his-config.php manually and paste the following text into it.<br/><br/>
When you create this new his-config.php file, make sure to create it at the following location:";
$translation['cantwrite']['german']="Sorry, aber ich kann nicht schreiben, die his-config.php Datei.<br/><br/>
Sie können die his-config.php manuell erstellen und fügen Sie den folgenden Text hinein.<br/><br/>
Wenn Sie diese neue his-config.php-Datei zu erstellen, stellen Sie sicher, es unter folgender Adresse zu erstellen:";
$translation['cantwrite']['chinesesimplified']="很抱歉,但我不能写他的config.php文件。<br/><br/>
您可以创建自己his-config.php文件手动,并把它粘贴下面的文本。<br/><br/>
当你创建这个新的他his-config.php文件,一定要建立在以下位置:";
$translation['cantwrite']['chinesetraditional']="很抱歉,但我不能寫他的config.php文件。<br/><br/>
您可以創建自己his-config.php文件手動,並把它粘貼下面的文本。<br/><br/>
當你創建這個新的他his-config.php文件,一定要建立在以下位置:";
$translation['cantwrite']['bulgarian']="Съжалявам, но не могат да пишат на си-config.php файл. <br/> <br/>
Можете да създадете му-config.php ръчно и поставете следния текст в него. <br/> <br/>
Когато се създаде тази нова си-config.php файл, уверете се, да го създаде на следния адрес:";
$translation['Username']['english']="Username";
$translation['Username']['german']="Benutzername";
$translation['Username']['chinesesimplified']="用户名";
$translation['Username']['bulgarian']="Потребителско име";
$translation['Password']['english']="Password";
$translation['Password']['german']="Kennwort";
$translation['Password']['chinesesimplified']="密码";
$translation['Password']['bulgarian']="парола";
$translation['Remember Me']['english']="Remember Me";
$translation['Remember Me']['german']="Angemeldet bleiben";
$translation['Remember Me']['chinesesimplified']="记住我";
$translation['Remember Me']['bulgarian']="Запомни ме";
$translation['Log In']['english']="Log In";
$translation['Log In']['german']="Login";
$translation['Log In']['chinesesimplified']="登录";
$translation['Log In']['bulgarian']="Логване";
$translation['Password, twice']['english']="Password, twice";
$translation['Password, twice']['german']="Kennwort zweimal";
$translation['Password, twice']['chinesesimplified']="密码,两次";
$translation['Password, twice']['bulgarian']="Парола, два пъти";
$translation['password creation hint']['english']="Hint: The password should be at least seven characters long. To make it stronger, use upper and lower case letters, numbers and symbols like ! \" ? $ % ^ & ).";
$translation['password creation hint']['german']="Hinweis: Das Passwort sollte mindestens sieben Zeichen lang sein. Sie stärker zu machen, verwenden Sie Ober-und Kleinbuchstaben, Zahlen und Symbole wie ! \" ? $ % ^ & )";
$translation['password creation hint']['chinesesimplified']="提示:密码长度应该至少有7个字符长。为了使之更强大,使用大写和小写字母,数字和符号,如 ! \" ? $ % ^ & )";
$translation['password creation hint']['bulgarian']="Съвет: Паролата трябва да бъде най-малко седем знака. Да направи я по-силна, се използват главни и малки букви, цифри и символи, като ! \" ? $ % ^ & ).";
$translation['double check email']['english']="Double-check your email address before continuing.";
$translation['double check email']['german']="Überprüfen Sie Ihre E-Mail-Adresse, bevor Sie fortfahren.";
$translation['double check email']['chinesesimplified']="仔细检查你的电子邮件地址,然后再继续。";
$translation['double check email']['bulgarian']="Два пъти проверявате електронната си поща адрес преди да продължите.";
$translation['Your E-mail']['english']="Your E-mail";
$translation['Your E-mail']['german']="Ihre E-Mail";
$translation['Your E-mail']['chinesesimplified']="您的E-mail";
$translation['Your E-mail']['bulgarian']="Вашият Е-мейл";
$translation['user name guidelines']['english']="Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods and the @ symbol.";
$translation['user name guidelines']['german']="Benutzernamen können nur alphanumerische Zeichen, Leerzeichen, Unterstriche, Bindestriche, Punkte und das @-Symbol.";