-
Notifications
You must be signed in to change notification settings - Fork 30
/
mapillary_localization.js
1606 lines (1604 loc) · 67.1 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("en", {
footer: {
getApp: "Get the Mapillary App",
on: "on",
directAndroid: "Direct Android .apk link",
manifesto: "Manifesto",
about: "About",
blog: "Blog",
howItWorks: "How It Works",
capture: "Capture Instructions",
using: "Using the App",
positions: "Open Positions",
legal: "Legal",
terms: "Terms and Conditions",
privacy: "Privacy Policy",
cookies: "Cookies",
more: "More",
business: "Business",
developers: "Developers",
integrations: "Integrations",
embed: "Embed",
latestUploads: "Latest Uploads",
report: "Report Issues",
follow: "Follow"
},
landing: {
more: "More",
photos: "photos",
meters: "meters"
},
landingBusiness: {
title: "Mapillary for Business",
use: "Use Mapillary photos",
service: "Sign up for a commercial API plan in order to use Mapillary photos and data in your service.",
create: "Create projects, control access.",
"private": "Business users can create private projects and control access for a fully private version of Mapillary.",
integrate: "Integrate photo views",
gis: "Use our APIs or widget to integrate a complete Mapillary viewer in your application or in your GIS system.",
learn: "Learn more about our business plans."
},
landingHow: {
one: "1. Get the Mapillary app",
oneAvailble: "Available for",
oneFrom: "and from",
two: "2. Go out and capture sequences",
three: "3. Browse, explore, and share places"
},
landingWhatyoucan: {
title: "What you can do with Mapillary",
section1Map: "Map a place, a town, or someplace new",
section1Missing: "If your town is missing street view photos, you can add it yourself!",
section1Examples: "See some great examples at",
section1And: "and",
section2Add: "Add roads not on the map, like",
section2RoadMalaysia: "this road in Malaysia.",
section2Future: "Record a place for the future to show what it looked like at a point in time, like this",
section2Coastal: "coastal town.",
section2NoCars: "Map an area that cannot be reached with street view cars, like the lovely",
section2Venice: "Venice Beach canals,",
section2Unmapped: "or the unmapped",
section2Fishing: "Venice Fishing Pier.",
section2Share: "Share and show",
section2Anyone: "Share a place on Mapillary to anyone. Send them a link and it will look good on both mobile and web.",
section2Embed: "You can embed a Mapillary viewer on any website with",
section2Widget: "our widget.",
section2Path: "With this you can show a specific path or route or leave it open for viewers to explore.",
section2See: "See what you can do on our",
section2Example: "example page.",
section3Track: "Track a place over time",
section3Filter: "Using the filter functions on Mapillary, you can track a place over time.",
section3Older: "Compare recent pictures to older. Show only summer, only winter, and much more.",
section3Places: "If you have places and photos that you do don't want to share publicly, you can have private projects. Take a look at our",
section3Business: "business plans."
},
landingSearch: {
header: "Crowdsourced Street Level Photos",
search: "Search",
or: "or",
anywhere: "Search for places and roads anywhere...",
contribute: "contribute your own"
},
navbar: {
howItWorks: "How It Works",
explore: "Explore",
business: "Business",
developers: "Developers",
projects: "Projects",
me: "Me",
myProfile: "My Profile",
manualUploads: "Manual Uploads",
settings: "Settings",
signOut: "Sign Out",
or: "or",
logIn: "Log In",
signUp: "Sign Up"
},
explore: {
title: "Explore",
top5: "Top 5 mappers",
lastWeek: "Last week",
thisWeek: "This week",
user: "User",
noOfImg: "Number of images",
toplistsTitle: "Toplists by Region/Country",
toplistsParagraph: "Browse and explore top contributors by region and/or country.",
latestUploads: "Latest Uploads"
},
profile: {
uploads: "Uploads",
connections: "Connections",
editProfile: "Edit profile",
uploadedImages: "uploaded images",
metersMapped: "meters mapped",
stillProcessing: "still processing",
recentActivity: "Recent Activity"
},
manualUpload: {
title: "Manually Upload Images",
paragraph: "Upload images that belong together in one upload, as they will make up a",
path: "path",
chooseFiles: "Choose Files",
tagsRequired: "The following EXIF tags are required:",
thisImage: "This image",
goodExample: "is a good example with the required EXIF data, created by",
seeAlso: "See also the post on",
usingActionCamera: "using an action camera with Mapillary",
sampleWorkflow: "for a sample workflow.",
terms: "By uploading files you agree to the Mapillary",
termsLink: "terms of service.",
of: "of",
imgUploaded: "images uploaded",
addMoreImages: "Add more images",
clearAllImages: "Clear all images",
imageNotUploaded: "Image not uploaded",
imageUploaded: "Image uploaded",
clickToSeeInfo: "Click on image on map to see information about the image",
selectedFile: "Selected file",
latitude: "Latitude:",
longitude: "Longitude:",
angle: "Angle",
uploaded: "Uploaded",
remove: "Remove",
filesWithError: "Files with errors (These files will not be uploaded)",
filename: "Filename",
step1: "1. Upload the images to the server. Make sure all your files are green and uploaded.",
step2: "2. Push your created sequence to Mapillary.",
selectProject: "Select project (if leave blank in none)",
pushToMapillary: "Push To Mapillary",
thankYou: "Thank You!",
filesUploaded: "Your files have been uploaded to Mapillary",
check: "Check",
myUploads: "My Uploads",
addedSoon: "they will soon be added to the map",
uploadMore: "Upload More"
},
i18nSettings: {
settings: "Settings",
profile: "Profile",
notifications: "Notifications",
organizations: "Organizations",
projects: "Projects",
applications: "Applications",
newApplication: "New application",
profilePicture: "Profile picture",
username: "Username",
about: "About",
changePassword: "Change Password",
members: "Members",
"delete": "Delete",
addNewUser: "Add new user",
add: "Add",
projects: "Projects",
create: "Create",
managedBy: "Managed by",
members: "Members",
developerApplications: "Developer Applications",
registerNewApplication: "Register new application",
applicationCanAccess: "Application can access",
users: "Users",
authorizedApplications: "Authorized Applications",
access: "Access",
revoke: "Revoke",
revokeAll: "Revoke All",
applicationName: "Application Name",
company: "Company",
companyUrl: "Company URL",
callbackUrl: "Callback URL",
description: "Description",
updateApplication: "Update Application",
deleteApplication: "Delete Application",
createApplication: "Create Application"
},
i18nFilters: {
filter: "Filter",
byDate: "Filter by date",
unit: "Unit",
week: "Week",
month: "Month",
bySeason: "Filter by season",
otherFilters: "Other filters",
comments: "Comments",
panoramas: "Panoramas",
objects: "Objects",
from: "from",
to: "to",
winter: "Winter",
spring: "Spring",
summer: "Summer",
autumn: "Autumn",
trafficSigns: "Filter Traffic Signs"
},
i18nIm: {
aboutToFlag: "You are about to flag this image for manual inspection by Mapillary.",
processingNotice: "This image hasn’t finished processing yet! It will look better soon, promise.",
share: "Share",
whatProblem: "What is the problem?",
imageRotated: "The image is rotated",
imageNotBlurred: "The image is not blurred correctly",
imageShouldHide: "The image should be hidden",
sequenceShouldSplit: "The sequence should be split here",
ifMapillaryUser: "If you're a Mapillary user, you can manually hide the image from within the 'Edit' image options",
send: "Send",
panorama: "Panorama",
flagged: "Flagged",
exitPanorama: "Exit Panorama",
lostFound: "This could be your image. Due to some app problems with Andriod App version 24 we are unable to determine the uploader of this image. If this is you, make a comment below or send us an email at [email protected]."
}
});
$translateProvider.translations("de", {
footer: {
getApp: "Hole dir dir 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: "Benutzungsbedingungen",
privacy: "Datenschutz",
cookies: "Cookies",
more: "Mehr",
business: "Business",
developers: "Entwickler",
integrations: "Integrationen",
embed: "Integrieren",
latestUploads: "Neue Bilder",
report: "Probleme anmelden",
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: "Photos und Navigation integrieren",
gis: "Wenden sie unsere Schnittstellen oder die Widgets an, um einen kompletten Mapillary-viewer in Ihrer Applikation, auf ihrer Webseiteoder 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/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 wenig Bilder hat - füge selber welche hinzu!",
section1Examples: "Gute Beispiele",
section1And: "und",
section2Add: "Bringe unbekannta Strassen auf die Karte, wie",
section2RoadMalaysia: "diese Strasse 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 von Autos aus zu erreichen ist, wie die schönen",
section2Venice: "Venice Beach - Kanäle,",
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 einfügen 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: "Integrations-seite.",
section3Track: "Verfolge einen Platz über die Zeit",
section3Filter: "Mit dem Zeit-Filter 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: "Bilder für alle.",
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",
explore: "Entdecken",
business: "Professioneller Einsatz",
developers: "Entwickler",
projects: "Projekte",
me: "Ich",
myProfile: "Mein Profil",
manualUploads: "Manuelle Uploads",
settings: "Einstellungen",
signOut: "Ausloggen",
or: "oder",
logIn: "Einloggen",
signUp: "Registrieren"
},
explore: {
title: "Entdecke",
top5: "Die besten 5 Mitglieder",
lastWeek: "Letzte Woche",
thisWeek: "Diese Woche",
user: "Anwender",
noOfImg: "Anzahl Bilder",
toplistsTitle: "Topplisten nach Region/Land",
toplistsParagraph: "Entdecke andere Mitglieder nach Land und Region",
latestUploads: "Letze Bilder"
},
profile: {
uploads: "Hochgeladene Bilder",
connections: "Verbindungen",
editProfile: "Profil ändern",
uploadedImages: "hochgeladene Bilder",
metersMapped: "meter gemappt",
stillProcessing: "noch in Arbeit",
recentActivity: "Letzte Aktivitäten"
},
manualUpload: {
title: "Bilder manuell hinzufügen",
paragraph: "Lade die Bilder, die zusammengehören, zusammen hoch. Sie werden in Mapillary zu einem ",
path: "Pfad",
chooseFiles: "Wähle die Bilder aus",
tagsRequired: "Die folgenden EXIF-Attribute sind notwending",
thisImage: "Dieses Bild",
goodExample: "ist ein gutes Beispiel für die benötigten Daten",
seeAlso: "Siehe auch",
usingActionCamera: "eine Action-Kamera mit Mapillary anwenden",
sampleWorkflow: "für ein gutes Beispiel.",
terms: "Mit dem Hochladen von Bilder stimmst du den Mapillary terms zu.",
termsLink: "Anwenderbedingungen",
of: "von",
imgUploaded: "Bilder übermittelt",
addMoreImages: "Mehr Bilder hinzufügen",
clearAllImages: "Löschen all Bilder",
imageNotUploaded: "Bild nicht hochgeladen",
imageUploaded: "Bild hochgeladen",
clickToSeeInfo: "Klicke auf das Bild um mehr Infos zu sehen",
selectedFile: "Gewählte Datei",
latitude: "Breitengrad:",
longitude: "Längengard:",
angle: "Winkel",
uploaded: "Übermittelt",
remove: "Löschen",
filesWithError: "Fehlerhafte Dateien (diese werden nicht hochgeladen)",
filename: "Dateinahme",
step1: "1. Lade die Bilder auf den server hoch. Kontrolliere dass alle Bilder grün markiert sind.",
step2: "2. Übermittle die hochgeladenen Bilder zu Mapillary.",
selectProject: "Wähle ein Projekt aus (falls nicht gewählt - Public)",
pushToMapillary: "Zu Mapillary hochladen",
thankYou: "Danke!",
filesUploaded: "Deine Mapillary - uploads",
check: "Kontrollieren",
myUploads: "Meine Bilder",
addedSoon: "bald in der Karte sichtbar",
uploadMore: "Mehr hochladen"
},
i18nSettings: {
settings: "Einstellungen",
profile: "Profil",
notifications: "Mitteilungen",
organizations: "Organizationen",
projects: "Projekte",
applications: "Applikationen",
newApplication: "Neue Applikation",
profilePicture: "Profilbild",
username: "Anwendername",
about: "Kommentar",
changePassword: "Password ändern",
members: "Mitglieder",
"delete": "Löschen",
addNewUser: "Neuer Anwender",
add: "Hinzufügen",
projects: "Projekte",
create: "Neues Projekt",
managedBy: "administriert von",
members: "Mitglieder",
developerApplications: "Entwickler-Applikationen",
registerNewApplication: "Neue Applikation registrieren",
applicationCanAccess: "Application hat Zugang",
users: "Anwender",
authorizedApplications: "Berechtigte Applikationen",
access: "Berechtigung",
revoke: "Zurücknehmen",
revokeAll: "Alle zurücknehmen",
applicationName: "Applicationsname",
company: "Firma",
companyUrl: "Firma URL",
callbackUrl: "Callback- URL",
description: "Beschreibung",
updateApplication: "Application ändern",
deleteApplication: "Application löschen",
createApplication: "Application registrieren"
},
i18nFilters: {
filter: "Filter",
byDate: "Nach Datum filtern",
unit: "Einheit",
week: "Woche",
month: "Monad",
bySeason: "Nach Saison filtern",
otherFilters: "Andere Filter",
comments: "Kommentare",
panoramas: "Panoramen",
objects: "Objekte",
from: "von",
to: "bis",
winter: "Winter",
spring: "Frühling",
summer: "Sommer",
autumn: "Herbst",
trafficSigns: "Verkehrsschilder filtern"
},
i18nIm: {
aboutToFlag: "Du merkst diese Bild für eine manuelle Ansicht vor.",
processingNotice: "Diese Bild ist noch nicht fertig bearbeitet. Es wird bald noch besser - versprochen!",
share: "Teilen",
whatProblem: "Was ist das Problem?",
imageRotated: "Diese Bild hat eine falsche Orientierung.",
imageNotBlurred: "Diese Bild is nicht korrekt verpixelt.",
imageShouldHide: "Dieses Bilder sollte nicht gezeigt werden.",
sequenceShouldSplit: "Die Bilderfolger soll hier geteilt werden.",
ifMapillaryUser: "Wenn du ein Mapillary Anwender bist, kannst du die Bilder unter der 'Bearbeiten' Sektion ändern.",
send: "Senden",
panorama: "Panorama",
flagged: "Vorgemerkt",
exitPanorama: "Panorama verlasses",
lostFound: "Dieses Bild könnte von dir sein. Aufgrund eines Fehlers in der Android App Version 24 können wir den Author dieses Bildes nicht feststellen. Wenn es dein Bild is, kommentiere bitter oder schreibe eine Mail an [email protected]."
}
});
$translateProvider.translations("pl", {
footer: {
getApp: "Ściągnij aplikację Mapillary",
on: "on",
directAndroid: "Bezpośredni link to pliku .apk",
manifesto: "Manifest",
about: "O nas",
blog: "Blog",
howItWorks: "Jak to działa?",
capture: "Jak robić zdjęcia",
using: "Użytkowanie aplikacji",
positions: "Praca w Mapillary",
legal: "Ustanowienia Prawne",
terms: "Zasady korzystania z serwisu",
privacy: "Polityka prywatoności",
cookies: "Ciasteczka",
more: "Więcej",
business: "Rozwiązania dla biznesu",
developers: "Dla deweloperów",
integrations: "Integracja",
embed: "Widget",
latestUploads: "Ostatnio dodane",
report: "Zgłoś błędy",
follow: "Zaprzyjaźnij się"
},
landing: {
more: "Więcej",
photos: "zdjęć",
meters: "metrów"
},
landingBusiness: {
title: "Mapillary dla biznesu",
use: "Korzystanie ze zdjęć Mapillary",
service: "Korzystaj z komercyjnego API, by używać zasobów Mapillary we własnych rozwiązaniach.",
create: "Twórz projekty, zarządzaj dostępem do nich",
"private": "Klienci biznesowi mogą tworzy projekty i zarzącć tym, kto ma dostęp do prywatnej wersji Mapillary.",
integrate: "Integruj przeglądanie zasobów",
gis: "Używaj naszych API lub widgetu by zintegrować przeglądarkę Mapillary wewnątrz własnej aplikacji lub systemu GIS.",
learn: "Dowiedz się więcej odnośnie rozwiązań biznesowych"
},
landingHow: {
one: "1. Ściągnij aplikację Mapillary",
oneAvailble: "Dostępna dla",
oneFrom: "oraz z",
two: "2. Wyjdź na zewnątrz i dokumentuj świat wokół siebie.",
three: "3. Przeglądaj, odrkywaj i dziel się miejscami"
},
landingWhatyoucan: {
title: "Co możesz zrobić z Mapillary",
section1Map: "Mapuj miejsca znane jak i nieznane",
section1Missing: "Jeśli w twoim mieście brakuje widoku ulicznego, możesz to zmienić, dodaj własne zdjęcia!",
section1Examples: "Zobacz świetne przykłady z",
section1And: "oraz",
section2Add: "Dodawaj dokumentacje miejsc, ktoórych nie ma jeszcze na mapie, jak",
section2RoadMalaysia: "ta droga w Malezji.",
section2Future: "Udokumentuj stan miejsca na przyszlłość by pokoazać jak ono wyglądalł w danym momencie w czasie, jak ta",
section2Coastal: "nabrzeżna wioska",
section2NoCars: "Mapuj obszary niedostępne dla samochodów, jak te przepiękne",
section2Venice: "kanalły w Venice Beach,",
section2Unmapped: "lub niezmapowane",
section2Fishing: "Weneckie rybackie molo.",
section2Share: "Dziel się i pokazuj",
section2Anyone: "Dziel się miejscami z Mapillary z każdym. Wystarczy, że wyślesz linka. Będzie on wyglądać dobrze na urządzeniach mobilnych jak i komputerze.",
section2Embed: "Możesz osadzić przeglądarkę Mapillary na dolnej stronie korzystając z",
section2Widget: "naszego widgetu.",
section2Path: "Dzieęki temu możesz pokazać konkretną scieżkę lub drogę lub udosteępnić możliwość eksploracji dla przeglądających.",
section2See: "Zobacz co możnesz zrobicć na naszej",
section2Example: "stronie z przykładami.",
section3Track: "Śledź rozwój miejsca na podstawie czasu",
section3Filter: "Używając funkcji filtrowania na Mapillary, możesz śledzić zmiany miejsca na podstawie czasu.",
section3Older: "Porównuj zdjęcia nowsze z tymi starszymi. Przeglądaj tylko te zrobione podczas, lata, zimy, itd.",
section3Places: "Jeśli chcesz śledzić miejsca lub masz zdjęcia, którymi nie chcesz się dzielić publicznie, możesz korzystać z prywatnych projektów. Sprawdź nasze",
section3Business: "plany biznesowe."
},
landingSearch: {
header: "Zdjęcia świata gromadzone przez wszystkich",
search: "Szukaj",
or: "lub",
anywhere: "Odkrywaj miejsca na całym świecie",
contribute: "dodaj swoje własne…"
},
navbar: {
howItWorks: "Jak to działa?",
explore: "Odkryj",
business: "Biznes",
developers: "Deweloperzy",
projects: "Projekty",
me: "Ja",
myProfile: "Mój profile",
manualUploads: "Ręczny upload",
settings: "Ustawienia",
signOut: "Wyloguj się",
or: "or",
logIn: "Logowanie",
signUp: "Rejestracja"
},
explore: {
title: "Odkryj",
top5: "Najlepsza 5 maperów",
lastWeek: "Zeszły tydzień",
thisWeek: "Ten tydzień",
user: "użytkownik",
noOfImg: "Ilość zdjęć",
toplistsTitle: "Regionalne/Krajowe toplisty",
toplistsParagraph: "Przeglądaj top listy użytkowników na podstawie regionu i/lub kraju.",
latestUploads: "Ostation dodane"
},
profile: {
uploads: "Dodane sekwencje",
connections: "Połączenia",
editProfile: "Edycja profile",
uploadedImages: "dodanych zdjęć",
metersMapped: "zmapowanych metrów",
stillProcessing: "wciąż przetwarzanych",
recentActivity: "Ostania aktywność"
},
manualUpload: {
title: "Ręczny upload zdjęć",
paragraph: "Dodaj zdjęcia należące do jednego uploadu, tak by tworzyły",
path: "ścieżkę",
chooseFiles: "Wybierz pliki",
tagsRequired: "Nasteępujące tagi EXIF są wymagane:",
thisImage: "To zdjęcie",
goodExample: "jest dobrym przykładem wymaganych tagoów EXIF; zrobione przez ",
seeAlso: "Sprawdź również post n.t.",
usingActionCamera: "użytkowania kamer GoPro i Virb z Mapillary",
sampleWorkflow: "by zobaczyć przkładowy proces.",
terms: "Poprzez upload plików zgadzasz się na",
termsLink: "warunki korzystania z Mapillary.",
of: "z",
imgUploaded: "zdjęc dodanych",
addMoreImages: "Dodaj więcej zdjęć",
clearAllImages: "Wyczyść wszystkie zdjęcia",
imageNotUploaded: "Zdjęcia nie dodane",
imageUploaded: "Zdjęcie dodane",
clickToSeeInfo: "Kliknij na mapę by zobaczyć więcej informacji n.t. zdjęcia",
selectedFile: "Wybrany plik",
latitude: "długość geo.:",
longitude: "szerokość geo.:",
angle: "kąt",
uploaded: "Dodane",
remove: "Usunięte",
filesWithError: "Zdjęcia nie dodane (Nie zostaną wrzucone na serwer)",
filename: "Nazwa pliku",
step1: "1. Dodaj zdjęcia na serwer. Sprawdź czy wszystkie pliki są oznaczone na zielono i wrzucone.",
step2: "2. Załaduje twoje zdjęcia na Mapillary.",
selectProject: "Wybierz projekt (jeśli zostawisz puste, nie znajdą się one w projekcie)",
pushToMapillary: "Załaduj na Mapillary",
thankYou: "Dzięki!",
filesUploaded: "Twoje zdjęcia zostały załadowane na Mapillary",
check: "Sprawdź",
myUploads: "Moje uploady",
addedSoon: "znajdą się niedługo na mapie",
uploadMore: "Załaduj więcej"
},
i18nSettings: {
settings: "Ustawienia",
profile: "Profil",
notifications: "Powiadomienia",
organizations: "Organizacje",
projects: "Projekty",
applications: "Applikacje",
newApplication: "Nowa aplikacja",
profilePicture: "Zdjęcie profilowe",
username: "Nazwa użytkownika",
about: "O mnie",
changePassword: "Zmień hasło",
members: "Członkowie",
"delete": "usuń",
addNewUser: "Dodaj użytkownika",
add: "Dodaj",
projects: "Projekty",
create: "Utwórz",
managedBy: "Zarządzany przez",
developerApplications: "Aplikacje deweloperskie",
registerNewApplication: "Zarejestruj nową aplikację",
applicationCanAccess: "Aplikacja ma dostęp do",
users: "Użytkownicy",
authorizedApplications: "Autoryzowane aplikacje",
access: "Dostęp",
revoke: "Odmów dostępu",
revokeAll: "Odmów dostępu wszystkim",
applicationName: "Nazwa aplikacji",
company: "Firma",
companyUrl: "URL firmy",
callbackUrl: "URL zwrotny",
description: "Opis",
updateApplication: "Update'uj aplikację",
deleteApplication: "Usuń aplikację",
createApplication: "Utwórz aplikację"
},
i18nFilters: {
filter: "Filtruj",
byDate: "Filtruj po dacie",
unit: "Jednostka",
week: "Tydzień",
month: "Miesiąc",
bySeason: "Filtruj po sezonie",
otherFilters: "Inne filtry",
comments: "Komentarze",
panoramas: "Panoramy",
objects: "Objekty",
from: "od",
to: "do",
winter: "Zima",
spring: "Wiosna",
summer: "Lato",
autumn: "Jesień",
trafficSigns: "Filtruj znaki drogowe"
},
i18nIm: {
aboutToFlag: "Za chwilę oflagujesz zdjęcie do ręcznej inspekcji przez Mapillary.",
processingNotice: "Zdjęcie jeszcz nie zostalło przetworzone. Niedługo beędzie wyglądać lepiej, obiecujemy.",
share: "Dziel się",
whatProblem: "Co jest nie tak?",
imageRotated: "Zdjęcie jest odwrócone",
imageNotBlurred: "Zdjęcie nie jest poprawnie zazmazane.",
imageShouldHide: "To zdjeęcie powinno być ukryte",
sequenceShouldSplit: "Sekwencja powinna być przerwana w tym miejscu",
ifMapillaryUser: "Jeśli jesteś uzżytkownikiem Mapillary, możesz reęcznie ukryć zdjęcie, klikając na 'Edytuj'.",
send: "Wyślij",
panorama: "Panorama",
flagged: "Oflagowane",
exitPanorama: "Wyjdź z panoramy",
lostFound: "To może być twoje zdjęcie. W związku z problemem z aplikacją na Androida v. 24, nie jesteśmy w stanie zlokalizowacć kto jest właścicielem tego zdjęcia. Jeśli Ty nim jesteś, zostaw komentarz pod tym zdjęciem, lub podeślij mejla na [email protected]."
}
});
$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: "發現",