forked from opengeos/GeoLibre
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.json
More file actions
4646 lines (4646 loc) · 216 KB
/
Copy pathen.json
File metadata and controls
4646 lines (4646 loc) · 216 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
{
"browser": {
"title": "Browser",
"services": "Services",
"recent": "Recent",
"databases": "Databases",
"newDatabaseConnection": "New database connection",
"searchPlaceholder": "Search data sources",
"empty": "No saved services or recent projects yet.",
"emptyGroup": "Empty",
"noMatches": "No matches.",
"addFailed": "Could not add this data source.",
"builtinBadge": "built-in",
"newConnection": "New {{kind}} connection",
"loadingTables": "Loading tables…",
"files": "Files",
"addFolder": "Add folder",
"addFolderFailed": "Could not add this folder.",
"addFileFailed": "Could not add this file.",
"loadFolderFailed": "Could not read this folder.",
"unpinFolder": "Remove “{{name}}” from the list",
"loadingFolder": "Loading…",
"folderTruncated": "Showing first {{shown}} of {{total}}",
"favorites": "Favorites",
"favorite": "Add “{{name}}” to favorites",
"unfavorite": "Remove “{{name}}” from favorites",
"favoriteMissing": "That data source no longer exists — removed from Favorites."
},
"about": {
"trigger": "About",
"title": "About GeoLibre",
"description": "GeoLibre is a lightweight cloud-native GIS platform.",
"version": "Version",
"checkForUpdates": "Check for updates",
"tryAgain": "Try again",
"checking": "Checking for updates",
"upToDate": "You are up to date ({{version}}).",
"upToDateNoVersion": "You are up to date.",
"generalSectionTitle": "General",
"homePage": "Home page",
"githubRepository": "GitHub repository"
},
"updates": {
"changelogTitle": "What's new",
"noChangelog": "Release notes are not available. See the downloads page for details.",
"stepsTitle": "How to update",
"download": "Download update",
"steps": {
"download": "Download the installer for your platform from the downloads page.",
"install": "Run the installer. Your local projects, settings, and API keys are kept.",
"reopen": "Reopen GeoLibre to finish updating."
},
"severity": {
"major": "Major release",
"minor": "Feature update",
"patch": "Patch update"
},
"available": {
"title": "{{version}} is available",
"fallback": "A new version",
"summary": "You are running {{current}}."
},
"error": {
"message": "Could not check for updates.",
"rateLimit": "GitHub rate limit exceeded. Please try again later.",
"http": "GitHub returned {{status}}.",
"noTag": "The latest release does not include a version tag.",
"network": "Could not reach GitHub. Check your connection and try again.",
"viewDownloads": "View downloads",
"viewDownloadsHint": "Opens the GeoLibre downloads page in your browser so you can check the latest version manually."
},
"startup": {
"title": "Update available",
"currentVersion": "Your current version",
"latestVersion": "Latest available version",
"download": "Download update package",
"remindLater": "Remind me later",
"skipVersion": "Skip this version",
"settingsHint": "You can change update checks in Settings → Updates."
}
},
"bookmark": {
"captureStateLabel": "Include complete layer state (active, inactive, and layer order)",
"captureStateTooltip": "Applies to the bookmark you save next, not as a global setting. Leave it on to restore exactly this layer arrangement later.",
"export": "Export",
"exportSelected": "Export Selected",
"exportAll": "Export All",
"newFolder": "New Folder",
"defaultFolderName": "Folder"
},
"managePlugins": {
"failed": "Failed",
"failedToLoad": "Failed to load: {{message}}",
"trust": {
"title": "Load plugins from this project?",
"description_one": "This project wants to load 1 external plugin from a URL you have not installed. Plugins run code with full access to the app.",
"description_other": "This project wants to load {{count}} external plugins from URLs you have not installed. Plugins run code with full access to the app.",
"warning": "Only load plugins from sources you trust. Loaded plugins run with the same privileges as GeoLibre itself.",
"trustButton": "Trust and load",
"dismissButton": "Don't load"
},
"title": "Manage Plugins",
"searchAria": "Search plugins",
"searchPlaceholder": "Search plugins",
"refresh": "Refresh",
"loadingRegistry": "Loading registry…",
"registryEmpty": "No plugins are listed in the registry.",
"noPluginsHere": "No plugins here.",
"sectionAll": "All ({{total}})",
"sectionInstalled": "Installed ({{total}})",
"sectionNotInstalled": "Not installed ({{total}})",
"sectionUpgradeable": "Upgradeable ({{total}})",
"sectionSettings": "Settings",
"openHomepageAria": "Open {{name}} homepage",
"byAuthor": "by {{author}}",
"updateAvailable": "update available",
"requiresVersion": "requires GeoLibre {{version}}+",
"install": "Install",
"installAria": "Install {{name}}",
"removeConfirm": "Remove?",
"uninstall": "Uninstall",
"uninstallAria": "Uninstall {{name}}",
"confirmUninstallAria": "Confirm uninstall {{name}}",
"update": "Update",
"updateAria": "Update {{name}}",
"loading": "Loading…",
"installed": "Installed",
"settingsIntro": "GeoLibre always scans its app data plugins directory. Install a packaged plugin (.zip) from a file, or add additional local directories (desktop-only). Manifest URLs (including marketplace installs) are loaded over the network; changes here apply immediately.",
"installFromFile": "Install from file",
"chooseZip": "Choose .zip…",
"installFromFileHintDesktop": "Copy a packaged plugin archive into GeoLibre's plugins directory.",
"installFromFileHintWeb": "Load a packaged plugin archive; it is stored in your browser and reloads on your next visit.",
"localDirectories": "Local directories",
"directoryAria": "Plugin directory",
"browseDirectoryAria": "Browse plugin directory",
"noDirectories": "No additional plugin directories configured.",
"manifestUrls": "Manifest URLs",
"manifestUrlAria": "Plugin manifest URL",
"noManifestUrls": "No plugin manifest URLs configured.",
"removeAria": "Remove {{name}}",
"errorLoadRegistry": "Could not load the plugin registry.",
"errorUpdate": "Could not update plugin.",
"errorDirectoryPicker": "Could not open the directory picker.",
"errorInstall": "Could not install the plugin.",
"errorUninstall": "Could not uninstall the plugin.",
"description": "Browse, install, update, and remove external GeoLibre plugins. Plugins are listed in the <registryLink>GeoLibre plugin registry</registryLink>."
},
"viewState": {
"panelTitle": "Info"
},
"terrainMeasure": {
"title": "Terrain (3D)",
"surfaceDistance": "Surface distance",
"surfaceArea": "Surface area",
"elevationGainLoss": "Gain / loss",
"elevationRange": "Min / max elevation",
"meanSlope": "Mean slope",
"computing": "Computing terrain…",
"partialData": "Some samples had no terrain data"
},
"fileNamePrompt": {
"title": "Save file as",
"description": "Enter a file name. The file downloads to your browser's downloads folder.",
"label": "File name"
},
"newProject": {
"basemapDescription": "Choose an OpenFreeMap or Protomaps basemap, a blank background, or a MapLibre style URL.",
"basemapDescriptionNoProtomaps": "Choose an OpenFreeMap basemap, a blank background, or a MapLibre style URL.",
"sectionOpenFreeMap": "OpenFreeMap",
"sectionProtomaps": "Protomaps",
"sectionOther": "Other",
"customUrlButton": "Custom URL",
"invalidCustomUrl": "Enter a valid style.json or .pmtiles URL.",
"savePromptTitle": "Save current project?",
"savePromptDescription": "The current project has unsaved changes. Save them before creating a new project?",
"doNotSave": "Do not save",
"saving": "Saving...",
"title": "New project",
"projectName": "Project name",
"basemapLabel": "Basemap",
"create": "Create"
},
"basemapPicker": {
"title": "Change basemap",
"applyCustom": "Apply",
"invalidUrl": "Enter a valid HTTP or HTTPS style URL.",
"sectionMoon": "The Moon",
"sectionMars": "Mars",
"sectionOther": "Other celestial bodies"
},
"planetSwitcher": {
"label": "Celestial body",
"earth": "Earth",
"mercury": "Mercury",
"venus": "Venus",
"moon": "Moon",
"mars": "Mars",
"io": "Io",
"europa": "Europa",
"ganymede": "Ganymede",
"callisto": "Callisto",
"titan": "Titan",
"pluto": "Pluto",
"charon": "Charon"
},
"common": {
"pickColorFromScreen": "Pick a color from the screen",
"save": "Save",
"cancel": "Cancel",
"close": "Close",
"retry": "Retry",
"reset": "Reset",
"remove": "Remove",
"add": "Add",
"ok": "OK",
"done": "Done",
"openWebApp": "Open the GeoLibre web app"
},
"addData": {
"title": "Add Data",
"kind": {
"xyz": {
"label": "Add XYZ Layer",
"description": "Add a raster tile template using x, y, and z placeholders."
},
"wms": {
"label": "Add WMS Layer",
"description": "Add a WMS GetMap service as a tiled raster layer."
},
"wfs": {
"label": "Add WFS Layer",
"description": "Add WFS features by requesting GeoJSON from a GetFeature service."
},
"wmts": {
"label": "Add WMTS Layer",
"description": "Add a WMTS tile URL template as a raster layer."
},
"ogcFeatures": {
"label": "Add OGC API - Features Layer",
"description": "Add features from an OGC API - Features collection as a vector layer, following the service's paging links until the requested feature count is loaded."
},
"ogcVectorTiles": {
"label": "Add OGC Vector Tiles",
"description": "Add an OGC API - Tiles (vector) service from a TileJSON or tile template, optionally reading its source layers from a style URL."
},
"gpx": {
"label": "Add GPX Layer",
"description": "Add GPX waypoints, routes, and tracks as one or more vector layers."
},
"georss": {
"label": "Add GeoRSS Layer",
"description": "Add a GeoRSS feed (RSS, Atom, or RDF) from a URL or file as a vector layer."
},
"delimitedText": {
"label": "Add Delimited Text Layer",
"description": "Add a delimited text file or URL as a point layer using longitude and latitude fields, or as a non-spatial attribute table when no coordinates are available."
},
"cad": {
"label": "Add CAD (DXF/DWG) Layer",
"description": "Add an AutoCAD DXF or DWG drawing as a vector layer, choosing which layer to load and the coordinate reference system to project it from."
},
"gdb": {
"label": "Add File Geodatabase Layer",
"description": "Add a layer from an Esri File Geodatabase (.gdb folder). The layer is read with the local GeoLibre server and reprojected to WGS84."
},
"photos": {
"label": "Add Geotagged Photos",
"description": "Import JPEG/HEIC photos as a point layer, placing each one from its EXIF GPS location."
},
"mbtiles": {
"label": "Add MBTiles Layer",
"description": "Add a local MBTiles file as a raster or vector tile layer."
},
"arcgis": {
"label": "Add ArcGIS Layer",
"description": "Add an ArcGIS FeatureServer layer, VectorTileServer layer, or portal item."
},
"postgres": {
"label": "Add PostgreSQL Layer",
"description": "Start Martin locally, discover PostGIS sources, and add a source as vector tiles."
},
"deckglViz": {
"label": "Add Deck.gl Layer",
"description": "Pick a deck.gl layer type, then load the example data or upload a CSV/JSON/GeoJSON file or URL."
},
"video": {
"label": "Add Video Layer",
"description": "Add a georeferenced video overlay by supplying an MP4 URL and four corner coordinates."
}
},
"shared": {
"layerName": "Layer name",
"insertBelow": "Insert below",
"insertTop": "Top of layer list (default)",
"layersGroup": "Layers",
"basemapLayersGroup": "Basemap layers",
"showBasemapLayers": "Show basemap layers (advanced)",
"addLayer": "Add layer",
"adding": "Adding…",
"addError": "Could not add layer.",
"sampleData": "Sample data",
"loadSampleData": "Load sample data…"
},
"common": {
"serviceUrl": "Service URL",
"tileSize": "Tile size",
"tileUrlTemplate": "Tile URL template",
"sourceType": "Source type",
"layerType": "Layer type",
"format": "Format",
"optional": "Optional",
"chooseFile": "Choose file",
"noFileSelected": "No file selected",
"loading": "Loading...",
"workspaceLayerPlaceholder": "workspace:layer",
"requestFailed": "Request failed with status {{status}}",
"networkFailure": "Could not reach the service. Check that the host is reachable and that its TLS certificate, firewall, and proxy settings allow the request; in the browser it may also be blocked by CORS, so try the desktop app.",
"requestTimedOut": "The request timed out. The host may be slow, unreachable, or blocked by a firewall or proxy."
},
"serviceLibrary": {
"title": "Saved services",
"saveCurrent": "Save current",
"importLibrary": "Import library from JSON",
"exportLibrary": "Export library to JSON",
"loadAria": "Load a saved service",
"loadPlaceholder": "Load a saved service…",
"builtin": "{{name}} (built-in)",
"deleteAria": "Delete saved service",
"empty": "No saved services yet — fill in the form and choose “Save current”.",
"name": "Name",
"category": "Category",
"categoryPlaceholder": "Optional (e.g. country, theme)",
"uncategorized": "Uncategorized",
"errorName": "Enter a name for the saved service.",
"saved": "Saved \"{{name}}\" to the service library.",
"removed": "Removed \"{{name}}\".",
"errorExport": "Could not export library.",
"errorTooLarge": "File is too large to import (max 5 MB).",
"errorNoServices": "No valid services found in that file.",
"errorRead": "Could not read that file as a service library.",
"imported_one": "Imported {{count}} service.",
"imported_other": "Imported {{count}} services.",
"importedWithDropped_one": "Imported {{count}} service ({{dropped}} skipped — library full).",
"importedWithDropped_other": "Imported {{count}} services ({{dropped}} skipped — library full)."
},
"xyz": {
"defaultName": "XYZ Layer",
"sampleLabel": "USGS imagery",
"errorUrl": "Enter an XYZ tile URL template.",
"urlPlaceholder": "https://example.com/{z}/{x}/{y}.png",
"shortUrlPlaceholder": "https://go.example.com/layer",
"shortUrl": "Short URL"
},
"wms": {
"defaultName": "WMS Layer",
"sampleLabel": "USGS NAIP imagery",
"sampleLabelGebco": "GEBCO ocean bathymetry",
"errorUrl": "Enter a WMS service URL.",
"errorLayers": "Enter one or more WMS layer names.",
"urlPlaceholder": "https://example.com/geoserver/wms",
"layers": "Layers",
"styles": "Styles",
"transparent": "Transparent background",
"retrieveLayers": "Retrieve layers",
"retrieving": "Retrieving...",
"retrievedLayers": "Retrieved layers",
"selectLayer_one": "Select from {{count}} layer",
"selectLayer_other": "Select from {{count}} layers",
"noLayersFound": "No layers were found for this service.",
"retrieveError": "Could not retrieve layers from this service.",
"version": "WMS version"
},
"wfs": {
"defaultName": "WFS Layer",
"sampleLabel": "US states (GeoServer)",
"errorUrl": "Enter a WFS service URL.",
"errorTypeName": "Enter a WFS feature type name.",
"errorOutputFormat": "Enter a WFS output format.",
"urlPlaceholder": "https://example.com/geoserver/wfs",
"featureType": "Feature type",
"version": "Version",
"outputFormat": "Output format",
"srsName": "SRS name",
"maxFeatures": "Max features",
"errorMaxFeaturesNumeric": "Enter a numeric max features value.",
"retrieveTypes": "Retrieve types",
"retrieving": "Retrieving...",
"retrievedTypes": "Retrieved feature types",
"selectType_one": "Select from {{count}} feature type",
"selectType_other": "Select from {{count}} feature types",
"noTypesFound": "No feature types were found for this service.",
"retrieveError": "Could not retrieve feature types from this service."
},
"wmts": {
"defaultName": "WMTS Layer",
"sampleLabel": "EOX World Imagery (Sentinel-2)",
"errorUrl": "Enter a WMTS tile URL template.",
"urlPlaceholder": "https://example.com/wmts/{z}/{y}/{x}.png"
},
"ogcFeatures": {
"defaultName": "OGC API - Features Layer",
"sampleLabel": "Global lakes (pygeoapi demo)",
"urlPlaceholder": "https://example.com/ogcapi",
"urlHint": "The service landing page, or any URL copied from it (a /collections or /collections/{id}/items URL also works).",
"retrieveCollections": "Retrieve collections",
"retrieving": "Retrieving...",
"retrievedCollections": "Retrieved collections",
"selectCollection_one": "Select from {{count}} collection",
"selectCollection_other": "Select from {{count}} collections",
"noCollectionsFound": "No feature collections were found for this service.",
"retrieveError": "Could not retrieve collections from this service.",
"collection": "Collection",
"collectionPlaceholder": "collection-id",
"maxFeatures": "Max features",
"bbox": "Bounding box",
"datetime": "Date and time",
"errorCollection": "Enter an OGC API - Features collection id.",
"errorMaxFeatures": "Enter a max features value of 1 or more.",
"errorBbox": "Enter the bounding box as \"west,south,east,north\".",
"errorNoFeatures": "This collection returned no features."
},
"ogcVectorTiles": {
"defaultName": "OGC Vector Tiles Layer",
"tilesUrl": "Tiles URL",
"tilesUrlPlaceholder": "https://example.com/tiles/WebMercatorQuad?f=tilejson",
"tilesUrlHint": "A TileJSON metadata URL or a {z}/{y}/{x} MVT tile template.",
"styleUrl": "Style URL",
"styleUrlPlaceholder": "https://example.com/styles/default?f=mapbox",
"styleUrlHint": "Optional Mapbox/MapLibre style JSON. Used to discover the tileset's source layers when the TileJSON omits them.",
"sourceLayers": "Source layers",
"sourceLayersPlaceholder": "layer_a, layer_b",
"sourceLayersHint": "Optional comma-separated source layer names. Overrides the layers found in the TileJSON or style.",
"sampleLabel": "PDOK BGT (Netherlands)",
"errorUrl": "Enter a tiles URL or a style URL.",
"errorNoTiles": "Could not determine the vector tile endpoint. Enter a TileJSON URL, a tile template, or a style URL.",
"errorNoLayers": "Could not determine the vector tile source layers. Add a style URL or enter the source layer names."
},
"arcgis": {
"defaultName": "ArcGIS Layer",
"sampleFeatureLabel": "US major cities (feature)",
"sampleVectorTileLabel": "Santa Monica parcels (vector tiles)",
"featureLayer": "Feature layer",
"vectorTileLayer": "Vector tile layer",
"portalItemId": "Portal item ID",
"featureUrlPlaceholder": "https://services.arcgis.com/.../FeatureServer/0",
"vectorTileUrlPlaceholder": "https://.../arcgis/rest/services/.../VectorTileServer",
"portalUrl": "Portal URL",
"portalUrlPlaceholder": "https://www.arcgis.com/sharing/rest",
"accessToken": "Access token"
},
"gpx": {
"defaultName": "GPX Layer",
"sampleLabel": "Fells Loop trail",
"errorFileMissing": "GPX file data is missing.",
"readError": "Could not read GPX file.",
"errorChooseFile": "Choose a GPX file.",
"errorUrl": "Enter a GPX URL.",
"errorSelectType": "Select at least one GPX layer type.",
"errorNotFound": "The selected GPX layer types were not found.",
"waypoints": "Waypoints",
"tracks": "Tracks",
"trackPoints": "Track Points",
"routes": "Routes",
"routePoints": "Route Points",
"url": "GPX URL",
"file": "GPX file",
"urlPlaceholder": "https://example.com/route.gpx",
"layerTypes": "Layer types"
},
"georss": {
"defaultName": "GeoRSS Layer",
"sampleLabel": "USGS earthquakes (past day)",
"errorFileMissing": "GeoRSS file data is missing.",
"readError": "Could not read GeoRSS file.",
"errorChooseFile": "Choose a GeoRSS file.",
"errorUrl": "Enter a GeoRSS URL.",
"url": "GeoRSS URL",
"file": "GeoRSS file",
"urlPlaceholder": "https://example.com/feed.atom"
},
"cad": {
"defaultName": "CAD Layer",
"fileFilter": "CAD (DXF/DWG)",
"layer": "CAD layer",
"layerPlaceholder": "Choose a CAD file first",
"readingLayers": "Reading layers...",
"layerOption": "{{name}} ({{type}}, {{count}} features)",
"crs": "Source CRS",
"crsPlaceholder": "e.g. EPSG:26915",
"crsPresetLabel": "Common coordinate systems...",
"crsHelp": "Leave blank if the drawing is already in longitude/latitude (WGS84). Otherwise enter the EPSG code of the drawing's coordinate system to reproject it.",
"readError": "Could not read this CAD file.",
"errorNoLayers": "No layers were found in this CAD file.",
"errorChooseFile": "Choose a CAD (DXF/DWG) file first.",
"errorNoLayer": "Select a CAD layer to load.",
"errorUnsupportedGeometry": "This CAD layer contains mixed or collection geometry that cannot be displayed. Try another layer."
},
"gdb": {
"defaultName": "Geodatabase Layer",
"chooseFolder": "Choose .gdb folder...",
"noFolderSelected": "No geodatabase selected",
"layer": "Feature class",
"layerPlaceholder": "Choose a geodatabase first",
"readingLayers": "Reading layers...",
"layerOption": "{{name}} ({{type}}, {{count}} features)",
"help": "Attribute-only tables are not listed. The selected feature class is loaded through the local GeoLibre server and reprojected to WGS84.",
"desktopOnly": "File Geodatabase layers are only available in GeoLibre Desktop. This feature reads a local .gdb folder through the local GeoLibre server, which the web app cannot access.",
"readError": "Could not read this File Geodatabase.",
"convertError": "Could not load this feature class.",
"errorNotGdb": "Choose a folder ending in .gdb (an Esri File Geodatabase).",
"errorNoLayers": "No feature classes with geometry were found in this geodatabase.",
"errorChooseFolder": "Choose a .gdb folder first.",
"errorNoLayer": "Select a feature class to load.",
"errorTimeout": "Reading the geodatabase timed out.",
"crs": "Source CRS",
"crsPlaceholder": "e.g. EPSG:26915",
"crsHelp": "This feature class's coordinate system could not be detected. Enter the EPSG (or ESRI) code it was stored in so it can be reprojected to WGS84.",
"errorMissingCrs": "This feature class's coordinate system could not be detected. Enter its source CRS to add it."
},
"delimitedText": {
"defaultName": "Delimited Text Layer",
"sampleLabel": "US cities",
"errorChooseFile": "Choose a delimited text file.",
"errorUrl": "Enter a delimited text URL.",
"errorFileMissing": "Delimited text file data is missing.",
"readError": "Could not read delimited text file.",
"errorDataMissing": "Delimited text data is missing.",
"retrievedColumns_one": "Retrieved {{count}} column.",
"retrievedColumns_other": "Retrieved {{count}} columns.",
"retrievedColumnsTable_one": "Retrieved {{count}} column. No coordinate columns detected; it will be added as an attribute table.",
"retrievedColumnsTable_other": "Retrieved {{count}} columns. No coordinate columns detected; it will be added as an attribute table.",
"errorRetrieveColumns": "Could not retrieve column names.",
"url": "Delimited text URL",
"file": "Delimited text file",
"urlPlaceholder": "https://example.com/data.csv",
"retrieving": "Retrieving...",
"retrieveColumns": "Retrieve columns",
"delimiter": "Delimiter",
"delimiterComma": "Comma",
"delimiterTab": "Tab",
"delimiterSemicolon": "Semicolon",
"delimiterPipe": "Pipe",
"delimiterCustom": "Custom",
"customDelimiter": "Custom delimiter",
"longitudeField": "Longitude field",
"latitudeField": "Latitude field",
"noneField": "None (attribute table)",
"tableHint": "Leave both coordinate fields as None to add the file as a non-spatial attribute table (for use in an attribute join).",
"crs": "Coordinate system",
"crsPlaceholder": "e.g. EPSG:32643",
"crsPresetLabel": "Common coordinate systems...",
"crsHelp": "Leave blank if the coordinates are already longitude/latitude (WGS84). Otherwise enter the EPSG code of the coordinate columns and the points will be reprojected to WGS84. For a projected CRS, the longitude and latitude fields select the X (easting) and Y (northing) columns."
},
"photos": {
"defaultName": "Photos",
"chooseLabel": "Photos",
"choosePhotos": "Choose photos",
"hint": "Select JPEG, PNG, TIFF, or HEIC photos. Each one is placed from its EXIF GPS location. HEIC photos are located but shown without a thumbnail.",
"readError": "Could not read the selected photos.",
"errorChooseFiles": "Choose one or more photos.",
"selectedCount_one": "{{count}} photo selected",
"selectedCount_other": "{{count}} photos selected",
"errorNoGps_one": "No GPS location was found in the selected photo.",
"errorNoGps_other": "No GPS location was found in the {{count}} selected photos.",
"addedSummary_one": "Added {{count}} geotagged photo.",
"addedSummary_other": "Added {{count}} geotagged photos.",
"skippedNote_one": "{{count}} photo was skipped (no GPS location).",
"skippedNote_other": "{{count}} photos were skipped (no GPS location).",
"noThumbnailNote_one": "{{count}} photo has no thumbnail (HEIC or unsupported format).",
"noThumbnailNote_other": "{{count}} photos have no thumbnail (HEIC or unsupported format).",
"manualPromptTitle": "No GPS location was found in this photo.",
"manualPromptBody": "Place it at the current map center and drag it into position on the map.",
"manualPromptCenter": "Map center: {{lng}}, {{lat}}",
"manualPlace": "Place at map center",
"manualHint": "Drag this pin to position the photo, then click Done."
},
"mbtiles": {
"defaultName": "MBTiles Layer",
"readError": "Could not read MBTiles file.",
"errorChooseFile": "Choose an MBTiles file.",
"errorSourceLayers": "Enter at least one vector source layer.",
"tileType": "Tile type",
"sourceLayers": "Source layers",
"sourceLayersPlaceholder": "building, place, water"
},
"postgres": {
"defaultName": "PostgreSQL Layer",
"errorDesktopOnly": "PostgreSQL layers require GeoLibre Desktop.",
"errorConnectionString": "Enter a PostgreSQL connection string.",
"statusCheckingBinary": "Checking Martin binary...",
"statusDownloaded": "Martin downloaded. Starting local server...",
"statusStarting": "Starting local Martin server...",
"statusReadingCatalog": "Reading Martin catalog...",
"statusFound_one": "Found {{count}} source.",
"statusFound_other": "Found {{count}} sources.",
"statusNoSources": "Martin is running, but no compatible PostGIS sources were found.",
"errorConnect": "Could not connect to PostgreSQL.",
"statusStopped": "Martin stopped.",
"errorStop": "Could not stop Martin.",
"errorConnectFirst": "Connect to PostgreSQL first.",
"errorNoVectorLayers": "The selected Martin source has no vector layers.",
"errorSelectSource": "Select a Martin source to add.",
"desktopOnlyNotice": "PostgreSQL layers are only available in GeoLibre Desktop. This feature runs a local Martin tile server, which the web app cannot launch.",
"savedConnection": "Saved connection",
"selectSavedConnection": "Select saved connection",
"connectionString": "PostgreSQL connection string",
"connectionStringPlaceholder": "postgres://user:password@host:5432/database",
"defaultSrid": "Default SRID",
"connect": "Connect",
"stop": "Stop",
"martinSource": "Martin source",
"runningOnPort": "Martin is running on port {{port}}.",
"loadMode": "Load as",
"loadModeTiles": "Vector tiles (Martin, read-only)",
"loadModeEditable": "Editable layer (loads all features)",
"editableNotice": "Loads the table's features through the local processing server so they can be edited. Save changes back with the layer's \"Save edits to PostGIS table\" action.",
"statusListingTables": "Reading spatial tables...",
"statusTablesFound_one": "Found {{count}} spatial table.",
"statusTablesFound_other": "Found {{count}} spatial tables.",
"statusNoTables": "No spatial tables were found in this database.",
"editableTable": "Table",
"tableReadOnly": "{{table}} (read-only: no primary key)",
"errorSelectTable": "Select a table to load.",
"errorRuntimeMissing": "The processing server does not have the PostGIS runtime (psycopg) installed. Install the geolibre-server 'postgis' extra to load editable layers."
},
"video": {
"defaultName": "Video Layer",
"sampleLabel": "Coastal waves near San Francisco",
"errorUrl": "Enter a video URL.",
"errorHttps": "Video URLs must start with https://.",
"cornerTopLeft": "top-left",
"cornerTopRight": "top-right",
"cornerBottomRight": "bottom-right",
"cornerBottomLeft": "bottom-left",
"errorCornerFormat": "Enter the {{corner}} corner as \"longitude, latitude\".",
"errorCornerNumber": "Enter a numeric {{corner}} longitude and latitude.",
"errorCornerLng": "{{corner}} longitude must be between -180 and 180.",
"errorCornerLat": "{{corner}} latitude must be between -90 and 90.",
"primaryUrl": "Primary video URL",
"primaryUrlPlaceholder": "https://example.com/clip.mp4",
"fallbackUrl": "Fallback video URL (optional)",
"fallbackUrlPlaceholder": "https://example.com/clip.webm",
"topLeft": "Top-left (lng, lat)",
"topRight": "Top-right (lng, lat)",
"bottomRight": "Bottom-right (lng, lat)",
"bottomLeft": "Bottom-left (lng, lat)",
"cornersNote": "The four corners georeference the video on the map. The video must be served over HTTPS and the host must allow cross-origin requests (CORS) for the frames to render."
},
"netcdf": {
"sampleLabel": "Air temperature",
"title": "Add NetCDF / HDF",
"description": "Render a NetCDF or HDF5 dataset: a remote Cloud-Optimized file via a kerchunk reference (read over HTTP range requests), or a local NetCDF or HDF5 file read in your browser.",
"sourceLabel": "Source",
"sourceCloud": "Cloud-Optimized (kerchunk URL)",
"sourceLocal": "Local file (NetCDF / HDF5)",
"localFileLabel": "Local file",
"chooseDifferentFile": "Choose a different file",
"readingFile": "Reading...",
"localFileHelp": "Select a local NetCDF or HDF5 file (.nc, .nc4, .cdf, .h5, or .hdf5); classic NetCDF-3 and NetCDF-4/HDF5 are both supported. It is decoded in your browser; large files use more memory.",
"errorNoVariables": "No renderable (2-D or higher) variables found in the file.",
"errorNoFile": "No file loaded.",
"kerchunkUrlLabel": "Kerchunk reference URL",
"kerchunkUrlHelp": "Choose a sample dataset above, or paste your own kerchunk reference URL, then click Load variables.",
"loading": "Loading...",
"loadVariables": "Load variables",
"variableLabel": "Variable",
"dimIndexLabel": "{{dim}} index",
"colorMin": "Color min (optional)",
"colorMax": "Color max (optional)",
"adding": "Adding...",
"addLayer": "Add layer"
},
"deckViz": {
"defaultName": "Deck.gl Layer",
"errorChooseFile": "Choose a CSV, JSON, or GeoJSON file.",
"errorUrl": "Enter a data URL.",
"errorUnknownType": "Unknown layer type.",
"needsGeojson": "{{label}} needs a GeoJSON file.",
"needsTabular": "{{label}} needs tabular CSV/JSON data, not GeoJSON.",
"mapRequiredFields_one": "Map the required field: {{fields}}.",
"mapRequiredFields_other": "Map the required fields: {{fields}}.",
"errorExample": "Could not load the example data.",
"loadedFeatures_one": "Loaded {{count}} feature.",
"loadedFeatures_other": "Loaded {{count}} features.",
"loadedRows_one": "{{count}} row",
"loadedRows_other": "{{count}} rows",
"loadedColumns_one": "{{count}} column",
"loadedColumns_other": "{{count}} columns",
"loadedTabular": "Loaded {{rows}} · {{columns}}.",
"errorLoad": "Could not load the data.",
"errorLoadFirst": "Load the example data, or a file/URL, first.",
"useExample": "Use example data",
"loadYourOwn": "Or load your own",
"dataUrl": "Data URL",
"localFile": "Local file",
"urlPlaceholder": "https://example.com/data.csv",
"chooseFileLoad": "Choose file & load",
"loadData": "Load data",
"selectRole": "— select —",
"roleNone": "(none)",
"closeAfterAdd": "Close dialog after adding layer",
"color": "Color",
"pointSize": "Point size",
"cellSize": "Cell size",
"lineWidth": "Line width",
"extrusion": "3D extrusion",
"modelUrlPlaceholder": "https://example.com/model.glb"
}
},
"offline": {
"title": "Download Offline Area",
"description": "Save the current map view's basemap tiles so this area keeps working without a network connection.",
"noServiceWorker": "Offline caching needs the installed web app. Tiles you download here won't be saved for offline use in this build.",
"uncacheable": "The following basemap sources don't support offline downloading and will be missing from your offline map: {{hosts}}.",
"cacheable": "The following basemap sources will be downloaded and available offline: {{hosts}}.",
"includeExtra": "Include extra detail levels for zooming in",
"currentViewOnly": "Current view only · Zoom {{zoom}}",
"detailLevels": "Extra detail levels",
"relativeLevels_one": "+{{count}} level · Zoom {{min}}–{{max}}",
"relativeLevels_other": "+{{count}} levels · Zoom {{min}}–{{max}}",
"tiles": "Resources to download",
"tooManyTiles": "This area exceeds the offline cache limit ({{max}} resources); the oldest cached tiles may be evicted as newer resources download. Reduce the detail levels or pick a smaller area.",
"acknowledgeEviction": "Download anyway, evicting older tiles if needed",
"download": "Download",
"cancel": "Cancel",
"progress": "Downloading {{done}} / {{total}}…",
"complete_one": "Offline area saved. {{count}} resource cached for offline use.",
"complete_other": "Offline area saved. {{count}} resources cached for offline use.",
"completeWithFailures": "Saved {{done}} of {{total}} resources ({{failed}} failed).",
"retryFailed_one": "Retry {{count}} failed resource",
"retryFailed_other": "Retry {{count}} failed resources",
"retryAll": "Retry all resources",
"advanced": "Advanced options",
"concurrency": "Concurrent requests",
"concurrencyHint": "Lower this to ease off servers that rate-limit rapid tile requests.",
"timeout": "Request timeout (seconds)",
"timeoutHint": "Each tile request is given up to {{seconds}}s before it counts as failed.",
"timeoutDisabled": "No timeout — requests use the browser default. Raise it for slow connections."
},
"offlineManager": {
"title": "Manage Offline Areas",
"description": "Review the basemap areas you've downloaded for offline use, refresh them, or delete them to reclaim storage.",
"noServiceWorker": "Offline caching needs the installed web app. Refreshing areas won't save tiles for offline use in this build.",
"empty": "No offline areas yet. Use \"Download Offline Area\" to save the current map view for offline use.",
"zoomRange": "Zoom {{min}}–{{max}}",
"tilesCount_one": "{{count}} tile",
"tilesCount_other": "{{count}} tiles",
"savedOn": "Saved {{date}}",
"rename": "Rename this area",
"nameLabel": "Area name",
"update": "Refresh this area",
"delete": "Delete this area",
"confirmDelete": "Delete",
"updateAll": "Refresh all",
"updating": "Refreshing {{done}} / {{total}}…",
"totalFootprint_one": "{{size}} across {{count}} area",
"totalFootprint_other": "{{size}} across {{count}} areas",
"deviceUsage": "{{usage}} of {{quota}} used"
},
"recordTour": {
"title": "Record Map Tour",
"hint": "Pan and zoom the map, then capture each view. The map stays interactive while this panel is open.",
"unsupported": "This browser cannot record the map canvas. Try a recent version of Chrome, Edge, or Firefox.",
"addView": "Add current view",
"pathTitle": "Generate from path",
"pathNoLayers": "Add a LineString layer to generate keyframes from a path.",
"pathLayer": "Path layer",
"pathLayerOption": "{{name}} ({{count}} points)",
"pathKeyframes": "Keyframes",
"pathZoom": "Zoom",
"pathPitch": "Pitch",
"pathHold": "Hold",
"pathTransition": "Move",
"pathGenerate": "Generate",
"pathConfirmReplace": "Replace the current keyframes with keyframes generated from this path?",
"pathGenerated_one": "Generated {{count}} keyframe from the path.",
"pathGenerated_other": "Generated {{count}} keyframes from the path.",
"pathGenerateError": "Could not generate keyframes from this path.",
"loadConfig": "Load setup",
"saveConfig": "Save setup",
"confirmLoad": "Replace the current keyframes with the loaded setup?",
"configFileType": "Tour Configuration",
"configSaved": "Saved setup as {{name}}",
"configLoaded_one": "Loaded setup with {{count}} keyframe.",
"configLoaded_other": "Loaded setup with {{count}} keyframes.",
"configSaveError": "Could not save the tour setup. Please try again.",
"configLoadError": "Could not load the tour setup. The file may be invalid.",
"keyframeCount_one": "{{count}} keyframe",
"keyframeCount_other": "{{count}} keyframes",
"empty": "Pan and zoom the map to a starting view, then add it as the first keyframe. Add at least two keyframes to record a tour.",
"flyToKeyframe": "Fly to this view",
"hold": "Hold",
"transition": "Transition",
"secondsShort": "sec",
"holdSeconds": "Seconds to hold on this view",
"segmentSeconds": "Seconds to move to the next view",
"resizeLeft": "Resize panel from the bottom-left corner",
"resizeRight": "Resize panel from the bottom-right corner",
"recapture": "Update to current map view",
"moveUp": "Move keyframe up",
"moveDown": "Move keyframe down",
"removeKeyframe": "Remove keyframe",
"fps": "Frames per second",
"estimatedLength": "About {{seconds}}s",
"record": "Record",
"videoFileType": "WebM Video",
"recordingStatus": "Recording… {{percent}}%",
"savingStatus": "Saving video…",
"stop": "Stop",
"recordingReady": "Recording ready. Name it and save, or discard to re-record.",
"fileNameLabel": "File name",
"saveVideo": "Save video…",
"discard": "Discard",
"saved": "Saved {{name}}",
"saveCancelled": "Save cancelled.",
"recordError": "Could not record the tour. Please try again.",
"saveError": "Could not save the video. Please try again."
},
"recordVideo": {
"title": "Record Video",
"hint": "Record the live map as a video. Pan and zoom while recording — every move is captured. This panel and the selection frame are not part of the video.",
"unsupported": "This browser cannot record the map canvas. Try a recent version of Chrome, Edge, or Firefox.",
"area": "Capture area",
"wholeMap": "Whole map",
"selectArea": "Select area…",
"redrawArea": "Redraw area…",
"drawHint": "Drag a rectangle on the map to set the recording area, or press Escape to cancel.",
"regionChosen": "Recording area: {{width}} × {{height}} px. The frame stays fixed while the map moves under it.",
"noRegion": "Draw a rectangle on the map to choose the recording area.",
"needRegion": "Select an area on the map first.",
"fps": "Frames per second",
"caption": "Caption (burned into video)",
"captionTitlePlaceholder": "Title (optional)",
"captionTextLabel": "Caption subtitle or data source",
"captionTextPlaceholder": "Subtitle or data source (optional)",
"captionPosition": "Caption position",
"captionPos": {
"top-left": "Top left",
"top-center": "Top center",
"top-right": "Top right",
"bottom-left": "Bottom left",
"bottom-center": "Bottom center",
"bottom-right": "Bottom right"
},
"includePanels": "Include map panels (legend, colorbar, HTML) in video",
"record": "Record",
"preparing": "Preparing…",
"stop": "Stop",
"savingStatus": "Saving video…",
"recordingReady": "Recording ready. Name it and save, or discard to re-record.",
"fileNameLabel": "File name",
"saveVideo": "Save video…",
"discard": "Discard",
"videoFileType": "Video",
"saved": "Saved {{name}}",
"saveCancelled": "Save cancelled.",
"recordError": "Could not record the video. Please try again.",
"saveError": "Could not save the video. Please try again."
},
"fieldCollection": {
"title": "Field Collection",
"description": "Capture point, line, or polygon observations against a custom form. Place a point by GPS or by tapping the map, and draw lines and polygons vertex by vertex.",
"captureDescription": "Capture a location by GPS or on the map, then fill in the form to save it.",
"captureReviewDescription": "Review the captured location, complete the form, and save it to the layer.",
"reopen": "Open Field Collection",
"targetLayer": "Collection layer",
"newLayer": "New collection layer…",
"layerName": "Layer name",
"layerNamePlaceholder": "Field Observations",
"geometry": "Geometry",
"geom": {
"point": "Point",
"line": "Line",
"polygon": "Polygon"
},
"fields": "Form fields",
"addField": "Add field",
"fieldLabel": "Label",
"fieldType": "Type",
"options": "Options (comma-separated)",
"required": "Required",
"noFields": "No fields yet. Add fields to capture attributes, or create the layer to capture location-only points.",
"type": {
"text": "Text",
"number": "Number",
"date": "Date",
"choice": "Choice"
},
"createLayer": "Create layer",
"captureHint": "Use GPS or pick a point on the map to start a capture.",
"drawHint": "Draw the shape on the map to start a capture.",
"useGps": "Use GPS",
"pickOnMap": "Pick on map",
"reposition": "Reposition point",
"drawOnMap": "Draw on map",
"pickBannerTitle": "Placement mode active",
"pickBannerHint": "Click anywhere on the map to pick a point, or press Esc to cancel.",
"addGpsVertex": "Add GPS vertex",
"undo": "Undo",
"finish": "Finish",
"vertices_one": "{{count}} vertex",
"vertices_other": "{{count}} vertices",
"needMore": "Add at least {{min}} vertices",
"dblClickHint": "Tap to add vertices; double-click to finish.",
"locating": "Locating…",
"photo": "Photo",
"photoOptional": "Photo (optional)",
"choosePhoto": "Choose photo…",
"removePhoto": "Remove",
"save": {
"point": "Save point",
"line": "Save line",
"polygon": "Save polygon"
},
"saved": {
"point_one": "Saved {{count}} point to {{layer}}.",
"point_other": "Saved {{count}} points to {{layer}}.",
"line_one": "Saved {{count}} line to {{layer}}.",
"line_other": "Saved {{count}} lines to {{layer}}.",
"polygon_one": "Saved {{count}} polygon to {{layer}}.",
"polygon_other": "Saved {{count}} polygons to {{layer}}."
},
"layerGone": "The collection layer is no longer available.",
"noGeolocation": "Geolocation isn't available on this device.",
"geolocationDenied": "Couldn't get your location. Check location permissions and try again.",
"photoTooLarge": "That photo is too large (max {{max}}). Choose a smaller image.",
"photoReadError": "Couldn't read that image. Try another file.",
"errorRequired": "This field is required.",
"errorNumber": "Enter a valid number.",
"errorChoice": "Choose one of the listed options."
},
"gps": {
"title": "GPS Tracking",
"description": "Stream your device position onto the map, record a track log, and capture points at your current location.",
"start": "Start GPS",
"stop": "Stop GPS",
"follow": "Keep map centered on my position",
"waitingForFix": "Waiting for a GPS fix…",
"noGeolocation": "Geolocation isn't available on this device.",
"permissionDenied": "Location permission was denied. Enable it in your browser or system settings and try again.",
"trackLog": "Track log",
"record": "Record track",
"pause": "Pause",
"resume": "Resume",
"discard": "Discard",
"saveTrack": "Save as layer",
"exportGpx": "Export GPX",
"exportGeojson": "Export GeoJSON",
"points_one": "{{count}} point",
"points_other": "{{count}} points",
"trackLayerName": "GPS Track",
"trackSaved": "Saved {{name}} as a layer.",
"trackExported": "Track exported.",
"exportCancelled": "Export cancelled.",
"exportFailed": "Could not export the track. Please try again.",
"capture": "Digitize",
"capturePoint": "Capture point",
"captureLayerName": "GPS Points",
"captured_one": "{{count}} point captured this session.",
"captured_other": "{{count}} points captured this session.",
"pointCaptured": "Point saved to {{layer}}.",
"captureBlocked": "Fix accuracy is ±{{accuracy}} m, worse than the {{max}} m threshold. Point not saved.",
"settings": "Logging filters",
"minDistance": "Min distance (m)",
"minTime": "Min time (s)",
"maxAccuracy": "Max accuracy (m)",
"settingsHint": "Track fixes closer than the minimum distance or time are skipped. Fixes less accurate than the accuracy threshold are not logged, and point capture is blocked. 0 disables a filter.",
"openDialog": "Open GPS Tracking"
},
"georeferencer": {
"title": "Georeference Image",
"description": "Pin an image to the map: load it, link image points to map locations, then add it as a georeferenced overlay.",
"loadImage": "Click to load an image (PNG, JPG, TIFF)",
"imageTooLarge": "That image is too large (max {{max}}). Choose a smaller image.",
"imageReadError": "Couldn't read that image. Try another file.",
"imageNoDimensions": "Couldn't determine the image size. Use a raster image (PNG, JPG, TIFF).",
"sourceImage": "Source image ({{w}} × {{h}} px)",
"clickImageHint": "Click a point on the image, then link it on the map.",
"pixelPicked": "Image point: {{x}}, {{y}}",
"linkOnMap": "Link on map",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out",
"zoomReset": "Reset zoom",
"importGcps": "Import",
"exportGcps": "Export",
"gcpsImported": "Imported {{count}} control point(s).",
"gcpsReadError": "Couldn't read control points from that file.",
"gcpsOutsideImage": "Some control points fall outside the loaded image — they may be from a different image.",
"transformNeedsMore": "This transform needs at least {{min}} control points.",
"gcps": "Control points ({{count}})",
"needGcps": "Add at least {{min}} control points to georeference.",
"collinear": "Control points are collinear or coincident — move one off the line.",
"cornersOutOfRange": "This fit places the image outside valid map bounds. Adjust the control points.",
"residual": "Residual",
"rms": "RMS {{rms}} m",
"opacity": "Overlay opacity",
"addToMap": "Add to map",
"clear": "Clear",
"defaultName": "Georeferenced image",
"exportTiff": "Export GeoTIFF",