-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
1069 lines (1033 loc) · 38.7 KB
/
config.toml
File metadata and controls
1069 lines (1033 loc) · 38.7 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
# The URL the site will be built for
base_url = "https://www.comaps.app"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
title = "CoMaps"
description = "Free offline maps app for travellers, tourists, hikers, and cyclists based on OpenStreetMap data. Privacy and community focused, and open-source forever ♥️"
author = "hello@comaps.app"
generate_feeds = true
feed_filenames = ["atom.xml", "rss.xml"]
taxonomies = [
# {name = "faq", feed = false},
{name = "support", feed = false},
{name = "category", paginate_by = 50, feed = true},
{name = "coverage_type", paginate_by = 50, feed = true},
]
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = false
#default_language = "en"
# [search]
# Whether to include the title of the page/section in the index
# include_title = true
# Whether to include the description of the page/section in the index
# include_description = false
# Whether to include the RFC3339 datetime of the page in the search index
# include_date = false
# Whether to include the path of the page/section in the index (the permalink is always included)
# include_path = true
# Whether to include the rendered content of the page/section in the index
# include_content = true
# At which code point to truncate the content to. Useful if you have a lot of pages and the index would
# become too big to load on the site. Defaults to not being set.
# truncate_content_length = 100
# Whether to produce the search index as a javascript file or as a JSON file
# Accepted values:
# - "elasticlunr_javascript", "elasticlunr_json"
# - "fuse_javascript", "fuse_json"
# index_format = "elasticlunr_json"
# ignored_content = [".DS_Store"]
[link_checker]
internal_level = "warn"
[markdown]
external_links_target_blank = true
# Allows to have localized URLs.
[slugify]
paths = "safe"
taxonomies = "on"
[[extra.social_media]]
title = "mastodon"
icon = "mastodon.svg"
link = "https://floss.social/@CoMaps"
[[extra.social_media]]
title = "pixelfed"
icon = "pixelfed.svg"
link = "https://pixelfed.social/CoMaps"
[[extra.social_media]]
title = "Bluesky"
icon = "bluesky.svg"
link = "https://bsky.app/profile/comaps.app"
[[extra.social_media]]
title = "Lemmy"
icon = "lemmy.svg"
link = "https://sopuli.xyz/c/CoMaps"
[[extra.social_media]]
title = "reddit"
icon = "reddit.svg"
link = "https://www.reddit.com/r/CoMaps/"
# [[extra.social_media]]
# title = "Instagram"
# icon = "insta.svg"
# link = "https://www.instagram.com/comaps.app/"
# [[extra.social_media]]
# title = "facebook"
# icon = "fb.svg"
# link = "https://www.facebook.com/CoMapsApp/"
# [[extra.social_media]]
# title = "linkedin"
# icon = "linkedin.svg"
# link = "https://www.linkedin.com/company/comapsapp/"
# [[extra.social_media]]
# title = "threads"
# icon = "threads.svg"
# link = "https://www.threads.com/@comaps.app"
# [[extra.social_media]]
# title = "x"
# icon = "x.svg"
# link = "https://x.com/comapsapp"
# class= "icon-x"
[[extra.chat]]
title = "matrix"
icon = "matrix.svg"
link = "https://matrix.to/#/#comaps-space:matrix.org"
[[extra.chat]]
title = "SimpleX"
icon = "simplex.svg"
link = "https://simplex.chat/contact#/?v=2-7&smp=smp%3A%2F%2FZKe4uxF4Z_aLJJOEsC-Y6hSkXgQS5-oc442JQGkyP8M%3D%40smp17.simplex.im%2FGXVXWYUwygUQ_pl4tXlHKOHZHy4keMs_%23%2F%3Fv%3D1-4%26dh%3DMCowBQYDK2VuAyEAO0uHOTEel8n1JH8nNXUedXcEO235LiM9tIdySXo0Ahs%253D%26q%3Dc%26srv%3Dogtwfxyi3h2h5weftjjpjmxclhb5ugufa5rcyrmg7j4xlch7qsr5nuqd.onion&data=%7B%22groupLinkId%22%3A%22Gg3cxlN3gwtVJhiGH0WuZw%3D%3D%22%7D"
[[extra.chat]]
title = "signal"
icon = "signal.svg"
link = "https://signal.group/#CjQKIJdCAMWLYeBmBNJzSFtkMyPjMgCqDmmtpxRG7fVs865MEhCn40qur9UqObYzsH8FI0bs"
[[extra.chat]]
title = "telegram"
icon = "telegram.svg"
link = "https://codeberg.org/comaps/communication/wiki/Chat-Rooms"
[[extra.miscellaneous]]
title = "opencollective"
icon = "opencollective.svg"
link = "https://opencollective.com/comaps"
[[extra.miscellaneous]]
title = "email"
icon = "email.svg"
link = "mailto:hello@comaps.app"
# [extra]
# stripe = "https://donate.comaps.app/"
# [[extra.social_media]]
# title = "tiktok"
# icon = "tiktok.svg"
# link = "https://www.tiktok.com/@comapscommunity"
# [[extra.social_media]]
# title = "youtube"
# icon = "youtube.svg"
# link = ""
# [[extra.social]]
# title = "github"
# icon = "github-circle.svg"
# link = ""
# class= "icon-github"
# Default English translation
[translations]
language = "English"
const_lang = "Language"
button-download = "Download"
faq_content = "CoMaps - F.A.Q."
# Navigation Menu
menu_home = "Home"
menu_news = "News"
menu_community = "Community"
menu_donate = "Donate"
menu_help = "Help"
menu_about_us = "About Us"
menu_source_code = "Source Code"
menu_api = "API"
menu_privacy = "Privacy"
menu_media_coverage = "Media Coverage"
# News
all_title = "All"
releases_title = "Releases"
more_title = "More"
# Support
how_can_help = "How can we help?"
search_placeholder = "Describe the issue"
search_placeholder_simple = "Search"
# Social
social_title = "Connect with Us"
# Get Involved / Donate
inv_title = "Get Involved"
donate-description = "The app runs on your donations, help improve it"
inv_code_title = "Contribute Code"
inv_code_text = "Build the app used by people around the world"
inv_info_title = "Add Place Info"
inv_info_text = "Add info around you, and make the maps better for everyone"
# Please sort all other translation sections and values in alphabetical order.
[languages.de]
[languages.de.translations]
language = "Deutsch"
const_lang = "Sprache"
button-download = "Download"
faq_content = "CoMaps - F.A.Q."
menu_home = "Home"
menu_news = "Neuigkeiten"
menu_community = "Community"
menu_donate = "Spenden"
menu_help = "Hilfe"
menu_about_us = "Über uns"
menu_source_code = "Quellcode"
menu_api = "API"
menu_privacy = "Datenschutz"
menu_media_coverage = "In den Medien"
all_title = "Alle"
releases_title = "Veröffentlichungen"
more_title = "Mehr"
how_can_help = "Wie können wir helfen?"
search_placeholder = "Beschreibe das Problem"
search_placeholder_simple = "Suche"
social_title = "Bleib in Kontakt"
inv_title = "Mitmachen"
donate-description = "Die App lebt von deinen Spenden – hilf mit, sie zu verbessern"
inv_code_title = "Code beitragen"
inv_code_text = "Entwickle die weltweit genutzte App"
inv_info_title = "Ortsinformationen hinzufügen"
inv_info_text = "Füge Infos aus deiner Umgebung hinzu und verbessere die Karten für alle"
[languages.fr]
[languages.fr.translations]
language = "Français"
const_lang = "Langue"
button-download = "Télécharger"
faq_content = "CoMaps - F.A.Q."
menu_home = "Accueil"
menu_news = "Actualités"
menu_community = "Communauté"
menu_donate = "Faire un don"
menu_help = "Aide"
menu_about_us = "À propos de nous"
menu_source_code = "Code source"
menu_api = "API"
menu_privacy = "Vie privée"
menu_media_coverage = "Couverture médiatique"
all_title = "Tout"
releases_title = "Versions"
more_title = "Plus"
how_can_help = "Comment pouvons-nous vous aider ?"
search_placeholder = "Décrivez le problème"
search_placeholder_simple = "Rechercher"
social_title = "Rentrons en contact"
inv_title = "Impliquez-vous"
donate-description = "L’application dépend de vos dons, aidez-nous à l’améliorer"
inv_code_title = "Contribuez au code"
inv_code_text = "Construisez l’application utilisée par les gens autour du monde"
inv_info_title = "Ajoutez des infos sur les lieux"
inv_info_text = "Ajoutez des infos autour de vous, et rendez les cartes meilleures pour tout le monde"
[languages.it]
[languages.it.translations]
language = "Italiano"
const_lang = "Lingua"
button-download = "Scarica"
faq_content = "CoMaps - F.A.Q."
menu_home = "Home"
menu_news = "Notizie"
menu_community = "Comunità"
menu_donate = "Dona"
menu_help = "Aiuto"
menu_about_us = "Chi siamo"
menu_source_code = "Codice sorgente"
menu_api = "API"
menu_privacy = "Privacy"
menu_media_coverage = "Media Coverage"
all_title = "Tutti"
releases_title = "Rilasci"
more_title = "Di più"
how_can_help = "Come possiamo aiutarti?"
search_placeholder = "Descrivi il problema"
search_placeholder_simple = "Cerca"
social_title = "Contattaci"
inv_title = "Partecipa"
donate-description = "L'app dipende dalle tue donazioni, contribuisci a migliorarla"
inv_code_title = "Contribuisci al codice"
inv_code_text = "Costruisci l'applicazione utilizzata da persone in tutto il mondo"
inv_info_title = "Aggiungi delle informazioni sui posti"
inv_info_text = "Aggiungi delle informazioni intorno a te, e rendi le mappe migliori per tutti"
[languages.cs]
[languages.cs.translations]
language = "Čeština"
const_lang = "Jazyk"
button-download = "Stáhnout"
faq_content = "CoMaps – Časté dotazy"
menu_home = "Domů"
menu_news = "Novinky"
menu_community = "Komunita"
menu_donate = "Darovat"
menu_help = "Nápověda"
menu_about_us = "O nás"
menu_source_code = "Zdrojový kód"
menu_api = "API"
menu_privacy = "Soukromí"
menu_media_coverage = "Články v médiích"
all_title = "Vše"
releases_title = "Vydání"
more_title = "Více"
how_can_help = "Jak vám můžeme pomoci?"
search_placeholder = "Popište problém"
search_placeholder_simple = "Hledat"
social_title = "Spojte se s námi"
inv_title = "Zapojte se"
donate-description = "Tuto aplikaci pohání vaše dary, pomozte ji vylepšit"
inv_code_title = "Přispějte kódem"
inv_code_text = "Vytvářejte aplikaci používanou lidmi po celém světě"
inv_info_title = "Přidávejte místa"
inv_info_text = "Přidávejte informace kolem sebe a zlepšete tím mapy pro všechny ostatní"
[languages.pt.translations]
language = "Português"
const_lang = "Idioma"
button-download = "Descarregar"
faq_content = "CoMaps - Dúvidas comuns."
menu_home = "Início"
menu_news = "Notícias"
menu_community = "Comunidade"
menu_donate = "Donativos"
menu_help = "Ajuda"
menu_about_us = "Sobre nós"
menu_source_code = "Código Fonte"
menu_api = "API"
menu_privacy = "Privacidade"
menu_media_coverage = "Cobertura de Media"
all_title = "Todas"
releases_title = "Lançamentos"
more_title = "Mais"
how_can_help = "Como podemos ajudar?"
search_placeholder = "Descreva o problema"
search_placeholder_simple = "Pesquisar"
social_title = "Entra em contacto connosco"
inv_title = "Envolve-te"
donate-description = "Esta aplicação depende dos vossos donativos, ajude a torná-la melhor"
inv_code_title = "Contribuir com código"
inv_code_text = "Ajude a construir a aplicação utilizada por pessoas de todos os cantos do planeta"
inv_info_title = "Adicionar Informação sobre o Local"
inv_info_text = "Adiciona informações sobre o mundo à tua volta e torna os mapas melhores para todos"
[languages.pt-BR.translations]
language = "Português (Brasil)"
const_lang = "Idioma"
button-download = "Baixar"
faq_content = "CoMaps - Perguntas frequentes"
menu_home = "Início"
menu_news = "Notícias"
menu_community = "Comunidade"
menu_donate = "Doar"
menu_help = "Ajuda"
menu_about_us = "Sobre Nós"
menu_source_code = "Código-fonte"
menu_api = "API"
menu_privacy = "Privacidade"
menu_media_coverage = "Cobertura da Mídia"
all_title = "Tudo"
releases_title = "Lançamentos"
more_title = "Mais"
how_can_help = "Como podemos ajudar?"
search_placeholder = "Descreva o problema"
search_placeholder_simple = "Buscar"
social_title = "Conecte-se conosco"
inv_title = "Envolva-se"
donate-description = "O aplicativo funciona com suas doações, ajude a melhorá-lo"
inv_code_title = "Contribua ao código"
inv_code_text = "Construa o app usado por pessoas de todo o mundo"
inv_info_title = "Adicione informações de locais"
inv_info_text = "Adicione informações ao seu redor e torne os mapas melhores para todos"
[languages.es.translations]
language = "Español"
const_lang = "Idioma"
button-download = "Descargar"
faq_content = "CoMaps - Preguntas frecuentes"
menu_home = "Inicio"
menu_news = "Noticias"
menu_community = "Comunidad"
menu_donate = "Donar"
menu_help = "Ayuda"
menu_about_us = "Acerca de"
menu_source_code = "Código fuente"
menu_api = "API"
menu_privacy = "Privacidad"
menu_media_coverage = "Cobertura Mediática"
all_title = "Todo"
releases_title = "Lanzamientos"
more_title = "Más"
how_can_help = "¿Cómo te podemos ayudar?"
search_placeholder = "Describe la incidencia"
search_placeholder_simple = "Buscar"
social_title = "Conecta con nosotros"
inv_title = "Involúcrate"
donate-description = "La aplicación funciona con tus donaciones, ayuda a mejorarla"
inv_code_title = "Contribuye al código"
inv_code_text = "Construye la aplicación utilizada por gente de todo el mundo"
inv_info_title = "Añade información de lugares"
inv_info_text = "Añade información cerca de ti, y haz que los mapas sean mejores para todos"
[languages.hu.translations]
language = "Magyar"
const_lang = "Nyelv"
button-download = "Letöltés"
faq_content = "CoMaps - GYIK"
menu_home = "Főoldal"
menu_news = "Hírek"
menu_community = "Közösség"
menu_donate = "Adományozás"
menu_help = "Súgó"
menu_about_us = "Névjegy"
menu_source_code = "Forráskód"
menu_api = "API"
menu_privacy = "Adatvédelem-központú"
menu_media_coverage = "Médiavisszhang"
all_title = "Összes"
releases_title = "Kiadások"
more_title = "Továbbiak"
how_can_help = "Miben segíthetünk?"
search_placeholder = "Probléma leírása"
search_placeholder_simple = "Keresés"
social_title = "Lépjen velünk kapcsolatba"
inv_title = "Vegyen részt a projektben"
donate-description = "Az alkalmazás adományokból működik, segítsen javítani ezen"
inv_code_title = "Közreműködés a forráskódban"
inv_code_text = "Készítse Ön is az alkalmazást, amelyet az emberek világszerte használnak"
inv_info_title = "Helyinformációk hozzáadása"
inv_info_text = "Adjon hozzá információkat a térképhez, és tegye jobbá mindenki számára"
[languages.uk.translations]
language = "Українська"
const_lang = "Мова"
button-download = "Завантажити"
faq_content = "CoMaps - ЧаПи"
menu_home = "Головна"
menu_news = "Новини"
menu_community = "Спільнота"
menu_donate = "Пожертвувати"
menu_help = "Допомога"
menu_about_us = "Про нас"
menu_source_code = "Вихідний код"
menu_api = "API"
menu_privacy = "Приватність"
menu_media_coverage = "Media Coverage"
all_title = "Усе"
releases_title = "Випуски"
more_title = "Більше"
how_can_help = "Чим ми можемо допомогти?"
search_placeholder = "Опишіть проблему"
search_placeholder_simple = "Пошук"
social_title = "Зв’яжіться з нами"
inv_title = "Долучайтеся"
donate-description = "Застосунок працює завдяки вашим пожертвам, допоможіть покращити його"
inv_code_title = "Внесіть свій код"
inv_code_text = "Створюйте застосунок, яким користуються люди по всьому світу"
inv_info_title = "Додайте інформацію про місце"
inv_info_text = "Додайте інформацію навколо себе і покращуйте карти для всіх"
[languages.zh-Hans.translations]
language = "简体中文"
const_lang = "语言"
button-download = "下载"
faq_content = "CoMaps - 常见问题"
menu_home = "主页"
menu_news = "新闻"
menu_community = "社区"
menu_donate = "捐助我们"
menu_help = "帮助"
menu_about_us = "关于我们"
menu_source_code = "源代码"
menu_api = "API"
menu_privacy = "隐私"
menu_media_coverage = "媒体报道"
all_title = "全部"
releases_title = "发布"
more_title = "更多"
how_can_help = "我们能为您提供什么帮助?"
search_placeholder = "描述问题"
search_placeholder_simple = "搜索"
social_title = "联系我们"
inv_title = "参与我们"
donate-description = "本应用依靠您的捐赠运行,请帮助改善它"
inv_code_title = "贡献代码"
inv_code_text = "共建世界各地都在使用的应用"
inv_info_title = "添加地点信息"
inv_info_text = "添加周围环境信息,让地图更好地为所有人服务"
[languages.ar.translations]
language = "العربية"
const_lang = "Language"
button-download = "Download"
faq_content = "CoMaps - F.A.Q."
menu_home = "Home"
menu_news = "News"
menu_community = "Community"
menu_donate = "تبرع"
menu_help = "Help"
menu_about_us = "About Us"
menu_source_code = "Source Code"
menu_api = "API"
menu_privacy = "Privacy"
menu_media_coverage = "Media Coverage"
all_title = "All"
releases_title = "التحديثات و الإصدارات"
more_title = "More"
how_can_help = "How can we help?"
search_placeholder = "Describe the issue"
search_placeholder_simple = "Search"
social_title = "Connect with Us"
inv_title = "Get Involved"
donate-description = "The app runs on your donations, help improve it"
inv_code_title = "Contribute Code"
inv_code_text = "Build the app used by people around the world"
inv_info_title = "Add Place Info"
inv_info_text = "Add info around you, and make maps better for everyone"
[languages.zh-Hant.translations]
language = "正體中文"
const_lang = "語言"
button-download = "下載"
faq_content = "CoMaps—常見問題"
menu_home = "首頁"
menu_news = "新聞"
menu_community = "社群"
menu_donate = "捐款贊助"
menu_help = "幫助"
menu_about_us = "關於我們"
menu_source_code = "原始碼"
menu_api = "API"
menu_privacy = "隱私"
menu_media_coverage = "媒體報導"
all_title = "全部"
releases_title = "版本發布"
more_title = "了解更多"
how_can_help = "我們可以提供什麼協助?"
search_placeholder = "描述問題"
search_placeholder_simple = "搜尋"
social_title = "聯絡我們"
inv_title = "參與我們"
donate-description = "本應用依靠您的贊助維持運作,請幫助改善它"
inv_code_title = "貢獻程式碼"
inv_code_text = "共建世界各地都在使用的應用"
inv_info_title = "新增位置資訊"
inv_info_text = "新增周圍環境資訊,讓地圖更好地為所有人服務"
[languages.et.translations]
language = "eesti keel"
const_lang = "Keel"
button-download = "Laadi alla"
faq_content = "CoMaps - Korduma kippuvad küsimused"
menu_home = "Avaleht"
menu_news = "Uudised"
menu_community = "Kogukond"
menu_donate = "Anneta"
menu_help = "Abiteave"
menu_about_us = "Teave meie kohta"
menu_source_code = "Lähtekood"
menu_api = "API"
menu_privacy = "Privaatsus"
menu_media_coverage = "Mainimised meedias"
all_title = "Kõik"
releases_title = "Rakenduse versioonid"
more_title = "Veel"
how_can_help = "Kuidas me saame aidata?"
search_placeholder = "Kirjelda viga"
search_placeholder_simple = "Otsi"
social_title = "Suhtle meiega"
inv_title = "Osale"
donate-description = "Selle rakenduse hooldus ja arendus põhineb vaid kasutajate toel - sinu osalemine on oluline"
inv_code_title = "Kirjuta koodi"
inv_code_text = "Aita luua kaardirakendust, mille kasutajaid leidub kõikjal maailmas"
inv_info_title = "Lisa asukohateavet"
inv_info_text = "Lisa teavet oma ümbruskonnast ja aita kõigi jaoks luua paremat kaarti"
[languages.fi.translations]
language = "Suomi"
const_lang = "Kieli"
button-download = "Lataa"
faq_content = "CoMaps - Usein kysytyt kysymykset"
menu_home = "Etusivu"
menu_news = "Uutiset"
menu_community = "Yhteisö"
menu_donate = "Lahjoita"
menu_help = "Ohje"
menu_about_us = "Meistä"
menu_source_code = "Lähdekoodi"
menu_api = "API"
menu_privacy = "Yksityisyys"
menu_media_coverage = "Medianäkyvyys"
all_title = "Kaikki"
releases_title = "Julkaisut"
more_title = "Lisää"
how_can_help = "Kuinka voimme auttaa?"
search_placeholder = "Kuvaile ongelma"
search_placeholder_simple = "Etsi"
social_title = "Ota yhteyttä"
inv_title = "Osallistu"
donate-description = "Sovelluksen ylläpito ja kehitys mahdollistetaan lahjoituksilla, auta parantamaan sitä"
inv_code_title = "Luo koodia"
inv_code_text = "Rakenna sovellus käytettäväksi ympäri maailmaa"
inv_info_title = "Lisää paikan tiedot"
inv_info_text = "Lisää ympärilläsi olevia tietoja ja auta tekemään kartoista parempia kaikille"
[languages.hr.translations]
language = "Hrvatski"
const_lang = "Language"
button-download = "Download"
faq_content = "CoMaps - F.A.Q."
menu_home = "Home"
menu_news = "News"
menu_community = "Zajednica"
menu_donate = "Doniraj"
menu_help = "Help"
menu_about_us = "About Us"
menu_source_code = "Source Code"
menu_api = "API"
menu_privacy = "Privacy"
menu_media_coverage = "Media Coverage"
all_title = "All"
releases_title = "Releases"
more_title = "More"
how_can_help = "How can we help?"
search_placeholder = "Describe the issue"
search_placeholder_simple = "Search"
social_title = "Connect with Us"
inv_title = "Get Involved"
donate-description = "Podržite razvoj aplikacije donacijom"
inv_code_title = "Contribute Code"
inv_code_text = "Build the app used by people around the world"
inv_info_title = "Add Place Info"
inv_info_text = "Add info around you, and make the maps better for everyone"
[languages.ca.translations]
language = "Català"
const_lang = "Idioma"
button-download = "Descarregar"
faq_content = "CoMaps - Preguntes freqüents"
menu_home = "Inici"
menu_news = "Notícies"
menu_community = "Comunitat"
menu_donate = "Donatius"
menu_help = "Ajuda"
menu_about_us = "Qui som"
menu_source_code = "Codi font"
menu_api = "API"
menu_privacy = "Privacitat"
menu_media_coverage = "Media Coverage"
all_title = "Tot"
releases_title = "Versions"
more_title = "Més"
how_can_help = "Com podem ajudar-te?"
search_placeholder = "Descriu el problema"
search_placeholder_simple = "Cerca"
social_title = "Connecta amb nosaltres"
inv_title = "Involucra't"
donate-description = "L'aplicació depèn de les vostres donacions. Ajuda a millorar-la"
inv_code_title = "Contribueix al codi"
inv_code_text = "Construeix l'aplicació utilitzada per gent arreu del món"
inv_info_title = "Afegeix informació dels llocs"
inv_info_text = "Afegeix informació del teu entorn, i fes que els mapes siguin millors per a tothom"
[languages.nl.translations]
language = "Nederlands"
const_lang = "Taal"
button-download = "Download"
faq_content = "CoMaps - F.A.Q."
menu_home = "Home"
menu_news = "Nieuws"
menu_community = "Community"
menu_donate = "Doneer"
menu_help = "Help"
menu_about_us = "Over ons"
menu_source_code = "Broncode"
menu_api = "API"
menu_privacy = "Privacy"
menu_media_coverage = "Media-aandacht"
all_title = "Alles"
releases_title = "Releases"
more_title = "Meer"
how_can_help = "Hoe kunnen we je helpen?"
search_placeholder = "Beschrijf het probleem"
search_placeholder_simple = "Zoeken"
social_title = "Verbind met ons"
inv_title = "Doe mee"
donate-description = "De app draait op jouw donaties, help de app te verbeteren"
inv_code_title = "Code bijdragen"
inv_code_text = "Bouw de app die wereldwijd wordt gebruikt"
inv_info_title = "Voeg plaatsinfo toe"
inv_info_text = "Voeg informatie van je omgeving toe en verbeter de kaarten voor iedereen"
[languages.ru.translations]
language = "Русский"
const_lang = "Язык"
button-download = "Скачать"
faq_content = "CoMaps — ЧаВо"
menu_home = "Главная"
menu_news = "Новости"
menu_community = "Сообщество"
menu_donate = "Пожертвовать"
menu_help = "Справка"
menu_about_us = "О нас"
menu_source_code = "Исходный код"
menu_api = "API"
menu_privacy = "Приватность"
menu_media_coverage = "Освещение в СМИ"
all_title = "Все"
releases_title = "Выпуски"
more_title = "Больше"
how_can_help = "Как мы можем помочь?"
search_placeholder = "Опишите проблему"
search_placeholder_simple = "Поиск"
social_title = "Свяжитесь с нами"
inv_title = "Примите участие"
donate-description = "Разработка приложения ведётся на ваши пожертвования, помогите улучшить его"
inv_code_title = "Предложите код"
inv_code_text = "Создайте приложение, которым пользуются люди по всему миру"
inv_info_title = "Добавьте информацию о местах"
inv_info_text = "Добавьте информацию вокруг себя и сделайте карты лучше для всех"
[languages.tr.translations]
language = "Türkçe"
const_lang = "Dil"
button-download = "İndir"
faq_content = "CoMaps - SSS"
menu_home = "Ev"
menu_news = "Haberler"
menu_community = "Topluluk"
menu_donate = "Bağış yapın"
menu_help = "Yardım"
menu_about_us = "Hakkımızda"
menu_source_code = "Kaynak Kodu"
menu_api = "API"
menu_privacy = "Gizlilik-Odaklı"
menu_media_coverage = "Media Coverage"
all_title = "Tümü"
releases_title = "Sürümler"
more_title = "Daha fazla"
how_can_help = "Nasıl yardımcı olabiliriz?"
search_placeholder = "Hatayı açıklayın"
search_placeholder_simple = "Ara"
social_title = "Bize Bağlanın"
inv_title = "Katıl"
donate-description = "Uygulama bağışlarınızla çalışıyor, yardımcı olun"
inv_code_title = "Koda Katkıda bulun"
inv_code_text = "Dünya çapındaki insanların kullandığı uygulamayı oluşturun"
inv_info_title = "Yer Bilgisi Ekle"
inv_info_text = "Çevrenizdeki bilgileri ekleyin ve haritaları herkes için daha iyi hale getirin"
[languages.gl.translations]
language = "Galego"
const_lang = "Idioma"
button-download = "Descargar"
faq_content = "CoMaps - P.M.F."
menu_home = "Inicio"
menu_news = "Novas"
menu_community = "Comunidade"
menu_donate = "Doar"
menu_help = "Axuda"
menu_about_us = "Sobre"
menu_source_code = "Código Fonte"
menu_api = "API"
menu_privacy = "Privacidade"
menu_media_coverage = "Cobertura dos medios"
all_title = "Todo"
releases_title = "Publicacións"
more_title = "Máis"
how_can_help = "Como podemos axudar?"
search_placeholder = "Describe a incidencia"
search_placeholder_simple = "Buscar"
social_title = "Contacta con nós"
inv_title = "Involúcrate"
donate-description = "A aplicación funciona grazas ás túas doazóns, axuda a mellorala"
inv_code_title = "Colabora con Código"
inv_code_text = "Constrúe a aplicación que usan as persoas en todo o mundo"
inv_info_title = "Engade info de Lugares"
inv_info_text = "Engade información preto de ti, e mellora os mapas para todas nós"
[languages.gsw.translations]
language = "Schwiizerdütsch"
const_lang = "Spraach"
button-download = "Abelade"
faq_content = "CoMaps - F.A.Q."
menu_home = "Home"
menu_news = "Neuigkeite"
menu_community = "Community"
menu_donate = "Spende"
menu_help = "Hilf"
menu_about_us = "Über eus"
menu_source_code = "Quellcode"
menu_api = "API"
menu_privacy = "Dateschutz"
menu_media_coverage = "I de Medie"
all_title = "Alli"
releases_title = "Releases"
more_title = "Meh"
how_can_help = "Wie chömmer helfe?"
search_placeholder = "Beschriib s Problem"
search_placeholder_simple = "Suechi"
social_title = "Bliib in Kontakt"
inv_title = "Mitmache"
donate-description = "D App lebt vo dine Spende – hilf mit, sie z verbessere"
inv_code_title = "Code biiträge"
inv_code_text = "Entwickle die weltwiit gnutzti App"
inv_info_title = "Ortsinformatione hinzuefüege"
inv_info_text = "Füeg Infos us dinere Umgebig hinzue und verbesser d Charte für alli"
[languages.pl.translations]
language = "Polski"
const_lang = "Język"
button-download = "Pobierz"
faq_content = "CoMaps - F.A.Q."
menu_home = "Strona główna"
menu_news = "Aktualności"
menu_community = "Społeczność"
menu_donate = "Wspomóż"
menu_help = "Pomoc"
menu_about_us = "O nas"
menu_source_code = "Kod źródłowy"
menu_api = "API"
menu_privacy = "Skupione na prywatności"
menu_media_coverage = "Media Coverage"
all_title = "Wszystkie"
releases_title = "Wydania"
more_title = "Więcej"
how_can_help = "Jak możemy pomóc?"
search_placeholder = "Opisz problem"
search_placeholder_simple = "Szukaj"
social_title = "Skontaktuj się z nami"
inv_title = "Zaangażuj się"
donate-description = "Aplikacja działa dzięki Twoim darowiznom – pomóż ją ulepszać"
inv_code_title = "Współtwórz kod"
inv_code_text = "Twórz aplikację używaną przez ludzi na całym świecie"
inv_info_title = "Dodaj informacje o miejscu"
inv_info_text = "Dodawaj informacje wokół siebie i ulepszaj mapy dla wszystkich"
[languages.eu.translations]
language = "Euskara"
const_lang = "Hizkuntza"
button-download = "Deskargatu"
faq_content = "CoMaps - Ohiko galderak."
menu_home = "Hasiera"
menu_news = "Berriak"
menu_community = "Komunitatea"
menu_donate = "Dohaintza eman"
menu_help = "Laguntza"
menu_about_us = "Honi buruz"
menu_source_code = "Iturburu kodea"
menu_api = "API"
menu_privacy = "Pribatutasuna"
menu_media_coverage = "Estaldura mediatikoa"
all_title = "Denak"
releases_title = "Bertsio berriak"
more_title = "Gehiago"
how_can_help = "Nola lagundu dezakegu?"
search_placeholder = "Deskribatu arazoa"
search_placeholder_simple = "Bilatu"
social_title = "Jarri kontaktuan gurekin"
inv_title = "Inplikatu"
donate-description = "Aplikazio dohaintzen bidez funtzionatzen du, lagundu hobetzen"
inv_code_title = "Egin ekarpenak kodeari"
inv_code_text = "Sortu mundu osoko jendeak erabiltzen duen aplikazioa"
inv_info_title = "Gehitu tokiko informazioa"
inv_info_text = "Gehitu zure inguruko informazioa eta hobetu mapak denentzat"
[languages.ro.translations]
language = "Română"
const_lang = "Limbă"
button-download = "Descarcă"
faq_content = "CoMaps - F.A.Q."
menu_home = "Acasă"
menu_news = "Noutăți"
menu_community = "Comunitate"
menu_donate = "Donează"
menu_help = "Ajutor"
menu_about_us = "Despre Noi"
menu_source_code = "Cod sursă"
menu_api = "API"
menu_privacy = "Axat pe confidențialitate"
menu_media_coverage = "Media Coverage"
all_title = "Toate"
releases_title = "Lansări"
more_title = "Mai mult"
how_can_help = "Cum putem ajuta?"
search_placeholder = "Descrie problema"
search_placeholder_simple = "Caută"
social_title = "Conectează-te cu Noi"
inv_title = "Implică-te"
donate-description = "Această aplicație există datorită donațiilor voastre. Ajutați-ne să o îmbunătățim"
inv_code_title = "Contribuie la Cod"
inv_code_text = "Construiește aplicația folosită de oameni din întreaga lume"
inv_info_title = "Adaugă informații despre loc"
inv_info_text = "Adaugă informații despre împrejurimile tale și fă hărțile mai bune pentru toată lumea"
[languages.fa.translations]
language = "پارسی"
const_lang = "زبان"
button-download = "بارگیری"
faq_content = "CoMaps - سوالات متداول."
menu_home = "خانه"
menu_news = "اخبار"
menu_community = "جمعی"
menu_donate = "کمک مالی بکنید"
menu_help = "یاری"
menu_about_us = "درباره ما"
menu_source_code = "کد منبع"
menu_api = "API"
menu_privacy = "تمرکز روی حریم خصوصی"
menu_media_coverage = "Media Coverage"
all_title = "همه"
releases_title = "انتشار ها"
more_title = "بیشتر"
how_can_help = "چگونه میتوانیم یاری رسانیم؟"
search_placeholder = "مشکل رو بیان کنید"
search_placeholder_simple = "جستجو"
social_title = "با ما وصل شوید"
inv_title = "Get Involved"
donate-description = "برنامه بر روی کمک های مالی شما اجرا می شود، به بهبود آن کمک می کند"
inv_code_title = "Contribute Code"
inv_code_text = "برنامه ای رو بساز که در سراسر دنیا استفاده می شود"
inv_info_title = "اضافه کردن اطلاعات محل"
inv_info_text = "اطلاعات اطراف خود را اضافه کنید و نقشه ها را برای همه بهتر کنید"
[languages.sl.translations]
language = "Slovenščina"
const_lang = "Jezik"
button-download = "Prenesi"
faq_content = "CoMaps – Pogosta vprašanja"
menu_home = "Domov"
menu_news = "Novice"
menu_community = "Skupnost"
menu_donate = "Daruj"
menu_help = "Pomoč"
menu_about_us = "O nas"
menu_source_code = "Izvorna koda"
menu_api = "API"
menu_privacy = "Zasebnost"
menu_media_coverage = "Pokritost omrežij"
all_title = "Vse"
releases_title = "Izdaje"
more_title = "Več"
how_can_help = "Kako vam lahko pomgamo?"
search_placeholder = "Opišite težavo"
search_placeholder_simple = "Išči"
social_title = "Povežite se z nami"
inv_title = "Vključite se"
donate-description = "Orodje sloni na prostovoljnih prispevkih, pomagajte ga izboljšati"
inv_code_title = "Prispevaj programsko kodo"
inv_code_text = "Ustvari orodje, ki ga uporabljajo ljudje po vsem svetu"
inv_info_title = "Dodaj podatke o kraju"
inv_info_text = "Dodaj podatke o svoji okolici in naredi zemljevid boljši za vse"
[languages.sr.translations]
language = "Српски"
const_lang = "Jezik"
button-download = "Преузми"
faq_content = "CoMaps - ЧПП"
menu_home = "Кућа"
menu_news = "Новости"
menu_community = "Заједница"
menu_donate = "Донирајте"
menu_help = "Помоћ"
menu_about_us = "О нама"
menu_source_code = "Изворни кôд"
menu_api = "API"
menu_privacy = "Приватност"
menu_media_coverage = "Медијско извештавање"
all_title = "Све"
releases_title = "Верзије"
more_title = "Више"
how_can_help = "Како можемо помоћи?"
search_placeholder = "Опишите проблем"
search_placeholder_simple = "Претражи"
social_title = "Контактирајте нас"
inv_title = "Укључите се"
donate-description = "Апликација ради на вашим донацијама, помозите да се побољша"
inv_code_title = "Допринесите писањем кода"
inv_code_text = "Направите апликацију коју користе људи широм света"
inv_info_title = "Додајте информације о месту"
inv_info_text = "Додајте информације о свом окружењу и учините мапе бољим за све"
[languages.ta.translations]
language = "தமிழ்"
const_lang = "மொழி"
button-download = "பதிவிறக்கம்"
faq_content = "CoMaps - F.A.Q."
menu_home = "வீடு"
menu_news = "செய்தி"
menu_community = "சமூகம்"
menu_donate = "நன்கொடை"
menu_help = "உதவி"
menu_about_us = "எங்களைப் பற்றி"
menu_source_code = "மூலக் குறியீடு"
menu_api = "பநிஇ"
menu_privacy = "தனியுரிமை"
menu_media_coverage = "ஊடக முழுத் தழுவு அளவு"
all_title = "அனைத்தும்"
releases_title = "வெளியிடுகிறது"
more_title = "மேலும்"
how_can_help = "நாம் எப்படி உதவ முடியும்?"
search_placeholder = "சிக்கலை விவரிக்கவும்"
search_placeholder_simple = "தேடல்"
social_title = "எங்களுடன் இணையுங்கள்"
inv_title = "ஈடுபடுங்கள்"
donate-description = "உங்கள் நன்கொடைகளில் பயன்பாடு இயங்குகிறது, அதை மேம்படுத்த உதவுங்கள்"
inv_code_title = "பங்களிப்பு குறியீடு"
inv_code_text = "உலகம் முழுவதும் உள்ளவர்கள் பயன்படுத்தும் பயன்பாட்டை உருவாக்கவும்"
inv_info_title = "இடத் தகவலைச் சேர்க்கவும்"
inv_info_text = "உங்களைச் சுற்றியுள்ள தகவலைச் சேர்த்து, வரைபடங்களை அனைவருக்கும் சிறந்ததாக்குங்கள்"
[languages.id.translations]
language = "Bahasa Indonesia"
const_lang = "Bahasa"
button-download = "Unduh"
faq_content = "CoMaps - Pertanyaan Umum"
menu_home = "Beranda"
menu_news = "Berita"
menu_community = "Komunitas"
menu_donate = "Donasi"
menu_help = "Bantuan"
menu_about_us = "Tentang Kami"
menu_source_code = "Kode Sumber"
menu_api = "API"
menu_privacy = "Privasi"
menu_media_coverage = "Liputan Media"