forked from OSGeo/grass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrasswxpy.pot
More file actions
14968 lines (11686 loc) · 360 KB
/
Copy pathgrasswxpy.pot
File metadata and controls
14968 lines (11686 loc) · 360 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-03-28 15:49+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=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../gui/wxpython/animation/controller.py:244
#: ../gui/wxpython/animation/dialogs.py:858
#, python-format
msgid "Maximum number of animations is %d."
msgstr ""
#: ../gui/wxpython/animation/controller.py:270
#: ../gui/wxpython/animation/dialogs.py:911
msgid "More animations are using one window. Please select different window for each animation."
msgstr ""
#: ../gui/wxpython/animation/controller.py:309
#: ../gui/wxpython/animation/dialogs.py:755
#: ../gui/wxpython/psmap/dialogs.py:716 ../gui/wxpython/psmap/dialogs.py:1401
#: ../gui/wxpython/psmap/dialogs.py:1508 ../gui/wxpython/psmap/dialogs.py:1587
#: ../gui/wxpython/psmap/dialogs.py:5125 ../gui/wxpython/wxplot/dialogs.py:573
msgid "Invalid input"
msgstr ""
#: ../gui/wxpython/animation/controller.py:447
msgid "Failed to display legend."
msgstr ""
#: ../gui/wxpython/animation/controller.py:477
msgid "Inconsistent number of maps, please check input data."
msgstr ""
#: ../gui/wxpython/animation/controller.py:502
msgid "No animation to export."
msgstr ""
#: ../gui/wxpython/animation/controller.py:540
msgid "Preparing export, please wait..."
msgstr ""
#: ../gui/wxpython/animation/controller.py:589
#: ../gui/wxpython/animation/frame.py:630
#, python-format
msgid "%(from)s %(dash)s %(to)s"
msgstr ""
#: ../gui/wxpython/animation/controller.py:599
#, python-format
msgid "%(start)s %(unit)s"
msgstr ""
#: ../gui/wxpython/animation/controller.py:621
msgid "Exporting animation, please wait..."
msgstr ""
#: ../gui/wxpython/animation/data.py:48 ../gui/wxpython/lmgr/layertree.py:1177
#: ../gui/wxpython/mapdisp/frame.py:313 ../gui/wxpython/mapdisp/frame.py:416
#: ../gui/wxpython/mapdisp/toolbars.py:95
#: ../gui/wxpython/mapdisp/toolbars.py:360
msgid "2D view"
msgstr ""
#: ../gui/wxpython/animation/data.py:48 ../gui/wxpython/lmgr/frame.py:714
#: ../gui/wxpython/mapdisp/frame.py:633 ../gui/wxpython/mapdisp/toolbars.py:100
msgid "3D view"
msgstr ""
#: ../gui/wxpython/animation/data.py:68
msgid "No animation name selected."
msgstr ""
#: ../gui/wxpython/animation/data.py:135
msgid "No workspace file selected."
msgstr ""
#: ../gui/wxpython/animation/data.py:138
#, python-format
msgid "File %s not found"
msgstr ""
#: ../gui/wxpython/animation/data.py:147
#, python-format
msgid "Animation %d"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:85
msgid "Adjust speed of animation"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:138
msgid "Simple mode"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:143
msgid "Frame duration:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:144
#: ../gui/wxpython/animation/dialogs.py:179
msgid "ms"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:170
msgid "Temporal mode"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:175
msgid "Time unit:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:177
msgid "Duration of time unit:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:243
msgid "year"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:244
msgid "month"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:245
msgid "day"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:246
msgid "hour"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:247
msgid "minute"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:248
msgid "second"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:313
msgid "Animation speed is too high."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:351
#: ../gui/wxpython/animation/toolbars.py:38
msgid "Add new animation"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:353
msgid "Edit animation"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:364
#: ../gui/wxpython/animation/dialogs.py:1892
#: ../gui/wxpython/gmodeler/preferences.py:50
#: ../gui/wxpython/gui_core/preferences.py:275
#: ../gui/wxpython/mapdisp/properties.py:380
#: ../gui/wxpython/vdigit/preferences.py:129
msgid "General"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:365
msgid "Advanced"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:391
msgid "top left"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:392
msgid "top right"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:393
msgid "bottom left"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:394
msgid "bottom right"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:410
msgid "Select 2D or 3D view"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:415
#: ../gui/wxpython/gmodeler/preferences.py:730
#: ../gui/wxpython/gui_core/gselect.py:1633
#: ../gui/wxpython/gui_core/gselect.py:1650
#: ../gui/wxpython/gui_core/gselect.py:1651
#: ../gui/wxpython/gui_core/widgets.py:1462
#: ../gui/wxpython/vnet/dialogs.py:1679
msgid "Name:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:420
msgid "Window position:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:425
msgid "View mode:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:433
msgid ""
"For 3D animation, please select only one space-time dataset\n"
"or one series of map layers."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:464
#: ../gui/wxpython/psmap/dialogs.py:3449
msgid "Show raster legend"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:466
#: ../gui/wxpython/lmgr/layertree.py:84
msgid "Set options"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:483
msgid "3D view parameters"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:492
msgid "Workspace file:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:493
msgid "Choose workspace file to import 3D view parameters"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:494
#: ../gui/wxpython/animation/dialogs.py:1094
#: ../gui/wxpython/animation/dialogs.py:1196
#: ../gui/wxpython/animation/dialogs.py:1224
#: ../gui/wxpython/animation/dialogs.py:1247
#: ../gui/wxpython/animation/dialogs.py:1278
#: ../gui/wxpython/gui_core/forms.py:2009
#: ../gui/wxpython/gui_core/forms.py:2120
#: ../gui/wxpython/gui_core/gselect.py:1249
#: ../gui/wxpython/gui_core/gselect.py:1565
#: ../gui/wxpython/gui_core/gselect.py:1582
#: ../gui/wxpython/gui_core/gselect.py:1635
#: ../gui/wxpython/gui_core/gselect.py:1670
#: ../gui/wxpython/location_wizard/wizard.py:1451
#: ../gui/wxpython/location_wizard/wizard.py:1806
#: ../gui/wxpython/modules/import_export.py:862
#: ../gui/wxpython/nviz/tools.py:675 ../gui/wxpython/psmap/dialogs.py:2749
#: ../gui/wxpython/psmap/dialogs.py:3055 ../gui/wxpython/psmap/dialogs.py:5796
#: ../gui/wxpython/tplot/frame.py:375
msgid "Browse"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:502
msgid "Parameter for animation:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:527
msgid "Set spatial extent in 2D view"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:531
msgid "Use saved region:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:540
msgid "Animate region change"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:549
msgid "End region:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:555
msgid "Zoom value:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:557
msgid "N-S/E-W distances in map units used to gradually reduce region."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:565
msgid "N-S:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:572
msgid "E-W:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:684
msgid "Only one series or space-time dataset is accepted for 3D mode."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:692
msgid "No map series or space-time dataset added."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:732
#: ../gui/wxpython/animation/dialogs.py:744
msgid "Region information is not complete"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:765
msgid "Add, edit or remove animations"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:774
msgid "List of animations"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:786 ../gui/wxpython/dbmgr/base.py:2435
#: ../gui/wxpython/psmap/dialogs.py:1825
msgid "Add"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:788
msgid "Edit"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:790
#: ../gui/wxpython/animation/dialogs.py:1032
#: ../gui/wxpython/gmodeler/canvas.py:321
#: ../gui/wxpython/gui_core/simplelmgr.py:515
#: ../gui/wxpython/lmgr/layertree.py:450 ../gui/wxpython/rlisetup/frame.py:157
msgid "Remove"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:932
#: ../gui/wxpython/animation/toolbars.py:46
msgid "Export animation"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:950
#: ../gui/wxpython/psmap/dialogs.py:638
msgid "Format"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:952 ../gui/wxpython/nviz/tools.py:828
msgid "Decorations"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:957
#: ../gui/wxpython/lmgr/layertree.py:771 ../gui/wxpython/tplot/frame.py:395
msgid "Export"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1018
msgid "Add image"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1018
#: ../gui/wxpython/mapdisp/toolbars.py:53
msgid "Add text"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1018
msgid "Add time stamp"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1049
msgid "Add time stamp, image or text decoration by one of the buttons above."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1052
msgid "Add image or text decoration by one of the buttons above."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1066
msgid "Font settings:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1071
msgid "Sample text"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1078
#: ../gui/wxpython/gui_core/preferences.py:601
#: ../gui/wxpython/gui_core/preferences.py:613
#: ../gui/wxpython/gui_core/preferences.py:893
msgid "Set font"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1092
msgid "Image file:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1093
msgid "Choose image file"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1106
msgid "Text:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1126
msgid "Placement as percentage of screen coordinates (X: 0, Y: 0 is top left):"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1142
#: ../gui/wxpython/psmap/dialogs.py:320
msgid "X:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1147
#: ../gui/wxpython/psmap/dialogs.py:321
msgid "Y:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1161
msgid "AVI"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1161
msgid "SWF"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1161
msgid "animated GIF"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1161
msgid "image sequence"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1168
msgid "Export to:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1185 ../gui/wxpython/nviz/tools.py:679
msgid "File prefix:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1186
msgid "animation_"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1187 ../gui/wxpython/nviz/tools.py:692
msgid "File format:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1194
#: ../gui/wxpython/gui_core/gselect.py:1580
#: ../gui/wxpython/gui_core/gselect.py:1668
msgid "Directory:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1195
msgid "Choose directory for export"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1222
msgid "GIF file:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1223
#: ../gui/wxpython/animation/dialogs.py:1246
#: ../gui/wxpython/animation/dialogs.py:1277
msgid "Choose file to save animation"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1245
msgid "SWF file:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1267
msgid ""
"Program 'ffmpeg' was not found.\n"
"Please install it first and make sure\n"
"it's in the PATH variable."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1276
msgid "AVI file:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1283
msgid "Video codec:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1286
msgid "Additional options:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1290
msgid "Consider adding '-sameq' or '-qscale 1' if not satisfied with video quality. Options depend on ffmpeg version."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1322
#, python-format
msgid "Current frame rate: %.2f fps"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1449
#, python-format
msgid "File %s not found."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1453
msgid "Decoration image file is missing."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1461
#, python-format
msgid "Directory %s not found."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1463
msgid "Export directory is missing."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1522
#: ../gui/wxpython/psmap/dialogs.py:5719 ../gui/wxpython/psmap/dialogs.py:5782
#: ../gui/wxpython/psmap/toolbars.py:101
msgid "Image"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1522
#: ../gui/wxpython/psmap/dialogs.py:5212 ../gui/wxpython/psmap/dialogs.py:5217
#: ../gui/wxpython/psmap/toolbars.py:97
msgid "Text"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1522
msgid "Time stamp"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1546
#, python-brace-format
msgid "Exported file directory '{base_dir}' does not exist."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1549
msgid "Export file is missing."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1569
#, python-brace-format
msgid "Exported animation file <{file}> exists. Do you want to overwrite it?"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1574
#: ../gui/wxpython/datacatalog/tree.py:161 ../gui/wxpython/gcp/manager.py:1737
#: ../gui/wxpython/gui_core/dialogs.py:531
#: ../gui/wxpython/lmgr/layertree.py:1086
#: ../gui/wxpython/modules/colorrules.py:675
#: ../gui/wxpython/rdigit/dialogs.py:114
msgid "Overwrite?"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1651
msgid "Add space-time dataset layer"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1673
msgid "Multiple raster maps"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1674
msgid "Multiple vector maps"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1675
msgid "Multiple 3D raster maps"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1676
msgid "Space time raster dataset"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1677
msgid "Space time vector dataset"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1678
msgid "Space time 3D raster dataset"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1717
msgid "Input data type:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1794
msgid "Select raster/vector maps."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1822
msgid "Please select maps or dataset first."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1852
msgid "Animation Tool settings"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1900
#: ../gui/wxpython/gui_core/preferences.py:972
#: ../gui/wxpython/nviz/preferences.py:228 ../gui/wxpython/nviz/tools.py:517
#: ../gui/wxpython/web_services/widgets.py:325
msgid "Background color:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1916
msgid "Number of parallel processes:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1937
msgid "Text foreground color:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1953
msgid "Text background color:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1978
#: ../gui/wxpython/timeline/frame.py:310
msgid "Time"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:1986
msgid "Absolute time format:"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:2004
msgid "Click and then press key up or down to preview different date and time formats. Type custom format string."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:2022
msgid "Learn more about formatting options"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:2036
msgid "Display instances with no data"
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:2039
msgid "When animating instant-based data which have irregular timestamps you can display 'no data frame' (checked option) or keep last frame."
msgstr ""
#: ../gui/wxpython/animation/dialogs.py:2070
msgid "Invalid"
msgstr ""
#: ../gui/wxpython/animation/frame.py:50
msgid "Animation Tool"
msgstr ""
#: ../gui/wxpython/animation/frame.py:172 ../gui/wxpython/mapswipe/frame.py:266
msgid "Main Toolbar"
msgstr ""
#: ../gui/wxpython/animation/frame.py:191
msgid "Animation Toolbar"
msgstr ""
#: ../gui/wxpython/animation/frame.py:211 ../gui/wxpython/lmgr/frame.py:188
#: ../gui/wxpython/main_window/frame.py:598
#: ../gui/wxpython/mapswipe/frame.py:310
msgid "Misc Toolbar"
msgstr ""
#: ../gui/wxpython/animation/frame.py:314
msgid "Loading data"
msgstr ""
#: ../gui/wxpython/animation/frame.py:323
#, python-brace-format
msgid " ({c} out of {p})"
msgstr ""
#: ../gui/wxpython/animation/frame.py:636
#, python-format
msgid "to %(to)s"
msgstr ""
#: ../gui/wxpython/animation/g.gui.animation.py:93
#, python-format
msgid "%s=, %s=, %s= and %s= are mutually exclusive."
msgstr ""
#: ../gui/wxpython/animation/g.gui.animation.py:137
msgid "Animation Tool - GRASS"
msgstr ""
#: ../gui/wxpython/animation/nviztask.py:40
#, python-format
msgid ""
"Reading workspace file <%s> failed.\n"
"Invalid file, unable to parse XML document."
msgstr ""
#: ../gui/wxpython/animation/nviztask.py:53
#, python-format
msgid "No 3d view information in workspace file <%s>."
msgstr ""
#: ../gui/wxpython/animation/nviztask.py:301
msgid "Please add only one layer in the list."
msgstr ""
#: ../gui/wxpython/animation/nviztask.py:305
msgid "No map series nor space-time dataset is added."
msgstr ""
#: ../gui/wxpython/animation/provider.py:451
msgid "Rendering map layers"
msgstr ""
#: ../gui/wxpython/animation/provider.py:569
msgid "Overlaying map layers"
msgstr ""
#: ../gui/wxpython/animation/provider.py:800
#, python-brace-format
msgid "Directory {t} not removed."
msgstr ""
#: ../gui/wxpython/animation/temporal_manager.py:109
msgid "It is not allowed to display data with different temporal types (absolute and relative)."
msgstr ""
#: ../gui/wxpython/animation/temporal_manager.py:123
#, python-format
msgid "It is not allowed to display data with different units (%s)."
msgstr ""
#: ../gui/wxpython/animation/temporal_manager.py:136
msgid "You are going to display data with different temporal types of maps (interval and point). It is recommended to use data of one temporal type to avoid confusion."
msgstr ""
#: ../gui/wxpython/animation/temporal_manager.py:249
#: ../gui/wxpython/animation/utils.py:72 ../gui/wxpython/animation/utils.py:80
#: ../gui/wxpython/timeline/frame.py:497 ../gui/wxpython/tplot/frame.py:1158
#, python-format
msgid "Space time dataset <%s> not found."
msgstr ""
#: ../gui/wxpython/animation/temporal_manager.py:344
#, python-format
msgid "Topology of Space time dataset %s is invalid."
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:28
msgid "Change animation speed"
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:29
msgid "Play forward"
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:30
msgid "Play back"
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:31 ../gui/wxpython/nviz/tools.py:579
msgid "Stop"
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:32 ../gui/wxpython/nviz/tools.py:577
msgid "Pause"
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:33
msgid "Repeat"
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:35
msgid "Play back and forward"
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:42
#: ../gui/wxpython/animation/toolbars.py:43
msgid "Add, edit or remove animation"
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:56
msgid "Add space-time dataset or series of map layers"
msgstr ""
#: ../gui/wxpython/animation/toolbars.py:57
msgid "Add space-time dataset or series of map layers for animation"
msgstr ""
#: ../gui/wxpython/animation/utils.py:96 ../gui/wxpython/animation/utils.py:106
#: ../gui/wxpython/lmgr/layertree.py:2145 ../gui/wxpython/mapswipe/frame.py:459
#, python-format
msgid "Map <%s> not found."
msgstr ""
#: ../gui/wxpython/animation/utils.py:187
msgid "The number of maps in space-time datasets has to be the same."
msgstr ""
#: ../gui/wxpython/animation/utils.py:193
msgid "The temporal type (absolute/relative) of space-time datasets has to be the same."
msgstr ""
#: ../gui/wxpython/animation/utils.py:201
msgid "The map type (point/interval) of space-time datasets has to be the same."
msgstr ""
#: ../gui/wxpython/animation/utils.py:209
msgid "The temporal extents of maps in space-time datasets have to be the same."
msgstr ""
#: ../gui/wxpython/animation/utils.py:219
msgid "The number of maps to animate has to be the same for each map series."
msgstr ""
#: ../gui/wxpython/animation/utils.py:227
msgid "The number of maps to animate has to be the same as the number of maps in temporal dataset."
msgstr ""
#: ../gui/wxpython/core/debug.py:46
#, python-brace-format
msgid "Wx debug level {0}."
msgstr ""
#: ../gui/wxpython/core/debug.py:51
#, python-brace-format
msgid "WARNING: Ignoring unsupported wx debug level (must be >=0 and <=5). {0}\n"
msgstr ""
#: ../gui/wxpython/core/gcmd.py:123 ../gui/wxpython/core/workspace.py:1742
#: ../gui/wxpython/gmodeler/panels.py:690
#: ../gui/wxpython/gui_core/preferences.py:236
#: ../gui/wxpython/gui_core/preferences.py:2044
#: ../gui/wxpython/gui_core/preferences.py:2076
#: ../gui/wxpython/gui_core/preferences.py:2088
#: ../gui/wxpython/gui_core/preferences.py:2100
#: ../gui/wxpython/image2target/ii2t_gis_set.py:325
#: ../gui/wxpython/image2target/ii2t_gis_set.py:733
#: ../gui/wxpython/image2target/ii2t_gis_set.py:782
#: ../gui/wxpython/lmgr/layertree.py:1004
#: ../gui/wxpython/location_wizard/dialogs.py:102
#: ../gui/wxpython/location_wizard/dialogs.py:122
#: ../gui/wxpython/location_wizard/dialogs.py:533
#: ../gui/wxpython/location_wizard/wizard.py:740
#: ../gui/wxpython/location_wizard/wizard.py:917
#: ../gui/wxpython/location_wizard/wizard.py:2114
#: ../gui/wxpython/psmap/dialogs.py:5598
#: ../gui/wxpython/startup/guiutils.py:255
#: ../gui/wxpython/startup/guiutils.py:308
#: ../gui/wxpython/vdigit/dialogs.py:270 ../gui/wxpython/vdigit/dialogs.py:451
msgid "Error"
msgstr ""
#: ../gui/wxpython/core/gcmd.py:136
msgid "Reason"
msgstr ""
#: ../gui/wxpython/core/gcmd.py:146 ../gui/wxpython/core/workspace.py:1756
#: ../gui/wxpython/gmodeler/model_convert.py:238
#: ../gui/wxpython/mapwin/buffered.py:2153
#: ../gui/wxpython/wxplot/dialogs.py:940
msgid "Warning"
msgstr ""
#: ../gui/wxpython/core/gcmd.py:153
#: ../gui/wxpython/image2target/ii2t_gis_set.py:714
#: ../gui/wxpython/image2target/ii2t_gis_set.py:760
#: ../gui/wxpython/lmgr/frame.py:2320 ../gui/wxpython/main_window/frame.py:2429
msgid "Message"
msgstr ""
#: ../gui/wxpython/core/gcmd.py:435
msgid "Execution failed:"
msgstr ""
#: ../gui/wxpython/core/gcmd.py:439 ../gui/wxpython/core/render.py:1091
#: ../gui/wxpython/core/render.py:1098 ../gui/wxpython/core/render.py:1105
msgid "Details:"
msgstr ""
#: ../gui/wxpython/core/gcmd.py:441 ../gui/wxpython/core/gcmd.py:448
msgid "Error: "
msgstr ""
#: ../gui/wxpython/core/gcmd.py:527
#, python-format
msgid "Unable to execute command: '%s'"
msgstr ""
#: ../gui/wxpython/core/gcmd.py:778 ../gui/wxpython/gui_core/forms.py:2991
#, python-format
msgid "Error in %s"
msgstr ""
#: ../gui/wxpython/core/gconsole.py:581
#, python-format
msgid ""
"Unable to run command:\n"
"%(cmd)s\n"
"\n"
"Option <%(opt)s>: read from standard input is not supported by wxGUI"
msgstr ""
#: ../gui/wxpython/core/gconsole.py:618
#, python-format
msgid "Module <%s> not found."
msgstr ""
#: ../gui/wxpython/core/gconsole.py:757 ../gui/wxpython/gmodeler/panels.py:314
#, python-format
msgid "%d sec"
msgstr ""
#: ../gui/wxpython/core/gconsole.py:760 ../gui/wxpython/gmodeler/panels.py:317
#, python-format
msgid "%(min)d min %(sec)d sec"
msgstr ""
#: ../gui/wxpython/core/gconsole.py:766
#: ../gui/wxpython/gmodeler/model_items.py:282
#: ../gui/wxpython/gmodeler/model_items.py:387
#: ../gui/wxpython/gmodeler/panels.py:323 ../gui/wxpython/gui_core/ghelp.py:263
#: ../gui/wxpython/startup/guiutils.py:586
msgid "unknown"
msgstr ""
#: ../gui/wxpython/core/gconsole.py:772
msgid "Please note that the data are left in inconsistent state and may be corrupted"
msgstr ""
#: ../gui/wxpython/core/gconsole.py:776
msgid "Command aborted"
msgstr ""
#: ../gui/wxpython/core/gconsole.py:779
#, python-brace-format
msgid "Command ended with non-zero return code {returncode}"
msgstr ""
#: ../gui/wxpython/core/gconsole.py:784 ../gui/wxpython/gmodeler/panels.py:330
msgid "Command finished"
msgstr ""
#: ../gui/wxpython/core/menutree.py:139
#, python-format
msgid "Unknown tag %s"
msgstr ""
#: ../gui/wxpython/core/render.py:182
#, python-format
msgid "<%(name)s>: layer type <%(type)s> is not supported"
msgstr ""
#: ../gui/wxpython/core/render.py:201
#, python-format
msgid "Command '%s' failed\n"
msgstr ""
#: ../gui/wxpython/core/render.py:202
#, python-format
msgid "Details: %s\n"
msgstr ""
#: ../gui/wxpython/core/render.py:284
#, python-format
msgid "Unsupported map layer type '%s'"
msgstr ""
#: ../gui/wxpython/core/render.py:694
#, python-format
msgid "Rendering failed: %s"
msgstr ""
#: ../gui/wxpython/core/render.py:742
msgid "Rendering aborted"
msgstr ""
#: ../gui/wxpython/core/render.py:774
msgid "Downloading data "
msgstr ""
#: ../gui/wxpython/core/render.py:783
msgid "Rendering & "
msgstr ""
#: ../gui/wxpython/core/render.py:783
msgid "Rendering..."
msgstr ""
#: ../gui/wxpython/core/render.py:826
msgid "Trying to recover from default region..."
msgstr ""
#: ../gui/wxpython/core/render.py:851
#, python-format