-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdjangojs.pot
More file actions
3406 lines (2720 loc) · 91.4 KB
/
djangojs.pot
File metadata and controls
3406 lines (2720 loc) · 91.4 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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-04-03 20:31+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: app/static/app/js/Console.jsx:152
#, python-format
msgid "output truncated at %(count)s lines"
msgstr ""
#: app/static/app/js/Console.jsx:164 app/static/app/js/Console.jsx:172
#: app/static/app/js/Console.jsx:182
msgid "Toggle Fullscreen"
msgstr ""
#: app/static/app/js/Console.jsx:165 app/static/app/js/Console.jsx:173
msgid "Exit Fullscreen"
msgstr ""
#: app/static/app/js/Console.jsx:179
msgid "Download To File"
msgstr ""
#: app/static/app/js/Dashboard.jsx:34
msgid "Name field is required"
msgstr ""
#: app/static/app/js/Dashboard.jsx:75
msgid "Add Project"
msgstr ""
#: app/static/app/js/Dashboard.jsx:111
msgid "Your changes will be lost. Are you sure you want to leave?"
msgstr ""
#: app/static/app/js/MapView.jsx:125
#: app/static/app/js/classes/AssetDownloads.js:46
#: app/static/app/js/classes/PipelineSteps.js:47
#: app/static/app/js/components/EditPresetDialog.jsx:95
#: app/static/app/js/components/ImportExternalPanel.jsx:12
#: app/static/app/js/components/Map.jsx:121
msgid "Orthophoto"
msgstr ""
#: app/static/app/js/MapView.jsx:130 app/static/app/js/components/Map.jsx:123
msgid "Thermal"
msgstr ""
#: app/static/app/js/MapView.jsx:130 app/static/app/js/components/Map.jsx:123
msgid "Plant Health"
msgstr ""
#: app/static/app/js/MapView.jsx:135
#: app/static/app/js/classes/AssetDownloads.js:52
#: app/static/app/js/components/ImportExternalPanel.jsx:13
#: app/static/app/js/components/Map.jsx:125
msgid "Surface Model"
msgstr ""
#: app/static/app/js/MapView.jsx:140
#: app/static/app/js/classes/AssetDownloads.js:50
#: app/static/app/js/components/ImportExternalPanel.jsx:14
#: app/static/app/js/components/Map.jsx:127
msgid "Terrain Model"
msgstr ""
#: app/static/app/js/ModelView.jsx:42
msgid "Cannot set initial camera view"
msgstr ""
#: app/static/app/js/ModelView.jsx:67
msgid "set initial camera view"
msgstr ""
#: app/static/app/js/ModelView.jsx:93 app/static/app/js/components/Map.jsx:586
msgid "Cameras"
msgstr ""
#: app/static/app/js/ModelView.jsx:106
msgid "Show Model"
msgstr ""
#: app/static/app/js/ModelView.jsx:146
msgid "Show Cameras"
msgstr ""
#: app/static/app/js/ModelView.jsx:149
#: app/static/app/js/components/ManageMediaDialog.jsx:549
msgid "Size"
msgstr ""
#: app/static/app/js/ModelView.jsx:886
msgid "Loading textured model..."
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:47
msgid "Orthophoto (MBTiles)"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:48
msgid "Orthophoto (Tiles)"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:49
msgid "Orthophoto Cutline"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:51
msgid "Terrain Model (Tiles)"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:53
msgid "Surface Model (Tiles)"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:54
#: app/static/app/js/components/EditPresetDialog.jsx:59
#: app/static/app/js/components/ImportExternalPanel.jsx:15
msgid "Point Cloud"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:55
msgid "Point Cloud (3D Tiles)"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:56
#: app/static/app/js/components/ImportExternalPanel.jsx:16
msgid "Textured Model"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:57
msgid "Textured Model (3D Tiles)"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:58
msgid "Textured Model (glTF)"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:59
msgid "Camera Parameters"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:60
msgid "Camera Shots"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:61
#: app/static/app/js/components/Map.jsx:658
msgid "Ground Control Points"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:62
msgid "Quality Report"
msgstr ""
#: app/static/app/js/classes/AssetDownloads.js:67
msgid "All Assets"
msgstr ""
#: app/static/app/js/classes/Basemaps.js:9
msgid "Google Maps Hybrid"
msgstr ""
#: app/static/app/js/classes/Basemaps.js:17
msgid "ESRI Satellite"
msgstr ""
#: app/static/app/js/classes/Basemaps.js:26
msgid "OpenStreetMap"
msgstr ""
#: app/static/app/js/classes/Gcp.js:18
#, python-format
msgid "Invalid CRS: %(line)s"
msgstr ""
#: app/static/app/js/classes/Gcp.js:34 app/static/app/js/classes/Gcp.js:38
#, python-format
msgid "Invalid line %(num)s: %(line)s"
msgstr ""
#: app/static/app/js/classes/Gcp.js:44
msgid "Empty GCP file"
msgstr ""
#: app/static/app/js/classes/PendingActions.js:12
msgid "Canceling..."
msgstr ""
#: app/static/app/js/classes/PendingActions.js:15
#: app/static/app/js/components/FormDialog.jsx:175
msgid "Deleting..."
msgstr ""
#: app/static/app/js/classes/PendingActions.js:18
msgid "Restarting..."
msgstr ""
#: app/static/app/js/classes/PendingActions.js:21
msgid "Resizing images..."
msgstr ""
#: app/static/app/js/classes/PendingActions.js:24
msgid "Importing..."
msgstr ""
#: app/static/app/js/classes/PendingActions.js:27
msgid "Compacting..."
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:7
msgid "Load Dataset"
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:12
#: app/static/app/js/components/EditPresetDialog.jsx:48
msgid "Structure From Motion"
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:17
msgid "Multi View Stereo"
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:22
msgid "Point Filtering"
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:27
#: app/static/app/js/components/EditPresetDialog.jsx:69
msgid "Meshing"
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:32
#: app/static/app/js/components/EditPresetDialog.jsx:77
msgid "Texturing"
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:37
#: app/static/app/js/components/EditPresetDialog.jsx:54
msgid "Georeferencing"
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:42
msgid "DEM"
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:52
#: app/static/app/js/components/TaskListItem.jsx:549
#: app/static/app/js/components/TaskListItem.jsx:551
msgid "Report"
msgstr ""
#: app/static/app/js/classes/PipelineSteps.js:57
msgid "Postprocess"
msgstr ""
#: app/static/app/js/classes/ResizeModes.js:4
msgid "No"
msgstr ""
#: app/static/app/js/classes/ResizeModes.js:5
msgid "Yes"
msgstr ""
#: app/static/app/js/classes/StatusCodes.js:11
msgid "Queued"
msgstr ""
#: app/static/app/js/classes/StatusCodes.js:15
msgid "Processing"
msgstr ""
#: app/static/app/js/classes/StatusCodes.js:19
msgid "Failed"
msgstr ""
#: app/static/app/js/classes/StatusCodes.js:23
msgid "Completed"
msgstr ""
#: app/static/app/js/classes/StatusCodes.js:27
msgid "Canceled"
msgstr ""
#: app/static/app/js/classes/TempLayer.js:14
#, python-format
msgid "%(file)s is bigger than 5 MB."
msgstr ""
#: app/static/app/js/classes/TempLayer.js:30
#, python-format
msgid "Not a proper zipped shapefile: %(file)s"
msgstr ""
#: app/static/app/js/classes/TempLayer.js:43
#, python-format
msgid "Not a proper JSON file: %(file)s"
msgstr ""
#: app/static/app/js/classes/Units.js:15 app/static/app/js/classes/Units.js:22
#: coreplugins/measure/public/app.jsx:36
msgid "Acres"
msgstr ""
#: app/static/app/js/classes/Units.js:29 app/static/app/js/classes/Units.js:36
#: app/static/app/js/components/ExportAssetPanel.jsx:215
#: coreplugins/measure/public/app.jsx:37
msgid "Feet"
msgstr ""
#: app/static/app/js/classes/Units.js:43
msgid "Inches"
msgstr ""
#: app/static/app/js/classes/Units.js:50 coreplugins/measure/public/app.jsx:39
msgid "Hectares"
msgstr ""
#: app/static/app/js/classes/Units.js:57
#: app/static/app/js/components/ExportAssetPanel.jsx:214
#: coreplugins/measure/public/app.jsx:40
msgid "Meters"
msgstr ""
#: app/static/app/js/classes/Units.js:64 coreplugins/measure/public/app.jsx:38
msgid "Kilometers"
msgstr ""
#: app/static/app/js/classes/Units.js:71
msgid "Centimeters"
msgstr ""
#: app/static/app/js/classes/Units.js:78 app/static/app/js/classes/Units.js:85
#: coreplugins/measure/public/app.jsx:41
msgid "Miles"
msgstr ""
#: app/static/app/js/classes/Units.js:92 app/static/app/js/classes/Units.js:99
msgid "Square Feet"
msgstr ""
#: app/static/app/js/classes/Units.js:106
msgid "Square Meters"
msgstr ""
#: app/static/app/js/classes/Units.js:113
msgid "Square Kilometers"
msgstr ""
#: app/static/app/js/classes/Units.js:120
#: app/static/app/js/classes/Units.js:127
msgid "Square Miles"
msgstr ""
#: app/static/app/js/classes/Units.js:134
msgid "Cubic Meters"
msgstr ""
#: app/static/app/js/classes/Units.js:141
#: app/static/app/js/classes/Units.js:148
msgid "Cubic Yards"
msgstr ""
#: app/static/app/js/classes/Units.js:158
msgid "Celsius"
msgstr ""
#: app/static/app/js/classes/Units.js:168
msgid "Fahrenheit"
msgstr ""
#: app/static/app/js/classes/Units.js:286
msgid "Metric"
msgstr ""
#: app/static/app/js/classes/Units.js:321
msgid "Imperial"
msgstr ""
#: app/static/app/js/classes/Units.js:385
msgid "Imperial (US)"
msgstr ""
#: app/static/app/js/components/AssetDownloadButtons.jsx:79
#: app/static/app/js/components/ExportAssetDialog.jsx:41
#: app/static/app/js/components/MapPreview.jsx:435
#: coreplugins/annotate/public/ExportAnnotationsDialog.jsx:94
#: coreplugins/objdetect/public/ObjDetectPanel.jsx:208
msgid "Download"
msgstr ""
#: app/static/app/js/components/AssetDownloadButtons.jsx:111
msgid "Backup"
msgstr ""
#: app/static/app/js/components/CropButton.jsx:16
msgid "Crop"
msgstr ""
#: app/static/app/js/components/EditPermissionsPanel.jsx:49
msgid "Cannot load permissions."
msgstr ""
#: app/static/app/js/components/EditPermissionsPanel.jsx:150
msgid "Read/Write"
msgstr ""
#: app/static/app/js/components/EditPermissionsPanel.jsx:151
msgid "Read"
msgstr ""
#: app/static/app/js/components/EditPermissionsPanel.jsx:152
msgid "No Access"
msgstr ""
#: app/static/app/js/components/EditPermissionsPanel.jsx:225
msgid "Username"
msgstr ""
#: app/static/app/js/components/EditPermissionsPanel.jsx:248
msgid "Permissions"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:21
msgid "Input & Preprocessing"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:24
msgid "Camera Configuration"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:25
msgid "Masking"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:26
msgid "Multispectral"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:27
msgid "Video Input"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:32
msgid "Bounds & Cropping"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:35
msgid "Boundary"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:40
msgid "Coordinate Reference System"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:43
#: app/static/app/js/components/EditTaskForm.jsx:625
msgid "Options"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:51
msgid "Feature Extraction"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:52
msgid "Feature Matching"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:53
msgid "Reconstruction"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:62
msgid "Generation"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:63
msgid "Filtering"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:64
msgid "Post-Processing"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:72
msgid "Mesh Generation"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:80
msgid "Texture Options"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:85
msgid "Digital Elevation Models"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:88
msgid "Outputs"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:89
msgid "Resolution & Sampling"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:90
msgid "Ground Classification (SMRF)"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:98
msgid "Orthophoto Options"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:103
msgid "Tiles"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:106
msgid "Tiles Options"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:111
msgid "System & Pipeline Control"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:114
msgid "Performance"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:115
msgid "Pipeline Control"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:120
msgid "Split/Merge"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:123
msgid "Splitting"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:124
msgid "Merging"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:470
msgid "Other Options"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:507
#: app/static/app/js/components/EditTaskForm.jsx:571
msgid "Edit Task Options"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:514
#: app/static/app/js/components/EditProjectDialog.jsx:169
#: app/static/app/js/components/EditTaskForm.jsx:656
#: app/static/app/js/components/Paginator.jsx:28
#: app/static/app/js/components/ProjectListItem.jsx:57
#: coreplugins/annotate/public/Popup.jsx:632
#: coreplugins/annotate/public/Popup.jsx:639
#: coreplugins/annotate/public/Popup.jsx:665
msgid "Name"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:521
#: app/static/app/js/components/Paginator.jsx:121
msgid "Search"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:524
msgid "Flat View"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:524
msgid "Grouped View"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:528
msgid "Expand"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:528
msgid "Collapse"
msgstr ""
#: app/static/app/js/components/EditPresetDialog.jsx:538
msgid "Search options..."
msgstr ""
#: app/static/app/js/components/EditProjectDialog.jsx:16
msgid "New Project"
msgstr ""
#: app/static/app/js/components/EditProjectDialog.jsx:17
msgid "Create Project"
msgstr ""
#: app/static/app/js/components/EditProjectDialog.jsx:18
msgid "Creating project..."
msgstr ""
#: app/static/app/js/components/EditProjectDialog.jsx:125
#: app/static/app/js/components/EditProjectDialog.jsx:131
#: app/static/app/js/components/TaskListItem.jsx:233
#: app/static/app/js/components/TaskListItem.jsx:241
msgid "Cannot complete operation."
msgstr ""
#: app/static/app/js/components/EditProjectDialog.jsx:153
#: app/static/app/js/components/EditTaskForm.jsx:604
#: app/static/app/js/components/Paginator.jsx:31
#: app/static/app/js/components/ProjectListItem.jsx:60
msgid "Tags"
msgstr ""
#: app/static/app/js/components/EditProjectDialog.jsx:165
#: app/static/app/js/components/EditTaskForm.jsx:585
#: app/static/app/js/components/TaskListItem.jsx:853
msgid "Duplicate"
msgstr ""
#: app/static/app/js/components/EditProjectDialog.jsx:172
#: app/static/app/js/components/EditTaskForm.jsx:667
msgid "Add tags"
msgstr ""
#: app/static/app/js/components/EditProjectDialog.jsx:179
msgid "Description (optional)"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:115
msgid ""
"Could not load list of processing nodes. Are you connected to the internet?"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:123
msgid "We tried to reach:"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:124
msgid "There are no usable processing nodes."
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:124
msgid ""
"Make sure that at least one processing node is reachable and that you have "
"granted the current user sufficient permissions to view the processing node "
"(by going to Administration -- Processing Nodes -- Select Node -- Object "
"Permissions -- Add User/Group and check CAN VIEW PROCESSING NODE). If you "
"are bringing a node back online, it will take about 30 seconds for WebODM to "
"recognize it."
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:223
msgid "Could not load list of presets. Are you connected to the internet?"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:232
#: app/static/app/js/components/EditTaskForm.jsx:423
#: app/static/app/js/components/ExportAssetPanel.jsx:240
#: app/static/app/js/components/ExportAssetPanel.jsx:241
#: app/static/app/js/components/Map.jsx:778
#: app/static/app/js/components/MapPreview.jsx:108
#: coreplugins/contours/public/ContoursPanel.jsx:322
#: coreplugins/contours/public/ContoursPanel.jsx:349
#: coreplugins/contours/public/ContoursPanel.jsx:369
msgid "Custom"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:239
#: app/static/app/js/components/EditTaskForm.jsx:391
msgid "Default"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:476
msgid "My Preset"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:476
#, python-format
msgid "Copy of %(preset)s"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:499
msgid "Could not duplicate the preset. Please try to refresh the page."
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:508
msgid ""
"System presets can only be removed by a staff member from the Administration "
"panel."
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:512
#, python-format
msgid "Are you sure you want to delete \"%(preset)s\"?"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:525
msgid "Could not delete the preset. Please try to refresh the page."
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:549
msgid "Retry"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:572
#: app/static/app/js/components/EditTaskForm.jsx:579
#: app/static/app/js/components/ManageMediaDialog.jsx:485
#: app/static/app/js/components/ProjectListItem.jsx:810
#: app/static/app/js/components/TaskListItem.jsx:592
#: app/static/app/js/components/TaskListItem.jsx:840
#: coreplugins/annotate/public/Popup.jsx:682
#: coreplugins/editshortlinks/public/SLControls.jsx:162
msgid "Edit"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:589
#: app/static/app/js/components/EditTaskPanel.jsx:82
#: app/static/app/js/components/FormDialog.jsx:11
#: coreplugins/annotate/public/Popup.jsx:826
#: coreplugins/editshortlinks/public/SLControls.jsx:170
msgid "Save"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:593
#: app/static/app/js/components/FormDialog.jsx:178
#: app/static/app/js/components/LayersControlAnnotations.jsx:73
#: app/static/app/js/components/LayersControlAnnotations.jsx:151
#: app/static/app/js/components/ManageMediaDialog.jsx:533
#: app/static/app/js/components/ManageMediaDialog.jsx:571
#: app/static/app/js/components/MapPreview.jsx:169
#: app/static/app/js/components/ProjectListItem.jsx:816
#: app/static/app/js/components/TaskListItem.jsx:558
#: app/static/app/js/components/TaskListItem.jsx:870
#: coreplugins/annotate/public/Popup.jsx:825
#: coreplugins/measure/public/app.jsx:35
msgid "Delete"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:615
#: coreplugins/lightning/public/Dashboard.jsx:153
msgid "Processing Node"
msgstr ""
#: app/static/app/js/components/EditTaskForm.jsx:649
msgid "Loading processing nodes and presets..."
msgstr ""
#: app/static/app/js/components/EditTaskPanel.jsx:56
msgid "Could not update task information. Please try again."
msgstr ""
#: app/static/app/js/components/EditTaskPanel.jsx:75
#: app/static/app/js/components/FormDialog.jsx:205
#: app/static/app/js/components/ManageMediaDialog.jsx:410
#: app/static/app/js/components/NewTaskPanel.jsx:264
#: app/static/app/js/components/NewTaskPanel.jsx:348
#: app/static/app/js/components/TaskListItem.jsx:568
#: app/static/app/js/components/TaskListItem.jsx:835
#: coreplugins/measure/public/app.jsx:34
msgid "Cancel"
msgstr ""
#: app/static/app/js/components/EditTaskPanel.jsx:79
msgid "Saving..."
msgstr ""
#: app/static/app/js/components/ErrorMessage.jsx:29
#: app/static/app/js/components/ImportExternalPanel.jsx:283
#: app/static/app/js/components/ManageMediaDialog.jsx:588
#: app/static/app/js/components/NewTaskPanel.jsx:245
#: app/static/app/js/components/NewTaskPanel.jsx:252
#: app/static/app/js/components/ProjectListItem.jsx:828
msgid "Close"
msgstr ""
#: app/static/app/js/components/ExportAssetDialog.jsx:40
#: coreplugins/annotate/public/ExportAnnotationsDialog.jsx:93
msgid "Downloading…"
msgstr ""
#: app/static/app/js/components/ExportAssetPanel.jsx:185
#: app/static/app/js/components/ImportTaskPanel.jsx:141
#: app/static/app/js/components/LayersControlLayer.jsx:358
#: app/static/app/js/components/ProjectList.jsx:72
#: coreplugins/annotate/public/ExportAnnotationsDialog.jsx:72
#, python-format
msgid "Invalid JSON response: %(error)s"
msgstr ""
#: app/static/app/js/components/ExportAssetPanel.jsx:234
#: app/static/app/js/components/TaskListItem.jsx:698
msgid "CRS:"
msgstr ""
#: app/static/app/js/components/ExportAssetPanel.jsx:238
#: coreplugins/contours/public/ContoursPanel.jsx:367
msgid "Lat/Lon"
msgstr ""
#: app/static/app/js/components/ExportAssetPanel.jsx:239
#: coreplugins/contours/public/ContoursPanel.jsx:368
msgid "Web Mercator"
msgstr ""
#: app/static/app/js/components/ExportAssetPanel.jsx:266
msgid "Format:"
msgstr ""
#: app/static/app/js/components/ExportAssetPanel.jsx:274
#, python-format
msgid "Resample (%(unit)s):"
msgstr ""
#: app/static/app/js/components/ExportAssetPanel.jsx:282
msgid "Export:"
msgstr ""
#: app/static/app/js/components/ExportAssetPanel.jsx:287
msgid "Exporting..."
msgstr ""
#: app/static/app/js/components/FormDialog.jsx:10
msgid "Title"
msgstr ""
#: app/static/app/js/components/FormDialog.jsx:12
msgid "Saving…"
msgstr ""
#: app/static/app/js/components/FormDialog.jsx:14
#: coreplugins/editshortlinks/public/SLControls.jsx:112
msgid "Are you sure?"
msgstr ""
#: app/static/app/js/components/FormDialog.jsx:136
msgid "Could not apply changes"
msgstr ""
#: app/static/app/js/components/FormDialog.jsx:157
#: app/static/app/js/components/ProjectListItem.jsx:512
msgid "Could not delete item"
msgstr ""
#: app/static/app/js/components/GCPPopup.jsx:81
#: app/static/app/js/components/ImagePopup.jsx:88
#: app/static/app/js/components/MediaView.jsx:69
#: coreplugins/annotate/public/Popup.jsx:545
msgid "Image missing"
msgstr ""
#: app/static/app/js/components/GCPPopup.jsx:175
msgid "Horizontal error:"
msgstr ""
#: app/static/app/js/components/GCPPopup.jsx:175
#: app/static/app/js/components/GCPPopup.jsx:178
msgid "(meters)"
msgstr ""
#: app/static/app/js/components/GCPPopup.jsx:178
msgid "Vertical error:"
msgstr ""
#: app/static/app/js/components/Histogram.jsx:353
msgid "Min:"
msgstr ""
#: app/static/app/js/components/Histogram.jsx:354
msgid "Max:"
msgstr ""
#: app/static/app/js/components/ImagePopup.jsx:248
msgid "Altitude"
msgstr ""
#: app/static/app/js/components/ImagePopup.jsx:256
msgid "Download Image"
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:114
msgid ""
"Upload failed after multiple retries. Please check your connection and try "
"again."
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:206
msgid "Failed to complete upload. Try again later."
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:216
msgid "Select at least one file to upload."
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:223
msgid "A textured model requires also a point cloud to be properly displayed."
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:247
msgid "Failed to initialize upload. Try again later."
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:286
msgid "Import External Data"
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:287
msgid "Select files. At least one file is required."
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:307
msgid "Remove"
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:323
#: app/static/app/js/components/ImportTaskPanel.jsx:201
msgid "Cancel Upload"
msgstr ""
#: app/static/app/js/components/ImportExternalPanel.jsx:333
msgid "Upload"
msgstr ""
#: app/static/app/js/components/ImportTaskPanel.jsx:65
msgid "Cannot upload file. Check your internet connection and try again."
msgstr ""
#: app/static/app/js/components/ImportTaskPanel.jsx:94
#: coreplugins/editshortlinks/public/SLControls.jsx:44
#: coreplugins/editshortlinks/public/SLControls.jsx:62
#: coreplugins/editshortlinks/public/SLControls.jsx:100
#: coreplugins/editshortlinks/public/SLControls.jsx:128
#: coreplugins/editshortlinks/public/SLControls.jsx:131
#: coreplugins/shortlinks/public/SLCheckbox.jsx:46
#: coreplugins/shortlinks/public/SLCheckbox.jsx:50
#, python-format
msgid "Invalid response from server: %(error)s"
msgstr ""
#: app/static/app/js/components/ImportTaskPanel.jsx:97
msgid "An error occured while uploading the file. Please try again."
msgstr ""
#: app/static/app/js/components/ImportTaskPanel.jsx:145
msgid "Cannot import from URL. Check your internet connection."
msgstr ""
#: app/static/app/js/components/ImportTaskPanel.jsx:166
msgid "Import Assets or Backups"
msgstr ""
#: app/static/app/js/components/ImportTaskPanel.jsx:167
#, python-format
msgid ""
"You can import .zip files that have been exported from existing tasks via "
"Download %(arrow)s All Assets | Backup."
msgstr ""
#: app/static/app/js/components/ImportTaskPanel.jsx:174
msgid "Upload a File"
msgstr ""
#: app/static/app/js/components/ImportTaskPanel.jsx:182
msgid "Import From URL"
msgstr ""
#: app/static/app/js/components/ImportTaskPanel.jsx:191
#: app/static/app/js/components/ProjectListItem.jsx:720
msgid "Import"
msgstr ""
#: app/static/app/js/components/LayersControl.jsx:38
#: app/static/app/js/components/LayersControlPanel.jsx:116
msgid "Layers"
msgstr ""
#: app/static/app/js/components/LayersControlAnnotations.jsx:61
#: app/static/app/js/components/LayersControlAnnotations.jsx:134
#: coreplugins/annotate/public/Popup.jsx:530
msgid "Are you sure you want to delete this?"
msgstr ""
#: app/static/app/js/components/LayersControlAnnotations.jsx:149
#: app/static/app/js/translations/potree_autogenerated.js:8
msgid "Annotations"