forked from wikimedia/mediawiki-extensions-Math
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMath.i18n.php
4546 lines (4251 loc) · 215 KB
/
Math.i18n.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
/**
* Internationalization file for the Math extension.
*
* @file
* @ingroup Extensions
*/
$messages = array();
/** English */
$messages['en'] = array(
'math-desc' => 'Render mathematical formulas between <code><math></code> ... <code></math></code> tags',
// Edit toolbar stuff shown on ?action=edit (example text & tooltip)
'math_sample' => 'Insert formula here',
'math_tip' => 'Mathematical formula (LaTeX)',
// Header on Special:Preferences (or something)
'prefs-math' => 'Math',
// Math options
'mw_math_png' => 'Always render PNG',
'mw_math_source' => 'Leave it as TeX (for text browsers)',
'mw_math_mathjax' => 'MathJax (experimental; best for most browsers)',
'mw_math_latexml' => 'LaTeXML (experimental; uses MathML)',
// Math errors
'math_failure' => 'Failed to parse',
'math_unknown_error' => 'unknown error',
'math_unknown_function' => 'unknown function \'$1\'',
'math_lexing_error' => 'lexing error',
'math_syntax_error' => 'syntax error',
'math_image_error' => 'PNG conversion failed; check for correct installation of latex and dvipng (or dvips + gs + convert)',
'math_bad_tmpdir' => 'Cannot write to or create math temp directory',
'math_bad_output' => 'Cannot write to or create math output directory',
'math_notexvc' => 'Missing texvc executable; please see math/README to configure.',
'math_output_error' => 'Cannot store math image on filesystem.',
'math_latexml_timeout' => 'LaTeXML Timeout from \'$1\'',
'math_latexml_invalidresponse' => 'LaTeXML Invalid response (\'$2\') from server \'$1\':',
'math_latexml_invalidxml' => 'LaTeXML MathML is invalid XML.',
'math_latexml_invalidjson' => 'LaTeXML Server response is invalid JSON.',
'math_latexml_xmlversion' => 'Warning: XML Type check skipped! Check if your MediaWiki installation is version wmf/1.22wmf7 or newer.'
);
/** Message documentation (Message documentation)
* @author Cainamarques
* @author Jon Harald Søby
* @author Kizito
* @author Physikerwelt
* @author Shirayuki
* @author Siebrand
*/
$messages['qqq'] = array(
'math-desc' => '{{desc|name=Math|url=http://www.mediawiki.org/wiki/Extension:Math}}',
'math_sample' => 'The sample formula text that you get when you press the fourth button from the right on the edit toolbar.',
'math_tip' => 'This is the text that appears when you hover the mouse over the fourth button from the right on the edit toolbar.',
'prefs-math' => 'Used in user preferences as a section heading.
{{Identical|Math}}',
'mw_math_png' => 'In user preferences. All mw_math_* messages MUST be different, things will break otherwise!
Used as label for radio button.
See also:
* {{msg-mw|Mw math source}}
* {{msg-mw|Mw math mathjax}}
* {{msg-mw|Mw math latexml}}',
'mw_math_source' => 'In user preferences (math). All mw_math_* messages MUST be different, things will break otherwise!
Used as label for source radio button.
See also:
* {{msg-mw|Mw math png}}
* {{msg-mw|Mw math mathjax}}
* {{msg-mw|Mw math latexml}}',
'mw_math_mathjax' => 'Used as label for mathjax radio button.
See also:
* {{msg-mw|Mw math png}}
* {{msg-mw|Mw math source}}
* {{msg-mw|Mw math latexml}}',
'mw_math_latexml' => 'Used as label for latexml radio button.
See also:
* {{msg-mw|Mw math png}}
* {{msg-mw|Mw math source}}
* {{msg-mw|Mw math mathjax}}',
'math_failure' => 'Used as error message.
This message is followed by "(", Error message(*1), Additional message, "): " and Source code.
(*1) The error message is any one of the following messages:
* {{msg-mw|Math unknown error}}
* {{msg-mw|Math unknown function}}
* {{msg-mw|Math lexing error}}
* {{msg-mw|Math syntax error}}
* {{msg-mw|Math image error}}
* {{msg-mw|Math bad tmpdir}}
* {{msg-mw|Math bad output}}
* {{msg-mw|Math notexvc}}
* {{msg-mw|Math output error}}
* {{msg-mw|Math latexml timeout}}
* {{msg-mw|Math latexml invalidresponse}}
* {{msg-mw|Math latexml invalidxml}}
* {{msg-mw|Math latexml invalidjson}}',
'math_unknown_error' => 'Used as error message for unknown texvc error.
This message follows the message {{msg-mw|Math failure}}.
{{Identical|Unknown error}}',
'math_unknown_function' => 'Used as error message when texvc encounters an unknown function.
Preceded by the message {{msg-mw|Math failure}}.
Parameters:
* $1 - name of unknown function',
'math_lexing_error' => 'Used as error message for a texvc lexing error.
This message follows the message {{msg-mw|Math failure}}.',
'math_syntax_error' => 'Used as error message for a texvc syntax error.
This message follows the message {{msg-mw|Math failure}}.
{{Identical|Syntax error}}',
'math_image_error' => '{{doc-important|Do not change <code>latex</code>, <code>dvipng</code>, <code>dvips</code>, <code>gs</code> and <code>convert</code>. These are UNIX commands.}}
Used as error message.
This message follows the message {{msg-mw|Math failure}}.',
'math_bad_tmpdir' => 'Used as error message.
This message follows the message {{msg-mw|Math failure}}.',
'math_bad_output' => 'Used as error message.
This message follows the message {{msg-mw|Math failure}}.',
'math_notexvc' => 'Used as error message.
This message follows the message {{msg-mw|Math failure}}.',
'math_output_error' => 'Used as error message if the texvc output file could not be stored.
This message follows the message {{msg-mw|Math failure}}.',
'math_latexml_timeout' => 'Used as error message.
Parameters:
* $1 - hostname or URL',
'math_latexml_invalidresponse' => 'Used as error message.
Follows the message {{msg-mw|Math failure}}.
Parameters:
* $1 - hostname
* $2 - error message',
'math_latexml_invalidxml' => 'Used as error message.
This message follows the message {{msg-mw|Math failure}}.',
'math_latexml_invalidjson' => 'Used as error message.
This message follows the message {{msg-mw|Math failure}}.',
'math_latexml_xmlversion' => 'Warning that XML checking of MathML requires wmf/1.22wmf7 or newer.',
);
/** Achinese (Acèh)
* @author Si Gam Acèh
*/
$messages['ace'] = array(
'math_sample' => 'Pasoë rumuh nyoë pat',
'math_tip' => 'Rumuh matematik (LaTeX)',
);
/** Afrikaans (Afrikaans)
* @author Naudefj
*/
$messages['af'] = array(
'math_sample' => 'Plaas formule hier',
'math_tip' => 'Wiskundige formule (LaTeX)',
'prefs-math' => 'Wiskunde',
'mw_math_png' => 'Gebruik altyd PNG.',
'mw_math_source' => 'Los as TeX (vir teksblaaiers).',
'math_failure' => 'Kon nie verbeeld nie',
'math_unknown_error' => 'onbekende fout',
'math_unknown_function' => 'onbekende funksie', # Fuzzy
'math_lexing_error' => 'leksikale fout',
'math_syntax_error' => 'sintaksfout',
'math_image_error' => 'PNG-omskakeling het gefaal.
Kontroleer of LaTeX en dvipng (of dvips + gs + convert) korrek geïnstalleer is.',
'math_bad_tmpdir' => 'Die gids vir tydelike lêers vir wiskundige formules bestaan nie of kan nie geskep word nie',
'math_bad_output' => 'Die gids vir lêers met wiskundige formules bestaan nie of kan nie geskep word nie',
'math_notexvc' => 'Kan nie die texvc program vind nie;
stel asseblief op volgens die beskrywing in math/README.',
);
/** Gheg Albanian (Gegë)
* @author Bresta
* @author Cradel
*/
$messages['aln'] = array(
'math_sample' => 'Vendos formulën këtu',
'math_tip' => 'Formulë matematikore (LaTeX)',
'prefs-math' => 'Formulë',
);
/** Amharic (አማርኛ)
* @author Codex Sinaiticus
*/
$messages['am'] = array(
'math_sample' => 'የሒሳብ ቀመር በዚህ ይግባ',
'math_tip' => 'የሒሳብ ቀመር (LaTeX) ለመጨመር',
'prefs-math' => 'የሂሳብ መልክ',
'mw_math_png' => 'ሁልጊዜ እንደ PNG',
'math_failure' => 'ዘርዛሪው ተሳነው',
'math_unknown_error' => 'የማይታወቅ ስኅተት',
'math_unknown_function' => 'የማይታወቅ ተግባር', # Fuzzy
'math_lexing_error' => 'የlexing ስህተት',
'math_syntax_error' => 'የሰዋሰው ስህተት',
'math_bad_output' => 'ወደ math ውጤት ዶሴ መጻፍ ወይም መፍጠር አይቻልም',
);
/** Aragonese (aragonés)
* @author Juanpabl
*/
$messages['an'] = array(
'math_sample' => 'Escriba aquí a formula',
'math_tip' => 'Formula matematica (LaTeX)',
'prefs-math' => 'Esprisions matematicas',
'mw_math_png' => 'Producir siempre PNG',
'mw_math_source' => 'Deixar como TeX (ta navegadores en formato texto)',
'math_failure' => 'Error en o codigo',
'math_unknown_error' => 'error esconoxita',
'math_unknown_function' => 'función esconoxita', # Fuzzy
'math_lexing_error' => 'error de lexico',
'math_syntax_error' => 'error de sintaxi',
'math_image_error' => 'A conversión enta PNG ha tenito errors;
comprebe si latex, dvips, gs y convert son bien instalatos.', # Fuzzy
'math_bad_tmpdir' => "No s'ha puesto escribir u creyar o directorio temporal d'esprisions matematicas",
'math_bad_output' => "No s'ha puesto escribir u creyar o directorio de salida d'esprisions matematicas",
'math_notexvc' => "No s'ha trobato o fichero executable ''texvc''. Por favor, leiga <em>math/README</em> ta confegurar-lo correctament.",
);
/** Old English (Ænglisc)
* @author Gott wisst
* @author Wōdenhelm
*/
$messages['ang'] = array(
'math_sample' => 'Settan endebyrdunge hēr',
'math_tip' => 'Rīmcræftlīc endebyrdung (LaTeX)',
'prefs-math' => 'Rīmcræft',
'math_unknown_error' => 'uncūþ wōh',
);
/** Angika (अङ्गिका)
* @author Angpradesh
*/
$messages['anp'] = array(
'math_sample' => 'गणितीय सूत्र यहाँ डालॊ',
'math_tip' => 'गणितीय सूत्र (LaTeX)',
);
/** Arabic (العربية)
* @author Ciphers
* @author Meno25
*/
$messages['ar'] = array(
'math_sample' => 'أدخل الصيغة هنا',
'math_tip' => 'صيغة رياضية (لا تك)',
'prefs-math' => 'رياضيات',
'mw_math_png' => 'دائما اعرض على هيئة PNG',
'mw_math_source' => 'اعرض على هيئة TeX (للمتصفحات النصية)',
'math_failure' => 'خطأ رياضيات',
'math_unknown_error' => 'خطأ غير معروف',
'math_unknown_function' => 'وظيفة غير معروفة', # Fuzzy
'math_lexing_error' => 'خطأ في الصيغة',
'math_syntax_error' => 'خطأ في الصياغة',
'math_image_error' => 'فشل التحويل إلى صيغة PNG؛ تحقق من تثبيت كل من Latex و dvipng (أو dvips + gs + محول)',
'math_bad_tmpdir' => 'لا يمكن الكتابة إلى أو إنشاء مجلد الرياضيات المؤقت',
'math_bad_output' => 'لا يمكن الكتابة إلى أو إنشاء مجلد الخرج للرياضيات',
'math_notexvc' => 'مفقود texvc executable؛
من فضلك انظر math/README للضبط.',
);
/** Aramaic (ܐܪܡܝܐ)
* @author Basharh
*/
$messages['arc'] = array(
'prefs-math' => 'ܡܬܡܐܛܝܩܘܬܐ',
'math_unknown_error' => 'ܦܘܕܐ ܠܐ ܝܕܝܥܐ',
);
/** Moroccan Spoken Arabic (Maġribi)
* @author Enzoreg
* @author Zanatos
*/
$messages['ary'] = array(
'math_sample' => 'Kṫeb ĝalaqa de l-mat hnaya',
'math_tip' => 'Ĝalaqa de l-mat (LaTeX)',
'prefs-math' => 'mat',
'mw_math_png' => 'dima biyn bhal PNG',
'math_failure' => 'khata flmat',
'math_unknown_error' => 'khat mjhol',
'math_unknown_function' => 'wadifa mjhola', # Fuzzy
'math_lexing_error' => 'khata fsigha',
'math_syntax_error' => 'khata fsiyagha',
);
/** Egyptian Spoken Arabic (مصرى)
* @author Ghaly
* @author Meno25
* @author Ramsis II
*/
$messages['arz'] = array(
'math_sample' => 'اكتب المعادله هنا',
'math_tip' => 'معادله رياضيه (لا تكس )',
'prefs-math' => 'رياضة',
'mw_math_png' => 'دايما اعرض PNG',
'mw_math_source' => 'اعرض على هيئة TeX (للبراوزرات النصية)',
'math_failure' => 'الاعراب فشل',
'math_unknown_error' => 'غلط مش معروف',
'math_unknown_function' => 'وظيفة مش معروفة', # Fuzzy
'math_lexing_error' => 'غلط فى الكلمة',
'math_syntax_error' => 'غلط فى تركيب الجملة',
'math_image_error' => 'فشل التحويل لـ PNG ؛
اتاكد من التثبيت المضبوط لـ :Latex و dvips و gs و convert.', # Fuzzy
'math_bad_tmpdir' => 'مش ممكن الكتابة أو انشاء مجلد الرياضة الموؤقت',
'math_bad_output' => 'مش ممكن الكتابة لـ أو إنشاء مجلد الخرج للرياضيات',
'math_notexvc' => 'ضايعtexvc executable ؛ لو سمحت شوفmath/README للضبط.',
);
/** Assamese (অসমীয়া)
* @author Chaipau
* @author Gitartha.bordoloi
* @author Rajuonline
*/
$messages['as'] = array(
'math_sample' => 'ইয়াত গণিতীয় সুত্ৰ সুমুৱাওক',
'math_tip' => 'গণিতীয় সুত্ৰ (LaTeX)',
'prefs-math' => 'গণিত',
'math_failure' => 'পাৰ্চ কৰিব অসমৰ্থ',
'math_unknown_error' => 'অপৰিচিত সমস্যা',
'math_unknown_function' => 'অজ্ঞাত কাৰ্য্য', # Fuzzy
'math_syntax_error' => 'চীন্টেক্স ত্ৰুটি',
);
/** Asturian (asturianu)
* @author Esbardu
* @author Xuacu
*/
$messages['ast'] = array(
'math-desc' => 'Dibuxa les fórmules matemátiques ente les etiquetes <code><math></code> ... <code></math></code>',
'math_sample' => 'Inxertar fórmula equí',
'math_tip' => 'Fórmula matemática',
'prefs-math' => 'Fórmules matemátiques',
'mw_math_png' => 'Renderizar siempre PNG',
'mw_math_source' => 'Dexalo como TeX (pa navegadores de testu)',
'mw_math_mathjax' => 'MathJax (esperimental; lo meyor pa la mayoría de navegadores)',
'mw_math_latexml' => 'LaTeXML (esperimental; usa MathML)',
'math_failure' => 'Fallu al revisar la fórmula',
'math_unknown_error' => 'error desconocíu',
'math_unknown_function' => "función '$1' desconocida",
'math_lexing_error' => 'Error lléxicu',
'math_syntax_error' => 'error de sintaxis',
'math_image_error' => 'Falló la conversión PNG; comprueba que tea bien la instalación de latex y dvipng (o dvips + gs + convert)',
'math_bad_tmpdir' => "Nun se pue escribir o crear el direutoriu temporal 'math'",
'math_bad_output' => "Nun se pue escribir o crear el direutoriu de salida 'math'",
'math_notexvc' => "Falta l'executable 'texvc'; por favor mira 'math/README' pa configuralo.",
'math_output_error' => 'Nun pue guardase la imaxe matemática nel sistema de ficheros.',
'math_latexml_timeout' => "Tiempu escosáu de LaTeXML dende '$1'",
'math_latexml_invalidresponse' => "Rempuesta inválida de LaTeXML ('$2') dende'l sirvidor '$1':",
'math_latexml_invalidxml' => 'El MathML de LaTeXML ye XML inválidu.',
'math_latexml_invalidjson' => 'La rempuesta del sirvidor LaTeXML ye JSON inválidu.',
'math_latexml_xmlversion' => 'Atención: ¡Saltóse la comprobación del tipu XML! Compruebe si la instalación de MediaWiki ye la versión wmf/1.22wmf7 o posterior.',
);
/** Avaric (авар)
* @author Amire80
*/
$messages['av'] = array(
'math_unknown_error' => 'Лъалареб гъалатӀ',
);
/** Kotava (Kotava)
*/
$messages['avk'] = array(
'math_sample' => 'Va rinaf tazukoy batliz cenkal',
'math_tip' => 'Solokseropaf tazukoy (LaTeX)',
'prefs-math' => 'Rendu des maths',
'mw_math_png' => 'Toujours produire une image PNG',
'mw_math_source' => 'Laisser le code TeX original',
'math_failure' => 'Erreur math',
'math_unknown_error' => 'erreur indéterminée',
'math_unknown_function' => 'megrupen fliok', # Fuzzy
'math_lexing_error' => 'ravlemafa rokla',
'math_syntax_error' => 'erurafa rokla',
'math_image_error' => "La conversion en PNG a échouée, vérifiez l'installation de Latex, dvips, gs et convert", # Fuzzy
'math_bad_tmpdir' => 'Redura ik sutera ko ugaloraxo tid merotisa',
'math_bad_output' => 'Redura ik sutera ko divaxo tid merotisa',
'math_notexvc' => "L'éxécutable « texvc » est introuvable. Lisez math/README pour le configurer.",
);
/** Azerbaijani (azərbaycanca)
* @author PrinceValiant
*/
$messages['az'] = array(
'math_sample' => 'Riyazi formulu bura yazın',
'math_tip' => 'Riyazi formul (LaTeX formatı)',
'prefs-math' => 'Riyaziyyat',
'mw_math_png' => 'Həmişə PNG formatında göstər',
'mw_math_source' => 'TeX kimi saxla (mətn brouzerləri üçün)',
'math_unknown_error' => 'bilinməyən xəta',
'math_unknown_function' => 'bilinməyən funksiya', # Fuzzy
'math_syntax_error' => 'sintaksis xətası',
);
/** South Azerbaijani (تورکجه)
* @author Ebrahimi-amir
*/
$messages['azb'] = array(
'prefs-math' => 'ریاضیات گؤستریشی',
'mw_math_png' => 'بوتونلوکله PNG چکیلسین',
'mw_math_source' => 'TeX قالیبینده قالسین (یازی بروزرلر اوچون)',
'mw_math_mathjax' => 'MathJax (آزمایشی؛ چوخونلوق بروزئرلراوچون ان یاخشیسی)',
);
/** Bashkir (башҡортса)
* @author Assele
* @author Haqmar
* @author Рустам Нурыев
*/
$messages['ba'] = array(
'math_sample' => 'Формуланы бында керетегеҙ',
'math_tip' => 'Математик формула (LaTeX форматы)',
'prefs-math' => 'Формулалар',
'mw_math_png' => 'Һәр ваҡыт PNG яһа',
'mw_math_source' => 'ТеХ форматында ҡалдырырға (текст браузерҙары өсөн)',
'math_failure' => 'Уҡып булмай',
'math_unknown_error' => 'билдәһеҙ хата',
'math_unknown_function' => 'билдәһеҙ функция', # Fuzzy
'math_lexing_error' => 'лексик хата',
'math_syntax_error' => 'синтаксик хата',
'math_image_error' => 'PNG яһау хатаһы.
latex һәм dvipng (йәки dvips + gs + convert) дөрөҫ ҡуйылыуын тикшерегеҙ.',
'math_bad_tmpdir' => 'Ваҡытлы математика директорияһы булдырып йәки директорияға яҙҙырып булмай',
'math_bad_output' => 'Математика директорияһы булдырып йәки директорияға яҙҙырып булмай',
'math_notexvc' => 'Башҡарыла торған texvc файлы юҡ. Көйләүҙәр буйынса белешмәне — math/README уҡығыҙ.',
);
/** Bavarian (Boarisch)
* @author Mucalexx
*/
$messages['bar'] = array(
'math_sample' => 'Formel dodan aifyng',
'math_tip' => 'Mathematische Formel (LaTeX)',
'math_unknown_function' => 'Unbekannte Funktion', # Fuzzy
);
/** Southern Balochi (بلوچی مکرانی)
* @author Mostafadaneshvar
*/
$messages['bcc'] = array(
'math_sample' => 'فرمول اداں وارد کن',
'math_tip' => 'فرمول ریاضی (LaTeX)',
'prefs-math' => 'ریاضی',
'mw_math_png' => 'یکسره PNG تحویل دی',
'mw_math_source' => 'آیء په داب TeX بل (په بروززان متنی)',
'math_failure' => 'تجزیه پروش وارت',
'math_unknown_error' => 'ناشناسین حطا',
'math_unknown_function' => 'ناشناس عملگر', # Fuzzy
'math_lexing_error' => 'حطا نوشتاری',
'math_syntax_error' => 'حطا ساختار',
'math_image_error' => 'بدل کتن PNGپروش وارت;
کنترل کنیت په نصب latex, dvips, gs, و convert', # Fuzzy
'math_bad_tmpdir' => 'نه نونیت بنویسیت یا مسیر غیر دایمی ریاضی شرکنت',
'math_bad_output' => 'نه تونیت بنویسیت یا مشیر خروجی ریاضی شرکنت.',
'math_notexvc' => 'ترکیب کتن texvc قابل اجرا;
لطفا بچار math/README په تنظیم کتن.',
);
/** Bikol Central (Bikol Central)
* @author Filipinayzd
* @author Steven*fung
*/
$messages['bcl'] = array(
'math_sample' => 'Isaliôt an pormula digdi',
'math_tip' => 'Pórmulang matemátika (LaTeX)',
'prefs-math' => 'Mat',
'mw_math_png' => 'Itaô pirmi an PNG',
'mw_math_source' => "Pabayaan na bilang TeX (para sa mga ''browser'' na teksto)",
'math_failure' => 'Nagprakaso an pagatíd-atíd',
'math_unknown_error' => 'dai aram an salâ',
'math_unknown_function' => 'Dai aram an gamit', # Fuzzy
'math_lexing_error' => 'may salâ sa analisador léxico',
'math_syntax_error' => 'may salâ sa analisador nin sintaksis',
'math_image_error' => 'Nagprakaso an konbersyon kan PNG; sosogon tabî an pagkaag nin latex, dvips, gs, asin ikonbertir', # Fuzzy
'math_bad_tmpdir' => 'Dai masuratan o magibo an direktoryo nin mat temp',
'math_bad_output' => 'Dai masuratan o magibo an direktoryo kan salida nin math',
'math_notexvc' => 'May nawawarang texvc na ehekutable; hilingón tabî an mat/README para makonpigurar.',
);
/** Belarusian (беларуская)
* @author Mienski
* @author Yury Tarasievich
*/
$messages['be'] = array(
'math_sample' => 'Уставіць формулу тут',
'math_tip' => 'Матэматычная формула (LaTeX)',
'prefs-math' => 'Матэматыка',
'mw_math_png' => 'Заўсёды вырабляць PNG',
'mw_math_source' => 'Пакідаць у выглядзе TeX (для тэкставых браўзераў)',
'math_failure' => 'Не ўдалося разабраць',
'math_unknown_error' => 'невядомая памылка',
'math_unknown_function' => 'невядомая функцыя', # Fuzzy
'math_lexing_error' => 'лексічная памылка',
'math_syntax_error' => 'памылка сінтаксісу',
'math_image_error' => 'Не ўдалося ператварыць PNG; праверце правільнасць устаноўкі пакетаў latex і dvipng (або dvips і gs і convert)',
'math_bad_tmpdir' => 'Немагчыма запісаць у або стварыць тымчасовы каталог для матэматыкі',
'math_bad_output' => 'Немагчыма запісаць у або стварыць выводны каталог для матэматыкі',
'math_notexvc' => 'Не знойдзены выканальны модуль texvc; аб яго настаўленнях чытайце ў math/README.',
);
/** Belarusian (Taraškievica orthography) (беларуская (тарашкевіца))
* @author EugeneZelenko
* @author Jim-by
* @author Wizardist
*/
$messages['be-tarask'] = array(
'math-desc' => 'Выводзіць матэматычныя формулы, запісаныя паміж тэгамі <code><math></code> і <code></math></code>',
'math_sample' => 'Зьмясьціце тут формулу',
'math_tip' => 'Матэматычная формула (LaTeX)',
'prefs-math' => 'Матэматычныя формулы',
'mw_math_png' => 'Заўсёды паказваць як PNG',
'mw_math_source' => 'Пакідаць у выглядзе TeX (для тэкставых браўзэраў)',
'mw_math_mathjax' => 'MathJax (экспэрымэнтальна; найлепей для большасьці браўзэраў)',
'mw_math_latexml' => 'LaTeXML (экспэрымэнтальна; ужывае MathML)',
'math_failure' => 'Немагчыма разабраць',
'math_unknown_error' => 'невядомая памылка',
'math_unknown_function' => "невядомая функцыя '$1'",
'math_lexing_error' => 'лексычная памылка',
'math_syntax_error' => 'сынтаксычная памылка',
'math_image_error' => 'Памылка пераўтварэньня ў фармат PNG;
праверце слушнасьць усталяваньня latex, dvips (ці dvips + gs + convert)',
'math_bad_tmpdir' => 'Немагчыма запісаць ці стварыць часовую дырэкторыю для матэматыкі',
'math_bad_output' => 'Немагчыма запісаць ці стварыць выходную матэматычную дырэкторыю',
'math_notexvc' => 'Выканаўчы модуль texvc ня знойдзены.
Калі ласка, прачытайце math/README пра яго канфігурацыю.',
'math_output_error' => 'Не ўдалося захаваць выяву выразу ў файлавай сыстэме.',
);
/** Bulgarian (български)
* @author DCLXVI
*/
$messages['bg'] = array(
'math_sample' => 'Тук въведете формулата',
'math_tip' => 'Математическа формула (LaTeX)',
'prefs-math' => 'Математически формули',
'mw_math_png' => 'Използване винаги на PNG',
'mw_math_source' => 'Оставяне като TeX (за текстови браузъри)',
'math_failure' => 'Неуспех при разбора',
'math_unknown_error' => 'непозната грешка',
'math_unknown_function' => 'непозната функция', # Fuzzy
'math_lexing_error' => 'лексикална грешка',
'math_syntax_error' => 'синтактична грешка',
'math_image_error' => 'Превръщането към PNG не сполучи. Проверете дали latex и dvipng (или dvips + gs + convert) са правилно инсталирани.',
'math_bad_tmpdir' => 'Невъзможно е писането във или създаването на временна директория за математическите операции',
'math_bad_output' => 'Невъзможно е писането във или създаването на изходяща директория за математическите операции',
'math_notexvc' => 'Липсва изпълнимият файл на texvc. Прегледайте math/README за информация относно конфигурирането.',
);
/** Bhojpuri (भोजपुरी)
* @author Ganesh
*/
$messages['bho'] = array(
'math_tip' => 'गणितिय सूत्र (LaTeX)',
'prefs-math' => 'गणित',
);
/** Banjar (Bahasa Banjar)
* @author Ezagren
* @author J Subhi
*/
$messages['bjn'] = array(
'math_sample' => 'Masukakan rumus di sia',
'math_tip' => 'Rumus matamatika (LaTeX)',
'prefs-math' => 'Matik',
);
/** Bengali (বাংলা)
* @author Aftab1995
* @author Bellayet
* @author Zaheen
*/
$messages['bn'] = array(
'math_sample' => 'সূত্র এখানে লিখুন',
'math_tip' => 'গাণিতিক সূত্র (LaTeX)',
'prefs-math' => 'গণিত',
'mw_math_png' => 'সবসময় পিএনজি (PNG) দেখাও',
'mw_math_source' => 'টেক (TeX) আকারে রেখে দাও (টেক্সট ব্রাউজারগুলোর জন্য)',
'math_failure' => 'পার্স করতে ব্যর্থ',
'math_unknown_error' => 'অজানা ত্রুটি',
'math_unknown_function' => "'$1' অজানা ফাংশন",
'math_lexing_error' => 'লেক্সিং ত্রুটি',
'math_syntax_error' => 'সিনট্যাক্স ত্রুটি',
'math_image_error' => 'PNG রূপান্তর ব্যর্থ; latex, dvips, gs, এবং convert ঠিকমত ইন্সটল হয়েছে কি না পরীক্ষা করুন', # Fuzzy
'math_bad_tmpdir' => 'সাময়িক ম্যাথ ডিরেক্টরি সৃষ্টি করতে বা এতে লিখতে পারা যাচ্ছে না।',
'math_bad_output' => 'ম্যাথ আউটপুট ডিরেক্টরি সৃষ্টি করতে বা এতে লিখতে পারা যাচ্ছে না।',
'math_notexvc' => 'texvc executable হারানো গেছে; অনুগ্রহ করে কনফিগার করার জন্য math/README দেখুন।',
);
/** Bishnupria Manipuri (বিষ্ণুপ্রিয়া মণিপুরী)
* @author Usingha
*/
$messages['bpy'] = array(
'math_sample' => 'এহাত সুত্র বরা',
'math_tip' => 'অংকর সুত্র (LaTeX)',
'prefs-math' => 'গণিত',
);
/** Bakhtiari (بختياري)
* @author Behdarvandyani
*/
$messages['bqi'] = array(
'math_sample' => 'فرمول نهادن ایچو',
'math_tip' => 'فرمول ریاضی (LaTeX)',
);
/** Breton (brezhoneg)
* @author Fulup
*/
$messages['br'] = array(
'math_sample' => 'Lakait ho formulenn amañ',
'math_tip' => 'Formulenn jedoniel (LaTeX)',
'prefs-math' => 'Tres jedoniel',
'mw_math_png' => 'Produiñ atav ur skeudenn PNG',
'mw_math_source' => "Leuskel ar c'hod TeX orin",
'math_failure' => 'Fazi jedoniezh',
'math_unknown_error' => 'fazi dianav',
'math_unknown_function' => 'kevreizhenn jedoniel dianav', # Fuzzy
'math_lexing_error' => 'fazi ger',
'math_syntax_error' => 'fazi ereadur',
'math_image_error' => "C'hwitet eo bet an amdroadur PNG; gwiriit eo staliet mat Latex ha devipng (pe dvips, gs ha convert)",
'math_bad_tmpdir' => "N'hall ket krouiñ pe skrivañ er c'havlec'h da c'hortoz",
'math_bad_output' => "N'hall ket krouiñ pe skrivañ er c'havlec'h ermaeziañ",
'math_notexvc' => "N'hall ket an erounezeg 'texvc' bezañ kavet. Lennit math/README evit he c'hefluniañ.",
);
/** Bosnian (bosanski)
* @author CERminator
*/
$messages['bs'] = array(
'math_sample' => 'Unesite formulu ovdje',
'math_tip' => 'Matematička formula (LaTeX)',
'prefs-math' => 'Prikazivanje matematike',
'mw_math_png' => 'Uvijek prikaži kao PNG',
'mw_math_source' => 'Ostavi kao TeX (za tekstualne preglednike)',
'math_failure' => 'Neuspjeh pri parsiranju',
'math_unknown_error' => 'nepoznata greška',
'math_unknown_function' => 'nepoznata funkcija', # Fuzzy
'math_lexing_error' => 'riječnička greška',
'math_syntax_error' => 'sintaksna greška',
'math_image_error' => 'PNG konverzija neuspješna; provjerite tačnu instalaciju latex-a i dvipng-a (ili dvips + gs + convert)',
'math_bad_tmpdir' => 'Ne može se napisati ili napraviti privremeni matematični direktorijum',
'math_bad_output' => 'Ne može se napisati ili napraviti direktorijum za matematični izvještaj.',
'math_notexvc' => 'Nedostaje izvršno texvc; molimo Vas da pogledate math/README da podesite.',
);
/** Catalan (català)
* @author Martorell
* @author SMP
* @author Toniher
* @author Vriullop
*/
$messages['ca'] = array(
'math_sample' => 'Inseriu una fórmula ací',
'math_tip' => 'Fórmula matemàtica (LaTeX)',
'prefs-math' => 'Com es mostren les fórmules',
'mw_math_png' => 'Produeix sempre PNG',
'mw_math_source' => 'Deixa com a TeX (per a navegadors de text)',
'math_failure' => "No s'ha pogut entendre",
'math_unknown_error' => 'error desconegut',
'math_unknown_function' => 'funció desconeguda', # Fuzzy
'math_lexing_error' => 'error de lèxic',
'math_syntax_error' => 'error de sintaxi',
'math_image_error' => 'Hi ha hagut una errada en la conversió a PNG. Verifiqueu la instaŀlació de latex i dvipng (o dvips, gs i convert).',
'math_bad_tmpdir' => 'No ha estat possible crear el directori temporal de math o escriure-hi dins.',
'math_bad_output' => "No ha estat possible crear el directori d'eixida de math o escriure-hi dins.",
'math_notexvc' => "No s'ha trobat el fitxer executable ''texvc''; si us plau, vegeu math/README per a configurar-lo.",
);
/** Min Dong Chinese (Mìng-dĕ̤ng-ngṳ̄)
* @author Yejianfei
*/
$messages['cdo'] = array(
'prefs-math' => '數學',
'math_unknown_error' => '𣍐八其鄭',
'math_unknown_function' => '𣍐八其函數「$1」',
);
/** Chechen (нохчийн)
* @author Sasan700
* @author Умар
*/
$messages['ce'] = array(
'math_sample' => 'Каьчдинарг чудила кхузе',
'math_tip' => 'Матlематlекхиа каьчйар (барам LaTeX)',
'prefs-math' => 'Формулаш гар',
'mw_math_png' => 'Даима генерировать ян PNG',
'mw_math_source' => 'Йита белгалонехь ТеХ (йизан браузершан)',
'mw_math_mathjax' => 'MathJax (экспериментальни опци, дукху йолчу браузершан)',
);
/** Cebuano (Cebuano)
* @author Jordz
*/
$messages['ceb'] = array(
'math_sample' => 'I-insert dinhi ang formula',
'math_tip' => 'Mathematical formula (LaTeX)',
'prefs-math' => 'Math',
);
/** Chamorro (Chamoru)
* @author Gadao01
*/
$messages['ch'] = array(
'math_sample' => "Po'lo i fotmula mågi",
'math_tip' => 'Fotmulan matematika (LaTeX)',
'prefs-math' => 'Math',
'math_failure' => 'Lachi ma parse',
'math_unknown_error' => "linachi ti matungo'",
'math_unknown_function' => "fonksion ti matungo'", # Fuzzy
'math_lexing_error' => 'linachi lexing',
'math_syntax_error' => 'linachi syntax',
);
/** Sorani Kurdish (کوردی)
* @author Arastein
* @author Asoxor
* @author Calak
* @author Marmzok
*/
$messages['ckb'] = array(
'math_sample' => 'فۆرموول لێرە بنووسە',
'math_tip' => 'فۆرموولی بیرکاری (LaTeX)',
'prefs-math' => 'بیرکاری',
'mw_math_png' => 'ھەموو جارێک وەک PNG نیشان بدە',
'mw_math_source' => 'وەک TeX بمێنێتەوە (بۆ وێبگەڕە دەقییەکان)',
'mw_math_mathjax' => 'MathJax (بۆ ئەزموون؛ باشترین بۆ زۆربەی وێبگەڕەکان)',
'math_unknown_error' => 'هەڵەیەکی نەزانراو',
'math_unknown_function' => 'فەرمانێکی نەناسراو', # Fuzzy
'math_syntax_error' => 'ڕستەکار هەڵەیە',
);
/** Corsican (corsu)
*/
$messages['co'] = array(
'prefs-math' => 'Matematica',
'math_syntax_error' => 'errore di sintassa',
);
/** Capiznon (Capiceño)
* @author Oxyzen
*/
$messages['cps'] = array(
'math_sample' => 'Isulod ang diya pormula',
'math_tip' => 'Pormula nga pangmatematika (LaTeX)',
);
/** Crimean Turkish (Cyrillic script) (къырымтатарджа (Кирилл))
* @author Don Alessandro
*/
$messages['crh-cyrl'] = array(
'math_sample' => 'Бу ерге формуланы кирсетинъиз',
'math_tip' => 'Риязий (математик) формула (LaTeX форматында)',
'prefs-math' => 'Риязий (математик) ишаретлер',
'mw_math_png' => 'Даима PNG ресим форматына чевир',
'mw_math_source' => 'Денъиштирмеден TeX оларакъ ташла (метин темелли браузерлер ичюн)',
'math_failure' => 'Айырыштырыламды',
'math_unknown_error' => 'билинмеген хата',
'math_unknown_function' => 'бельгисиз функция', # Fuzzy
'math_lexing_error' => 'лексик хата',
'math_syntax_error' => 'синтаксис хатасы',
);
/** Crimean Turkish (Latin script) (qırımtatarca (Latin))
* @author Don Alessandro
*/
$messages['crh-latn'] = array(
'math_sample' => 'Bu yerge formulanı kirsetiñiz',
'math_tip' => 'Riyaziy (matematik) formula (LaTeX formatında)',
'prefs-math' => 'Riyaziy (matematik) işaretler',
'mw_math_png' => 'Daima PNG resim formatına çevir',
'mw_math_source' => 'Deñiştirmeden TeX olaraq taşla (metin temelli brauzerler içün)',
'math_failure' => 'Ayırıştırılamadı',
'math_unknown_error' => 'bilinmegen hata',
'math_unknown_function' => 'belgisiz funktsiya', # Fuzzy
'math_lexing_error' => 'leksik hata',
'math_syntax_error' => 'sintaksis hatası',
);
/** Czech (česky)
* @author Danny B.
* @author Mormegil
*/
$messages['cs'] = array(
'math-desc' => 'Vykresluje matematické vzorce vyznačené pomocí <code><math></code> … <code></math></code>',
'math_sample' => 'Vložit sem vzorec',
'math_tip' => 'Matematický vzorec (LaTeX)',
'prefs-math' => 'Matematika',
'mw_math_png' => 'Vždy jako PNG',
'mw_math_source' => 'Ponechat jako TeX (pro textové prohlížeče)',
'mw_math_mathjax' => 'MathJax (experimentální; pro většinu prohlížečů nejlepší)',
'mw_math_latexml' => 'LaTeXML (experimentální; používá MathML)',
'math_failure' => 'Nelze pochopit',
'math_unknown_error' => 'neznámá chyba',
'math_unknown_function' => 'neznámá funkce „$1“',
'math_lexing_error' => 'chyba při lexingu',
'math_syntax_error' => 'syntaktická chyba',
'math_image_error' => 'Selhala konverze do PNG; zkontrolujte správnou instalaci latexu a dvipng (nebo dvips + gs + convert)',
'math_bad_tmpdir' => 'Nelze zapsat nebo vytvořit dočasný adresář pro matematiku',
'math_bad_output' => 'Nelze zapsat nebo vytvořit adresář pro výstup matematiky',
'math_notexvc' => 'Chybí spustitelný texvc; podívejte se prosím do math/README na konfiguraci.',
'math_output_error' => 'Matematický obrázek nelze uložit do souborového systému.',
'math_latexml_timeout' => 'Vypršel časový limit LaTeXML z „$1“',
'math_latexml_invalidresponse' => 'Neplatná odpověď LaTeXML („$2“) od serveru „$1“:',
'math_latexml_invalidxml' => 'MathML z LaTeXML není platné XML.',
'math_latexml_invalidjson' => 'Odpověď LaTeXML Serveru není platný JSON.',
'math_latexml_xmlversion' => 'Upozornění: Kontrola XML typu přeskočena! Zkontrolujte, zda je vaše instalace MediaWiki verze wmf/1.22wmf7 nebo novější.',
);
/** Kashubian (kaszëbsczi)
* @author Kaszeba
* @author Warszk
*/
$messages['csb'] = array(
'math_sample' => 'Wstôwi tuwò fòrmùłã',
'math_tip' => 'Matematicznô fòrmùła (LaTeX)',
'prefs-math' => 'Matematika',
'mw_math_png' => 'Wiedno wëskrzëniwôj jakno PNG',
'mw_math_source' => 'Òstawi jakno TeX (dlô tekstowich przezérników)',
'math_failure' => 'Parser nie rozmiôł rozpòznac',
);
/** Church Slavic (словѣ́ньскъ / ⰔⰎⰑⰂⰡⰐⰠⰔⰍⰟ)
* @author ОйЛ
*/
$messages['cu'] = array(
'math_tip' => 'маѳиматїчьна формоула (LaTeX)',
);
/** Chuvash (Чӑвашла)
* @author PCode
*/
$messages['cv'] = array(
'math_sample' => 'Формулăна кунта кĕртĕр',
'math_tip' => 'Математика формули (LaTeX форматпа)',
'mw_math_png' => 'Яланах PNG хатĕрлемелле',
'math_syntax_error' => 'синтаксис йăнăшĕ',
);
/** Welsh (Cymraeg)
* @author Lloffiwr
*/
$messages['cy'] = array(
'math-desc' => 'Arddangos fformwla mathemategol rhwng y tagiau <code><math></code> ... <code></math></code>',
'math_sample' => 'Gosodwch fformwla yma',
'math_tip' => 'Fformwla mathemategol (LaTeX)',
'prefs-math' => 'Mathemateg',
'mw_math_png' => 'Arddangos symbolau mathemateg fel delwedd PNG bob amser',
'mw_math_source' => 'Gadewch fel côd TeX (ar gyfer porwyr testun)',
'mw_math_mathjax' => "MathJax (arbrofol; yn orau i'r mwyafrif o borwyr)",
'math_failure' => 'Wedi methu dosrannu',
'math_unknown_error' => 'gwall anhysbys',
'math_unknown_function' => "ffwythiant anhysbys, '$1'",
'math_lexing_error' => 'gwall lecsio',
'math_syntax_error' => 'gwall cystrawen',
'math_image_error' => "Trosiad PNG wedi methu; gwiriwch fod latex a dvips (neu dvips + gs + convert) wedi'u gosod yn gywir cyn trosi.",
'math_bad_tmpdir' => 'Yn methu creu cyfeiriadur mathemateg dros dro, nac ysgrifennu iddo',
'math_bad_output' => 'Yn methu creu cyfeiriadur allbwn mathemateg nac ysgrifennu iddo',
'math_notexvc' => 'Rhaglen texvc yn eisiau; gwelwch math/README er mwyn ei chyflunio.',
);
/** Danish (dansk)
* @author Nghtwlkr
* @author Peter Alberti
*/
$messages['da'] = array(
'math-desc' => 'Gengiver matematiske formler inden i <code><math></code> … <code></math></code>-tags',
'math_sample' => 'Indsæt formel her (LaTeX)',
'math_tip' => 'Matematisk formel (LaTeX)',
'prefs-math' => 'Matematiske formler',
'mw_math_png' => 'Vis altid som PNG',
'mw_math_source' => 'Lad være som TeX (for tekstbrowsere)',
'mw_math_mathjax' => 'MathJax (på forsøgsstadiet; virker bedst for mange browsere)',
'math_failure' => 'Fejl i matematikken',
'math_unknown_error' => 'ukendt fejl',
'math_unknown_function' => 'ukendt funktion', # Fuzzy
'math_lexing_error' => 'lexerfejl',
'math_syntax_error' => 'syntaksfejl',
'math_image_error' => 'PNG-konvertering mislykkedes; undersøg om latex og dvipng (eller dvips + gs + convert) er installeret korrekt',
'math_bad_tmpdir' => 'Kan ikke skrive til eller oprette temp-mappe til math',
'math_bad_output' => 'Kan ikke skrive til eller oprette uddata-mappe til math',
'math_notexvc' => 'Manglende eksekvérbar texvc; se math/README for opsætningsoplysninger.',
);
/** German (Deutsch)
* @author Kghbln
* @author Metalhead64
* @author Revolus
* @author Umherirrender
*/
$messages['de'] = array(
'math-desc' => 'Ergänzt das Tag <code><math></code> zum Darstellen mathematischer Formeln',
'math_sample' => 'Formel hier einfügen',
'math_tip' => 'Mathematische Formel (LaTeX)',
'prefs-math' => 'Mathematische Formeln',
'mw_math_png' => 'Immer als PNG darstellen',
'mw_math_source' => 'Als TeX belassen (für Textbrowser)',
'mw_math_mathjax' => 'MathJax (experimentell; für alle Browser geeignet)',
'mw_math_latexml' => 'LaTeXML (experimentell; verwendet MathML)',
'math_failure' => 'Fehler beim Parsen',
'math_unknown_error' => 'Unbekannter Fehler',
'math_unknown_function' => 'Unbekannte Funktion „$1“',
'math_lexing_error' => 'Lexikalischer Fehler',
'math_syntax_error' => 'Syntaxfehler',
'math_image_error' => 'PNG-Konvertierung fehlgeschlagen. Bitte die korrekte Installation von LaTeX und dvipng überprüfen (oder dvips + gs + convert)',
'math_bad_tmpdir' => 'Das temporäre Verzeichnis für mathematische Formeln kann nicht angelegt oder beschrieben werden.',
'math_bad_output' => 'Das Ausgabeverzeichnis für mathematische Formeln kann nicht angelegt oder beschrieben werden.',
'math_notexvc' => 'Das texvc-Programm wurde nicht gefunden. Bitte zur Konfiguration die Hinweise in der Datei math/README beachten.',
'math_output_error' => 'Das Formelbild kann auf dem Dateisystem nicht gespeichert werden.',
'math_latexml_timeout' => 'LaTeXML Zeitüberschreitung von „$1“',
'math_latexml_invalidresponse' => 'LaTeXML Ungültige Antwort („$2“) von Server „$1“:',
'math_latexml_invalidxml' => 'LaTeXML MathML ist ungültiges XML.',
'math_latexml_invalidjson' => 'LaTeXML Serverantwort ist ungültiges JSON.',
'math_latexml_xmlversion' => 'Warnung: Die XML-Typ-Überprüfung wurde übersprungen! Überprüfe, ob die Version deiner MediaWiki-Installation wmf/1.22wmf7 oder neuer ist.',
);
/** Zazaki (Zazaki)
* @author Aspar
* @author Erdemaslancan
* @author Xoser
*/
$messages['diq'] = array(
'math_sample' => 'Formula itiya ra bınus',
'math_tip' => 'Formulayo Matematik (LaTeX)',
'prefs-math' => 'Math',
'mw_math_png' => 'Herzeman PNG render bike',
'mw_math_source' => 'Bi TeX biman (qe nuşte browseroği)',
'math_failure' => 'Parse de ğeleti biyo',
'math_unknown_error' => 'ğeleti nizanyeno',
'math_unknown_function' => 'fonksiyon nizanyeno', # Fuzzy
'math_lexing_error' => 'ğeleto lexing',
'math_syntax_error' => 'ğeleto sintaks',
'math_image_error' => 'Açarnayışê PNG nêbı;programan de latex, dvips u gs ra rast barbıyayışi ra emel bê u karfinayışê açarnayışi dest pêkerê.',
'math_bad_tmpdir' => 'Nieşkeno binusi ya zi direktorê mathi virazi',
'math_bad_output' => 'Nieşkeno binusi ya zi direktorê mathi ye outputi virazi',
'math_notexvc' => "xebetnayekarê texvc'i vindbiyo
qey 'eyar kerdışi bıewnê math/README'yi.",
);
/** Lower Sorbian (dolnoserbski)
* @author Michawiki
* @author Nepl1
* @author Pe7er
* @author Qualia
*/
$messages['dsb'] = array(
'math-desc' => 'Dodawa matematiske formule mjazy toflickoma <code><math></code> ... <code></math></code>',
'math_sample' => 'Zapódaj how formulu',
'math_tip' => 'Matematiska formula (LaTeX)',
'prefs-math' => 'Math',
'mw_math_png' => 'Pśecej ako PNG zwobrazniś.',
'mw_math_source' => 'Ako TeX wóstajiś (za tekstowe browsery)',
'mw_math_mathjax' => 'MathJax (eksperimentelny; pśigódny za nejwěcej wobglědowakow)',
'math_failure' => 'Zmólka',
'math_unknown_error' => 'njeznata zmólka',
'math_unknown_function' => 'njeznata funkcija', # Fuzzy
'math_lexing_error' => 'leksikaliska zmólka',
'math_syntax_error' => 'syntaktiska zmólka',
'math_image_error' => 'PNG-konwertěrowanje njejo se raźiło; pśekontrolěruj korektnu instalaciju latex a dvipng (abo dvips + gs + konwertěruj)',
'math_bad_tmpdir' => 'Njejo móžno temporarny zapisk za matematiske formule załožyś resp. do njogo pisaś.',
'math_bad_output' => 'Njejo móžno celowy zapisk za matematiske formule załožyś resp. do njogo pisaś.',
'math_notexvc' => 'Program texvc felujo. Pšosym glědaj do math/README.',
);
/** Central Dusun (Dusun Bundu-liwan)
* @author FRANCIS5091
*/
$messages['dtp'] = array(
'math_sample' => 'Posuango puralanon do hiti',
'math_tip' => 'Karalano monintaban (LaTeX)',
);
/** Dzongkha (ཇོང་ཁ)
* @author Tenzin
*/
$messages['dz'] = array(
'math_sample' => 'ནཱ་ལུ་ ཐབས་རྟགས་བཙུགས།',
'math_tip' => 'ཨང་རྩིས་ཐབས་རྟགས་ (LaTeX)',
);
/** Greek (Ελληνικά)
* @author Badseed
* @author Geraki
*/
$messages['el'] = array(
'math_sample' => 'Εισαγωγή τύπου εδώ',
'math_tip' => 'Μαθηματικός τύπος (LaTeX)',