forked from clausd/mapillary_localization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapillary_localization.js
2975 lines (2973 loc) · 127 KB
/
mapillary_localization.js
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
(function() {
angular.module("mapapp").config(function($translateProvider) {
$translateProvider.translations("zh-CN", {
footer: {
getApp: "下载 Mapillary 应用",
on: "在",
directAndroid: "安卓 .apk 下载链接",
manifesto: "理念",
about: "关于",
blog: "博客",
howItWorks: "如何使用",
capture: "拍摄方法",
using: "使用App",
positions: "加入我们",
legal: "法律条款",
terms: "服务条款和条件",
privacy: "私隐条款",
cookies: "Cookies",
more: "更多",
business: "解决方案",
developers: "开发者",
integrations: "合作案例",
embed: "嵌入",
latestUploads: "最新街景",
report: "报告",
follow: "关注我们"
},
landing: {
more: "更多",
photos: "张街景照片",
meters: "米"
},
landingBusiness: {
title: "Mapillary 商业解决方案",
use: "使用 Mapillary 照片",
service: "注册商用API来使用 Mapillary 的街景照片和衍生数据.",
create: "创建项目,控制访问权限和分享",
"private": "商业用户可以创建私人项目来使用 Mapillary 以推动内部信息分享与合作.",
integrate: "融合街景",
gis: "使用 Mapillary 的API或者Widget,将街景融合到你的应用程序或者地理信息系统(GIS)中.",
learn: "了解更多 Mapillary 的商业解决方案"
},
landingHow: {
one: "1. 下载Mapillary应用",
oneAvailble: "",
oneFrom: "和",
two: "2. 拍摄你身边的街景",
three: "3. 浏览, 发现, 和分享街景"
},
landingWhatyoucan: {
title: "你可以用Mapillary",
section1Map: "记录一个海滩,小镇或者地图上沒有标记的地方",
section1Missing: "如果你住的地方没有街景,你可以创建属于自己的街景!",
section1Examples: "看看这些有趣的例子:",
section1And: "和",
section2Add: "标记地图上没有的路,例如",
section2RoadMalaysia: "这段在马来西亚的公路.",
section2Future: "记录一个地方的历史,例如这个经历了很多变迁的",
section2Coastal: "海滨小镇.",
section2NoCars: "拍摄那些街景车无法进入的地方,例如美丽的",
section2Venice: "威尼斯海滩运河",
section2Unmapped: "和",
section2Fishing: "威尼斯渔人码头.",
section2Share: "展示和分享",
section2Anyone: "通过Mapillary, 在网页和移动设备上与任何人分享你到过的地方.",
section2Embed: "你可以很容易在网站上嵌入Mapillary的街景浏览功能, 通过",
section2Widget: "我们的Widget.",
section2Path: "这样你可以给你的家人, 朋友 或者客户在地图上展示例如一段乡间小径或在建公路.",
section2See: "以下有很多启发人的",
section2Example: "例子.",
section3Track: "追溯一个地方的历史",
section3Filter: "使用Mapillary时间筛选功能, 你可以穿梭时间的纬度来欣赏或者考察一个地方的变迁",
section3Older: ", 或者感受同一地方四季的风光.",
section3Places: "如果你希望对你所记录的地方保密,你也可以创建私人项目. 更多细节可以参考",
section3Business: "我们的解决方案."
},
landingSearch: {
header: "人人街景",
search: "搜索",
or: "或者",
anywhere: "搜索任何街道,小镇或者城市...",
contribute: "创建你自己的街景"
},
navbar: {
howItWorks: "如何使用",
explore: "发现",
business: "商业解决方案",
developers: "开发者",
projects: "项目",
me: "我",
myProfile: "我的主页",
manualUploads: "上传照片",
settings: "设置",
signOut: "登出",
or: "或",
logIn: "登入",
signUp: "注册"
},
explore: {
title: "发现",
top5: "前五榜单",
lastWeek: "上周",
thisWeek: "本周",
user: "用户",
noOfImg: "照片",
toplistsTitle: "区域/国家 排名",
toplistsParagraph: "浏览各个区域/国家的用户排名",
latestUploads: "最新街景"
},
profile: {
uploads: "照片",
connections: "关联街景",
editProfile: "设置主页",
uploadedImages: "已上传",
metersMapped: "米 已覆盖",
stillProcessing: "正在处理",
recentActivity: "最近动态"
},
manualUpload: {
title: "上传街景照片",
paragraph: "建议将属于同一地方或者路段的照片一起上传 - ",
path: "例子",
chooseFiles: "选择文件",
tagsRequired: "你所上传的照片必须包含以下的EXIF数据:",
thisImage: "例如这张照片 ",
goodExample: "包含了上述所须的EXIF数据, 上传者:",
seeAlso: "你也可以参照这篇博客来了解",
usingActionCamera: "如何用运动相机来创建 Mapillary 街景",
sampleWorkflow: "",
terms: "上传照片意味着你同意 Mapillary ",
termsLink: "服务条款.",
of: "",
imgUploaded: "已上传照片",
addMoreImages: "上传更多",
clearAllImages: "清空",
imageNotUploaded: "未上传照片",
imageUploaded: "已上传照片",
clickToSeeInfo: "单击照片查看更多信息",
selectedFile: "选择文件",
latitude: "纬度:",
longitude: "经度:",
angle: "朝向",
uploaded: "上传成功",
remove: "删除",
filesWithError: "出错的文件 (这些文件将不会被上传)",
filename: "文件名",
step1: "1. 准备上传照片到服务器. 请确认地图上的文件标记转为绿色以保证成功上传",
step2: "2. 推送你的街景照片到 Mapillary",
selectProject: "选择项目 (或保留空白)",
pushToMapillary: "推送到 Mapillary",
thankYou: "谢谢!",
filesUploaded: "你的照片已被成功上传到 Mapillary",
check: "确认",
myUploads: "我的上传",
addedSoon: "这些照片将会不久后在地图上呈现",
uploadMore: "上传更多"
},
i18nSettings: {
settings: "设置",
profile: "主页",
notifications: "通知",
organizations: "公司/机构",
projects: "项目",
applications: "应用",
newApplication: "新的应用",
profilePicture: "个性照片",
username: "用户名",
about: "关于",
changePassword: "更改密码",
members: "成员",
"delete": "删除",
addNewUser: "创建用户",
add: "增加",
projects: "项目",
create: "创建",
managedBy: "项目管理人:",
members: "成员",
developerApplications: "开发者应用",
registerNewApplication: "注册新的应用",
applicationCanAccess: "此应用可以访问",
users: "用户",
authorizedApplications: "已授权应用",
access: "可以访问",
revoke: "撤销",
revokeAll: "撤销所有",
applicationName: "应用名称",
company: "公司",
companyUrl: "公司链接",
callbackUrl: "回调链接",
description: "描述",
updateApplication: "更新应用",
deleteApplication: "删除应用",
createApplication: "创建应用"
},
i18nFilters: {
filter: "筛选",
byDate: "时间筛选",
unit: "单位",
week: "星期",
month: "月份",
bySeason: "季节筛选",
otherFilters: "其他筛选条件",
comments: "评论",
panoramas: "全景",
objects: "物体",
from: "从",
to: "到",
winter: "冬",
spring: "春",
summer: "夏",
autumn: "秋",
trafficSigns: "交通标志"
},
i18nIm: {
aboutToFlag: "发现有问题的照片? 请帮助我们修正.",
processingNotice: "我们正在努力处理这张照片. 感谢你的耐心等待!",
share: "分享",
whatProblem: "这张照片有什么问题?",
imageRotated: "这张照片的方向不正确",
imageNotBlurred: "这张照片中模糊的区域不准确",
imageShouldHide: "这张照片应该被隐藏",
sequenceShouldSplit: "这个街景序列应该在这里被切分",
ifMapillaryUser: "如果你已经是 Mapillary 用户, 你可以使用'编辑'功能来隐藏这张照片。",
send: "发送",
panorama: "全景",
flagged: "报告",
exitPanorama: "退出全景",
lostFound: "由于安卓2.4版本应用的问题, 我们无法确认这张照片的上传者. 如果这张照片是属于你的,你可以发送邮件到[email protected]认领. "
}
});
$translateProvider.translations("zh-TW", {
footer: {
getApp: "下載 Mapillary 應用",
on: "在",
directAndroid: "安卓 .apk 下載鏈接",
manifesto: "理念",
about: "關於",
blog: "博客",
howItWorks: "如何使用",
capture: "拍攝方法",
using: "使用App",
positions: "加入我們",
legal: "法律條款",
terms: "服務條款和條件",
privacy: "私隱條款",
cookies: "Cookies",
more: "更多",
business: "解決方案",
developers: "開發者",
integrations: "合作案例",
embed: "嵌入",
latestUploads: "最新街景",
report: "報告",
follow: "關注我們"
},
landing: {
more: "更多",
photos: "張街景照片",
meters: "米"
},
landingBusiness: {
title: "Mapillary 商業解決方案",
use: "使用 Mapillary 照片",
service: "注冊商用API來使用 Mapillary 的街景照片和衍生數據.",
create: "創建項目,控制訪問權限和分享",
"private": "商業用戶可以創建私人項目來使用 Mapillary 以推動內部信息分享與合作.",
integrate: "融合街景",
gis: "使用 Mapillary 的API或者Widget,將街景融合到你的應用程序或者地理信息系統(GIS)中.",
learn: "了解更多 Mapillary 的商業解決方案"
},
landingHow: {
one: "1. 下載Mapillary應用",
oneAvailble: "",
oneFrom: "和",
two: "2. 拍攝你身邊的街景",
three: "3. 瀏覽, 發現, 和分享街景"
},
landingWhatyoucan: {
title: "你可以用Mapillary",
section1Map: "記錄一個海灘,小鎮或者地圖上沒有標記的地方",
section1Missing: "如果你住的地方沒有街景,你可以創建屬於自己的街景!",
section1Examples: "看看這些有趣的例子:",
section1And: "和",
section2Add: "標記地圖上沒有的路,例如",
section2RoadMalaysia: "這段在馬來西亞的公路.",
section2Future: "記錄一個地方的歷史,例如這個經歷了很多變遷的",
section2Coastal: "海濱小鎮.",
section2NoCars: "拍攝那些街景車無法進入的地方,例如美麗的",
section2Venice: "威尼斯海灘運河",
section2Unmapped: "和",
section2Fishing: "威尼斯漁人碼頭.",
section2Share: "展示和分享",
section2Anyone: "通過Mapillary, 在網頁和移動設備上與任何人分享你到過的地方.",
section2Embed: "你可以很容易在網站上嵌入Mapillary的街景瀏覽功能, 通過",
section2Widget: "我們的Widget.",
section2Path: "這樣你可以給你的家人, 朋友 或者客戶在地圖上展示例如一段鄉間小徑或在建公路.",
section2See: "以下有很多啟發人的",
section2Example: "例子.",
section3Track: "追溯一個地方的歷史",
section3Filter: "使用Mapillary時間篩選功能, 你可以穿梭時間的緯度來欣賞或者考察一個地方的變遷",
section3Older: ", 或者感受同一地方四季的風光.",
section3Places: "如果你希望對你所記錄的地方保密,你也可以創建私人項目. 更多細節可以參考",
section3Business: "我們的解決方案."
},
landingSearch: {
header: "人人街景",
search: "搜索",
or: "或者",
anywhere: "搜索任何街道,小鎮或者城市...",
contribute: "創建你自己的街景"
},
navbar: {
howItWorks: "如何使用",
explore: "發現",
business: "商業解決方案",
developers: "開發者",
projects: "項目",
me: "我",
myProfile: "我的主頁",
manualUploads: "上傳照片",
settings: "設置",
signOut: "登出",
or: "或",
logIn: "登入",
signUp: "注冊"
},
explore: {
title: "發現",
top5: "前五榜單",
lastWeek: "上周",
thisWeek: "本周",
user: "用戶",
noOfImg: "照片",
toplistsTitle: "區域/國家 排名",
toplistsParagraph: "瀏覽各個區域/國家的用戶排名",
latestUploads: "最新街景"
},
profile: {
uploads: "照片",
connections: "關聯街景",
editProfile: "設置主頁",
uploadedImages: "已上傳",
metersMapped: "米 已覆蓋",
stillProcessing: "正在處理",
recentActivity: "最近動態"
},
manualUpload: {
title: "上傳街景照片",
paragraph: "建議將屬於同一地方或者路段的照片一起上傳 - ",
path: "例子",
chooseFiles: "選擇文件",
tagsRequired: "你所上傳的照片必須包含以下的EXIF數據:",
thisImage: "例如這張照片 ",
goodExample: "包含了上述所須的EXIF數據, 上傳者:",
seeAlso: "你也可以參照這篇博客來了解",
usingActionCamera: "如何用運動相機來創建 Mapillary 街景",
sampleWorkflow: "",
terms: "上傳照片意味著你同意 Mapillary ",
termsLink: "服務條款.",
of: "",
imgUploaded: "已上傳照片",
addMoreImages: "上傳更多",
clearAllImages: "清空",
imageNotUploaded: "未上傳照片",
imageUploaded: "已上傳照片",
clickToSeeInfo: "單擊照片查看更多信息",
selectedFile: "選擇文件",
latitude: "緯度:",
longitude: "經度:",
angle: "朝向",
uploaded: "上傳成功",
remove: "刪除",
filesWithError: "出錯的文件 (這些文件將不會被上傳)",
filename: "文件名",
step1: "1. 准備上傳照片到服務器. 請確認地圖上的文件標記轉為綠色以保証成功上傳",
step2: "2. 推送你的街景照片到 Mapillary",
selectProject: "選擇項目 (或保留空白)",
pushToMapillary: "推送到 Mapillary",
thankYou: "謝謝!",
filesUploaded: "你的照片已被成功上傳到 Mapillary",
check: "確認",
myUploads: "我的上傳",
addedSoon: "這些照片將會不久后在地圖上呈現",
uploadMore: "上傳更多"
},
i18nSettings: {
settings: "設置",
profile: "主頁",
notifications: "通知",
organizations: "公司/機構",
projects: "項目",
applications: "應用",
newApplication: "新的應用",
profilePicture: "個性照片",
username: "用戶名",
about: "關於",
changePassword: "更改密碼",
members: "成員",
"delete": "刪除",
addNewUser: "創建用戶",
add: "增加",
projects: "項目",
create: "創建",
managedBy: "項目管理人:",
members: "成員",
developerApplications: "開發者應用",
registerNewApplication: "注冊新的應用",
applicationCanAccess: "此應用可以訪問",
users: "用戶",
authorizedApplications: "已授權應用",
access: "可以訪問",
revoke: "撤銷",
revokeAll: "撤銷所有",
applicationName: "應用名稱",
company: "公司",
companyUrl: "公司鏈接",
callbackUrl: "回調鏈接",
description: "描述",
updateApplication: "更新應用",
deleteApplication: "刪除應用",
createApplication: "創建應用"
},
i18nFilters: {
filter: "篩選",
byDate: "時間篩選",
unit: "單位",
week: "星期",
month: "月份",
bySeason: "季節篩選",
otherFilters: "其他篩選條件",
comments: "評論",
panoramas: "全景",
objects: "物體",
from: "從",
to: "到",
winter: "冬",
spring: "春",
summer: "夏",
autumn: "秋",
trafficSigns: "交通標志"
},
i18nIm: {
aboutToFlag: "發現有問題的照片? 請幫助我們修正.",
processingNotice: "我們正在努力處理這張照片. 感謝你的耐心等待!",
share: "分享",
whatProblem: "這張照片有什麼問題?",
imageRotated: "這張照片的方向不正確",
imageNotBlurred: "這張照片中模糊的區域不准確",
imageShouldHide: "這張照片應該被隱藏",
sequenceShouldSplit: "這個街景序列應該在這裡被切分",
ifMapillaryUser: "如果你已經是 Mapillary 用戶, 你可以使用'編輯'功能來隱藏這張照片。",
send: "發送",
panorama: "全景",
flagged: "報告",
exitPanorama: "退出全景",
lostFound: "由於安卓2.4版本應用的問題, 我們無法確認這張照片的上傳者. 如果這張照片是屬於你的,你可以發送郵件到[email protected]認領. "
}
});
$translateProvider.translations("ca", {
footer: {
getApp: "Aconsegueix l'app de Mapillary",
on: "en",
directAndroid: "Enllaç directe a l'Apk d'Android",
manifesto: "Manifest",
about: "Sobre",
blog: "Blog",
howItWorks: "Com funciona",
capture: "Instruccions de captura",
using: "Usant l'app",
positions: "Posicions obertes",
legal: "Legal",
terms: "Termes i condicions",
privacy: "Política de privacitat",
cookies: "Galetes",
more: "Més",
business: "Negocis",
developers: "Desenvolupadors",
integrations: "Integracions",
embed: "Incloure",
latestUploads: "Darreres pujades",
report: "Avisa de problemes",
follow: "Seguir "
},
landing: {
more: "Més",
photos: "fotos",
meters: "metres "
},
landingBusiness: {
title: "Mapillary per a negocis",
use: "Usar les fotos de Mapillary",
service: "Fes-ho per obtenir una API comercial per tal d'utilitzar les fotos i dades de Mapillary al teu servei.",
create: "Crear projectes, control d'accés.",
"private": "Els usuaris comercials poden crear projectes privats i controlar l'accés d'una versió totalment privada de Mapillary.",
integrate: "Integrar vistes fotogràfiques",
gis: "Utilitza les nostres APIs o ginys per integrar un visor complet de Mapillary a la teva aplicació o al sistema SIG.",
learn: "Aprendre'n més sobre els nostres plans de negoci. "
},
landingHow: {
one: "1. Baixa't l'aplicació de Mapillary",
oneAvailble: "Disponible per",
oneFrom: "i des de",
two: "2. Sortir i capturar seqüències",
three: "3. Navegar, explorar i compartir llocs"
},
landingWhatyoucan: {
title: "El que pots fer amb Mapillary",
section1Map: "Mapejar un lloc, una ciutat o un lloc nou",
section1Missing: "Si a la teva ciutat falten imatges del carrer les pots afegir tu mateix.",
section1Examples: "Mira alguns grans exemples a",
section1And: "i",
section2Add: "Afegir carreteres que no hi són al mapa, com",
section2RoadMalaysia: "aquesta carretera a Malàisia.",
section2Future: "Gravar un lloc per al futur per mostrar el que semblava en moment determinat al temps, com aquesta",
section2Coastal: "ciutat costanera.",
section2NoCars: "Mapeja una àrea a la que no es pot arribar amb el cotxe com els encantadors",
section2Venice: "Canals de Venice Beach,",
section2Unmapped: "o el no mapejat",
section2Fishing: "Moll de pesca de Venice.",
section2Share: "Compartir i mostrar",
section2Anyone: "Compartir un lloc a Mapillary amb tothom. Envau un enllaç i es veurà bé tant en mòbils com en web.",
section2Embed: "Pots incloure un visor de Mapillary a qualsevol lloc web amb",
section2Widget: "el nostre giny.",
section2Path: "Amb això pots mostrar una ruta específica o deixar-lo obert perquè els visitants puguin explorarespectadors explorar.",
section2See: "Mira el que pot fer a la nostra",
section2Example: "pàgina d'exemple.",
section3Track: "El seguiment d'un lloc en el temps",
section3Filter: "Usant les funcions de filtre en Mapillary, pots seguir un lloc en el temps.",
section3Older: "Compara fotos recents amb de més antigues. Mostra només a l'estiu, hivern, i molt més.",
section3Places: "Si tens llocs i fotos que no desitges compartir públicament, pots fer que els projectes privats. Fes una ullada als nostres",
section3Business: "plans de negoci. "
},
landingSearch: {
header: "Fotos a nivell de carrer col·laboratives",
search: "Cercar",
or: "o",
anywhere: "Cerca a llocs i carrers a qualsevol lloc ...",
contribute: "contribueix amb les teves "
},
navbar: {
howItWorks: "Com funciona",
explore: "Explorar",
business: "Negocis",
developers: "Desenvolupadors",
projects: "Projectes",
me: "Jo",
myProfile: "El meu perfil",
manualUploads: "Pujades manuals",
settings: "Configuració",
signOut: "Sortir",
or: "o",
logIn: "Accedir",
signUp: "Registrar-se"
},
explore: {
title: "Explorar",
top5: "Top 5 mapejadors",
lastWeek: "La setmana passada",
thisWeek: "Aquesta setmana",
user: "Usuari",
noOfImg: "Nombre d'imatges",
toplistsTitle: "Rànquing per Regió / País",
toplistsParagraph: "Explorar i descobrir els principals contribuents per regió i / o país.",
latestUploads: "Darreres pujades "
},
profile: {
uploads: "Pujades",
connections: "Connexions",
editProfile: "Editar perfil",
uploadedImages: "imatges pujades",
metersMapped: "metres mapejats",
stillProcessing: "encara processant-se",
recentActivity: "Activitat recent "
},
manualUpload: {
title: "Pujar manualment imatges",
paragraph: "Puja les imatges que vagin juntes en una única pujada , així faran una",
path: "ruta",
chooseFiles: "Triar arxius",
tagsRequired: "Es requereixen les següents etiquetes EXIF: ",
thisImage: "Aquesta imatge",
goodExample: "és un bon exemple amb les dades EXIF necessàries, creada per",
seeAlso: "Veure també l'article",
usingActionCamera: "utilitzant una càmera d'acció amb Mapillary",
sampleWorkflow: "per a una mostra de treball.",
terms: "En pujar arxius estàs d'acord amb els termes de servei de",
termsLink: "Mapillary.",
of: "de",
imgUploaded: "imatges pujades",
addMoreImages: "Afegir més imatges",
clearAllImages: "Esborrar totes les imatges",
imageNotUploaded: "Imatge no pujada",
imageUploaded: "Imatge pujada",
clickToSeeInfo: "Fes clic a la imatge al mapa per veure'n la seva informació",
selectedFile: "Imatge seleccionada",
latitude: "Latitud: ",
longitude: "Longitud: ",
angle: "Angle",
uploaded: "Pujada",
remove: "Eliminar",
filesWithError: "Arxius amb errors (aquests arxius no es pujaran)",
filename: "Nom del fitxer",
step1: "1. Puja les imatges al servidor. Assegura't que tots els arxius són confirmats amb el color verd i pujats.",
step2: "2. Anota la teva seqüència creada a Mapillary.",
selectProject: "Seleccionar projecte (deixar en blanc si res)",
pushToMapillary: "Anotar a Mapillary",
thankYou: "Gràcies!",
filesUploaded: "Els teus arxius s'han pujat a Mapillary",
check: "Comprovar",
myUploads: "Les meves pujades",
addedSoon: "aviat s'afegiran al mapa",
uploadMore: "Pujar més "
},
i18nSettings: {
settings: "Configuració",
profile: "Perfils de grup",
notifications: "Notificacions",
organizations: "Organitzacions",
projects: "Projectes",
applications: "Aplicacions",
newApplication: "Nova aplicació",
profilePicture: "Foto del perfil",
username: "Nom d'usuari",
about: "Sobre",
changePassword: "Canviar la contrasenya",
members: "Membres",
"delete": "Elimina",
addNewUser: "Afegir un nou usuari",
add: "Afegeix",
projects: "Projectes",
create: "Crear",
managedBy: "Gestionat per",
members: "Membres",
developerApplications: "Aplicacions del desenvolupador",
registerNewApplication: "Registrar nova aplicació",
applicationCanAccess: "L'aplicació pot accedir a",
users: "Usuaris",
authorizedApplications: "Aplicacions autoritzades",
access: "Accés",
revoke: "Revocar ",
revokeAll: "Revocar tot",
applicationName: "Nom de l'aplicació",
company: "Empresa",
companyUrl: "URL de l'empresa",
callbackUrl: "URL de referència remota",
description: "Descripció",
updateApplication: "Actualitzar aplicació",
deleteApplication: "Eliminar aplicació",
createApplication: "Crear aplicació "
},
i18nFilters: {
filter: "Filtrar",
byDate: "Filtrar per data",
unit: "Unitat",
week: "Setmana",
month: "Mes",
bySeason: "Filtrar per temporada",
otherFilters: "Altres filtres",
comments: "Comentaris",
panoramas: "Panoràmiques",
objects: "Objectes",
from: "des de",
to: "per a",
winter: "Hivern",
spring: "Primavera",
summer: "Estiu",
autumn: "Tardor",
trafficSigns: "Filtra els senyals de trànsit "
},
i18nIm: {
aboutToFlag: "Marques aquesta imatge per a que la revisi l'equip de Mapillary manualment.",
processingNotice: "Aquesta imatge no s'ha processat encara. Aviat tindrà millor qualitat, ho prometem.",
share: "Comparteix",
whatProblem: "Quin és el problema?",
imageRotated: "La imatge està girada",
imageNotBlurred: "La imatge no s'ha emborronat correctament",
imageShouldHide: "La imatge hauria d'estar oculta",
sequenceShouldSplit: "La seqüència s'ha de dividir aquí",
ifMapillaryUser: "Si ets un usuari Mapillary, pots amagar la imatge de forma manual des de les opcions d'imatge a 'Editar'",
send: "Enviar",
panorama: "Panorama",
flagged: "Marcada",
exitPanorama: "Sortir del panorama",
lostFound: "Aquesta podria ser la teva imatge. A causa d'alguns problemes amb la versió 24 de l'aplicació a Android no podem saber qui és el pujador de la imatge. Si aquest és el teu cas, fes un comentari més avall o envia'ns un correu electrònic a [email protected]. "
}
});
$translateProvider.translations("da", {
footer: {
getApp: "Hent Mapillary appen",
on: "på",
directAndroid: "Downlaod Android .apk'en",
manifesto: "Manifest",
about: "Om",
blog: "Blog",
howItWorks: "Sådan virker det",
capture: "Billedfangst - instruktioner",
using: "Sådan virker appen",
positions: "Stillinger",
legal: "Jura",
terms: "Vilkår og betingelser",
privacy: "Databeskyttelse",
cookies: "Cookies",
more: "Mere",
business: "Kommercielt",
developers: "Udviklere",
integrations: "Integrationer",
embed: "Embed",
latestUploads: "Senese Uploads",
report: "Fejlrapporter",
follow: "Følg"
},
landing: {
more: "Mere",
photos: "billeder",
meters: "meter"
},
landingBusiness: {
title: "Mapillary for Business",
use: "Brug Mapillarys photos",
service: "Tilmeld dig en kommerciel API aftale hvis du vil bruge Mapillarys billeder og data.",
create: "Lav et projekt. Styr adgang",
"private": "Kommercielle brugere kan lave private projekter og kontrollere adgangen til en helt privat version af Mapillary.",
integrate: "Integrer billeder.",
gis: "Brug vores APIer eller widgets til at integrere en fuld Mapillary viewer i din applikation eller dit GIS-system.",
learn: "Få mere information om vores kommercielle aftaler."
},
landingHow: {
one: "1. Hent Mapillary appen",
oneAvailble: "Fås til",
oneFrom: "og fra",
two: "2. Tag og fang nogen billeder",
three: "3. gennemse, undersøg og del steder"
},
landingWhatyoucan: {
title: "Det kan du med Mapillary",
section1Map: "Lave et kort over et sted eller en by.",
section1Missing: "Hvis der mangler billeder af din by kan du tilføje dem selv!",
section1Examples: "Find nogen gode eksempler på",
section1And: "og",
section2Add: "Tilføj veje, der mangler på kortet, f.eks.",
section2RoadMalaysia: "denne vej i Malaysia.",
section2Future: "Optag et sted til senere, så du kan vise hvordan der så ud, f.eks.",
section2Coastal: "kystby.",
section2NoCars: "Dæk et sted, hvor Street View bilerne ikke kan komme, som de dejlige",
section2Venice: "kanaler i Venice Beach,",
section2Unmapped: "eller den ukortlagte",
section2Fishing: "Venice Fishing Pier.",
section2Share: "Del og vis",
section2Anyone: "Del et sted på Mapillary med hvemsomhelst. Send dem et link - det ser god ud på både web og mobil.",
section2Embed: "Du kan indlejre en Mapillary viewer på enhver webside med",
section2Widget: "vores widget.",
section2Path: "Med denne kan du vise en given strækning eller rute eller lade andre undersøge selv..",
section2See: "Se hvad du kan lave på vores",
section2Example: "eksempelside.",
section3Track: "Følg et sted over tid",
section3Filter: "Med Mapillarys filterfunktion kan du følge et bestemt sted over tid.",
section3Older: "Sammelign nye billeder med gamle. Vis kun vinterfotos, eller sommerfotos - og meget mere.",
section3Places: "Hvis du har fotos eller steder du ikke vil dele offentligt, kan du lave private projektor. Kig på vores",
section3Business: "kommercielle aftaler."
},
landingSearch: {
header: "Crowdsourcede Gadebilleder",
search: "Søg",
or: "eller",
anywhere: "Søg efter steder eller veje overalt...",
contribute: "tilføj selv"
},
navbar: {
howItWorks: "Sådan virker det",
explore: "Udforsk",
business: "Kommercielt",
developers: "Udviklere",
projects: "Projekter",
me: "Mig",
myProfile: "Min profil",
manualUploads: "Uploads",
settings: "Settings",
signOut: "Log ud",
or: "eller",
logIn: "Log Ind",
signUp: "Ny bruger"
},
explore: {
title: "Udforsk",
top5: "Top 5 mappers",
lastWeek: "Sidste uge",
thisWeek: "Denne uge",
user: "Bruger",
noOfImg: "Antal billeder",
toplistsTitle: "Hitlister Region/Land",
toplistsParagraph: "Se top uploaders per region eller land.",
latestUploads: "Seneste Uploads"
},
profile: {
uploads: "Uploads",
connections: "Netværk",
editProfile: "Rediger profil",
uploadedImages: "uploadede billeder",
metersMapped: "meter kortlagt",
stillProcessing: "under behandling",
recentActivity: "Seneste handling"
},
manualUpload: {
title: "Manualt Upload af billeder",
paragraph: "Upload billeder der hører sammen. De bliver til en",
path: "rute",
chooseFiles: "Vælg filer",
tagsRequired: "Følgende EXIF tags skal være tilstede:",
thisImage: "Dette billede",
goodExample: "er et godt eksempel på de nødvendige EXIF data, skabt af",
seeAlso: "Se i øvrigt denne post om",
usingActionCamera: "bruge et action kamera med Mapillary",
sampleWorkflow: "som et workfloweksempel.",
terms: "Når du uploader accepterer du Mapillarys",
termsLink: "vilkår og betingelser.",
of: "af",
imgUploaded: "billeder uploadet",
addMoreImages: "Tilføj billeder",
clearAllImages: "Slet alle billeder",
imageNotUploaded: "Billedet er ikke uploadet",
imageUploaded: "Billede uploadet",
clickToSeeInfo: "Klik på billeder på kortet for at se info om billedet.",
selectedFile: "Fil",
latitude: "Breddegrad:",
longitude: "Længdegrad:",
angle: "Vinkel",
uploaded: "Uploadet",
remove: "Fjern",
filesWithError: "Filer med fejl (bliver ikke uploadet)",
filename: "Filnavn",
step1: "1. Upload billedet til serveren. Sørg for at alle dine billeder viser grønt og er oploadet.",
step2: "2. Gem din sekvens på Mapillary.",
selectProject: "Vælg projekt (hvis tom, intet projekt)",
pushToMapillary: "Gem på Mapillary",
thankYou: "Tak!",
filesUploaded: "Dine filer er blevet uploadet til Mapillary",
check: "Check",
myUploads: "Mine Uploads",
addedSoon: "de bliver snart tilføjet til kortet",
uploadMore: "Upload flere"
},
i18nSettings: {
settings: "Settings",
profile: "Profil",
notifications: "Notifikationer",
organizations: "Organisationer",
projects: "Projekter",
applications: "Applikationer",
newApplication: "Ny applikation",
profilePicture: "Profilebillede",
username: "Brugernavn",
about: "Om",
changePassword: "Skift Password",
members: "Medlemmer",
"delete": "Slet",
addNewUser: "Tilføj ny bruger",
add: "Tilføj",
projects: "Projekter",
create: "Skab",
managedBy: "Administeret af",
members: "Medlemmer",
developerApplications: "Udviklerapplikationer",
registerNewApplication: "Registrér ny applikation",
applicationCanAccess: "Applikation can tilgå",
users: "Brugere",
authorizedApplications: "Authoriserede Applikationer",
access: "Tilgå",
revoke: "Fjern",
revokeAll: "Fjern All",
applicationName: "Applikationens navn",
company: "Virksomhed",
companyUrl: "Virksomhedens URL",
callbackUrl: "Callback URL",
description: "Beskrivelse",
updateApplication: "Updater Applikation",
deleteApplication: "Slet Applikation",
createApplication: "Ny Applikation"
},
i18nFilters: {
filter: "Filter",
byDate: "Datofilter",
unit: "Enhed",
week: "Uge",
month: "Måned",
bySeason: "Årstidsfilter",
otherFilters: "Andre filtre",
comments: "Kommentarer",
panoramas: "Panoramaer",
objects: "Objekter",
from: "fra",
to: "til",
winter: "Vinter",
spring: "Forår",
summer: "Sommer",
autumn: "Efterår",
trafficSigns: "Filtrer Vejskilte"
},
i18nIm: {
aboutToFlag: "Du markerer nu dette billede til manuelt eftersyn hos Mapillary.",
processingNotice: "Billedet er ikke behandlet endnu! Det kommer til at se bedre ud. Det lover vi!",
share: "Del",
whatProblem: "Hvad er der galt?",
imageRotated: "Billedet er roteret",
imageNotBlurred: "Billedet er ikke korrekt obfuskeret",
imageShouldHide: "Billedet burde være skjult",
sequenceShouldSplit: "Sekvensen burde være delt her",
ifMapillaryUser: "Hvis du er Mapillarybruger kan du manuelt skjule billedet fra 'Rediger billede'-menuen",
send: "Send",
panorama: "Panorama",
flagged: "Markeret",
exitPanorama: "Forlad Panorama",
lostFound: "Dette kunne være dit billede. Pga nogle problemer med Androidappen (version 24) kunne vi ikke bestemme hvem, der havde uploadet dette billede. Hvis det er dig, så læg en kommentar eller send en email til [email protected]"
}
});
$translateProvider.translations("de", {
footer: {
getApp: "Hole dir die Mapillary App",
on: "auf",
directAndroid: "Direkter Link zur Android .apk",
manifesto: "Manifest",
about: "Impressum",
blog: "Blog",
howItWorks: "Wie's funktioniert",
capture: "Instruktionen zum Fotografieren",
using: "Benutzung der App",
positions: "Offene Stellen",
legal: "Rechtliches",
terms: "Nutzungsbedingungen",
privacy: "Datenschutz",
cookies: "Cookies",
more: "Mehr",
business: "Business",
developers: "Entwickler",
integrations: "Integrationen",
embed: "Integrieren",
latestUploads: "Neue Bilder",
report: "Probleme melden",
follow: "Mapillary updates"
},
landing: {
more: "Mehr",
photos: "Fotos",
meters: "meter"
},
landingBusiness: {
title: "Mapillary für den kommerziellen Einsatz",
use: "Mapillary-Bilder anwenden",
service: "Melden Sie sich für den API plan an, um Mapillary-Bilder und Daten in Ihren Diensten zu verwenden.",
create: "Projekte erstellen, den Zugang kontrollieren.",
"private": "Kommerzielle Anwender können private Projekte anlegen und den Zugang zu diesen voll kontrollieren - ein privates Mapillary.",
integrate: "Fotos und Navigation integrieren",
gis: "Wenden Sie unsere Schnittstellen oder die Widgets an, um einen kompletten Mapillary-Viewer in Ihrer Applikation, auf Ihrer Webseite oder in Ihrem GIS-System zu nutzen.",
learn: "Mehr Infos über den professionellen Einsatz"
},
landingHow: {
one: "1. Hole die die Mapillary-App",
oneAvailble: "für die Plattformen",
oneFrom: "und von",
two: "2. Gehe oder fahre und mache Bilder",
three: "3. Entdecke und teile Plätze"
},
landingWhatyoucan: {
title: "Was du mit Mapillary machen kannst",
section1Map: "Bringe einen Patz, eine Stadt, oder eine neue Gegend auf die Karte",
section1Missing: "Falls deine Stadt keine oder wenige Bilder hat - füge selber welche hinzu!",
section1Examples: "Gute Beispiele",
section1And: "und",
section2Add: "Bringe unbekannte Straßen auf die Karte, wie",
section2RoadMalaysia: "diese Straße in Malaysia.",
section2Future: "Dokumentiere eine Region oder Stadt, um sie für die Zukunft zu bewahren, wie",
section2Coastal: "diese Küstenstadt.",
section2NoCars: "Dokumentiere ein Gebiet, das nicht mit dem Auto erreichbar ist, wie die schönen",
section2Venice: "Kanäle in Venice Beach,",
section2Unmapped: "oder das nicht auf den Karten vertretene",
section2Fishing: "Venice Fishing Pier.",
section2Share: "Zeige und teile",
section2Anyone: "Zeige anderen Plätze in Mapillary. Der Link ist sowohl auf dem Rechner als auch auf dem Handy gut zu sehen.",
section2Embed: "Du kannst den Mapillary Viewer leicht in anderen Webseiten einbinden mit",
section2Widget: "unserem Widget.",
section2Path: "Damit kannst du auch spezielle Pfade spezifizieren und Mapillary auf ausgewählten Richtungen begrenzen.",
section2See: "Einige Beispiele auf der",
section2Example: "Integrationsseite.",
section3Track: "Verfolge einen Ort über die Zeit",
section3Filter: "Mit dem Zeitfilter in Mapillary kann man Plätze über Zeitintervalle hinweg vergleichen.",
section3Older: "Vergleiche alte mit neuen Bildern. Zeige nur Sommer, Winter und vieles mehr.",
section3Places: "Wenn Sie Bilder und Projekte haben, die nicht öffentlich sein sollen, aber trotzdem volle Mapillary-Funktionalität haben wollen, gibt es",
section3Business: "Mapillary für den professionellen Einsatz."
},
landingSearch: {
header: "Straßenbilder - wo du willst.",
search: "Suche",
or: "oder",
anywhere: "Suche nach Plätzen und Wegen weltweit ...",
contribute: "mach mit"
},
navbar: {
button_lang_en: "Englisch",
button_lang_de: "Deutsch",
howItWorks: "Wie es funktioniert",