-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSemanticMaps.i18n.php
More file actions
1747 lines (1657 loc) · 111 KB
/
SemanticMaps.i18n.php
File metadata and controls
1747 lines (1657 loc) · 111 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Internationalization file for the Semantic Maps extension
*
* @file SemanticMaps.i18n.php
* @ingroup Semantic Maps
*
* @licence GNU GPL v2+
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
*/
$messages = array();
/** English
* @author Jeroen De Dauw
* @author Karsten Hoffmeyer (kghbln)
*/
$messages['en'] = array(
// General
'semanticmaps-desc' => "Provides the ability to view and edit coordinate data stored with the Semantic MediaWiki extension ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps more info...])",
'semanticmaps-unrecognizeddistance' => 'The value $1 is not a valid distance.',
'semanticmaps-kml-link' => 'View the KML file',
'semanticmaps-kml' => 'KML',
'semanticmaps-default-kml-pagelink' => 'View page $1',
'semanticmaps-latitude' => 'Latitude: $1',
'semanticmaps-longitude' => 'Longitude: $1',
'semanticmaps-altitude' => 'Altitude: $1',
// Forms
'semanticmaps-loading-forminput' => 'Loading map form input...',
'semanticmaps_lookupcoordinates' => 'Look up coordinates',
'semanticmaps_enteraddresshere' => 'Enter address here',
'semanticmaps-updatemap' => 'Update map',
'semanticmaps-forminput-remove' => 'Remove',
'semanticmaps-forminput-add' => 'Add',
'semanticmaps-forminput-locations' => 'Locations',
// Parameter descriptions
'semanticmaps-par-staticlocations' => 'A list of locations to add to the map together with the queried data. Like with display_points, you can add a title, description and icon per location using the tilde "~" as separator.',
'semanticmaps-par-forceshow' => 'Show the map even when there are no locations to display?',
'semanticmaps-par-showtitle' => 'Show a title in the marker info window or not. Disabling this is often useful when using a template to format the info window content.',
'semanticmaps-par-hidenamespace' => 'Show the namespace title in the marker info window',
'semanticmaps-par-centre' => 'The center of the map. When not provided, the map will automatically pick the optimal center to display all markers on the map.',
'semanticmaps-par-template' => 'A template to use to format the info window contents.',
'semanticmaps-par-geocodecontrol' => 'Show the geocoding control.',
'semanticmaps-kml-text' => 'The text associated with each page. Overridden by the additional queried properties if any.',
'semanticmaps-kml-title' => 'The default title for results',
'semanticmaps-kml-linkabsolute' => 'Should links be absolute (as opposed to relative)',
'semanticmaps-kml-pagelinktext' => 'The text to use for the links to the page, in which $1 will be replaced by the page title',
//Validation Errors
'semanticmaps-shapes-improperformat' => 'Improper formatting of $1. Please see documentation for formatting',
'semanticmaps-shapes-missingshape' => 'No shapes found for $1. Please see documentation for available shapes',
);
/** Message documentation (Message documentation)
* @author EugeneZelenko
* @author Fryed-peach
* @author Lloffiwr
* @author Purodha
* @author Raymond
* @author Shirayuki
* @author Umherirrender
*/
$messages['qqq'] = array(
'semanticmaps-desc' => '{{desc|name=Semantic Maps|url=http://www.mediawiki.org/wiki/Extension:Semantic_Maps}}',
'semanticmaps-unrecognizeddistance' => 'Used as error message. Parameters:
* $1 - distance',
'semanticmaps-kml' => '{{optional}}',
'semanticmaps-default-kml-pagelink' => 'Parameters:
* $1 - probably a page title
{{Identical|View page}}',
'semanticmaps-latitude' => 'Parameters:
* $1 - latitude
See also:
* {{msg-mw|Semanticmaps-longitude}}
* {{msg-mw|Semanticmaps-altitude}}
{{Identical|Latitude}}',
'semanticmaps-longitude' => 'Parameters:
* $1 - longitude
See also:
* {{msg-mw|Semanticmaps-latitude}}
* {{msg-mw|Semanticmaps-altitude}}
{{Identical|Longitude}}',
'semanticmaps-altitude' => 'Parameters:
* $1 - altitude
See also:
* {{msg-mw|Semanticmaps-latitude}}
* {{msg-mw|Semanticmaps-longitude}}',
'semanticmaps-loading-forminput' => 'Message displayed during a computer action',
'semanticmaps_lookupcoordinates' => 'Submit button next to input box. The box contains the hint {{msg-mw|Semanticmaps_enteraddresshere}}',
'semanticmaps_enteraddresshere' => 'Hint provided in an input box. The submit button next to the input box is {{msg-mw|Semanticmaps_lookupcoordinates}}',
'semanticmaps-updatemap' => 'Submit button label',
'semanticmaps-forminput-remove' => '{{Identical|Remove}}',
'semanticmaps-forminput-add' => '{{Identical|Add}}',
'semanticmaps-forminput-locations' => '{{Identical|Location}}',
'semanticmaps-kml-pagelinktext' => 'Used as description for "pagelinktext".
See also:
* {{msg-mw|semanticmaps-default-kml-pagelink}}',
'semanticmaps-shapes-improperformat' => 'Message displayed when the wikitext formatting of a shape is erroneous',
'semanticmaps-shapes-missingshape' => 'Message displayed when there is no such defined shape as $1',
);
/** Afrikaans (Afrikaans)
* @author Naudefj
*/
$messages['af'] = array(
'semanticmaps-desc' => 'Bied die vermoë om koördinaatdata met behulp van die Semantiese MediaWiki-uitbreiding te sien en te wysig ([https://mapping.referata.com/wiki/Examples demo]).', # Fuzzy
'semanticmaps-unrecognizeddistance' => 'Die waarde "$1" is nie \'n geldige afstand nie.',
'semanticmaps_lookupcoordinates' => 'Soek koördinate op',
'semanticmaps_enteraddresshere' => 'Voer adres hier in',
);
/** Arabic (العربية)
* @author Meno25
* @author OsamaK
*/
$messages['ar'] = array(
'semanticmaps-desc' => 'يقدم إمكانية عرض وتعديل بيانات التنسيق التي خزنها امتداد سيمانتيك ميدياويكي ([https://mapping.referata.com/wiki/Examples تجربة]).', # Fuzzy
'semanticmaps-kml' => 'كيه إم إل',
'semanticmaps_lookupcoordinates' => 'ابحث عن الإحداثيات',
'semanticmaps_enteraddresshere' => 'أدخل العنوان هنا',
'semanticmaps-forminput-remove' => 'أزل',
'semanticmaps-forminput-add' => 'أضف',
);
/** Egyptian Spoken Arabic (مصرى)
* @author Ghaly
* @author Meno25
*/
$messages['arz'] = array(
'semanticmaps_lookupcoordinates' => 'ابحث عن الإحداثيات',
'semanticmaps_enteraddresshere' => 'أدخل العنوان هنا',
);
/** Asturian (asturianu)
* @author Xuacu
*/
$messages['ast'] = array(
'semanticmaps-desc' => 'Ufre la capacidá de ver y editar los datos de coordenaes guardaos cola estensión Semantic MediaWiki ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps más información...]).',
'semanticmaps-unrecognizeddistance' => 'El valor $1 nun ye una distancia válida.',
'semanticmaps-kml-link' => 'Ver el ficheru KML',
'semanticmaps-default-kml-pagelink' => 'Ver la páxina "$1"',
'semanticmaps-latitude' => 'Llatitú: $1',
'semanticmaps-longitude' => 'Llonxitú: $1',
'semanticmaps-altitude' => 'Altitú: $1',
'semanticmaps-loading-forminput' => "Cargando'l formulariu d'entrada del mapa...",
'semanticmaps_lookupcoordinates' => 'Consultar les coordenaes',
'semanticmaps_enteraddresshere' => 'Escribi la direición equí',
'semanticmaps-updatemap' => 'Anovar el mapa',
'semanticmaps-forminput-remove' => 'Desaniciar',
'semanticmaps-forminput-add' => 'Amestar',
'semanticmaps-forminput-locations' => 'Llugares',
'semanticmaps-par-staticlocations' => 'Llista de llugares p\'amestar al mapa xunto colos datos consultaos. Como con display_points, pues amestar un títulu, una descripción y un iconu pa cada llugar usando\'l signu "~" como separador.',
'semanticmaps-par-forceshow' => "¿Ver el mapa tamién cuando nun hai llugares qu'amosar?",
'semanticmaps-par-showtitle' => "Amosar o non un títulu na ventana d'información del marcador. De vezu, desactivalo ye útil cuando s'utiliza una plantía pa dar formatu al conteníu de la ventana d'información.",
'semanticmaps-par-hidenamespace' => "Amosar o non el títulu del espaciu de nomes na ventana d'información del marcador.",
'semanticmaps-par-centre' => "El centru del mapa. Cuando nun se proporciona, el mapa escoyerá automáticamente'l meyor centru p'amosar tolos marcadores del mapa.",
'semanticmaps-par-template' => "Una plantía que s'utiliza pa dar formatu al conteníu de la ventana d'información.",
'semanticmaps-par-geocodecontrol' => 'Amosar el control de xeocodificación.',
'semanticmaps-kml-text' => 'El testu asociáu con cada páxina. Sustituyíu poles otres propiedaes consultaes, si esisten.',
'semanticmaps-kml-title' => 'El títulu predetermináu pa los resultaos',
'semanticmaps-kml-linkabsolute' => 'Si los títulos tienen de ser absolutos o non (esto ye, relativos)',
'semanticmaps-kml-pagelinktext' => 'El testu a usar pa los enllaces a la páxina, onde "$1" se sustituye pol títulu de la páxina',
'semanticmaps-shapes-improperformat' => 'Formatu incorreutu de $1. Por favor, consulta la documentación sobre formatos',
'semanticmaps-shapes-missingshape' => "Nun s'alcontraron formes pa $1. Por favor, consulta la documentación de les formes disponibles",
);
/** Azerbaijani (azərbaycanca)
* @author AZISS
* @author Cekli829
*/
$messages['az'] = array(
'semanticmaps-unrecognizeddistance' => '$1 rəqəmi mümkün olmayan məsafədir.',
'semanticmaps-kml-link' => 'KML faylına bax',
'semanticmaps-default-kml-pagelink' => '$1 səhifəyə bax',
'semanticmaps-latitude' => 'En dairəsi: $1',
'semanticmaps-longitude' => 'Uzunluq dairəsi: $1',
'semanticmaps-altitude' => 'Hündürlük: $1',
'semanticmaps_lookupcoordinates' => 'Koordinatları tap',
'semanticmaps_enteraddresshere' => 'Adresi buraya yaz',
'semanticmaps-updatemap' => 'Xəritəni yenilə',
'semanticmaps-forminput-remove' => 'Sil',
'semanticmaps-forminput-add' => 'Əlavə et',
);
/** Belarusian (Taraškievica orthography) (беларуская (тарашкевіца))
* @author EugeneZelenko
* @author Jim-by
* @author Wizardist
*/
$messages['be-tarask'] = array(
'semanticmaps-desc' => 'Забясьпечвае магчымасьць прагляду і рэдагаваньня зьвестак пра каардынаты, якія захоўваюцца з дапамогай пашырэньня Semantic MediaWiki ([https://mapping.referata.com/wiki/Examples дэманстрацыя]).', # Fuzzy
'semanticmaps-unrecognizeddistance' => 'Значэньне $1 — няслушная адлегласьць.',
'semanticmaps-kml-link' => 'Паказаць KML-файл',
'semanticmaps-default-kml-pagelink' => 'Паказаць старонку $1',
'semanticmaps-loading-forminput' => 'Загрузка мапы…',
'semanticmaps_lookupcoordinates' => 'Пошук каардынатаў',
'semanticmaps_enteraddresshere' => 'Увядзіце тут адрас',
'semanticmaps-updatemap' => 'Абнавіць мапу',
'semanticmaps-forminput-remove' => 'Выдаліць',
'semanticmaps-forminput-add' => 'Дадаць',
'semanticmaps-forminput-locations' => 'Месцы',
'semanticmaps-par-staticlocations' => 'Сьпіс месцазнаходжаньняў для даданьня на мапу разам з запытанымі зьвесткамі. Напрыклад, разам з «display_points», Вы можаце дадаць назву, апісаньне і мініятуру для месцазнаходжаньня з дапамогай сымбаля «~» у якасьці разьдзяляльніка.',
'semanticmaps-par-forceshow' => 'Паказаць мапу, нават калі няма месцазнаходжаньняў для паказу?',
'semanticmaps-par-showtitle' => 'Паказваць назву ў акне інфармацыі пра маркер ці не. Адключэньне гэтай функцыі часта карыснае падчас выкарыстаньня шаблёну для фарматаваньня зьместу акна інфармацыі.',
'semanticmaps-par-centre' => 'Цэнтар мапы. Калі ён не пададзены, мапа будзе аўтаматычна выбіраць аптымальны цэнтар для паказу ўсіх маркераў.',
'semanticmaps-par-template' => 'Шаблён для фарматаваньня зьместу акна інфармацыі.',
'semanticmaps-par-geocodecontrol' => 'Паказаць элемэнты кіраваньня геаграфічным кадаваньнем.',
);
/** Bulgarian (български)
* @author DCLXVI
*/
$messages['bg'] = array(
'semanticmaps-forminput-remove' => 'Премахване',
'semanticmaps-forminput-add' => 'Добавяне',
);
/** Bengali (বাংলা)
* @author Wikitanvir
*/
$messages['bn'] = array(
'semanticmaps-kml-link' => 'কেএমএল ফাইল দেখাও',
'semanticmaps-default-kml-pagelink' => '$1 পাতা প্রদর্শন করো',
'semanticmaps_enteraddresshere' => 'এখানে ঠিকানা প্রবেশ করাও',
'semanticmaps-updatemap' => 'মানচিত্র হালনাগাদ',
'semanticmaps-forminput-remove' => 'অপসারণ',
'semanticmaps-forminput-add' => 'যোগ',
'semanticmaps-forminput-locations' => 'অবস্থান',
);
/** Breton (brezhoneg)
* @author Fohanno
* @author Fulup
* @author Y-M D
*/
$messages['br'] = array(
'semanticmaps-desc' => 'Talvezout a ra da welet ha da gemmañ roadennoù daveennoù stoket dre an astenn Semantic MediaWiki ([https://mapping.referata.com/wiki/Examples demo]).', # Fuzzy
'semanticmaps-unrecognizeddistance' => "An talvoud $1 n'eo ket un hed reizh anezhañ.",
'semanticmaps-kml-link' => 'Gwelet ar restr KML',
'semanticmaps-default-kml-pagelink' => 'Gwelet ar pennad $1',
'semanticmaps-latitude' => 'Ledred : $1',
'semanticmaps-longitude' => 'Hedred : $1',
'semanticmaps-altitude' => 'Uhelder : $1',
'semanticmaps-loading-forminput' => 'O kargañ enmont furmskrid ar gartenn...',
'semanticmaps_lookupcoordinates' => 'Istimañ an daveennoù',
'semanticmaps_enteraddresshere' => "Merkit ar chomlec'h amañ",
'semanticmaps-updatemap' => 'Hizivaat ar gartenn',
'semanticmaps-forminput-remove' => 'Dilemel',
'semanticmaps-forminput-add' => 'Ouzhpennañ',
'semanticmaps-forminput-locations' => "Lec'hiadurioù",
'semanticmaps-par-forceshow' => "Diskouez ar gartenn ha pa ne vefe lec'h ebet da welet ?",
'semanticmaps-par-template' => "Ur patrom d'ober gantañ da furmadiñ boued ar prenestr titouriñ.",
'semanticmaps-kml-title' => "Titl dre ziouer evit an disoc'hoù",
);
/** Bosnian (bosanski)
* @author CERminator
* @author Palapa
*/
$messages['bs'] = array(
'semanticmaps-desc' => 'Daje mogućnost pregleda i uređivanja podataka koordinata koji su spremljeni putem Semantic MediaWiki proširenja ([https://mapping.referata.com/wiki/Examples primjeri]).', # Fuzzy
'semanticmaps-unrecognizeddistance' => 'Vrijednost $1 nije ispravno odstojanje.',
'semanticmaps-kml-link' => 'Pogledajte KML datoteku',
'semanticmaps-default-kml-pagelink' => 'Pogledajte stranicu $1',
'semanticmaps-loading-forminput' => 'Učitavam obrazac unosa za mapu...',
'semanticmaps_lookupcoordinates' => 'Nađi koordinate',
'semanticmaps_enteraddresshere' => 'Unesite adresu ovdje',
'semanticmaps-updatemap' => 'Ažuriraj mapu',
'semanticmaps-forminput-remove' => 'Ukloni',
'semanticmaps-forminput-add' => 'Dodaj',
'semanticmaps-forminput-locations' => 'Lokacije',
);
/** Catalan (català)
* @author Dvdgmz
* @author Paucabot
* @author SMP
* @author Solde
* @author Toniher
*/
$messages['ca'] = array(
'semanticmaps-desc' => "Ofereix l'habilitat de visualitzar i editar dades de coordenades emmagatzemades a través de l'extensió Semantic MediaWiki ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps més informació...]).",
'semanticmaps-unrecognizeddistance' => 'El valor $1 no és un valor de distància.',
'semanticmaps-kml-link' => 'Visualitza el fitxer KML',
'semanticmaps-default-kml-pagelink' => 'Visualitza la pàgina $1',
'semanticmaps-latitude' => 'Latitud: $1',
'semanticmaps-longitude' => 'Longitud: $1',
'semanticmaps-altitude' => 'Altitud: $1',
'semanticmaps-loading-forminput' => "Carregant formulari d'entrada del mapa...",
'semanticmaps_lookupcoordinates' => 'Consulta les coordenades',
'semanticmaps_enteraddresshere' => 'Introduïu una adreça a continuació',
'semanticmaps-updatemap' => 'Actualitza el mapa',
'semanticmaps-forminput-remove' => 'Suprimeix',
'semanticmaps-forminput-add' => 'Afegeix',
'semanticmaps-forminput-locations' => 'Ubicacions',
'semanticmaps-par-staticlocations' => "Una llista d'ubicacions per afegir al mapa juntament amb les dades consultades. Com amb 'display_points', s'hi pot afegir un títol, una descripció i una icona per a cada ubicació fent servir el signe \"~\" com a separador.",
'semanticmaps-par-forceshow' => 'Es mostra el mapa fins i tot quan no hi ha ubicacions a mostrar?',
'semanticmaps-par-showtitle' => "Es mostra o no un títol en la finestra d'informació del marcador. Inhabilitar-ho sovint és útil quan s'utilitza una plantilla per donar format al contingut de la finestra d'informació.",
'semanticmaps-par-centre' => 'El centre del mapa. Quan no es proporciona, el map triarà automàticament el centre òptim per mostrar tots els marcadors al mapa.',
'semanticmaps-par-template' => "Una plantilla que s'utilitza per dona format al contingut de la finestra d'informació.",
'semanticmaps-par-geocodecontrol' => 'Mostra el control de geocodificació.',
'semanticmaps-kml-title' => 'El títol per defecte dels resultats',
);
/** Chechen (нохчийн)
* @author Умар
*/
$messages['ce'] = array(
'semanticmaps-kml-link' => 'Хьажа KML файлан агӀоне',
'semanticmaps-default-kml-pagelink' => 'Хьажа агӀоне $1',
'semanticmaps-altitude' => 'Локхалла: $1',
'semanticmaps_lookupcoordinates' => 'Караде координаташ',
'semanticmaps-updatemap' => 'Карладаккха карта',
'semanticmaps-forminput-remove' => 'ДӀаяккха',
);
/** Sorani Kurdish (کوردی)
* @author Calak
*/
$messages['ckb'] = array(
'semanticmaps-forminput-add' => 'زیاد بکە',
);
/** Czech (česky)
* @author Utar
* @author XenoPheX
*/
$messages['cs'] = array(
'semanticmaps-desc' => 'Poskytuje možnost zobrazit a upravovat data souřadnic uložená rozšířením Semantic MediaWiki ([https://mapping.referata.com/wiki/Examples demos]).', # Fuzzy
'semanticmaps-unrecognizeddistance' => 'Hodnota $1 není platná vzdálenost.',
'semanticmaps-kml-link' => 'Zobrazit soubor KML',
'semanticmaps-default-kml-pagelink' => 'Zobrazit stránku $1',
'semanticmaps-latitude' => 'Z. šířka: $1',
'semanticmaps-longitude' => 'Z. délka: $1',
'semanticmaps-altitude' => 'Nadm. výška: $1',
'semanticmaps-loading-forminput' => 'Načítání mapy ze vstupu…',
'semanticmaps_lookupcoordinates' => 'Vyhledat souřadnice',
'semanticmaps_enteraddresshere' => 'Sem zadejte adresu',
'semanticmaps-updatemap' => 'Aktualizovat mapu',
'semanticmaps-forminput-remove' => 'Odebrat',
'semanticmaps-forminput-add' => 'Přidat',
'semanticmaps-forminput-locations' => 'Místa',
'semanticmaps-par-staticlocations' => 'Seznam míst, která se přidají do mapy spolu s dotazovanými daty. Podobně jako u display_points můžete každé místo doplnit o titulek, popis a ikonu, za použití tildy „~“ jako oddělovače.',
'semanticmaps-par-forceshow' => 'Zobrazit mapu i pokud nejsou žádná místa k zobrazení?',
'semanticmaps-par-showtitle' => 'Zobrazovat název v info okně značky či ne. Vypnutí je často užitečné, pokud je obsah informačního okna formátován pomocí šablony.',
'semanticmaps-par-centre' => 'Střed mapy. Není-li specifikován, mapa automaticky vybere optimální střed tak, aby byly zobrazeny všechny značky na ní.',
'semanticmaps-par-template' => 'Šablona formátování obsahu informačního okna',
'semanticmaps-par-geocodecontrol' => 'Zobrazit ovladač geocodingu.',
'semanticmaps-kml-text' => 'Text je přidružený ke každé stránce. Je přepsán dodatečnými dotazovanými vlastnostmi, jsou-li nějaké.',
'semanticmaps-kml-title' => 'Výchozí titulek pro výsledky',
'semanticmaps-kml-linkabsolute' => 'Mají být odkazy absolutní či ne (tj. relativní)',
'semanticmaps-kml-pagelinktext' => 'Text, který bude použit pro odkazy na stránku, ve kterém bude $1 nahrazeno názvem stránky',
);
/** Welsh (Cymraeg)
* @author Lloffiwr
*/
$messages['cy'] = array(
'semanticmaps-unrecognizeddistance' => "Nid yw'r gwerth $1 yn bellter dilys.",
'semanticmaps-kml-link' => 'Edrych ar y ffeil KML',
'semanticmaps-default-kml-pagelink' => 'Edrych ar y dudalen $1',
'semanticmaps-latitude' => 'Lledred: $1',
'semanticmaps-longitude' => 'Hydred: $1',
'semanticmaps-altitude' => 'Uchder: $1',
'semanticmaps-loading-forminput' => "Yn llwytho ffurflen mewnbynnu i'r map...",
'semanticmaps_lookupcoordinates' => 'Canfydder y cyfesurynnau',
'semanticmaps_enteraddresshere' => 'Ysgrifennwch y cyfeiriad yma',
'semanticmaps-updatemap' => 'Diweddarer y map',
'semanticmaps-forminput-remove' => 'Tynner oddi ar y map',
'semanticmaps-forminput-add' => 'Ychwaneger',
'semanticmaps-forminput-locations' => 'Lleoliadau',
'semanticmaps-par-forceshow' => "Dangos y map, hyd yn oed pe nad oes mannau i'w dangos?",
);
/** German (Deutsch)
* @author DaSch
* @author Imre
* @author Kghbln
* @author Metalhead64
* @author Pill
* @author The Evil IP address
* @author Umherirrender
*/
$messages['de'] = array(
'semanticmaps-desc' => 'Ermöglicht das Anzeigen und Bearbeiten von Daten zu Koordinaten, die mit Semantic MediaWiki gespeichert werden ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps Weitere Informationen …]).',
'semanticmaps-unrecognizeddistance' => 'Der Wert $1 ist keine gültige Distanz.',
'semanticmaps-kml-link' => 'KML-Datei ansehen',
'semanticmaps-kml' => 'Export (KML)',
'semanticmaps-default-kml-pagelink' => 'Artikel $1 ansehen',
'semanticmaps-latitude' => 'Breitengrad: $1',
'semanticmaps-longitude' => 'Längengrad: $1',
'semanticmaps-altitude' => 'Höhe: $1',
'semanticmaps-loading-forminput' => 'Lade die Formulareingaben zur Karte …',
'semanticmaps_lookupcoordinates' => 'Koordinaten nachschlagen',
'semanticmaps_enteraddresshere' => 'Adresse hier eingeben',
'semanticmaps-updatemap' => 'Karte aktualisieren',
'semanticmaps-forminput-remove' => 'Entfernen',
'semanticmaps-forminput-add' => 'Hinzufügen',
'semanticmaps-forminput-locations' => 'Standort',
'semanticmaps-par-staticlocations' => 'Die Listen von Standorten, die zusammen mit den abgefragten Daten, der Karte hinzugefügt werden sollen. Analog zu den Anzeigepunkten können je Standort Titel, Beschreibung und Symbol, unter Verwendung einer Tilde „~“ als Trennzeichen, hinzugefügt werden.',
'semanticmaps-par-forceshow' => 'Die Karte auch dann anzeigen, wenn es keine anzuzeigenden Standorte gibt',
'semanticmaps-par-showtitle' => 'Den Titel im Informationsfenster der Kennzeichnung anzeigen oder nicht. Diese Option zu deaktivieren ist oftmals dann nützlich, sofern eine Vorlage zur Formatierung des Informationsfensterinhalts verwendet wird.',
'semanticmaps-par-hidenamespace' => 'Den Namen des Namensraums im Informationsfenster der Kennzeichnung anzeigen',
'semanticmaps-par-centre' => 'Das Zentrum der Karte. Sofern nicht angegeben wird automatisch das optimale Zentrum zur Darstellung aller Kennzeichnungen auf der Karte gewählt.',
'semanticmaps-par-template' => 'Die zur Formatierung des Informationsfensterinhalts zu verwendende Vorlage.',
'semanticmaps-par-geocodecontrol' => 'Die Steuerungsseite zum Geokodieren anzeigen.',
'semanticmaps-kml-text' => 'Der Text, der zu jeder Seite angezeigt wird. Wird im Fall zusätzlich abgefragter Attribute ersetzt.',
'semanticmaps-kml-title' => 'Der Standardtitel für die Ergebnisse',
'semanticmaps-kml-linkabsolute' => 'Die Links sollen absolut sein (anstatt relativ)',
'semanticmaps-kml-pagelinktext' => 'Der Text, der für die Links zur Seite genutzt werden soll. $1 wird dabei durch den Namen der Seite ersetzt.',
'semanticmaps-shapes-improperformat' => '$1 ist falsch formatiert. Siehe hierzu die Dokumentation bezüglich Formatierungen.',
'semanticmaps-shapes-missingshape' => 'Für $1 wurden keine Formen gefunden. Siehe hierzu die Dokumentation bezüglich verfügbarer Formen.',
);
/** Lower Sorbian (dolnoserbski)
* @author Michawiki
*/
$messages['dsb'] = array(
'semanticmaps-desc' => 'Bitujo zmóžnosć se koordinatowe daty pśez rozšyrjenje Semantic MediaWiki woglědaś a wobźěłaś ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps dalšne informacije...]).',
'semanticmaps-unrecognizeddistance' => 'Gódnota $1 njejo płaśiwa distanca.',
'semanticmaps-kml-link' => 'KML-dataju se woglědaś',
'semanticmaps-default-kml-pagelink' => 'Bok $1 se woglědaś',
'semanticmaps_lookupcoordinates' => 'Za koordinatami póglědaś',
'semanticmaps_enteraddresshere' => 'Zapódaj how adresu',
);
/** Greek (Ελληνικά)
* @author Protnet
* @author ZaDiak
*/
$messages['el'] = array(
'semanticmaps-desc' => 'Παρέχει τη δυνατότητα προβολής και επεξεργασίας δεδομένων γεωγραφικών συντεταγμένων που έχουν αποθηκευτεί με την επέκταση Σημασιολογικό MediaWiki ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps περισσότερες πληροφορίες...])',
'semanticmaps-unrecognizeddistance' => 'Η τιμή $1 δεν είναι έγκυρη απόσταση.',
'semanticmaps-kml-link' => 'Προβολή του αρχείου KML',
'semanticmaps-default-kml-pagelink' => 'Προβολή σελίδας $1',
'semanticmaps-latitude' => 'Γεωγραφικό πλάτος: $1',
'semanticmaps-longitude' => 'Γεωγραφικό μήκος: $1',
'semanticmaps-altitude' => 'Υψόμετρο: $1',
'semanticmaps_lookupcoordinates' => 'Επιθεώρηση συντεταγμένων',
'semanticmaps_enteraddresshere' => 'Εισαγωγή διεύθυνσης εδώ',
'semanticmaps-updatemap' => 'Ενημέρωση χάρτη',
'semanticmaps-forminput-add' => 'Προσθήκη',
'semanticmaps-forminput-locations' => 'Τοποθεσίες',
'semanticmaps-par-forceshow' => 'Παρουσίαση του χάρτη ακόμα και όταν δεν υπάρχουν τοποθεσίες προς εμφάνιση;',
'semanticmaps-par-template' => 'Πρότυπο για να το χρησιμοποιήσετε για τη μορφοποίηση των περιεχομένων του παραθύρου πληροφοριών.',
'semanticmaps-par-geocodecontrol' => 'Εμφάνιση στοιχείου ελέγχου γεωκωδικοποίησης.',
'semanticmaps-kml-title' => 'Προεπιλεγμένος τίτλος για αποτελέσματα',
'semanticmaps-kml-linkabsolute' => 'Να είναι οι σύνδεσμοι απόλυτοι (ως αντιπαράθεση με τους σχετικούς)',
'semanticmaps-shapes-improperformat' => 'Εσφαλμένη μορφοποίηση του $1, ανατρέξτε στην τεκμηρίωση περί μορφοποίησης',
'semanticmaps-shapes-missingshape' => 'Δεν βρέθηκαν σχήματα για το $1, ανατρέξτε στην τεκμηρίωση για διαθέσιμα σχήματα',
);
/** British English (British English)
* @author Shirayuki
*/
$messages['en-gb'] = array(
'semanticmaps-par-centre' => 'The centre of the map. When not provided, the map will automatically pick the optimal centre to display all markers on the map.',
);
/** Esperanto (Esperanto)
* @author Yekrats
*/
$messages['eo'] = array(
'semanticmaps_lookupcoordinates' => 'Rigardi koordinatojn',
'semanticmaps_enteraddresshere' => 'Enigu adreson ĉi tie',
);
/** Spanish (español)
* @author Armando-Martin
* @author Crazymadlover
* @author Fitoschido
* @author Imre
* @author Locos epraix
* @author Translationista
*/
$messages['es'] = array(
'semanticmaps-desc' => 'Proporciona la posibilidad de ver y editar datos de coordenadas almacenados con la extensión Semantic MediaWiki (Más información.).',
'semanticmaps-unrecognizeddistance' => 'El valor $1 no es una distancia válida.',
'semanticmaps-kml-link' => 'Ver el archivo KML',
'semanticmaps-default-kml-pagelink' => 'Ver página $1',
'semanticmaps-latitude' => 'Latitud: $1',
'semanticmaps-longitude' => 'Longitud: $1',
'semanticmaps-altitude' => 'Altitud: $1',
'semanticmaps-loading-forminput' => 'Cargando mapa de formulario de entrada...',
'semanticmaps_lookupcoordinates' => 'Buscar coordenadas',
'semanticmaps_enteraddresshere' => 'Introduce aquí la dirección',
'semanticmaps-updatemap' => 'Actualizar mapa',
'semanticmaps-forminput-remove' => 'Quitar',
'semanticmaps-forminput-add' => 'Añadir',
'semanticmaps-forminput-locations' => 'Ubicaciones',
'semanticmaps-par-staticlocations' => 'Una lista de localizaciones para añadir al mapa junto a los datos consultados. De forma similar a display_points, puede añadir un título, una descripción o un icono por localización usando el signo "~" como separador.',
'semanticmaps-par-forceshow' => '¿Mostrar el mapa incluso cuando no hay ubicaciones que mostrar?',
'semanticmaps-par-showtitle' => 'Mostrar o no mostrar un título en la ventana de información del marcador. La desactivación de esto es frecuentemente útil al utilizar una plantilla para dar formato al contenido de la ventana de información.',
'semanticmaps-par-hidenamespace' => 'Mostrar el título del espacio de nombres en la ventana de información del marcador.',
'semanticmaps-par-centre' => 'El centro del mapa. Cuando no se proporciona, el mapa escogerá automáticamente el mejor centro para mostrar todos los marcadores en el mapa.',
'semanticmaps-par-template' => 'Una plantilla a usar para dar formato al contenido de la ventana de información.',
'semanticmaps-par-geocodecontrol' => 'Mostrar el control de geocodificación.',
'semanticmaps-kml-text' => 'El texto asociado a cada página. Es substituído por las propiedades recuperadas adicionales, si existen.',
'semanticmaps-kml-title' => 'El título por defecto para los resultados',
'semanticmaps-kml-linkabsolute' => 'Los enlaces deberían ser absolutos (lo opuesto de relativos)',
'semanticmaps-kml-pagelinktext' => 'El texto a usar para los enlaces a la página, en las que $1 será substituído por el título de la página',
'semanticmaps-shapes-improperformat' => 'Formateo incorrecto de $1, por favor consulta la documentación sobre formateo',
'semanticmaps-shapes-missingshape' => 'No se ha encontrado ninguna forma para $1, por favor consulta la documentación sobre formas disponibles',
);
/** Estonian (eesti)
* @author Avjoska
*/
$messages['et'] = array(
'semanticmaps-latitude' => 'Laiuskraad:$1',
'semanticmaps-longitude' => 'Pikkuskraad:$1',
'semanticmaps_enteraddresshere' => 'Sisesta aadress siia',
'semanticmaps-updatemap' => 'Uuenda kaart',
'semanticmaps-forminput-remove' => 'Eemalda',
'semanticmaps-forminput-add' => 'Lisa',
);
/** Basque (euskara)
* @author An13sa
*/
$messages['eu'] = array(
'semanticmaps_lookupcoordinates' => 'Koordenatuak bilatu',
);
/** Persian (فارسی)
* @author Mjbmr
*/
$messages['fa'] = array(
'semanticmaps-default-kml-pagelink' => 'مشاهده صفحهٔ $1',
'semanticmaps-updatemap' => 'به روز رسانی نقشه',
'semanticmaps-forminput-remove' => 'حذف',
'semanticmaps-forminput-add' => 'افزودن',
'semanticmaps-forminput-locations' => 'مکانها',
);
/** Finnish (suomi)
* @author Beluga
* @author Crt
* @author Nedergard
* @author Str4nd
*/
$messages['fi'] = array(
'semanticmaps-desc' => 'Mahdollistaa Semantic MediaWiki -laajennuksen avulla tallennettujen koordinaattitietojen näyttämisen ja muokkaamisen ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps lisätietoja]).',
'semanticmaps-unrecognizeddistance' => 'Arvoa $1 ei ole sallittu etäisyys.',
'semanticmaps-kml-link' => 'Näytä KLM-tiedosto',
'semanticmaps-default-kml-pagelink' => 'Näytä sivu $1',
'semanticmaps-latitude' => 'Leveyspiiri: $1',
'semanticmaps-longitude' => 'Pituuspiiri: $1',
'semanticmaps-altitude' => 'Korkeus: $1',
'semanticmaps-loading-forminput' => 'Ladataan kartan lomaketietoja...',
'semanticmaps_lookupcoordinates' => 'Hae koordinaatit',
'semanticmaps_enteraddresshere' => 'Kirjoita osoite tähän',
'semanticmaps-updatemap' => 'Päivitä kartta',
'semanticmaps-forminput-remove' => 'Poista',
'semanticmaps-forminput-add' => 'Lisää',
'semanticmaps-forminput-locations' => 'Sijainnit',
'semanticmaps-par-staticlocations' => 'Sijaintien luettelo voidaan lisätä karttaan kyselydatan lisäksi. Kuten display_points-parametrissa voit lisätä sijaintikohtaisen otsikon, kuvauksen ja kuvakkeen; erottimena on "~".',
'semanticmaps-par-forceshow' => 'Näytetäänkö kartta, jos näytettäviä sijainteja ei ole?',
'semanticmaps-par-showtitle' => 'Näyttää kohdemerkin tietoikkunan otsikon tai ei. Käytöstä poisto on usein hyödyllistä, jos tietoikkunan sisältö muotoillaan mallineella.',
'semanticmaps-par-hidenamespace' => 'Näytä nimiavaruuden otsikko kohdemerkin tietoikkunassa',
'semanticmaps-par-centre' => 'Kartan keskus. Jos sitä ei määritetä, kartta laskee automaattisesti optimaalisen keskuksen kartalla olevien kohdemerkkien perusteella.',
'semanticmaps-par-template' => 'Tietoikkunan sisällön muotoilussa käytettävä malline.',
'semanticmaps-par-geocodecontrol' => 'Näytä geokoodausohjaimet.',
'semanticmaps-kml-text' => 'Kuhunkin sivuun liittyvä teksti. Jos kyselyllä on lisäominaisuuksia, ne syrjäyttävät tämän.',
'semanticmaps-kml-title' => 'Tulossivun oletusotsikko',
'semanticmaps-kml-linkabsolute' => 'Ovatko linkit absoluuttisia (eivätkä suhteellisia)',
'semanticmaps-kml-pagelinktext' => 'Sivulinkeissä käytettävä teksti, jossa $1 korvataan sivun otsikolla',
'semanticmaps-shapes-improperformat' => '$1 on muotoiltu väärin. Katso muotoilun dokumentaatiota.',
'semanticmaps-shapes-missingshape' => '$1: muotoja ei löytynyt. Dokumentaatiossa kerrotaan sallituista muodoista.',
);
/** French (français)
* @author Crochet.david
* @author Gomoko
* @author Grondin
* @author Hashar
* @author IAlex
* @author Jean-Frédéric
* @author Peter17
* @author PieRRoMaN
* @author Sherbrooke
* @author Urhixidur
* @author Wyz
*/
$messages['fr'] = array(
'semanticmaps-desc' => "Permet d'afficher et de modifier les données de coordonnées stockées par l'extension Semantic MediaWiki ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps more info...]).",
'semanticmaps-unrecognizeddistance' => "La valeur $1 n'est pas une distance valide",
'semanticmaps-kml-link' => 'Voir le fichier KML',
'semanticmaps-default-kml-pagelink' => 'Voir l’article $1',
'semanticmaps-latitude' => 'Latitude : $1',
'semanticmaps-longitude' => 'Longitude : $1',
'semanticmaps-altitude' => 'Altitude : $1',
'semanticmaps-loading-forminput' => "Chargement du formulaire d'entrée de la carte...",
'semanticmaps_lookupcoordinates' => 'Estimer les coordonnées',
'semanticmaps_enteraddresshere' => 'Entrez ici l’adresse',
'semanticmaps-updatemap' => 'Mise à jour de la carte',
'semanticmaps-forminput-remove' => 'Enlever',
'semanticmaps-forminput-add' => 'Ajouter',
'semanticmaps-forminput-locations' => 'Emplacements',
'semanticmaps-par-staticlocations' => 'Une liste des endroits à ajouter à la carte avec les données demandées. Comme avec display_points, vous pouvez ajouter un titre, une description et une icône par emplacement en utilisant le tilde « ~ » comme séparateur.',
'semanticmaps-par-forceshow' => "Afficher la carte même quand il n'y a pas d'emplacement à afficher ?",
'semanticmaps-par-showtitle' => "Afficher un titre dans la fenêtre d'informations des marqueurs ou non. La désactivation de ceci est souvent utile lorsque vous utilisez un modèle pour formater le contenu de la fenêtre d'informations.",
'semanticmaps-par-hidenamespace' => 'Afficher ou non le titre de l’espace de noms dans la fenêtre d’information du marqueur.',
'semanticmaps-par-centre' => "Le centre de la carte. Lorsqu'il n'est pas fourni, la carte va choisir automatiquement le centre optimal pour afficher tous les marqueurs sur la carte.",
'semanticmaps-par-template' => "Un modèle à utiliser pour mettre en forme le contenu de la fenêtre d'informations.",
'semanticmaps-par-geocodecontrol' => 'Afficher le contrôle de géocodage.',
'semanticmaps-kml-text' => "Le texte associé avec chaque page. Remplacé par des propriétés récupérées supplémentaires s'il y en a.",
'semanticmaps-kml-title' => 'Le titre par défaut pour les résultats',
'semanticmaps-kml-linkabsolute' => 'Si les titres doivent être absolus ou non (c.à.d. relatifs)',
'semanticmaps-kml-pagelinktext' => 'Le texte à utiliser pour les liens vers la page, dans lesquels $1 sera remplacé par le titre de la page',
'semanticmaps-shapes-improperformat' => 'Format de $1 incorrect, veuillez vous reporter à la documentation pour le format attendu',
'semanticmaps-shapes-missingshape' => 'Aucune forme trouvée pour $1; veuillez voir dans la documentation les formes disponibles',
);
/** Franco-Provençal (arpetan)
* @author ChrisPtDe
*/
$messages['frp'] = array(
'semanticmaps-unrecognizeddistance' => 'La valor $1 est pas una distance valida.',
'semanticmaps-kml-link' => 'Vêre lo fichiér KML',
'semanticmaps-default-kml-pagelink' => 'Vêre la pâge $1',
'semanticmaps-latitude' => 'Latituda : $1',
'semanticmaps-longitude' => 'Longituda : $1',
'semanticmaps-altitude' => 'Hôtior : $1',
'semanticmaps-loading-forminput' => 'Chargement du formulèro d’entrâ de la mapa...',
'semanticmaps_lookupcoordinates' => 'Èstimar les coordonâs',
'semanticmaps_enteraddresshere' => 'Buchiéd l’adrèce ique',
'semanticmaps-updatemap' => 'Misa a jorn de la mapa',
'semanticmaps-forminput-remove' => 'Enlevar',
'semanticmaps-forminput-add' => 'Apondre',
'semanticmaps-forminput-locations' => 'Emplacements',
);
/** Galician (galego)
* @author Toliño
*/
$messages['gl'] = array(
'semanticmaps-desc' => 'Proporciona a capacidade de ollar e modificar os datos de coordenadas gardados a través da extensión Semantic MediaWiki ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps máis información...]).',
'semanticmaps-unrecognizeddistance' => 'O valor $1 non é unha distancia válida.',
'semanticmaps-kml-link' => 'Ollar o ficheiro KML',
'semanticmaps-default-kml-pagelink' => 'Ver a páxina "$1"',
'semanticmaps-latitude' => 'Latitude: $1',
'semanticmaps-longitude' => 'Lonxitude: $1',
'semanticmaps-altitude' => 'Altitude: $1',
'semanticmaps-loading-forminput' => 'Cargando o formulario de entrada do mapa...',
'semanticmaps_lookupcoordinates' => 'Ver as coordenadas',
'semanticmaps_enteraddresshere' => 'Introduza o enderezo aquí',
'semanticmaps-updatemap' => 'Actualizar o mapa',
'semanticmaps-forminput-remove' => 'Eliminar',
'semanticmaps-forminput-add' => 'Engadir',
'semanticmaps-forminput-locations' => 'Localizacións',
'semanticmaps-par-staticlocations' => 'Unha lista de localizacións para engadir ao mapa xunto aos datos consultados. Como con display_points, pode engadir un título, unha descrición e mais unha icona por localización mediante o signo "~" como separador.',
'semanticmaps-par-forceshow' => 'Quere mostrar o mapa, mesmo cando non haxa localizacións que presentar?',
'semanticmaps-par-showtitle' => 'Mostrar ou non un título na ventá de información do marcador. Frecuentemente, desactivar isto é útil ao utilizar un modelo para dar formato ao contido da ventá de información.',
'semanticmaps-par-hidenamespace' => 'Mostrar o título do espazo de nomes na ventá de información do marcador',
'semanticmaps-par-centre' => 'O centro do mapa. Cando non se proporciona, o mapa ha escoller automaticamente o mellor centro para mostrar todos os marcadores no mapa.',
'semanticmaps-par-template' => 'Un modelo a empregar para dar formato ao contido da ventá de información.',
'semanticmaps-par-geocodecontrol' => 'Mostrar o control de xeocodificación.',
'semanticmaps-kml-text' => 'O texto asociado a cada páxina. Substituído polas propiedades pescudadas adicionais, se existen.',
'semanticmaps-kml-title' => 'O título por defecto para os resultados',
'semanticmaps-kml-linkabsolute' => 'Se as ligazóns deberían ser absolutas (contrario a relativas)',
'semanticmaps-kml-pagelinktext' => 'O texto a usar para as ligazóns cara á páxina, nas que "$1" será substituído polo título da páxina',
'semanticmaps-shapes-improperformat' => 'Formato incorrecto de "$1"; consulte a documentación sobre os formatos',
'semanticmaps-shapes-missingshape' => 'Non se atopou forma ningunha para "$1"; consulte a documentación sobre as formas dispoñibles',
);
/** Swiss German (Alemannisch)
* @author Als-Chlämens
* @author Als-Holder
*/
$messages['gsw'] = array(
'semanticmaps-desc' => 'Ergänzt e Megligkeit zum Aaluege un Bearbeite vu Koordinate, wu im Ramme vu dr Erwyterig „Semantisch MediaWiki“ gspycheret wore sin. [https://www.mediawiki.org/wiki/Extension:Semantic_Maps Dokumäntation]. [https://mapping.referata.com/wiki/Examples Demo]', # Fuzzy
'semanticmaps-unrecognizeddistance' => 'Dr Wert $1 isch kei giltigi Dischtanz.',
'semanticmaps-kml-link' => 'KML-Datei aaluege',
'semanticmaps-default-kml-pagelink' => 'Syte $1 aaluege',
'semanticmaps-loading-forminput' => 'Am Lade vu dr Formularyygabe zue dr Charte …',
'semanticmaps_lookupcoordinates' => 'Koordinate nooluege',
'semanticmaps_enteraddresshere' => 'Doo Adräss yygee',
'semanticmaps-updatemap' => 'Charte aktualisiere',
'semanticmaps-forminput-remove' => 'Uuseneh',
'semanticmaps-forminput-add' => 'Zuefiege',
'semanticmaps-forminput-locations' => 'Standort',
'semanticmaps-par-staticlocations' => 'E Lischt vo Standört, wo zämme mit de Date, wo aabgfrogt werde, uff de Charte dezuegno werde sölle. Analog zue de Aazeigpünkt, chönne zue jedem Standort mit de Tilde „~“ als Trennzeiche, e Titel, Beschrybig un Symbol dezuegno werde.',
'semanticmaps-par-forceshow' => 'Die Charte au aazeige, wänn es kei Standört zum Aazeige git?',
'semanticmaps-par-showtitle' => 'E Titel im Informationsfenschter vo de Kennzeichnig aazeige oder nit. Des z deaktiviere isch vilmool nützlig, wänn e Vorlag zur Formatierig vum Inhalt vum Informationsfenschter bruucht wird.',
'semanticmaps-par-centre' => "S Zentrum vo de Chart. Wänn's nit andersch aagee isch, wird automatisch s optimali Zentrum zur Darstellig vo allene Kennzeichnige uff de Chart ussgwäält.",
'semanticmaps-par-template' => 'E Vorlag, wo zur Formatierig vum Inhalt vum Informationsfenschter bruucht wird.',
'semanticmaps-par-geocodecontrol' => 'D Stüürigssyte zum Geokodiere aazeige.',
);
/** Hebrew (עברית)
* @author Amire80
* @author Rotemliss
* @author YaronSh
*/
$messages['he'] = array(
'semanticmaps-desc' => 'הוספת האפשרות לצפייה בנתוני הקואורדינטות המאוחסנים ולעריכתם באמצעות ההרחבה מדיה־ויקי סמנטית ([https://mapping.referata.com/wiki/Examples הדגמות]).', # Fuzzy
'semanticmaps-unrecognizeddistance' => 'הערך $1 אינו מרחק תקין.',
'semanticmaps-kml-link' => 'הצגת קובץ KML',
'semanticmaps-default-kml-pagelink' => 'הצגת הדף $1',
'semanticmaps-latitude' => 'קו־רוחב: $1',
'semanticmaps-longitude' => 'קו־אורך: $1',
'semanticmaps-altitude' => 'גובה: $1',
'semanticmaps-loading-forminput' => 'טעינת המפה מהקלט...',
'semanticmaps_lookupcoordinates' => 'חיפוש קואורדינטות',
'semanticmaps_enteraddresshere' => 'כתבו כתובת כאן',
'semanticmaps-updatemap' => 'עדכון מפה',
'semanticmaps-forminput-remove' => 'הסרה',
'semanticmaps-forminput-add' => 'הוספה',
'semanticmaps-forminput-locations' => 'מיקומים',
'semanticmaps-par-staticlocations' => 'רשימת מיקומים להוסיף למפה יחד עם הנתונים המבוקשים בשאילתה. כמו עם display_points, אפשר להוסיף כאן כותרת, תיאור וסמל לכל מיקום עם טילדה (~) בתור תו מפריד.',
'semanticmaps-par-forceshow' => 'להציג מפה גם כשאין מיקומים להצגה?',
'semanticmaps-par-showtitle' => 'להציג את הכותרת בחלון המידע על הסמן או לא. הכיבוי של זה שימושי לעתים קרובות כאשר נעשה שימוש בתבנית לעיצוב חלון המידע.',
'semanticmaps-par-hidenamespace' => 'האם להציג את שם המרחב בחלון המידע על סמן.',
'semanticmaps-par-centre' => 'מרכז המפה. אם לא ניתן, המפה תבחר בעצמה את המרכז המיטבי להצגת כל הסמנים על המפה.',
'semanticmaps-par-template' => 'תבנית לעיצוב תוכן חלון המידע.',
'semanticmaps-par-geocodecontrol' => 'הצגת בקר קידוד גאוגרפי.',
'semanticmaps-kml-text' => 'הטקסט משויך לכל עמוד ועמוד. נדרס במאפיינים אחרים שנעשית עליהם שאילתה, אם יש כאלה.',
'semanticmaps-kml-title' => 'כותרת לתוצאות לפי בררת המחדל.',
'semanticmaps-kml-linkabsolute' => 'האם הקישורים צריכים להיות מוחלטים (או יחסיים)',
'semanticmaps-kml-pagelinktext' => 'הטקסט שישמש לקישורים לדף, כאשר $1 יוחלף בכותרת הדף',
);
/** Croatian (hrvatski)
* @author Tivek
*/
$messages['hr'] = array(
'semanticmaps-desc' => "Pruža pregledavanje i uređivanje koordinata spremljenih koristeći Semantic MediaWiki ekstenziju ([https://mapping.referata.com/wiki/Examples demo's]).", # Fuzzy
'semanticmaps-unrecognizeddistance' => 'Vrijednost $1 nije valjana udaljenost.',
'semanticmaps_lookupcoordinates' => 'Potraži koordinate',
'semanticmaps_enteraddresshere' => 'Unesite adresu ovdje',
);
/** Upper Sorbian (hornjoserbsce)
* @author Michawiki
*/
$messages['hsb'] = array(
'semanticmaps-desc' => 'Zmóžnja zwobraznjenje a wobdźěłanje koordinatowych datow, kotrež su so z rozšěrjenjom Semantic MediaWiki składowali ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps dalše informacije...]).',
'semanticmaps-unrecognizeddistance' => 'Hódnota $1 płaćiwa distanca njeje.',
'semanticmaps-kml-link' => 'KML-dataju sej wobhladać',
'semanticmaps-default-kml-pagelink' => 'Nastawk $1 sej wobhladać',
'semanticmaps-latitude' => 'Šěrokostnik: $1',
'semanticmaps-longitude' => 'Dołhostnik: $1',
'semanticmaps-altitude' => 'Wysokosć: $1',
'semanticmaps-loading-forminput' => 'Formularne zapodawanske polo karty so začituje...',
'semanticmaps_lookupcoordinates' => 'Za koordinatami hladać',
'semanticmaps_enteraddresshere' => 'Zapodaj tu adresu',
'semanticmaps-updatemap' => 'Kartu aktualizować',
'semanticmaps-forminput-remove' => 'Wotstronić',
'semanticmaps-forminput-add' => 'Přidać',
'semanticmaps-forminput-locations' => 'Městna',
'semanticmaps-par-staticlocations' => 'Lisćina městnow, kotrež maja so zhromadnje z naprašowanymi datami karće přidać. Kaž pola zwobraznjenskich dypkow móžeš titul. wopisanje a symbol na městno z pomocu tildy "~" jako dźělatko přidać.',
'semanticmaps-par-forceshow' => 'Kartu tež potom pokazać, hdyž městna za zwobraznjenje njejsu?',
'semanticmaps-par-showtitle' => 'Titul w iformaciskim woknje woznamjenjenja pokazać abo nic. Je husto wužitne, tutu opciju znjemóžnić, hdyž so předłoha wužiwa, zo by so wobsah informaciskeho wokna formatował.',
'semanticmaps-par-hidenamespace' => 'Mjeno mjenoweho ruma w informaciskim woknje woznamjenjenja pokazać abo nic.',
'semanticmaps-par-centre' => 'Srjedźišćo karty. Jeli je njepodate, budźe so karta awtomatisce optimalne srjedźišćo wuběrać, zo bychu so wšě woznamjenjenja na karće pokazali.',
'semanticmaps-par-template' => 'Předłoha, kotraž ma so za formatowanje wobsaha infowokna wužiwać,',
'semanticmaps-par-geocodecontrol' => 'Geokodowanske wodźenje pokazać',
'semanticmaps-kml-text' => 'Tekst, kotryž je z kóždej stronu zwjazany. Naruna so přez přidatne naprašowane kajkosće, jeli tajke su.',
'semanticmaps-kml-title' => 'Standardny titul za wuslědki',
'semanticmaps-kml-linkabsolute' => 'Hač wotkazy maja absolutne być abo nic (t.r. relatiwne)',
'semanticmaps-kml-pagelinktext' => 'Tekst, kotryž ma so za wotkazy k tej stronje wužiwać, w kotrejž $1 so přez titul strony naruna',
'semanticmaps-shapes-improperformat' => '$1 je so wopak formatował. Prošu hlej dokumentaciju za formatowanje',
'semanticmaps-shapes-missingshape' => 'Žane formy njejsu za $1 namakałi. Prošu hlej dokumentaciju za k dispoziciji stejace formy.',
);
/** Hungarian (magyar)
* @author Dani
* @author Glanthor Reviol
* @author TK-999
*/
$messages['hu'] = array(
'semanticmaps-desc' => 'Lehetővé teszi a szemantikus MediaWiki kiterjesztéssel tárolt koordinátaadatok megtekintését és szerkesztését ([https://mapping.referata.com/wiki/Examples bemutató]).', # Fuzzy
'semanticmaps-unrecognizeddistance' => 'A(z) $1 érték nem egy érvényes távolság.',
'semanticmaps-kml-link' => 'KML fájl megtekintése',
'semanticmaps-default-kml-pagelink' => 'A(z) $1 lap megtekintése',
'semanticmaps-latitude' => 'Szélesség: $1',
'semanticmaps-longitude' => 'Hosszúság: $1',
'semanticmaps-altitude' => 'Tengerszint feletti magasság: $1',
'semanticmaps-loading-forminput' => 'Térkép űrlapjának betöltése…',
'semanticmaps_lookupcoordinates' => 'Koordináták felkeresése',
'semanticmaps_enteraddresshere' => 'Add meg a címet itt',
'semanticmaps-updatemap' => 'Térkép frissítése',
'semanticmaps-forminput-remove' => 'Eltávolítás',
'semanticmaps-forminput-add' => 'Hozzáadás',
'semanticmaps-forminput-locations' => 'Helyszínek',
'semanticmaps-par-staticlocations' => 'A térképre a lekérdezett adatok mellett felveendő helyek listája. Akárcsak a megjelenítési pontokkal, minden helyhez megadhatsz címet, leírást és ikont hullámvonal ("~") elválasztóval.',
'semanticmaps-par-forceshow' => 'Megjelenítsem a térképet akkor is, ha nincsenek megjeleníthető helyek?',
'semanticmaps-par-showtitle' => 'Megjelenítse a címet a jelző információs ablakában, vagy ne? Ennek kikapcsolás hasznos lehet, ha sablonnal formázod az információs ablak tartalmát.',
);
/** Interlingua (interlingua)
* @author McDutchie
*/
$messages['ia'] = array(
'semanticmaps-desc' => 'Forni le capacitate de vider e modificar datos de coordinatas immagazinate con le extension Semantic MediaWiki ([https://mapping.referata.com/wiki/Examples demonstrationes]).', # Fuzzy
'semanticmaps-unrecognizeddistance' => 'Le valor $1 non es un distantia valide.',
'semanticmaps-kml-link' => 'Vider le file KML',
'semanticmaps-default-kml-pagelink' => 'Vider articulo $1',
'semanticmaps-latitude' => 'Latitude: $1',
'semanticmaps-longitude' => 'Longitude: $1',
'semanticmaps-altitude' => 'Altitude: $1',
'semanticmaps-loading-forminput' => 'Carga datos entrate in formulario...',
'semanticmaps_lookupcoordinates' => 'Cercar coordinatas',
'semanticmaps_enteraddresshere' => 'Entra adresse hic',
'semanticmaps-updatemap' => 'Actualisar carta',
'semanticmaps-forminput-remove' => 'Remover',
'semanticmaps-forminput-add' => 'Adder',
'semanticmaps-forminput-locations' => 'Locos',
'semanticmaps-par-staticlocations' => 'Un lista de locos a adder al carta con le datos resultante del consulta. Como con display_points, tu pote adder un titulo, description e icone per loco usante le tilde "~" como separator.',
'semanticmaps-par-forceshow' => 'Monstrar le carta mesmo si il non ha locos a monstrar?',
'semanticmaps-par-showtitle' => 'Monstrar un titulo in le fenestra de information de marcator o non. Disactivar isto es sovente utile si un patrono es usate pro formatar le contento del fenestra de information.',
'semanticmaps-par-hidenamespace' => 'Monstrar o celar le titulo del spatio de nomines in le fenestra de information del marcator.',
'semanticmaps-par-centre' => 'Le centro del carta. Si non specificate, le systema selige automaticamente le centro optimal pro monstrar tote le marcatores in le carta.',
'semanticmaps-par-template' => 'Un patrono a usar pro formatar le contento del fenestra de information.',
'semanticmaps-par-geocodecontrol' => 'Monstrar le controlo de geocodification.',
'semanticmaps-kml-text' => 'Le texto associate con cata pagina. Es supplantate per le additional proprietates consultate, si existe.',
'semanticmaps-kml-title' => 'Le titulo predefinite pro resultatos',
'semanticmaps-kml-linkabsolute' => 'Debe ligamines esser absolute o non (i.e. relative)',
'semanticmaps-kml-pagelinktext' => 'Le texto a usar pro le ligamines al pagina, in le quales $1 essera reimplaciate per le titulo de pagina',
);
/** Indonesian (Bahasa Indonesia)
* @author Bennylin
* @author Farras
* @author IvanLanin
*/
$messages['id'] = array(
'semanticmaps-desc' => 'Memberikan kemampuan untuk melihat dan menyunting data koordinat yang disimpan melalui pengaya MediaWiki Semantic
([https://mapping.referata.com/wiki/Examples demo]).', # Fuzzy
'semanticmaps-unrecognizeddistance' => 'Nilai $1 bukan jarak yang sah.',
'semanticmaps-kml-link' => 'Lihat berkas KML',
'semanticmaps-default-kml-pagelink' => 'Lihat halaman $1',
'semanticmaps-loading-forminput' => 'Memuat masukan bentuk peta...',
'semanticmaps_lookupcoordinates' => 'Cari koordinat',
'semanticmaps_enteraddresshere' => 'Masukkan alamat di sini',
'semanticmaps-updatemap' => 'Pembaruan peta',
'semanticmaps-forminput-remove' => 'Hapus',
'semanticmaps-forminput-add' => 'Tambah',
'semanticmaps-forminput-locations' => 'Lokasi',
'semanticmaps-par-staticlocations' => 'Daftar lokasi yang akan ditambahkan ke dalam peta, berikut data kueri. Seperti halnya display_points, Anda dapat menambahkan judul, deskripsi, dan ikon per lokasi dengan menggunakan tanda tilde "~" sebagai pemisah.',
'semanticmaps-par-forceshow' => 'Tampilkan peta bahkan ketika tidak ada lokasi untuk ditampilkan?',
'semanticmaps-par-showtitle' => 'Tampilkan judul di jendela info penanda. Penonaktifan judul sering berguna ketika menggunakan templat untuk memformat isi jendela info.',
'semanticmaps-par-centre' => 'Pusat peta. Jika tidak disediakan, peta secara otomatis akan memilih pusat optimal untuk menampilkan semua penanda di peta.',
'semanticmaps-par-template' => 'Ttemplat yang digunakan untuk memformat isi jendela info.',
);
/** Italian (italiano)
* @author Beta16
* @author Civvì
* @author Darth Kule
* @author HalphaZ
*/
$messages['it'] = array(
'semanticmaps-desc' => "Fornisce la possibilità di visualizzare e modificare le coordinate memorizzate con l'estensione Semantic MediaWiki ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps ulteriori informazioni]).",
'semanticmaps-unrecognizeddistance' => 'Il valore $1 non è una distanza valida.',
'semanticmaps-kml-link' => 'Visualizza il file KML',
'semanticmaps-default-kml-pagelink' => 'Visualizza la pagina $1',
'semanticmaps-latitude' => 'Latitudine: $1',
'semanticmaps-longitude' => 'Longitudine: $1',
'semanticmaps-altitude' => 'Altitudine: $1',
'semanticmaps-loading-forminput' => 'Caricamento del modulo input per mappe...',
'semanticmaps_lookupcoordinates' => 'Cerca coordinate',
'semanticmaps_enteraddresshere' => 'Inserisci indirizzo qui',
'semanticmaps-updatemap' => 'Aggiorna mappa',
'semanticmaps-forminput-remove' => 'Rimuovi',
'semanticmaps-forminput-add' => 'Aggiungi',
'semanticmaps-forminput-locations' => 'Luoghi',
'semanticmaps-par-staticlocations' => 'Un elenco di luoghi da aggiungere alla mappa unitamente ai dati interrogati. Come con display_points, si può aggiungere un titolo, la descrizione e l\'icona per ogni posizione utilizzando la tilde "~" come separatore.',
'semanticmaps-par-forceshow' => "Mostra la mappa anche quando non c'è alcun luogo da visualizzare?",
'semanticmaps-par-showtitle' => "Mostrare oppure no un titolo nella finestra informazioni per l'indicatore. Disattivarlo è spesso utile quando si utilizza un template per la formattazione del contenuto della finestra informazioni.",
'semanticmaps-par-hidenamespace' => "Mostrare oppure no il namespace del titolo nella finestra informazioni per l'indicatore.",
'semanticmaps-par-centre' => 'Il centro della mappa. Quando non indicato, la mappa sceglierà automaticamente il centro ottimale per visualizzare tutti gli indicatori sulla mappa.',
'semanticmaps-par-template' => 'Un template da utilizzare per formattare il contenuto della finestra informazioni.',
'semanticmaps-par-geocodecontrol' => 'Mostra il controllo per geocodifica.',
'semanticmaps-kml-text' => "Il testo associato per ogni pagina. Sovrascritto dall'eventuale proprietà dell'interrogazione aggiuntiva.",
'semanticmaps-kml-title' => 'Il titolo predefinito per i risultati',
'semanticmaps-kml-linkabsolute' => 'I collegamenti dovranno essere assoluti o no (ovvero relativi)',
'semanticmaps-kml-pagelinktext' => 'Il testo da utilizzare per i collegamenti alla pagina, in cui $1 verrà sostituito dal titolo della pagina',
);
/** Japanese (日本語)
* @author Fryed-peach
* @author Mizusumashi
* @author Schu
* @author Shirayuki
* @author 青子守歌
*/
$messages['ja'] = array(
'semanticmaps-desc' => 'Semantic MediaWiki 拡張機能で格納された座標データを表示・編集する機能を提供する ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps 詳細情報...])',
'semanticmaps-unrecognizeddistance' => '値$1は有効な距離ではありません。',
'semanticmaps-kml-link' => 'KMLファイルを閲覧',
'semanticmaps-default-kml-pagelink' => 'ページ$1を表示',
'semanticmaps-latitude' => '緯度: $1',
'semanticmaps-longitude' => '経度: $1',
'semanticmaps-altitude' => '高度: $1',
'semanticmaps-loading-forminput' => 'フォーム入力からマップを読み込んでいます...',
'semanticmaps_lookupcoordinates' => '座標を検索',
'semanticmaps_enteraddresshere' => '住所をここに入力',
'semanticmaps-updatemap' => '地図を更新',
'semanticmaps-forminput-remove' => '除去',
'semanticmaps-forminput-add' => '追加',
'semanticmaps-forminput-locations' => '場所',
'semanticmaps-par-staticlocations' => '問い合わせたデータと共に地図に追加する場所の列挙です。display_points と同様に、区切り文字としてチルダ「~」を使用して、場所ごとにタイトル、説明、アイコンを追加できます。',
'semanticmaps-par-forceshow' => '表示する場所がない場合でも、地図を表示しますか?',
'semanticmaps-par-showtitle' => 'マーカーの情報ウィンドウのタイトルを表示するかどうか。情報ウィンドウのコンテンツをフォーマットするためにテンプレートを使用するとき、これを無効にすると便利です。',
'semanticmaps-par-hidenamespace' => 'マーカー情報ウィンドウに名前空間名を表示する',
'semanticmaps-par-centre' => '地図の中心。提供されていないときは、自動的に地図上のすべてのマーカーを表示するための最適な中心が選択されます。',
'semanticmaps-par-template' => '情報ウィンドウのコンテンツの整形に使用するテンプレートです。',
'semanticmaps-par-geocodecontrol' => 'ジオコーディングコントロールを表示します。',
'semanticmaps-kml-text' => '各ページに関連付けられたテキストです。クエリに追加的なプロパティがある場合は上書きされます。',
'semanticmaps-kml-title' => '結果の既定のタイトル',
'semanticmaps-kml-linkabsolute' => 'リンクは絶対表記 (= 相対表記の対義語) にしてください。',
'semanticmaps-kml-pagelinktext' => 'ページへのリンクに使用するテキスト ($1 はページ名に置換される)',
'semanticmaps-shapes-improperformat' => '$1 を不適切な形式に整形しようとしました。整形のドキュメントを参照してください。',
'semanticmaps-shapes-missingshape' => '$1 の図形が見つかりません。利用できる図形についてドキュメントを参照してください。',
);
/** Georgian (ქართული)
* @author David1010
*/
$messages['ka'] = array(
'semanticmaps-kml-link' => 'KML ფაილის ხილვა',
'semanticmaps-default-kml-pagelink' => 'გვერდი $1 ხილვა',
'semanticmaps-latitude' => 'განედი: $1',
'semanticmaps-longitude' => 'გრძედი: $1',
'semanticmaps-altitude' => 'სიმაღლე: $1',
'semanticmaps-loading-forminput' => 'რუკის ჩატვირთვა...',
'semanticmaps_lookupcoordinates' => 'კოორდინატების პოვნა',
'semanticmaps_enteraddresshere' => 'შეიყვანეთ მისამართი',
'semanticmaps-updatemap' => 'რუკის განახლება',
'semanticmaps-forminput-remove' => 'წაშლა',
'semanticmaps-forminput-add' => 'დამატება',
'semanticmaps-forminput-locations' => 'მდებარეობები',
'semanticmaps-kml-title' => 'საწყისი სათაური შედეგებისათვის',
);
/** Khmer (ភាសាខ្មែរ)
* @author Thearith
*/
$messages['km'] = array(
'semanticmaps_lookupcoordinates' => 'ក្រឡេកមើលកូអរដោនេ',
);
/** Korean (한국어)
* @author 아라
*/
$messages['ko'] = array(
'semanticmaps-desc' => '시맨틱 미디어위키 확장 기능으로 저장된 좌표 데이터를 보고 편집할 수 있는 기능을 제공합니다 ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps 자세한 정보...])',
'semanticmaps-unrecognizeddistance' => '$1 값은 올바른 거리가 아닙니다.',
'semanticmaps-kml-link' => 'KML 파일 보기',
'semanticmaps-default-kml-pagelink' => '$1 문서 보기',
'semanticmaps-latitude' => '위도: $1',
'semanticmaps-longitude' => '경도: $1',
'semanticmaps-altitude' => '고도: $1',
'semanticmaps-loading-forminput' => '양식에 입력한 지도를 불러오는 중...',
'semanticmaps_lookupcoordinates' => '좌표 찾기',
'semanticmaps_enteraddresshere' => '여기에 주소를 입력',
'semanticmaps-updatemap' => '지도 업데이트',
'semanticmaps-forminput-remove' => '제거',
'semanticmaps-forminput-add' => '추가',
'semanticmaps-forminput-locations' => '위치',
'semanticmaps-par-staticlocations' => '쿼리된 데이터와 함께 지도를 추가하는 위치의 목록입니다. display_points와 같이, 구분자로 물결표 "~"를 사용하여 위치마다 제목과 설명, 아이콘을 추가할 수 있습니다.',
'semanticmaps-par-forceshow' => '보여줄 위치가 없을 때 지도를 보이겠습니까?',
'semanticmaps-par-showtitle' => '표시 정보 창에서 제목에 보여주거나 보여주지 않습니다. 정보 창 내용의 형식에 틀을 사용할 때 이를 비활성화하면 편리합니다.',
'semanticmaps-par-hidenamespace' => '표시 정보 창의 이름공간 제목 보이기',
'semanticmaps-par-centre' => '지도의 가운데입니다. 제공하지 않으면, 지도는 자동으로 지도에서 모든 표시를 보여줄 최적의 가운데를 선택합니다.',
'semanticmaps-par-template' => '정보 창 내용을 형식에 사용하는 틀입니다.',
'semanticmaps-par-geocodecontrol' => '좌표화 컨트롤을 보여줍니다.',
'semanticmaps-kml-text' => '각 페이지와 관련된 텍스트입니다. 추가적인 쿼리된 속성이 있으면 덮어 씁니다.',
'semanticmaps-kml-title' => '결과에 대한 기본 제목',
'semanticmaps-kml-linkabsolute' => '링크는 (상대적와 반대인) 절대적이어야 합니다',
'semanticmaps-kml-pagelinktext' => '$1 문서는 문서 제목으로 바뀔 문서의 링크에 사용하는 텍스트',
'semanticmaps-shapes-improperformat' => '$1의 부적절한 형식입니다. 형식에 대해서는 설명서를 참고하세요.',
'semanticmaps-shapes-missingshape' => '$1에 대한 모양을 찾을 수 없습니다. 사용할 수 있는 모양에 대해서는 설명서를 참고하세요',
);
/** Colognian (Ripoarisch)
* @author Purodha
*/
$messages['ksh'] = array(
'semanticmaps-desc' => 'Määt et müjjelesch, Koodinaate ze beloore un ze ändere, di mem „Semantesch Mediawiki“ faßjehallde woode sin. ([https://www.semantic-mediawiki.org/wiki/Semantic_Maps Mieh Aanjaabe{{int:ellipsis}}])',
'semanticmaps-unrecognizeddistance' => 'Dä Wäät „$1“ es keine jölteje Afschtand.',
'semanticmaps-kml-link' => 'De KML-Dattei belooere',
'semanticmaps-kml' => 'Äxpoot als KML',
'semanticmaps-default-kml-pagelink' => 'De Sigg „$1“ belooere',
'semanticmaps-latitude' => 'Dä Breedejrad om Jloobos: $1',
'semanticmaps-longitude' => 'Dä Längejraad om Jloobos: $1',
'semanticmaps-altitude' => 'De Hühde: $1',
'semanticmaps-loading-forminput' => 'Mer sin de Enjaabe vum Fommulaa for die Kaat aam laade …',
'semanticmaps_lookupcoordinates' => 'Koordinate nohkike',
'semanticmaps_enteraddresshere' => 'Donn hee de Address enjäve',