-
Notifications
You must be signed in to change notification settings - Fork 14
/
jump_ml.properties
3804 lines (3801 loc) · 353 KB
/
jump_ml.properties
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
translator = Mohammed Rashad K.M
last_change_date = 29 Sept 2012
last_change_reason = new PointLayerFromAttributeTablePlugIn
# Note: new strings that need translation start with the sequence "#T:"
JUMPConfiguration.about = കുറിച്ച് ...
JUMPConfiguration.fence = \#T\:Fence
JUMPConfiguration.not-available-for-the-current-window = Not Available For The Current Window
JUMPConfiguration.zoom-out = \#T\:Zoom Out
JUMPWorkbench.status.create = \#T\:Creating application workbench
JUMPWorkbench.status.configure-core = \#T\:Configuring core plugins
JUMPWorkbench.status.load-extensions = \#T\:Preparing to load additional extensions
JUMPWorkbench.status.restore-state = \#T\:Restoring state from previous run
JUMPWorkbench.version = വെര്ഷന്
JUMPWorkbench.status.initialize-datasources = \#T\:
JUMPWorkbench.status.show-workbench = \#T\:
com.vividsolutions.jump.io.ShapefileReader.shp-gt-dbf = \#T\:Error reading shapefile ''{0}'' \:\n\
number of records in shp ({1}) > number of records in dbf ({2}).
com.vividsolutions.jump.io.ShapefileReader.shp-lt-dbf = \#T\:Error reading shapefile ''{0}'' \:\n\
number of records in shp ({1}) < number of records in dbf ({2}).
com.vividsolutions.jump.plugin.edit.NoderPlugIn = \#T\:Noder
com.vividsolutions.jump.qa.diff.DiffGeometry.Matching-features = യോജിക്കുന്ന ഫിച്ചരുകള്
com.vividsolutions.jump.qa.diff.DiffGeometry.features = ഫിച്ചരുകള്
com.vividsolutions.jump.qa.diff.DiffGeometryComponents.geometries = ക്ഷേത്രഗണിതങ്ങള്
com.vividsolutions.jump.util.commandline.CommandLine.unknown-option-or-file-not-found-{0} = \#T\:Unknown command line option or file not found ''{0}''.
com.vividsolutions.jump.util.FlexibleDateParser = FlexibleDateParser_dmy.txt
com.vividsolutions.jump.workbench.datasource.SaveDatasetAsPlugIn = ടാറ്റ സെറ്റ് ഇപ്രകാരം സംബരിച്ചുവെക്കുക
com.vividsolutions.jump.workbench.datasource.SaveFileDataSourceQueryChooser.Invalid-file-name = T\:Invalid File Name
com.vividsolutions.jump.workbench.imagery.ecw.path-contains-nonansi-chars = \#T\:ECW loader does not support locations containing non ASCII characters. Please simplify the path to file by deleting/replacing the characters marked with questionmarks (?) in the following path\! Path\: ''{0}''
com.vividsolutions.jump.workbench.plugin.A-Task-Window-must-be-active = \#T\:A Task Window must be active
com.vividsolutions.jump.workbench.plugin.A-fence-must-be-drawn = \#T\:A fence must be drawn
com.vividsolutions.jump.workbench.plugin.A-window-with-a-layer-manager-must-be-active = \#T\:A window with a layer manager must be active
com.vividsolutions.jump.workbench.plugin.A-window-with-a-layer-name-panel-must-be-active = \#T\:A window with a layer name panel must be active
com.vividsolutions.jump.workbench.plugin.A-window-with-a-layer-view-panel-must-be-active = \#T\:A window with a layer view panel must be active
com.vividsolutions.jump.workbench.plugin.A-window-with-a-selection-manager-must-be-active = \#T\:A window with a selection manager must be active
com.vividsolutions.jump.workbench.plugin.A-window-with-an-associated-task-frame-must-be-active = \#T\:A window with an associated task frame must be active
com.vividsolutions.jump.workbench.plugin.At-least-n-categories-must-be-selected = \#T\:At least {0} categories must be selected
com.vividsolutions.jump.workbench.plugin.At-least-n-features-must-be-selected = \#T\:At least {0} features must be selected
com.vividsolutions.jump.workbench.plugin.At-least-n-features-must-have-selected-items = \#T\:At least {0} features must have selected items
com.vividsolutions.jump.workbench.plugin.At-least-n-items-must-be-selected = \#T\:At least {0} items must be selected
com.vividsolutions.jump.workbench.plugin.At-least-n-layers-must-be-editable = \#T\:At least {0} layers must be editable
com.vividsolutions.jump.workbench.plugin.At-least-n-layers-must-be-selected = \#T\:At least {0} layers must be selected
com.vividsolutions.jump.workbench.plugin.At-least-n-layers-must-exist = \#T\:At least {0} layers must exist
com.vividsolutions.jump.workbench.plugin.At-least-n-vectors-must-be-drawn = \#T\:At least {0} vectors must be drawn
com.vividsolutions.jump.workbench.plugin.At-least-one-category-must-be-selected = \#T\:At least one category must be selected
com.vividsolutions.jump.workbench.plugin.At-least-one-feature-must-be-selected = \#T\:At least one feature must be selected
com.vividsolutions.jump.workbench.plugin.At-least-one-feature-must-have-selected-items = \#T\:At least one feature must have selected items
com.vividsolutions.jump.workbench.plugin.At-least-one-item-must-be-selected = \#T\:At least one item must be selected
com.vividsolutions.jump.workbench.plugin.At-least-one-layer-must-be-editable = \#T\:At least one layer must be editable
com.vividsolutions.jump.workbench.plugin.At-least-one-layer-must-be-selected = \#T\:At least one layer must be selected
com.vividsolutions.jump.workbench.plugin.At-least-one-layer-must-exist = \#T\:At least one layer must exist
com.vividsolutions.jump.workbench.plugin.At-least-one-vector-must-be-drawn = \#T\:At least one vector must be drawn
com.vividsolutions.jump.workbench.plugin.At-most-n-layers-must-exist = \#T\:At most {0} layers must exist
com.vividsolutions.jump.workbench.plugin.At-most-one-layer-must-exist = \#T\:At most one layer must exist
com.vividsolutions.jump.workbench.plugin.Between-and-vectors-must-be-drawn = \#T\:Between {0} and {1} vectors must be drawn
com.vividsolutions.jump.workbench.plugin.Exactly-n-categories-must-be-selected = \#T\:Exactly {0} categories must be selected
com.vividsolutions.jump.workbench.plugin.Exactly-n-features-must-be-selected = \#T\:Exactly {0} features must be selected
com.vividsolutions.jump.workbench.plugin.Exactly-n-features-must-have-selected-items = \#T\:Exactly {0} features must have selected items
com.vividsolutions.jump.workbench.plugin.Exactly-n-items-must-be-selected = \#T\:Exactly {0} items must be selected
com.vividsolutions.jump.workbench.plugin.Exactly-n-layers-must-be-selected = \#T\:Exactly {0} layers must be selected
com.vividsolutions.jump.workbench.plugin.Exactly-n-layers-must-have-selected-items = \#T\:Exactly {0} layers must have selected items
com.vividsolutions.jump.workbench.plugin.Exactly-n-vectors-must-be-drawn = \#T\:Exactly {0} vectors must be drawn
com.vividsolutions.jump.workbench.plugin.Exactly-one-category-must-be-selected = \#T\:Exactly one category must be selected
com.vividsolutions.jump.workbench.plugin.Exactly-one-feature-must-be-selected = \#T\:Exactly one feature must be selected
com.vividsolutions.jump.workbench.plugin.Exactly-one-feature-must-have-selected-items = \#T\:Exactly one feature must have selected items
com.vividsolutions.jump.workbench.plugin.Exactly-one-item-must-be-selected = \#T\:Exactly one item must be selected
com.vividsolutions.jump.workbench.plugin.Exactly-one-layer-must-be-selected = \#T\:Exactly one layer must be selected
com.vividsolutions.jump.workbench.plugin.Exactly-one-layer-must-have-selected-items = \#T\:Exactly one layer must have selected items
com.vividsolutions.jump.workbench.plugin.Exactly-one-selected-layer-must-be-editable = \#T\:Exactly one selected layer must be editable
com.vividsolutions.jump.workbench.plugin.Exactly-one-vector-must-be-drawn = \#T\:Exactly one vector must be drawn
com.vividsolutions.jump.workbench.plugin.Only-one-layer-may-have-selected-features = \#T\:Only one layer may have selected features
com.vividsolutions.jump.workbench.plugin.Only-one-layer-may-have-selected-items = \#T\:Only one layer may have selected items
com.vividsolutions.jump.workbench.plugin.PlugInManager.could-not-be-initialized = \#T\:could not be initialized
com.vividsolutions.jump.workbench.plugin.PlugInManager.loading = \#T\:Loading
com.vividsolutions.jump.workbench.plugin.PlugInManager.scan = \#T\:Scanning ''{0}'' for extensions
com.vividsolutions.jump.workbench.plugin.PlugInManager.throwable-encountered-loading = \#T\:Throwable encountered loading
com.vividsolutions.jump.workbench.plugin.Selected-items-layers-must-be-editable = \#T\:Selected items'' layers must be editable ({0})
com.vividsolutions.jump.workbench.plugin.Selected-layers-must-be-editable = \#T\:Selected layers must be editable
com.vividsolutions.jump.workbench.plugin.Selected-layers-must-not-be-empty = #T:Selected layers must not be empty.
com.vividsolutions.jump.workbench.ui.EnterWKTDialog.beautify = \#T\:Beautify the Well-Known Text
com.vividsolutions.jump.workbench.ui.EnterWKTDialog.compress = \#T\:Compress
com.vividsolutions.jump.workbench.ui.EnterWKTDialog.format = \#T\:Format
com.vividsolutions.jump.workbench.ui.InfoFrame.html-view = \#T\:HTML View
com.vividsolutions.jump.workbench.ui.InfoFrame.table-view = \#T\:Table View
com.vividsolutions.jump.workbench.ui.cursortool.AbstractCursorTool.snapping-on = \#T\: snapping allowed
com.vividsolutions.jump.workbench.ui.cursortool.AbstractCursorTool.snapping-off = \#T\: snapping disabled
com.vividsolutions.jump.workbench.ui.cursortool.DrawPolygonFenceTool = ക്ഷേത്രഗണിതങ്ങള് ബഹുഭുജക്ഷേത്ര വേലികള് വരയ്ക്കാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.DrawRectangleFenceTool = ദീര്ഘചതുരത്തിന്റെ വരയ്ക്കാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.FeatureInfoTool = ഫിച്ചരിനെ കുറിച്ചുള്ള വിവരങ്ങള് അറിയുവാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.MeasureTool = അളക്കുവാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.MultiClickTool.cancel-drawing = \#T\:Cancel Drawing
com.vividsolutions.jump.workbench.ui.cursortool.MultiClickTool.erase-last-segment-or-point = \#T\:Erase Last Segment or Point
com.vividsolutions.jump.workbench.ui.cursortool.MultiClickTool.finish-drawing = \#T\:Finish Drawing
com.vividsolutions.jump.workbench.ui.cursortool.NodeLineStringsTool.No-intersections-here = എവിടെ ഒന്നും കൂട്ടിമുട്ടുന്നില്ല
com.vividsolutions.jump.workbench.ui.cursortool.NodeLineStringsTool.Node-LineStrings = നോട് വരക
com.vividsolutions.jump.workbench.ui.cursortool.SelectFeaturesTool = ഫിച്ചരുകള് തിരഞ്ഞെടുക്കാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.SelectFeaturesTool.add-to-selection = \#T\:Add Features to Selection
com.vividsolutions.jump.workbench.ui.cursortool.SelectLineStringsTool.add-to-selection = \#T\:Add LineStrings to Selection
com.vividsolutions.jump.workbench.ui.cursortool.SelectPartsTool = ഭാഗങ്ങള് തിരഞ്ഞെടുക്കാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.SelectPartsTool.add-to-selection = \#T\:Add Parts to Selection
com.vividsolutions.jump.workbench.ui.cursortool.SplitLineStringTool.Split-LinesStrings = വരകള് വിയോജിപിക്കുക
com.vividsolutions.jump.workbench.ui.cursortool.editing.DeleteVertexTool = ശീര്ഷം കളയാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.editing.DrawPointTool = ബിന്ദു വരയ്ക്കാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.editing.DrawPolygonTool = ബഹുഭുജക്ഷേത്രം വരയ്ക്കാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.editing.DrawRectangleTool = ദീര്ഘചതുരം വരയ്ക്കാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.editing.InsertVertexTool = ശീര്ഷം ചെലുത്താനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.editing.MoveSelectedItemsTool = തിരഞ്ഞെടുത്ത ഐറ്റം നീക്കുവനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.editing.MoveSelectedItemsTool.rotate-item = \#T\:Rotate Item
com.vividsolutions.jump.workbench.ui.cursortool.editing.MoveVertexTool = ശീര്ഷം നീക്കുവനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.cursortool.editing.SnapVerticesToSelectedVertexTool = Snap Vertices To Selected Vertex Tool
com.vividsolutions.jump.workbench.ui.cursortool.editing.SnapVerticesTool = ശീര്ഷങ്ങള് അറുക്കുവാനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.plugin.AboutPlugIn = കുറിച്ച്
com.vividsolutions.jump.workbench.ui.plugin.AddNewCategoryPlugIn = പുതിയ വിഭാഗം ഉണ്ടാക്കുക
com.vividsolutions.jump.workbench.ui.plugin.AddNewCategoryPlugIn.name = വിഭാഗം
com.vividsolutions.jump.workbench.ui.plugin.AddNewFeaturesPlugIn = പുതിയ ഫീച്ചറുകള് ഉണ്ടാക്കുക
com.vividsolutions.jump.workbench.ui.plugin.AddNewLayerPlugIn = പുതിയ ലയെര് ഉണ്ടാക്കുക
com.vividsolutions.jump.workbench.ui.plugin.AddNewLayerPlugIn.name = ലയെര്
com.vividsolutions.jump.workbench.ui.plugin.BeanShellPlugIn.BeanShell-Console = ബീന് ഷെല് കണ്സോള്
com.vividsolutions.jump.workbench.ui.plugin.ClearSelectionPlugIn = തിരഞ്ഞെടുത്തവ കളയുക
com.vividsolutions.jump.workbench.ui.plugin.CloneWindowPlugIn = ഈ വിന്ഡോ പോലോതെ മറ്റൊരെണ്ണം ഉണ്ടാക്കുക
com.vividsolutions.jump.workbench.ui.plugin.CombineSelectedFeaturesPlugIn = ഫിച്ചരുകള് ഒന്നിപ്പിക്കുക
com.vividsolutions.jump.workbench.ui.plugin.CombineSelectedFeaturesPlugIn.invalid-multipolygon = \#T\:MultiPolygon was not valid, a GeometryCollection has been returned
com.vividsolutions.jump.workbench.ui.plugin.CopySchemaPlugIn = \#T\:Copy Schema
com.vividsolutions.jump.workbench.ui.plugin.DeleteAllFeaturesPlugIn = തിരഞ്ഞെടുത്ത ഫിച്ചരുകള് കളയുക
com.vividsolutions.jump.workbench.ui.plugin.DeleteSelectedItemsPlugIn = തിരഞ്ഞെടുത്ത ഐറ്റം കളയുക
com.vividsolutions.jump.workbench.ui.plugin.EditablePlugIn = ഗ്രന്ഥപരിശോധന നടത്താന് കഴിയുന്നവ
com.vividsolutions.jump.workbench.ui.plugin.ExplodeSelectedFeaturesPlugIn = തിരഞ്ഞെടുത്ത ഫിച്ചരുകള് പൊട്ടിത്തെറിപ്പിക്കുക
com.vividsolutions.jump.workbench.ui.plugin.FeatureInfoPlugIn = ഫിച്ചരിന്റെ വിവരങ്ങള്
com.vividsolutions.jump.workbench.ui.plugin.FeatureStatisticsPlugIn = ഫിച്ചരുകളുടെ സ്ഥിതിവിവരക്കണക്ക്
com.vividsolutions.jump.workbench.ui.plugin.LayerStatisticsPlugIn = ലയെരുകളുടെ സ്ഥിതിവിവരക്കണക്ക്
com.vividsolutions.jump.workbench.ui.plugin.NewTaskPlugIn = പുതിയ പ്രൊജക്റ്റ്
com.vividsolutions.jump.workbench.ui.plugin.OptionsPlugIn = ഐഛീകം
com.vividsolutions.jump.workbench.ui.plugin.OutputWindowPlugIn = കംപ്യൂട്ടറില് നിന്നും ഉത്തരങ്ങള് പുറത്തേക്ക് ലഭിക്കുന്ന വിന്ഡോ
com.vividsolutions.jump.workbench.ui.plugin.PasteSchemaPlugIn = \#T\:Paste Schema
com.vividsolutions.jump.workbench.ui.plugin.RedoPlugIn = അടുത്ത അവസ്ഥയിലേക്ക് പോകുക
com.vividsolutions.jump.workbench.ui.plugin.RedoPlugIn.nothing-to-redo = \#T\: Nothing to redo
com.vividsolutions.jump.workbench.ui.plugin.RemoveSelectedCategoriesPlugIn = തിരഞ്ഞെടുത്ത വര്ഗ്ഗം കളയുക
com.vividsolutions.jump.workbench.ui.plugin.RemoveSelectedLayersPlugIn = തിരഞ്ഞെടുത്ത ലയെരുകള് കളയുക
com.vividsolutions.jump.workbench.ui.plugin.SaveImageAsPlugIn = വ്യൂ RASTER ആയി സംബരിച്ചുവെക്കുക
com.vividsolutions.jump.workbench.ui.plugin.SelectFeaturesInFencePlugIn = ഫീചെരിന്റെ കൂട്ടിമുട്ടുന്ന ആവൃതി തിരഞ്ഞെടുക്കുക
com.vividsolutions.jump.workbench.ui.plugin.SelectablePlugIn = Selectable
com.vividsolutions.jump.workbench.ui.plugin.ShortcutKeysPlugIn = കുറുക്കു വഴികള്
com.vividsolutions.jump.workbench.ui.plugin.ShortcutKeysPlugIn.all-editing-tools = \#T\:All Editing Tools
com.vividsolutions.jump.workbench.ui.plugin.ShortcutKeysPlugIn.cursortools-quasimodes = \#T\:Temporarily switch Cursor Tool (Quasi Mode)
com.vividsolutions.jump.workbench.ui.plugin.ShortcutKeysPlugIn.editing-tools-options = \#T\:Editing Tools Options
com.vividsolutions.jump.workbench.ui.plugin.ShortcutKeysPlugIn.more = \#T\:More
com.vividsolutions.jump.workbench.ui.plugin.ShortcutKeysPlugIn.temporarily-switch-off-snapping = \#T\:Temporarily Switch off Snapping
com.vividsolutions.jump.workbench.ui.plugin.UndoPlugIn = മുന്പത്തെ അവസ്ഥയിലേക്ക് പോകുക
com.vividsolutions.jump.workbench.ui.plugin.UndoPlugIn.nothing-to-undo = \#T\: Nothing to undo
com.vividsolutions.jump.workbench.ui.plugin.ValidateSelectedLayersPlugIn = തിരഞ്ഞെടുത്ത ലയെരുകള് പ്രസ്താവിക്കുക
com.vividsolutions.jump.workbench.ui.plugin.VerticesInFencePlugIn = ആവൃതത്തിലുള്ള ശീര്ഷം
com.vividsolutions.jump.workbench.ui.plugin.analysis.BufferPlugIn = പ്രാതികൂല്യ പ്ലുഗിന്
com.vividsolutions.jump.workbench.ui.plugin.analysis.CalculateAreasAndLengthsPlugIn = ഉള്ളളവും നീളവും കണ്ടുപിടിക്കുക
com.vividsolutions.jump.workbench.ui.plugin.analysis.GeometryFunctionPlugIn = ക്ഷേത്രഗണിത്തിന്റെ കാര്യക്കാര
com.vividsolutions.jump.workbench.ui.plugin.analysis.OffsetCurvePlugIn = \#T\:Offset Curve
com.vividsolutions.jump.workbench.ui.plugin.analysis.OverlayPlugIn = മേലെ വയ്ക്കക
com.vividsolutions.jump.workbench.ui.plugin.analysis.UnionPlugIn = യുണിയന്
com.vividsolutions.jump.workbench.ui.plugin.clipboard.CopyImagePlugIn = ക്ലിപ്പ് ബോര്ഡിലേക്ക് വ്യൂ പകര്ത്തുക
com.vividsolutions.jump.workbench.ui.plugin.clipboard.CopySelectedItemsPlugIn = തിരഞ്ഞെടുത്ത ഐറ്റം കോപ്പി ചെയ്യുക
com.vividsolutions.jump.workbench.ui.plugin.clipboard.CopySelectedLayersPlugIn = തിരഞ്ഞെടുത്ത ലയെരുകള് കോപ്പി ചെയ്യുക
com.vividsolutions.jump.workbench.ui.plugin.clipboard.CopyThisCoordinatePlugIn = കൊടിനെറ്റ് പകര്തിയെടുക്കുക
com.vividsolutions.jump.workbench.ui.plugin.clipboard.CutSelectedItemsPlugIn = തിരഞ്ഞെടുത്ത ഐറ്റം മുറിച്ചെടുക്കുക
com.vividsolutions.jump.workbench.ui.plugin.clipboard.CutSelectedLayersPlugIn = തിരഞ്ഞെടുത്ത ലയെരുകള് മുറിച്ചെടുക്കുക
com.vividsolutions.jump.workbench.ui.plugin.clipboard.PasteItemsPlugIn = ഐറ്റം ഒട്ടിക്കുക
com.vividsolutions.jump.workbench.ui.plugin.clipboard.PasteLayersPlugIn = ലയെരുകള് ഒട്ടിക്കുക
com.vividsolutions.jump.workbench.ui.plugin.datastore.RefreshDataStoreLayerPlugin = \#T\:Refresh Datastore Layer
com.vividsolutions.jump.workbench.ui.plugin.generate.BoundaryMatchDataPlugIn = \#T\:Boundary Match Data
com.vividsolutions.jump.workbench.ui.plugin.generate.ShowTriangulationPlugIn = \#T\:Show Triangulation
com.vividsolutions.jump.workbench.ui.plugin.imagery.ImageFeatureCreator.there-were-errors = \#T\:There were errors loading some images. Please check for imageless features with error attributes for details.
com.vividsolutions.jump.workbench.ui.plugin.scalebar.ScaleBarPlugIn = സ്കെയില് ബാര്
com.vividsolutions.jump.workbench.ui.plugin.test.RandomArrowsPlugIn = ക്രമമില്ലാതിരിക്കുന്ന ആരോകള്
com.vividsolutions.jump.workbench.ui.plugin.test.RandomTrianglesPlugIn = ക്രമമില്ലാതിരിക്കുന്ന ത്രികോണങള്
com.vividsolutions.jump.workbench.ui.plugin.wms.AddWMSQueryPlugIn = ഒരു WMS ക്വറി ചേര്ക്കുക
com.vividsolutions.jump.workbench.ui.plugin.wms.EditWMSQueryPlugIn = WMS ക്വറി ഗ്രന്ഥപരിശോധന നടത്തുക
com.vividsolutions.jump.workbench.ui.style.BasicStylePanel.error = പിശക്
com.vividsolutions.jump.workbench.ui.style.BasicStylePanel.error-opening-file = ഫയല് തുറക്കുന്നതില് പിശക്\: {0}
com.vividsolutions.jump.workbench.ui.style.ChangeStylesPlugIn = ശൈലി മാറ്റുക
com.vividsolutions.jump.workbench.ui.warp.AffineTransformPlugIn = Affine Transform
com.vividsolutions.jump.workbench.ui.warp.AffineTransformPlugIn.message1=\#T\:Please load this image as Sextante Raster to perform a transformation
com.vividsolutions.jump.workbench.ui.warp.AffineTransformPlugIn.message2=\#T\:Affine transformation not yet implemented for this type of layer
com.vividsolutions.jump.workbench.ui.warp.AffineTransformPlugIn.message3=\#T\:Affine trasformation for raster currently works only on RGB image files
com.vividsolutions.jump.workbench.ui.warp.DeleteIncrementalWarpingVectorTool = കൂടിവരുകയും പൊതിഞ്ഞിരിക്കുന്നതുമായ വെക്ടര് ഉപകരണം കളയുക
com.vividsolutions.jump.workbench.ui.warp.DeleteWarpingVectorTool = പൊതിഞ്ഞിരിക്കുന്ന വെക്ടര് ഉപകരണം കളയുക
com.vividsolutions.jump.workbench.ui.warp.DrawIncrementalWarpingVectorTool = കൂടിവരുകയും പൊതിഞ്ഞിരിക്കുന്നതുമായ വെക്ടര് ഉപകരണം വരക്കുക
com.vividsolutions.jump.workbench.ui.warp.DrawWarpingVectorTool = പൊതിഞ്ഞിരിക്കുന്ന വെക്ടര് ഉപകരണം വരക്കുക
com.vividsolutions.jump.workbench.ui.warp.WarpingPlugIn = പൊതിയുന്നു
com.vividsolutions.jump.workbench.ui.zoom.PanTool = നീകുവനുള്ള ഉപകരണം
com.vividsolutions.jump.workbench.ui.zoom.ZoomBarPlugIn = സൂം ബാര്
com.vividsolutions.jump.workbench.ui.zoom.ZoomNextPlugIn = അടുത്ത സൂമിലേക്ക് പോകുക
com.vividsolutions.jump.workbench.ui.zoom.ZoomPreviousPlugIn = മുന്പത്തെ സൂമിലേക്ക് പോകുക
com.vividsolutions.jump.workbench.ui.zoom.ZoomToClickPlugIn = ക്ലിക്കിലേക്ക് ഒരു ഭാഗം മാത്രം വലുതാക്കുക
com.vividsolutions.jump.workbench.ui.zoom.ZoomToCoordinatePlugIn = കോടിനെടിന്റെ ഒരു ഭംഗം മാത്രം വലുതാക്കുക
com.vividsolutions.jump.workbench.ui.zoom.ZoomToFencePlugIn = ആവൃതിയിലേക്ക് ഒരു ഭാഗം മാത്രം വലുതാക്കുക
com.vividsolutions.jump.workbench.ui.zoom.ZoomToFullExtentPlugIn = മുഴുവന് വിസ്താരത്തിലേക്ക് വേണ്ടി ഒരു ഭാഗം മാത്രം വലുതാക്കുക
com.vividsolutions.jump.workbench.ui.zoom.ZoomToLayerPlugIn = ലയെരിന്റെ ഒരു ഭാഗം മാത്രം വലുതാക്കുക
com.vividsolutions.jump.workbench.ui.zoom.ZoomToSelectedItemsPlugIn = തിരഞ്ഞെടുത്ത ഐറ്റെത്തിന്റെ ഒരു ഭംഗം മാത്രം വലുതാക്കുക
com.vividsolutions.wms.Parser.invalid-bounding-box-element-node = Invalid bounding box element node.
com.vividsolutions.wms.Parser.not-a-latlon-boundingbox-element = Not a (Lat/Long) Bounding-Box Element
com.vividsolutions.wms.WMService.Error = തെറ്റ്
com.vididsolutions.wms.WMService.Other-GetMap-URL-Found = #T:The WMS advertises the URL\n''{0}'' instead of\n''{1}'' as GetMap-URL.\nDo you want to follow this URL [yes] or to stick on the original one [no] ?
com.vividsolutions.wms.WMService.WMS-IO-Error = WMS സെര്വരുമായി ബന്ധം പുലര്ത്താന് സാധിക്കുന്നില്ല.\n\
\t{0}\: {1}
com.vividsolutions.wms.WMService.WMS-Not-Found = WMS കാന്നുനില്ല.\n\
\tഅഭ്യര്ത്ഥന\: {0}
com.vividsolutions.wms.ui.WMSViewer.Pan = Pan
com.vividsolutions.wms.ui.WMSViewer.connect = ഘടിപ്പിക്കുക
com.vividsolutions.wms.ui.WMSViewer.disconnect = വേര്പെടുത്തുക,
com.vividsolutions.wms.ui.WMSViewer.get-image = Get Image
com.vividsolutions.wms.ui.WMSViewer.server-string = സെര്വറിന്റെ സൂത്രം
com.vividsolutions.wms.ui.WMSViewer.wms-url = http\://slkapps2.env.gov.bc.ca/servlet/com.esri.wms.Esrimap?
com.vividsolutions.wms.ui.WMSViewer.wms-viewer = WMS കാന്നുവാനുള്ളത്
com.vividsolutions.wms.ui.WMSViewer.zoom-in = ഒരു ഭാഗം മാത്രം വലുതാക്കുക
com.vividsolutions.wms.ui.WMSViewer.zoom-out = ഒരു ഭാഗം മാത്രം ചെറുതാക്കുക
coordsys.ChangeCoordinateSystemPlugIn.coordinate-system-for-task = \#T\:Coordinate system for project\:
coordsys.CoordinateSystem.unspecified = \#T\:Unspecified
datasource.DataSourceQueryChooserDialog.card = \#T\:Card
datasource.DataSourceQueryChooserDialog.format = \#T\:Format\:
datasource.FileDataSourceQueryChooser.coordinate-system-of-file = \#T\:Coordinate system of file\:
datasource.GMLDataSourceQueryChooserInstaller.error = \#T\:Error
datasource.GMLDataSourceQueryChooserInstaller.input-template = \#T\:Input Template\:
datasource.GMLDataSourceQueryChooserInstaller.template-file = \#T\:Template File\:
datasource.InstallStandardDataSourceQueryChoosersPlugIn.compressed = \#T\:Compressed
datasource.LoadDatasetFromFilePlugIn.load-dataset-from-file = \#T\:Load Dataset From File
datasource.LoadDatasetPlugIn.first-and-last-five = \#T\:First and last five\:
datasource.LoadDatasetPlugIn.load-dataset = \#T\:Load Dataset(s)
datasource.LoadDatasetPlugIn.loading = \#T\:Loading
datasource.LoadDatasetPlugIn.problem = \#T\:Problem
datasource.LoadDatasetPlugIn.problems-were-encountered = \#T\:Problems were encountered. See Output Window for details.
datasource.LoadDatasetPlugIn.see-view-log = \#T\:See View / Log For Stack Traces
datasource.SaveDatasetAsFilePlugIn.save-dataset-as-file = \#T\:Save Dataset As File
datasource.SaveDatasetAsPlugIn.saving = സംഭരിക്കുന്നു
deejump.plugin.SaveLegendPlugIn.Save = സംഭരിച്ചുവെക്കുക
deejump.plugin.SaveLegendPlugIn.Save-legend = ലെജെന്ദ് സംബരിച്ചുവെക്കുക
deejump.plugin.SaveLegendPlugIn.Save-legend-as-image-png = \#T\:Save legend as image (PNG).
deejump.pluging.manager.ExtensionHelper.Deleting-file = \#T\:Deleting File
deejump.pluging.manager.ExtensionHelper.Downloading-resources = \#T\:Downloading Resources
deejump.pluging.manager.ExtensionHelper.Loading-classes = \#T\:Loading Classes
deejump.pluging.manager.ExtensionHelper.Loading-extensions = \#T\:Loading Extensions
deejump.pluging.manager.ExtensionHelper.deleted = \#T\:Deleted
deejump.pluging.manager.ExtensionManagerDialog.Cancel = \#T\:Cancel
deejump.pluging.manager.ExtensionManagerDialog.Catalog-site-URL = \#T\:Catalog site URL\:
deejump.pluging.manager.ExtensionManagerDialog.Configure = \#T\:Configure
deejump.pluging.manager.ExtensionManagerDialog.Disgraceful-Error = \#T\:Disgraceful Error\!
deejump.pluging.manager.ExtensionManagerDialog.Extension-Manager = കുറുവട്ടം പ്രതിഹസ്തന്
deejump.pluging.manager.ExtensionManagerDialog.Install = അവരോധിക്കുക
deejump.pluging.manager.ExtensionManagerDialog.Installed-Extensions = അവരോധിച്ചിരിക്കുന്ന കരുവട്ടങ്ങള്
deejump.pluging.manager.ExtensionManagerDialog.It-may-have-been-added-by-copying-into-the-lib/ext-directory = lib/ext എന്ന ഡയറക്റ്ററിയിലേക്ക് പകര്ത്തുന്നത് വഴി അത് ചേര്ക്കാന് സാധിക്കും
deejump.pluging.manager.ExtensionManagerDialog.New-Versions = പുതിയ വേര്ഷനുകള്
deejump.pluging.manager.ExtensionManagerDialog.OK = ശരി
deejump.pluging.manager.ExtensionManagerDialog.This-extension-has-not-been-found-in-the-catalogue = ഈ കരുവട്ടം പട്ടികയില് കാണ്മാനില്ല.
deejump.pluging.manager.ExtensionManagerDialog.You-entered-a-malformed-URL = നിങ്ങള് നല്കിയ URL ശരിയല്ല.
deejump.pluging.manager.ExtensionManagerDialog.uncatalogued = പട്ടികയില് പെടാത്തത്
deejump.pluging.manager.ExtensionManagerDialog.unknown-JUMP-version = JUMP വെര്ഷന് അറിയില്ല
deejump.pluging.manager.ExtensionManagerDialog.unknown-author = രചയിതാവ് ആരെന്നു അറിയില്ല
deejump.pluging.manager.ExtensionManagerDialog.unknown-category = തരം അറിയില്ല
deejump.pluging.manager.ExtensionManagerPlugIn.Plug-ins-will-only-be-removed-after-next-start = പ്ലുഗിന് അടുത്ത പ്രാവശ്യം ജമ്പ് തുടങ്ങുമ്പോഴേ കലയുകയുല്ല് .
deejump.pluging.style.LayerStyle2SLDPlugIn.Feature-Type-Style = \#T\:Feature Type Style
deejump.pluging.style.LayerStyle2SLDPlugIn.Input-the-name-of-the-geometry-property = \#T\:Input the name of the geometry property
deejump.pluging.style.LayerStyle2SLDPlugIn.Namespace = \#T\:Namespace of properties
deejump.pluging.style.LayerStyle2SLDPlugIn.SLD-Parameters = \#T\:SLD Parameters
deejump.pluging.style.LayerStyle2SLDPlugIn.Save = \#T\:Save
deejump.pluging.style.LayerStyle2SLDPlugIn.Save-style-as-SLD = ശൈലി SLD ആയി സംബരിച്ചുവെക്കുക
deejump.pluging.style.LayerStyle2SLDPlugIn.Style-name = \#T\:Style name
deejump.pluging.style.LayerStyle2SLDPlugIn.Style-title = \#T\:Style title
deejump.pluging.style.LayerStyle2SLDPlugIn.Transform-layer-style-into-sld = ശൈലി SLD ഫയല് ആയി സംബരിച്ചുവെക്കുക
deejump.pluging.style.LayerStyle2SLDPlugIn.WMS-Layer-name = \#T\:WMS Layer name
deejump.pluging.style.LayerStyle2SLDPlugIn.geomProperty = \#T\:Geometry field
deejump.pluging.style.LayerStyle2SLDPlugIn.maxScale = \#T\:Maximum scale
deejump.pluging.style.LayerStyle2SLDPlugIn.minScale = \#T\:Minimum scale
deejump.ui.style.RenderingStylePanel.bitmap = \#T\:Bitmap
deejump.ui.style.RenderingStylePanel.bitmap-change = \#T\:Bitmap Change
deejump.ui.style.RenderingStylePanel.circle = \#T\:Circle
deejump.ui.style.RenderingStylePanel.cross = \#T\:Cross
deejump.ui.style.RenderingStylePanel.point-display-type = \#T\:Point Display Typ
deejump.ui.style.RenderingStylePanel.square = സമചതുരം
deejump.ui.style.RenderingStylePanel.star = നക്ഷത്രം
deejump.ui.style.RenderingStylePanel.triangle = ത്രികോണം
demo.layerviewpanel.MapTab.layers = ലേയറുകള്
driver.DriverManager.file-to-open = തുറക്കേണ്ട ഫയല്
driver.DriverManager.file-to-save = ഡാറ്റ സംഭരിച്ചു വെക്കേണ്ട ഫയല്
feature.FeatureSchema.unrecognized-attribute-name = അട്രീബൂട്ട് നാമം തിരിച്ചറിയാന് സാധികുന്നില്ല \:
feature.IndexedFeatureCollection.index-cannot-be-modified = \#T\:
io.ShapefileReader.filename-must-end-in-shp = \#T\:Filename must end in '.shp'
io.ShapefileReader.no-file-property-specified = \#T\:No File Property Specified
io.ShapefileWriter.export-cancelled = \#T\:Export has been cancelled.
io.ShapefileWriter.fields-too-long = \#T\:Fields too long
io.ShapefileWriter.filename-must-end-in-shp = \#T\:Filename must end in '.shp'
io.ShapefileWriter.more-than-255-characters-field-found = \#T\:Some fields have more than 255 characters
io.ShapefileWriter.no-output-filename-specified = \#T\:No output filename specified
io.ShapefileWriter.path-separator-not-found = \#T\:Couldn''t find the path separator character ''{0}'' in your shapefile name
io.ShapefileWriter.truncate-option = \#T\:Do you accept to truncate them in the output shapefile ?
io.ShapefileWriter.unknown-type = \#T\:Data has a 'ShapeType' that isn't 'xy', 'xym', or 'xymz'"
io.ShapefileWriter.unsupported-attribute-type = \#T\:ShapefileWriter: unsupported AttributeType found in featurecollection.
io.ShapefileWriter.unsupported-geometry-collection = \#T\:Could not determine shapefile type - data is all GeometryCollections
io.ShapefileWriter.unsupported-mixed-geometry-type = \#T\:Mixed geometry types found, please separate Polygons from Lines and Points when saving to *.shp
jump.geom.AffineTransformation.Reflection-line-points-must-be-distinct = \#T\:
jump.geom.AffineTransformation.Reflection-vector-must-be-non-zero = \#T\:
jump.geom.AffineTransformation.Transformation-is-non-invertible = \#T\:
jump.geom.Matrix.Matrix-A-is-incorrectly-sized = \#T\:
jump.geom.NotRepresentableException.Projective-point-not-representable-on-the-Cartesian-plane = \#T\:
jump.plugin.edit.AffineTransControlPointExtracter.Control-Point-LineStrings-are-different-lengths = \#T\:
jump.plugin.edit.AffineTransControlPointExtracter.Control-point-collections-must-be-same-size = \#T\:
jump.plugin.edit.AffineTransControlPointExtracter.Control-points-must-be-LineStrings = \#T\:
jump.plugin.edit.AffineTransControlPointExtracter.Control-points-must-be-a-single-geometry = \#T\:
jump.plugin.edit.AffineTransControlPointExtracter.Single-control-points-are-not-supported = \#T\:
jump.plugin.edit.AffineTransControlPointExtracter.Too-many-points-in-LineString = \#T\:
jump.plugin.edit.AffineTransControlPointExtracter.Unrecognized-control-point-geometry = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Affine = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Affine-Transformation = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Anchor-Point = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Anchor-Point-X-value = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Anchor-Point-Y-value = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Applies-an-Affine-Transformation-to-all-features-in-a-layer = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Baseline-Vectors = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Compute-Parameters = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Control-Point-Error = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Rotation = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Rotation-Angle-in-degrees = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Scale-X-Factor = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Scale-Y-Factor = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Scaling = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Set-to-Identity = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Set-to-Lower-Left = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Set-to-Midpoint = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Shear-X-Factor = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Shear-Y-Factor = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Shearing = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.The-transformation-is-specified-by-a-combination-of-scaling-rotation-shearing-and-translation = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Transformation-parameters-may-be-computed-from-two-layers-containing-baseline-vectors = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Translate-by = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Translation = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Translation-X-value = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Translation-Y-value = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.X-Factor = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.X-Shear = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Y-Factor = \#T\:
jump.plugin.edit.AffineTransformationPlugIn.Y-Shear = \#T\:
jump.plugin.edit.ExtractSegmentsPlugIn.Extract-Segments = \#T\:
jump.plugin.edit.ExtractSegmentsPlugIn.Extracted-Segs = \#T\:
jump.plugin.edit.ExtractSegmentsPlugIn.Extracting-Segments = \#T\:
jump.plugin.edit.ExtractSegmentsPlugIn.Extracts-all-unique-line-segments-from-a-dataset = \#T\:
jump.plugin.edit.ExtractSegmentsPlugIn.Merge-resulting-segments = \#T\:
jump.plugin.edit.ExtractSegmentsPlugIn.Number-of-unique-segments-extracted = \#T\:
jump.plugin.edit.ExtractSegmentsPlugIn.Remove-doubled-segments = \#T\:
jump.plugin.edit.LineNoderPlugIn.Line-Layer = \#T\:
jump.plugin.edit.LineNoderPlugIn.Node-Lines = \#T\:
jump.plugin.edit.LineNoderPlugIn.Noded-Lines = \#T\:
jump.plugin.edit.LineNoderPlugIn.Nodes-the-lines-in-a-layer = \#T\:
jump.plugin.edit.LineNoderPlugIn.Noding = \#T\:
jump.plugin.edit.LineNoderPlugIn.Noding-input-lines = \#T\:
jump.plugin.edit.NoderPlugIn.processed-data = \#T\:
jump.plugin.edit.NoderPlugIn.layer = \#T\:
jump.plugin.edit.NoderPlugIn.processing = \#T\:
jump.plugin.edit.NoderPlugIn.find-intersections = \#T\:
jump.plugin.edit.NoderPlugIn.create-new-layer-with-missing-intersections = \#T\:
jump.plugin.edit.NoderPlugIn.line-options = \#T\:
jump.plugin.edit.NoderPlugIn.polygon-options = \#T\:
jump.plugin.edit.NoderPlugIn.do-not-process = \#T\:
jump.plugin.edit.NoderPlugIn.node = \#T\:
jump.plugin.edit.NoderPlugIn.split = \#T\:
jump.plugin.edit.NoderPlugIn.advanced-options = \#T\:
jump.plugin.edit.NoderPlugIn.snap-rounding = \#T\:
jump.plugin.edit.NoderPlugIn.snap-rounding-makes-noding-algorithm-fully-robust = \#T\:
jump.plugin.edit.NoderPlugIn.snap-rounding-decimal-places = \#T\:
jump.plugin.edit.NoderPlugIn.number-of-decimal-digits = \#T\:
jump.plugin.edit.NoderPlugIn.interpolate-z = \#T\:
jump.plugin.edit.NoderPlugIn.interpolated-z-decimal-places = \#T\:
jump.plugin.edit.NoderPlugIn.intersections = \#T\:
jump.plugin.edit.NoderPlugIn.noded = \#T\:
jump.plugin.edit.NoderPlugIn.noding = \#T\:
jump.plugin.edit.NoderPlugIn.noding-input = \#T\:
jump.plugin.edit.NoderPlugIn.no-data-to-process = \#T\:
jump.plugin.edit.NoderPlugIn.no-output-data = \#T\:
jump.plugin.edit.NoderPlugIn.sidebar-description = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Cut-edges = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Cuts = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Dangles = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Dangles-Cutlines-and-Invalid-Rings-are-identified = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Dangling-edges = \#T\:
jump.plugin.edit.PolygonizerPlugIn.If-desired-the-input-data-may-be-noded-before-polygonizing-is-performed = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Invalid-Rings = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Line-Layer = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Node-input-before-polygonizing = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Noding-input-lines = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Number-of-cut-edges-found = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Number-of-dangling-edges-found = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Number-of-input-edges = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Number-of-invalid-rings-found = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Number-of-polygons-created = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Polygonization = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Polygonization-requires-correctly-noded-data = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Polygonize = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Polygonizes-the-line-segments-in-a-layer = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Polygonizing = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Polygons = \#T\:
jump.plugin.edit.PolygonizerPlugIn.Use-selected-features-only = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Calculate-Geometry-Differences = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Computing-Segment-Diffs = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Distance-Tolerance = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Finds-differences-between-the-Segments-or-Geometries-in-two-layers = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Layer = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Match-Segments = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Match-Type = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Match-components-of-MultiGeometries = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Match-entire-Geometry = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Match-using-Distance-Tolerance = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Matches-geometries-if-all-points-are-within-the-Distance-Tolerance-of-the-other-Geometry = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Matches-individual-components-of-MultiGeometries = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Matches-using-full-geometry-topology,-not-just-segments = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Matches-using-segments-only = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Matching-can-be-either-exact-or-within-a-Distance-Tolerance = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Requires-coordinate-lists-in-matching-geometries-to-have-identical-start-points-and-ring-orientation = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Segment-Diffs = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Specifies-how-close-geometries-must-be-to-match = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Test-for-identical-Start-point-and-Orientation = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Unmatched-Geometries-in-Layer = \#T\:
jump.plugin.qa.DiffGeometryPlugIn.Unmatched-Segments-in-Geometry-Diffs-in-Layer = \#T\:
jump.plugin.qa.DiffSegmentsPlugIn.Calculate-Segment-Differences = \#T\:
jump.plugin.qa.DiffSegmentsPlugIn.Diff-Segments = \#T\:
jump.plugin.qa.DiffSegmentsPlugIn.Finds-line-segments-which-occur-in-Layer-1-or-Layer-2-but-not-both = \#T\:
jump.plugin.qa.DiffSegmentsPlugIn.Match-segments-if-all-points-are-within-a-Distance-Tolerance = \#T\:
jump.plugin.qa.DiffSegmentsPlugIn.The-Distance-Tolerance-specifies-how-close-segments-must-be-to-match = \#T\:
jump.plugin.qa.DiffSegmentsPlugIn.Unmatched-Segments-in-Layer = \#T\:
jump.plugin.qa.DiffSegmentsPlugIn.Use-Distance-Tolerance = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Cache-features = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Caching = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Dataset = \#T\:Dataset
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Geometry = \#T\:Geometry
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Identifier = \#T\:Identifier
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Max-Features = \#T\:Max Features
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Prevents-unnecessary-queries-to-the-datastore = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Required-field-missing-Dataset = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Required-field-missing-Geometry = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Retrieving-list-of-datasets = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Retrieving-list-of-geometry-attributes = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.The-recommended-setting-is-to-leave-this-checked = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPanel.Where = \#T\:Where
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPlugIn.Add-Datastore-Layer = \#T\:
jump.workbench.ui.plugin.datastore.AddDatastoreLayerPlugIn.Creating-layer = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionDescriptorPanel.Driver = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionDescriptorPanel.Name = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionDescriptorPanel.Required-field-missing = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionManagerPanel.Add = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionManagerPanel.Add-Connection = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionManagerPanel.Connect = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionManagerPanel.Copy = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionManagerPanel.Copy-Connection = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionManagerPanel.Delete = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionManagerPanel.Disconnect = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionManagerPanel.No-datastore-drivers-are-loaded = \#T\:
jump.workbench.ui.plugin.datastore.ConnectionManagerToolboxPlugIn.Connection-Manager = \#T\:
com.vividsolutions.jump.workbench.ui.plugin.datastore.ConnectionPanel.Connection = \#T\:Connection
com.vividsolutions.jump.workbench.ui.plugin.datastore.ConnectionPanel.Connection-Manager = \#T\:
com.vividsolutions.jump.workbench.ui.plugin.datastore.ConnectionPanel.Required-field-missing-Connection = \#T\:
jump.workbench.ui.plugin.datastore.PasswordPrompter.Enter-password-for = \#T\:
jump.workbench.ui.plugin.datastore.PasswordPrompter.OK = \#T\:
jump.workbench.ui.plugin.datastore.PasswordPrompter.Password = \#T\:
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.Fence = \#T\:
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.Fence-Help = \#T\:Insert a tag which will be replaced by the geometry of the fence (Srid can be changed)
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.Layer-Name = \#T\:Layer Name
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.Max-Features = \#T\:
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.New-Query-Layer = \#T\:
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.Query = \#T\:Query
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.Required-field-missing-Query = \#T\:
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.Selection = \#T\:
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.Selection-Help = \#T\:Insert a tag which will be replaced by the geometry of the selection (Srid can be changed)
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.View = \#T\:
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPanel.View-Help = \#T\:Insert a tag which will be replaced by the geometry of the view (Srid can be changed)
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPlugIn.Run-Datastore-Query = ടാറ്റസ്റ്റോര് ചോദ്യം ഓടിക്കുക
jump.workbench.ui.plugin.datastore.RunDatastoreQueryPlugIn.features = \#T\:features
model.FenceLayerFinder.fence = \#T\:Fence
model.MeasureLayerFinder.measure = \#T\:Measure
model.StandardCategoryNames.qa = \#T\:QA
model.StandardCategoryNames.reference = \#T\:Reference
model.StandardCategoryNames.result = \#T\:Result
model.StandardCategoryNames.result-reference = \#T\:Result-Reference
model.StandardCategoryNames.result-subject = \#T\:Result-Subject
model.StandardCategoryNames.subject = \#T\:Subject
model.StandardCategoryNames.system = \#T\:System
model.StandardCategoryNames.working = \#T\:Working
org.openjump.core.rasterimage.AddRasterImageLayerWizard.Sextante-Raster-Image = Sextante രാസ്ടര്
org.openjump.core.rasterimage.AddRasterImageLayerWizard.can-not-determine-image-dimensions = ചിത്രത്തിന്റെ അളവ് തിരിച്ചറിയാന് സാധിക്കുന്നില്ല
org.openjump.core.rasterimage.AddRasterImageLayerWizard.no-worldfile-found = വേള്ഡ് ഫയല് കാണ്മാനില്ല
org.openjump.core.rasterimage.AddRasterImageLayerWizard.no-worldfile-found-message =\#T\: no worldfile found for file: ''{0}''
org.openjump.core.rasterimage.AddRasterImageLayerWizard.message=\#T\:Worldfile created for file:''{0}''
org.openjump.core.rasterimage.SelectRasterImageFilesPanel.Select-Raster-Image = രാസ്ടര് തിരഞ്ഞെടുക്കുക
org.openjump.core.rasterimage.SelectRasterImageFilesPanel.supported-raster-image-formats = പിന്തുണയുള്ള രാസ്ടര് രൂപകല്പനകള്
org.openjump.core.ui.io.file.DataSourceFileLayerLoader.charset = Jeu de caractères
org.openjump.core.ui.plugin.customize.BeanToolsPlugIn.Bean-Tools = ബീന് ഷെല് ഉപകരണങ്ങള്
org.openjump.core.ui.plugin.customize.PythonToolsPlugIn.Python-Console-and-Tools = പയ്തന് കന്സോലും ഉപകരണങ്ങളും
org.openjump.core.ui.plugin.datastore.AddDataStoreLayerWizard = ടാറ്റ സ്റ്റോര് ലയെര്
org.openjump.core.ui.plugin.datastore.AddDataStoreLayerWizardPanel = ടാറ്റ സ്റ്റോര് ലയെര്
org.openjump.core.ui.plugin.datastore.AddDataStoreLayerWizardPanel.instructions = തുറക്കേണ്ട ലയെരുകളുടെ പരിമിതികള് തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerWizard = \#T\:Writable Data Store
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerWizardPanel = \#T\:Writable Data Store Layer
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerWizardPanel.instructions = \#T\:Select parameters to create a layer from datastore
org.openjump.core.ui.plugin.datastore.EditDataStoreQueryPlugIn.Edit-datastore-query = T\:Edit Datastore Query
org.openjump.core.ui.plugin.datastore.EditDataStoreQueryPlugIn.Exactly-one-datastore-query-layer-must-be-selected = T\:Exactly one datastore query must be selected
org.openjump.core.ui.plugin.datastore.RefreshDataStoreQueryPlugIn.Only-datastore-query-layers-must-be-selected = T\:Only datastore query layers must be selected
org.openjump.core.ui.plugin.datastore.RefreshDataStoreQueryPlugIn.Refresh-datastore-query = T\:Refresh Datastore Query
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDataSourceQueryChooser.error = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDataSourceQueryChooser.postgis-table=#T:PostGIS Table (legacy)
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDataSourceQueryChooser.unique-identifier-is-needed = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDataSourceQueryChooser.no-connection-choosen = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDataSourceQueryChooser.no-table-choosen = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDataSourceQueryChooser.selected-connection-is-not-postgis = \#T\:
org.openjump.core.ui.plugin.datastore.DataStoreSaveDriverPanel.create-database-primary-key = \#T\:Create a database Primary Key
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.create-or-replace = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.create-or-replace-help-string = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.insert-only = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.insert-only-help-string = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.insert-or-update = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.insert-or-update-help-string = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.insert-update-or-delete = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.insert-update-or-delete-help-string = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.primary_key = \#T\:Primary Key
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.replace-table-rows = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.replace-table-rows-help-string = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.PostGISSaveDriverPanel.select-save-method = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.SaveToPostGISDataSource.overwrite-dialog-message = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.SaveToPostGISDataSource.overwrite-dialog-title = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.SaveToPostGISDataSource.schema-mismatch-dialog-message = \#T\:
org.openjump.core.ui.plugin.datastore.postgis.SaveToPostGISDataSource.schema-mismatch-dialog-title = \#T\:
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerPanel.missing-dataset-name = \#T\:Missing Dataset Name
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerPanel.missing-geometry-column-name = \#T\:Missing Geometry Column Name
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerPanel.missing-pk-name = \#T\:Missing Primary Key Name
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerPanel.limit-to-view = \#T\:Limit to view
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerPanel.limited-updates-to-the-viewport = \#T\:Limit updates to the viewport
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerPanel.manage-conflicts = \#T\:Manage conflicts
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerPanel.manage-conflicts-tooltip = \#T\:If not checked local changes will overwrite remote values
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerPanel.retrieving-list-of-geometry-attributes = \#T\:Retrieving list of geometry attributes
org.openjump.core.ui.plugin.datastore.AddWritableDataStoreLayerPanel.retrieving-list-of-tables = \#T\:Retrieving list of tables
org.openjump.core.ui.plugin.datastore.WritableDataStoreDataSource.overwrite-dialog-message = \#T\:Table already exists. Do you really want to overwrite it ?
org.openjump.core.ui.plugin.datastore.WritableDataStoreDataSource.overwrite-dialog-title = \#T\:Overwrite
org.openjump.core.ui.plugin.datastore.postgis2.PostGISSaveDataSourceQueryChooser.error = \#T\:Error
org.openjump.core.ui.plugin.datastore.postgis2.PostGISSaveDataSourceQueryChooser.no-connection-choosen = \#T\:No connection has been choosen
org.openjump.core.ui.plugin.datastore.postgis2.PostGISSaveDataSourceQueryChooser.no-table-choosen = \#T\:No table has been choosen
org.openjump.core.ui.plugin.datastore.postgis2.PostGISSaveDataSourceQueryChooser.selected-connection-is-not-postgis = \#T\:Selected connection is not a PostGIS connection
org.openjump.core.ui.plugin.datastore.postgis2.PostGISSaveDataSourceQueryChooser.PostGIS-Table=#T:PostGIS Table (R/W)
org.openjump.core.ui.plugin.datastore.postgis2.PostGISSaveDriverPanel.title = \#T\:Save to PostGIS Table
org.openjump.core.ui.plugin.datastore.postgis2.PostGISSaveDriverPanel.create-database-primary-key = \#T\:Create a Primary Key column (gid) for this Table
org.openjump.core.ui.plugin.datastore.postgis2.PostGISSaveDriverPanel.write-3d-geometries = \#T\:Write 3d geometries
org.openjump.core.ui.plugin.datastore.transaction.DataStoreTransactionManagerPlugIn = \#T\:Transaction Manager
org.openjump.core.ui.plugin.datastore.transaction.Evolution.cannot-merge-non-consecutive-evolutions = \#T\:Cannot merge non consecutive evolutions
org.openjump.core.ui.plugin.datastore.transaction.Evolution.cannot-merge-2-creations = \#T\:Cannot merge two creations
org.openjump.core.ui.plugin.datastore.transaction.Evolution.cannot-merge-a-modification-with-a-creation = \#T\:Cannot merge a modification with a creation
org.openjump.core.ui.plugin.datastore.transaction.Evolution.cannot-merge-a-suppression-with-a-modification = \#T\:Cannot merge a suppression with a modification
org.openjump.core.ui.plugin.datastore.transaction.Evolution.cannot-merge-a-suppression-with-a-suppression = \#T\:Cannot merge a suppression with another suppression
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.commit = \#T\:commit
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.commit-tooltip = \#T\:Commit transaction to datastore
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.inspect = \#T\:Inspect
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.inspect-tooltip = \#T\:Inspect transaction content
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.update = \#T\:Update layer
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.update-tooltip = \#T\:Update layers from data store
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.layer-with-irrelevant-datastore-datasource = \#T\:DataStoreTransactionManager contains a layer with an irrelevant DataStoreDataSource
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.creations = \#T\:{0} creation(s)
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.modifications = \#T\:{0} modification(s)
org.openjump.core.ui.plugin.datastore.transaction.TransactionManagerPanel.suppressions = \#T\:{0} suppression(s)
org.openjump.core.ui.plugin.edit.ClipToFencePlugIn.Clip-Map-to-Fence = ആവൃതിയിലേക്ക് മാപ്പ് കത്രിക്കുക
org.openjump.core.ui.plugin.edit.ClipToFencePlugIn.Fence-layer-must-be-present = ആവൃതി ലയെര് നിര്ബന്ധമായും ഉണ്ടായിരിക്കണം
org.openjump.core.ui.plugin.edit.ClipToFencePlugIn.This-operation-is-not-undoable = ഇ പ്രവര്ത്തനം പൂര്വ സ്ഥിതിയെലെക്ക് മാറ്റാന് സാധ്യമല്ല .
org.openjump.core.ui.plugin.edit.ClipToFencePlugIn.Visible-Only-(-see-Warning-) = കാണാന് പറ്റുന്നത് (താക്കീതു നോക്കുക)
org.openjump.core.ui.plugin.edit.ClipToFencePlugIn.description = All vector layers will be clipped to the Fence. Warning\: if your task loaded with layers not visible, they have not be loaded and therefore will not be clipped.
org.openjump.core.ui.plugin.edit.ClipToFencePlugIn.duplicate-attribute-names-are-not-supported = \#T\:Duplicate attribute names are not supported
org.openjump.core.ui.plugin.edit.ClipToFencePlugIn.unprocessed-layers = \#T\:Unprocessed layers\:
org.openjump.core.ui.plugin.edit.CopyBBoxPlugin.name = ബൌണ്ടിംഗ് ബോക്സ് ക്ലിപ്പ് ബോര്ഡിലേക്ക് പകര്ത്തുക
org.openjump.core.ui.plugin.edit.InvertSelectionPlugIn.invert-selection = തിരഞ്ഞെടുത്തവ തലകീഴാക്കുക
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn = തിരഞ്ഞെടുത്ത ഐറ്റത്തിന്റെ പകര്പ്പുണ്ടാക്കുക
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn.attribute-schemas-are-different = ആട്രിബൂട്ട് സ്ക്കീമയില് വ്യത്യാസമുണ്ട് \!
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn.copy-only-geometry = ക്ഷേത്രഗണിതം മാത്രം പകര്ത്തിയാല് മതിയോ?
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn.item = ഐറ്റം
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn.new = പുതിയ
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn.no-replication-because-different-attribute-schema = വേറെ ആട്രിബൂട്ട് സ്ക്കീമ ആയതു കൊണ്ട് പകര്പ്പുണ്ടാക്കാന് സാധ്യമല്ല\!
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn.on-ok-attributes-will-be-lost-on-cancel-items-are-not-copied = On OK attributes will be lost. On CANCEL items are not copied.
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn.otherwise-select-target-layer = അല്ലെങ്കില് വേറെ ടാര്ഗറ്റ് ലയെര് തിരഞ്ഞെടുക്കുകr.
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn.replicate-to-new-layer = പുതിയ ലയെരിന്റെ പകര്പ്പുണ്ടാക്കണമോ?
org.openjump.core.ui.plugin.edit.ReplicateSelectedItemsPlugIn.replicates-selected-items-if-all-have-same-attribute-schema = എല്ലാത്തിനും ഒരേ ആട്രിബൂട്ട് സ്ക്കീമ ആണെങ്കില് തിരഞ്ഞെടുത്ത ഐറ്റങ്ങളുടെ പകര്പ്പുണ്ടാക്കുക.
org.openjump.core.ui.plugin.edit.SelectAllLayerItemsPlugIn.layer-items = ലയെര് ഐറ്റങ്ങള്
org.openjump.core.ui.plugin.edit.SelectAllLayerItemsPlugIn.select-current-layer-items = ഇപ്പോഴത്തെ ലയെര് ഐറ്റങ്ങള് തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.edit.SelectAllLayerItemsPlugIn.select-all-items-of-selected-layers = ലയെര് ഐറ്റം തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.edit.SelectAllLayerItemsPlugIn.selected-items = തിരഞ്ഞെടുത്ത ഐറ്റങ്ങള്
org.openjump.core.ui.plugin.edit.SelectAllModifiedFeaturesPlugIn.select-all-modified-features = ഭേദഗതി വരുത്തിയ എല്ലാ ഫിച്ചരുകളും തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.edit.SelectByTypePlugIn.Empty-Geometries = ശൂന്യമായ ക്ഷേത്രഗണിതം
org.openjump.core.ui.plugin.edit.SelectByTypePlugIn.On-selected-layers-only = തിരഞ്ഞെടുത്ത ലയെരുകളില് മാത്രം
org.openjump.core.ui.plugin.edit.SelectByTypePlugIn.Select-by-Geometry-Type = ക്ഷേത്രഗണിതത്തിന്റെ ഇനം അനുസരിച്ച് തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.edit.SelectByTypePlugIn.Select-only-these-types = ഈ വിഭാഗം മാത്രം തിരഞ്ഞെടുക്കുക\:
org.openjump.core.ui.plugin.edit.SelectItemsByCirlceFromSelectedLayersPlugIn.cirlce-diameter = വൃത്തത്തിന്റെ വ്യാസം
org.openjump.core.ui.plugin.edit.SelectItemsByCirlceFromSelectedLayersPlugIn.select-features-by-cirlce-from-selected-layers = തിരഞ്ഞെടുത്ത ലയെരുകളില് നിന്നും വൃത്തം ഉപയോകിച്ച് ഇനം തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.edit.SelectItemsByCirlceFromSelectedLayersPlugIn.select-features-within-a-circle-from-currently-selected-layers = ഇപ്പോള് തിരഞ്ഞെടുത്ത ലയെരിന്റെ ഒരു വൃത്തത്തിനുള്ളില് വരുന്ന ഐറ്റങ്ങള് തിരഞ്ഞെടുക്കുക.
org.openjump.core.ui.plugin.edit.SelectItemsByFenceFromSelectedLayersPlugIn.select-features-by-polygon-from-selected-layers = തിരഞ്ഞെടുത്ത ലയെരുകളില് നിന്നും ആവൃതി ഉപയോകിച്ച് ഇനം തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.edit.helpclassesselection.DrawFenceTool.layer-items = ലയെര് ഐറ്റങ്ങള്
org.openjump.core.ui.plugin.edit.helpclassesselection.DrawFenceTool.selected-items = തിരഞ്ഞെടുത്ത ഐറ്റങ്ങള്
org.openjump.core.ui.plugin.edit.helpclassesselection.SelectItemsByCircleTool.layer-items = ലയെര് ഐറ്റങ്ങള്
org.openjump.core.ui.plugin.edit.helpclassesselection.SelectItemsByCircleTool.selected-items = തിരഞ്ഞെടുത്ത ഐറ്റങ്ങള്
org.openjump.core.ui.plugin.edittoolbox.ConstrainedMoveVertexTool.Constrained-Move-Vertex = ശീര്ഷം അപ്രതിരോദ്യമാംവണ്ണം പ്രേരിപ്പിച്ചു നീക്കുക
org.openjump.core.ui.plugin.edittoolbox.ConstrainedMoveVertexTool.No-editable-selection-handles-here = ഗ്രന്ഥപരിശോധന നടത്താന് കഴിയുന്ന ഒന്നും ഇല്ല.
org.openjump.core.ui.plugin.edittoolbox.DrawConstrainedArcPlugIn.Error-See-Output-Window = തെറ്റ് \: ഔട്പുട്ട് വിന്ഡോ കാണുക
org.openjump.core.ui.plugin.edittoolbox.DrawConstrainedCirclePlugIn.Error-See-Output-Window = തെറ്റ് \: ഔട്പുട്ട് വിന്ഡോ കാണുക
org.openjump.core.ui.plugin.edittoolbox.DrawConstrainedLineStringPlugIn.Error-See-Output-Window = തെറ്റ് \: ഔട്പുട്ട് വിന്ഡോ കാണുക
org.openjump.core.ui.plugin.edittoolbox.DrawConstrainedPolygonPlugIn.Constraints = Constraints
org.openjump.core.ui.plugin.edittoolbox.DrawConstrainedPolygonPlugIn.Error-See-Output-Window = തെറ്റ് \: ഔട്പുട്ട് വിന്ഡോ കാണുക
org.openjump.core.ui.plugin.edittoolbox.Information = വിവരങ്ങള്
org.openjump.core.ui.plugin.edittoolbox.cursortools.AutoCompletePolygonCursorTool.Auto-Complete-Polygon = ബഹുഭുജക്ഷേത്രം താനേ പൂര്ത്തിയാക്കുക
org.openjump.core.ui.plugin.edittoolbox.cursortools.AutoCompletePolygonCursorTool.Can-not-add-polygon = ബഹുഭുജക്ഷേത്രം ചേര്ക്കാന് സാധ്യമല്ല
org.openjump.core.ui.plugin.edittoolbox.cursortools.CutPolygonTool.Create-Cookie-Cut = Create Cookie മുറിക്കുക
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawCircleWithGivenRadiusTool.Circle-Accuracy = വൃത്തത്തിന്റെ ശരിയായ ഗുണ നിലവാരം
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawCircleWithGivenRadiusTool.Cirlce-Radius = വൃത്തത്തിന്റെ വ്യാസാര്ദ്ധം
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawCircleWithGivenRadiusTool.Draw-circle-with-given-radius-and-center = തന്നിരിക്കുന്ന വ്യാസാര്ദ്ധവും നടുവും ഉപയോഗിച്ച് വൃത്തം വരക്കുക.
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawCircleWithGivenRadiusTool.Draws-a-circle-by-specifiying-the-radius-and-the-circle-accuracy-and-the-centre-position-by-mouse-click = മൗസ് ക്ലിക്ക് വഴി കിട്ടിയ വ്യാസാര്ദ്ധവും നടുവും ശരിയായ ഗുണ നിലവാരം ഉപയോഗിച്ച് വൃത്തം വരക്കുക.
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawCircleWithGivenRadiusTool.Draws-a-circle-by-specifiying-the-radius-the-number-of-segments-per-circle-quarter-and-the-centre-position-by-mouse-click = മൗസ് ക്ലിക്ക് വഴി കിട്ടിയ വ്യാസാര്ദ്ധവും വൃത്തത്തിന്റെ നാലില് ഒരു ഭാഗവും നാട് ബിന്ദുവും ഉപയോഗിച്ച് വൃത്തം വരക്കുക.
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawCircleWithGivenRadiusTool.Number-of-segments-per-circle-quarter = വൃത്തത്തിന്റെ നാലില് ഒരു ഭാഗത്തില് ഉള്ള കഷണം.
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawCircleWithGivenRadiusTool.too-small-tolerance-reset-to-300-segments = വളരെ ചെറിയ ടോളറന്സ് ആണെങ്കില് മുന്നൂര് കഷണം ആകുന്നതാണ്
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawConstrainedArcTool.Draw-Constrained-Arc = അപ്രതിരോദ്യമാംവണ്ണം പ്രേരിപ്പിക്കുന്ന അര്ദ്ധവൃത്തം വരക്കുക
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawConstrainedArcTool.The-arc-must-have-at-least-3-points = അര്ദ്ധവൃതത്തില് കുറഞ്ഞത് മൂന്ന് ബിന്ധുവെങ്കിലും ഉണ്ടായിരിക്കണം.
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawConstrainedCircleTool.Draw-Constrained-Circle = അപ്രതിരോദ്യമാംവണ്ണം പ്രേരിപ്പിക്കുന്ന വൃത്തം വരക്കുക.
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawConstrainedCircleTool.The-circle-must-have-at-least-2-points = വൃത്തത്തില് കുറഞ്ഞത് രണ്ടു ബിന്ധുവെങ്കിലും ഉണ്ടായിരിക്കണം.
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawConstrainedLineStringTool.Draw-Constrained-LineString = അപ്രതിരോദ്യമാംവണ്ണം പ്രേരിപ്പിക്കുന്ന ലൈന് സ്ട്രിംഗ് വരക്കുക.
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawConstrainedLineStringTool.The-linestring-must-have-at-least-2-points = ലൈന് സ്തൃങ്ങില് കുറഞ്ഞത് രണ്ടു ബിന്ധുവെങ്കിലും ഉണ്ടായിരിക്കണം.
org.openjump.core.ui.plugin.edittoolbox.cursortools.DrawConstrainedPolygonTool.Draw-Constrained-Polygon = അപ്രതിരോദ്യമാംവണ്ണം പ്രേരിപ്പിക്കുന്ന ബഹുഭുജക്ഷേത്രം വരക്കുക.
org.openjump.core.ui.plugin.edittoolbox.cursortools.FillPolygonTool = \#T\:Fill Polygon
org.openjump.core.ui.plugin.edittoolbox.cursortools.FillPolygonTool.clicked-area-is-not-closed = \#T\:Clicked area is not closed \!
org.openjump.core.ui.plugin.edittoolbox.cursortools.FillPolygonTool.computing = \#T\:Computing
org.openjump.core.ui.plugin.edittoolbox.cursortools.FillPolygonTool.do-you-want-to-extend-search-out-of-the-view = \#T\:Do you want to extend search out of the view ?
org.openjump.core.ui.plugin.edittoolbox.cursortools.FillPolygonTool.interrupted-operation = \#T\:Interrupted operation
org.openjump.core.ui.plugin.edittoolbox.cursortools.RotateSelectedItemTool.Rotate-Selected-Item = തിരഞ്ഞെടുത്ത ഐറ്റം കറക്കുക
org.openjump.core.ui.plugin.edittoolbox.cursortools.RotateSelectedItemTool.Set-Rotation-Center = \#T\:Set Rotation Center
org.openjump.core.ui.plugin.edittoolbox.cursortools.ScaleSelectedItemsTool.Scale-Selected-Items = തിരഞ്ഞെടുത്ത ഐറ്റം സ്കയില് ചെയ്യുക
org.openjump.core.ui.plugin.edittoolbox.cursortools.ScaleSelectedItemsTool.keep-aspect-ratio = \#T\:Keep Aspect Ratio
org.openjump.core.ui.plugin.edittoolbox.cursortools.ScaleSelectedItemsTool.scale-factor = സ്കയില് ഫാക്ടര്
org.openjump.core.ui.plugin.edittoolbox.cursortools.SelectOneItemTool.Select-One-Item = ഒരു ഐറ്റം തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.edittoolbox.cursortools.angle = കോണം
org.openjump.core.ui.plugin.edittoolbox.cursortools.area = ഉള്ളളവ്
org.openjump.core.ui.plugin.edittoolbox.cursortools.degrees = ഡിഗ്രീസ്
org.openjump.core.ui.plugin.edittoolbox.cursortools.length = നീളം
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Angle = കോണം
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Angle-Shift-to-activate = കോണം (ഉത്സാഹപ്പെടുത്താന് വേണ്ടി ഷിഫ്റ്റ് ചെയ്യുക)
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Constrain-angle-by-steps-of = സ്ടെപ്പുകള് വച്ച് കോണം അപ്രതിരോദ്യമാംവണ്ണം പ്രേരിപ്പിക്കുക
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Constrain-angle-to-45-degree-increments = കോണം 45 ഡിഗ്രി കൂട്ടുക
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Constrain-length-to-nearest = അടുത്ത മൂല്യത്തിലേക്ക് നീളം കൂട്ടുക
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Constrain-to-absolute-angle = കോണം പരമം ചെയ്യുക
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Constrain-to-angle = കോണം അപ്രതിരോദ്യമാംവണ്ണം പ്രേരിപ്പിക്കുക
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Constrain-to-relative-angle = Constrain to relative angle
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Incremental-Angle = കൂടുന്നതായ കോണം
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Incremental-Angle-Shift-to-activate = കൂടുന്നതായ കോണം (ഉത്സാഹപ്പെടുത്താന് വേണ്ടി Shift ചെയ്യുക)
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.Length = നീളം
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.by-dividing-360-degrees-into = by dividing 360 degrees into\:
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.degree = ഡിഗ്രി
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.degrees = ഡിഗ്രികള്
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.invalid-numbers = ശരിയല്ലാത്ത അക്കങ്ങള്
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.is-too-small-must-be-3-or-greater = വളരെ ചെറുതാണ് ; നിര്ബന്ധമായും മൂന്നോ അതില് കൂടുതലോ വേണം.
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.model-units = മോഡല് യൂണിറ്റുകള്
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.negative-numbers-not-allowed-for-length = ഖണ്ഡന അക്കങ്ങള് നീളമായി അനുവദിക്കുന്നതല്ല .
org.openjump.core.ui.plugin.edittoolbox.tab.ConstraintsOptionsPanel.parts = ഭാഗങ്ങള്
org.openjump.core.ui.plugin.file.DataSourceQueryChooserOpenWizard.no-queries-found = ഖ്വരി ഒന്നും കാണ്മാനില്ല
org.openjump.core.ui.plugin.file.DataSourceQueryChooserOpenWizard.query-not-readable = ഖ്വരി വായിക്കാന് പറ്റുന്നതല്ല
org.openjump.core.ui.plugin.file.FindFile.choose-current-location-of = \#T\:
org.openjump.core.ui.plugin.file.InstallDummyReaderPlugIn.dummy-reader = \#T\:
org.openjump.core.ui.plugin.file.OpenFilePlugIn = ഫയല് തുറക്കുക ...
org.openjump.core.ui.plugin.file.OpenFilePlugIn.file-does-not-exist = ഫയല് നിലവില് ഇല്ല
org.openjump.core.ui.plugin.file.OpenProjectPlugIn = പ്രൊജക്റ്റ് തുറക്കുക ...
org.openjump.core.ui.plugin.file.OpenProjectPlugIn.file-does-not-exist = ഫയല് നിലവില് ഇല്ല
org.openjump.core.ui.plugin.file.OpenRecentPlugIn = ഇക്കഴിഞ്ഞതു തുറക്കുക
org.openjump.core.ui.plugin.file.OpenRecentProjectPlugIn.No-Tasks-on-Recent-List = ഇക്കഴിഞ്ഞ പട്ടികയില് ഒരു പ്രൊജക്റ്റ്ഉം ഇല്ല
org.openjump.core.ui.plugin.file.OpenRecentProjectPlugIn.Open-Recent-Task = ഇക്കഴിഞ്ഞ പ്രൊജക്റ്റ് തുറക്കുക
org.openjump.core.ui.plugin.file.OpenWizardPlugIn = തുറക്കുക ...
org.openjump.core.ui.plugin.file.SaveImageAsSVGPlugIn.large-dataset-message = \#T\:Your view contains more than 100 000 features.\n\
It may take a few minutes to create the file.\n\
Do you really want to continue ?
org.openjump.core.ui.plugin.file.SaveImageAsSVGPlugIn.save-image-in-svg-format = വ്യൂ SVG ആയി സംബരിച്ചുവേക്കുക
org.openjump.core.ui.plugin.file.SaveImageAsSVGPlugIn.warning-message-title = \#T\:Message
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.a-layer-without-datasource-must-exist = \#T\:A layer without datasource must exist
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.directory-chooser = \#T\:Save newly created layers in the following directory
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.do-not-save = \#T\: Do not save those layers on the Hard Drive
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.every-layer-has-a-datasource = \#T\:Every layer already has a datasource
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.hover-the-label-to-see-the-list = \#T\:(hover the label to see the list)
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.layers-without-datasource = \#T\:There are {0} newly created layers without datasource
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.layers-without-datasource-management = \#T\:Layers without datasource management
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.save-as-jml = \#T\:Save them as JML files
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn.save-as-shp = \#T\:Save them as shapefiles
org.openjump.core.ui.plugin.file.SaveLayersWithoutDataSourcePlugIn = \#T\:Save layers without datasource
org.openjump.core.ui.plugin.file.open.ChooseProjectPanel = \#T\:
org.openjump.core.ui.plugin.file.open.ChooseProjectPanel.instructions = \#T\:
org.openjump.core.ui.plugin.file.open.ChooseProjectPanel.new-project = \#T\:New project
org.openjump.core.ui.plugin.file.open.ChooseProjectPanel.existing-project = \#T\:Existing project
org.openjump.core.ui.plugin.file.open.OpenDataTypePanel = ടാറ്റയുടെ തരം തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.file.open.OpenDataTypePanel.instructions = ടാറ്റയുടെ തരം തിരഞ്ഞെടുത്തതിനു ശേഷം നെക്സ്റ്റ് അമര്ത്തുക .
org.openjump.core.ui.plugin.file.open.OpenFileWizard = ഫയല്
org.openjump.core.ui.plugin.file.open.OpenProjectWizard = പ്രൊജക്റ്റ്
org.openjump.core.ui.plugin.file.open.OpenProjectWizard.could-not-open-project-file-{0}-with-error-{1} = \#T\: Loading project file ''{0}'' failed with the error\:\n\
\ {1}.
org.openjump.core.ui.plugin.file.open.OpenProjectWizard.datasource-not-found = \#T\:DataSource not found for ''{0}''
org.openjump.core.ui.plugin.file.open.OpenProjectWizard.opening-datasource-{0}-failed-with-error = \#T\:Opening datasource ''{0}'' failed with error\:
org.openjump.core.ui.plugin.file.open.OpenProjectWizard.click-yes-to-continue-or-no-to-remove-layer = \#T\:Click "Yes" to continue or "No" to remove layer.
org.openjump.core.ui.plugin.file.open.SelectFileLoaderPanel = ഫയലിന്റെ തരങ്ങള് തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.file.open.SelectFileLoaderPanel.file-type = ഫയലിന്റെ തരം
org.openjump.core.ui.plugin.file.open.SelectFileLoaderPanel.instructions = ഓരോ ഫയല് എക്സ്റ്റന്ഷന് വേണ്ടി തരം തിരഞ്ഞെടുക്കുകയോ ഒറ്റയായ ഫയല് തിരഞ്ഞെടുക്കുകയോ ചെയ്യുക
org.openjump.core.ui.plugin.file.open.SelectFileLoaderPanel.use-same-settings-for = അതെ ക്രമീകരണം തന്നെ ഏതിനും ഉപയോഗിക്കുക
org.openjump.core.ui.plugin.file.open.SelectFileOptionsPanel = ഫയല് ഇഷ്ടമുള്ളത് തിരഞ്ഞെടുക്കല്
org.openjump.core.ui.plugin.file.open.SelectFileOptionsPanel.file-type = ഫയലിന്റെ തരം
org.openjump.core.ui.plugin.file.open.SelectFileOptionsPanel.instructions = എല്ലാ ഫയലിനും വേണ്ടിയുള്ള ഓപ്ഷനുകള് തിരഞ്ഞെടുക്കുകയോ ഒറ്റയായ ഫയല് തിരഞ്ഞെടുക്കുകയോ ചെയ്യുക
org.openjump.core.ui.plugin.file.open.SelectFileOptionsPanel.use-same-settings-for = അതെ ക്രമീകരണം തന്നെ ഏതിനും ഉപയോഗിക്കുക
org.openjump.core.ui.plugin.file.open.SelectFilesPanel = ഫയലുകള് തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.file.open.SelectFilesPanel.all-files = എല്ലാ ഫയലുകളും
org.openjump.core.ui.plugin.file.open.SelectFilesPanel.all-supported-files = \#T\:All supported file types
org.openjump.core.ui.plugin.file.open.SelectFilesPanel.archived-files = \#T\:Archive files containing known file types
org.openjump.core.ui.plugin.file.open.SelectFilesPanel.compressed-files = \#T\:Compressed single file e.g. data.shp.gz
org.openjump.core.ui.plugin.file.open.SelectFilesPanel.instructions = നിലവിലുള്ള പ്രൊജക്റ്റ്ലേക്ക് കൊണ്ടുവരേണ്ട ഫയലുകള് തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.file.open.SelectProjectFilesPanel.all-files = എല്ലാ ഫയലുകളും
org.openjump.core.ui.plugin.file.open.SelectProjectFilesPanel.instructions = തുറക്കേണ്ട പ്രൊജക്റ്റ് തിരഞ്ഞെടുക്കുക
org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.Add-MrSID-Layer = \#T\:Add MrSID Layer
org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.Error-See-Output-Window = \#T\:Error\: see output window
org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.files = \#T\:files
org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.not-installed = \#T\:not installed.
org.openjump.core.ui.plugin.layer.AddSIDLayerPlugIn.open-MrSID-file = \#T\:open MrSID file
org.openjump.core.ui.plugin.layer.ChangeLayerableName.Rename = തിരഞ്ഞെടുത്ത ലയെരിന്റെ നാമം മാറ്റുക
org.openjump.core.ui.plugin.layer.ChangeSRIDPlugIn.Change-SRID = \#T\:Set SRID
org.openjump.core.ui.plugin.layer.CombineSelectedLayers = തിരഞ്ഞെടുത്ത ലയെരുകള് ഒന്നിപ്പിക്കുക
org.openjump.core.ui.plugin.layer.ExtractLayerInFence.Extract-Layer-in-Fence = ആവൃതിയിലുള്ള ലയെരുകള് പറിച്ചെടുക്കുക
org.openjump.core.ui.plugin.layer.ExtractLayersByAttribute.Attribute = \#T\:Attribute
org.openjump.core.ui.plugin.layer.ExtractLayersByAttribute.Extract = \#T\:Extract
org.openjump.core.ui.plugin.layer.ExtractLayersByAttribute.Extract-Layer-by-Attribute = ആട്രിബൂട്ട് അനുസരിച്ച് ലയെരുകള് പറിച്ചെടുക്കുക
org.openjump.core.ui.plugin.layer.ExtractLayersByAttribute.Extracts-layers-using-a-common-attribute = \#T\:Extracts layers using a common attribute
org.openjump.core.ui.plugin.layer.ExtractLayersByAttribute.LAYER = \#T\:
org.openjump.core.ui.plugin.layer.ExtractLayersByAttribute.TEXT = \#T\:
org.openjump.core.ui.plugin.layer.ExtractLayersByAttribute._EMPTY_ = \#T\:
org.openjump.core.ui.plugin.layer.ExtractLayersByAttribute._NULL_ = _NULL_
org.openjump.core.ui.plugin.layer.ExtractLayersByGeometry.Extract-Layers-by-Geometry-Type = ക്ഷേത്രഗണിതത്തിന്റെ ഇനം അനുസരിച്ച് ലയെരുകള് പറിച്ചെടുക്കുക
org.openjump.core.ui.plugin.layer.ExtractLayersByGeometry.Only-one-geometry-type-found = \#T\:Only one geometry type found
org.openjump.core.ui.plugin.layer.ExtractLayersByGeometry.area = \#T\:area
org.openjump.core.ui.plugin.layer.ExtractLayersByGeometry.empty = \#T\:empty
org.openjump.core.ui.plugin.layer.ExtractLayersByGeometry.line = \#T\:line
org.openjump.core.ui.plugin.layer.ExtractLayersByGeometry.point = \#T\:point
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.DataSource-Class = \#T\:DataSource Class
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Geometry-Type = \#T\:Geometry Type
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Info = \#T\:Info
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Layer-Name = \#T\:Layer Name
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Layer-Properties = \#T\:Layer Properties
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Multiple-Source-Types = \#T\:Multiple Source Types
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Multiple-Sources = \#T\:Multiple Sources
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Multiple-geometry-types = \#T\:Multiple geometry types
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.No-Features = \#T\:No Features
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Not-Saved = \#T\:Not Saved
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Null-Geometries = \#T\:Null Geometries
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Number-of-Attributes = \#T\:Number of Attributes
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Number-of-Features = \#T\:Number of Features
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Number-of-Layers = \#T\:Number of Layers
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Number-of-Points = \#T\:Number of Points
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Proportional-Transparency-Adjustment = \#T\:Proportional Transparency Adjustment
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Source-Path = \#T\:Source Path
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.Styles = \#T\:Styles
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.average-per-layer = \#T\:average per layer
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.extent = \#T\:Extent
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.xmax = \#T\:xMax
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.xmin = \#T\:xMin
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.ymax = \#T\:yMax
org.openjump.core.ui.plugin.layer.LayerPropertiesPlugIn.ymin = \#T\:yMin
org.openjump.core.ui.plugin.layer.SortCategoryAbstractPlugIn.Sort-Selected-Categories = തിരഞ്ഞെടുത്ത വര്ഗം ഇനം തിരിക്കുക
org.openjump.core.ui.plugin.layer.SortCategoryByFeaturesPlugIn.By-Featues = ഫിചെരുകള് അനുസരിച്ച്
org.openjump.core.ui.plugin.layer.SortCategoryByFeaturesPlugIn.By-Least-Number-of-Features = ഏറ്റവും കുറഞ്ഞ ഫീച്ചര് എണ്ണം വച്ച്
org.openjump.core.ui.plugin.layer.SortCategoryByFeaturesPlugIn.By-Most-Number-of-Features = ഏറ്റവും കൂടിയ ഫീച്ചര് എണ്ണം വച്ച്
org.openjump.core.ui.plugin.layer.SortCategoryByNamePlugIn.Ascending = കയറ്റം
org.openjump.core.ui.plugin.layer.SortCategoryByNamePlugIn.By-Name = നാമം അനുസരിച്ച്
org.openjump.core.ui.plugin.layer.SortCategoryByNamePlugIn.Descending = ഇറക്കം
org.openjump.core.ui.plugin.layer.SortCategoryRestorePlugIn.Restore = പൂര്വ്വസ്ഥിതിയില്ലാക്കുക
org.openjump.core.ui.plugin.layer.SortCategorySavePlugIn.Save = സംഭരിക്കുക
org.openjump.core.ui.plugin.layer.ToggleVisibilityPlugIn.Error-See-Output-Window = \#T\:Error\: see output window
org.openjump.core.ui.plugin.layer.ToggleVisibilityPlugIn = \#T\:Toggle Visibility
org.openjump.core.ui.plugin.layer.pirolraster.ChangeRasterImagePropertiesPlugIn.Change-Raster-Image-Properties = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.ChangeRasterImageStyleDialog.Change-RasterImage-Style-Dialog-intro-text = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.CopySelectedRasterImageLayersPlugIn.Copy-Selected-Raster-Image-Layers = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.CutSelectedRasterImageLayersPlugIn.Cut-Selected-Raster-Image-Layers = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.ExportEnvelopeAsGeometryPlugIn.Export-Envelope-As-Geometry = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.ExportEnvelopeAsGeometryPlugIn.Geometry = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.ExtractSelectedPartOfImage.Extract-Selected-Part-Of-Image = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.ExtractSelectedPartOfImage.fence-in-wrong-region = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.ExtractSelectedPartOfImage.part-of = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.PasteRasterImageLayersPlugIn.Clipboard-contents-must-be-layers = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.PasteRasterImageLayersPlugIn.Clipboard-must-not-be-empty = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.PasteRasterImageLayersPlugIn.Paste-Raster-Image-Layers = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.PasteRasterImageLayersPlugIn.paste-raster-layer = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageLayerControllPanel.Choose-transparent-color = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageLayerControllPanel.Do-you-want-a-color-to-be-transparent = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageLayerControllPanel.processing-speed = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageLayerControllPanel.set-overall-transparency = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.east-coordinate = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.maxx = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.maxy = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.minx = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.miny = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.north-coordinate = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.please-enter-the-image-path = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.south-coordinate = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.west-coordinate = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.worldfile-dialog = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.optimizedworldfile =\#T\: (the following coordinates are optimized for the current view)
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.warp=\#T\: Warp image to current view
org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.warp-tooltip= \#T\: Image width/height proportion will be lost.To restore it delete world file and reopen the image
org.openjump.core.ui.plugin.layer.pirolraster.RemoveSelectedRasterImageLayersPlugIn.Remove-Selected-Raster-Image-Layers = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.SaveRasterImageAsImagePlugIn.File-not-found = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.SaveRasterImageAsImagePlugIn.Save-Raster-Image-As-Image = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.ToggleRasterImageVisibility.Toggle-Raster-Image-Visibility = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.WarpImageToFencePlugIn.Warp-Image-To-Fence = \#T\:
org.openjump.core.ui.plugin.layer.pirolraster.ZoomToRasterImagePlugIn.Zoom-To-Raster-Image = \#T\:
org.openjump.core.ui.plugin.mousemenu.CenterZoomPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.DuplicateItemPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Change-Direction = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Edit-Selected-Side = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Front = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Length-must-be-greater-than-zero = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Make-Side-One = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.NA = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Selected-Side = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Side = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Zoom-To-Side = \#T\:
#T:org.openjump.core.ui.plugin.layer.ToggleVisibilityPlugIn.Error-See-Output-Window = Error\: see output window
#T:org.openjump.core.ui.plugin.layer.ToggleVisibilityPlugIn.Toggle-Visibility = Toggle Visibility
#T:org.openjump.core.ui.plugin.layer.pirolraster.ChangeRasterImagePropertiesPlugIn.Change-Raster-Image-Properties = Change Raster Image Properties
#T:org.openjump.core.ui.plugin.layer.pirolraster.ChangeRasterImageStyleDialog.Change-RasterImage-Style-Dialog-intro-text = With the controls of this dialog the raster image properties can be changed.
#T:org.openjump.core.ui.plugin.layer.pirolraster.CopySelectedRasterImageLayersPlugIn.Copy-Selected-Raster-Image-Layers = Copy Selected Raster Image Layers
#T:org.openjump.core.ui.plugin.layer.pirolraster.CutSelectedRasterImageLayersPlugIn.Cut-Selected-Raster-Image-Layers = Cut Selected Raster Image Layers
#T:org.openjump.core.ui.plugin.layer.pirolraster.ExportEnvelopeAsGeometryPlugIn.Export-Envelope-As-Geometry = Export Envelope As Geometry
#T:org.openjump.core.ui.plugin.layer.pirolraster.ExportEnvelopeAsGeometryPlugIn.Geometry = Geometry
#T:org.openjump.core.ui.plugin.layer.pirolraster.ExtractSelectedPartOfImage.Extract-Selected-Part-Of-Image = Extract Selected Part Of Image
#T:org.openjump.core.ui.plugin.layer.pirolraster.ExtractSelectedPartOfImage.fence-in-wrong-region = fence in wrong region
#T:org.openjump.core.ui.plugin.layer.pirolraster.ExtractSelectedPartOfImage.part-of = part-of
#T:org.openjump.core.ui.plugin.layer.pirolraster.PasteRasterImageLayersPlugIn.Clipboard-contents-must-be-layers = Clipboard contents must be layers
#T:org.openjump.core.ui.plugin.layer.pirolraster.PasteRasterImageLayersPlugIn.Clipboard-must-not-be-empty = Clipboard must not be empty
#T:org.openjump.core.ui.plugin.layer.pirolraster.PasteRasterImageLayersPlugIn.Paste-Raster-Image-Layers = Paste Raster Image Layers
#T:org.openjump.core.ui.plugin.layer.pirolraster.PasteRasterImageLayersPlugIn.paste-raster-layer = paste raster layer
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageLayerControllPanel.Choose-transparent-color = Choose transparent color
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageLayerControllPanel.Do-you-want-a-color-to-be-transparent = Do you want a color to be transparent
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageLayerControllPanel.processing-speed = processing speed
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageLayerControllPanel.set-overall-transparency = set overall transparency
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.east-coordinate = east coordinate
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.maxx = maxx
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.maxy = maxy
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.minx = minx
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.miny = miny
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.north-coordinate = north coordinate
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.please-enter-the-image-path = please enter the image path
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.south-coordinate = south coordinate
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.west-coordinate = west coordinate
#T:org.openjump.core.ui.plugin.layer.pirolraster.RasterImageWizardPanel.worldfile-dialog = worldfile dialog
#T:org.openjump.core.ui.plugin.layer.pirolraster.RemoveSelectedRasterImageLayersPlugIn.Remove-Selected-Raster-Image-Layers = Remove Selected Raster Image Layers
#T:org.openjump.core.ui.plugin.layer.pirolraster.SaveRasterImageAsImagePlugIn.File-not-found = File not found
#T:org.openjump.core.ui.plugin.layer.pirolraster.SaveRasterImageAsImagePlugIn.Save-Raster-Image-As-Image = Save Raster Image As Image
#T:org.openjump.core.ui.plugin.layer.pirolraster.ToggleRasterImageVisibility.Toggle-Raster-Image-Visibility = Toggle Raster Image Visibility
#T:org.openjump.core.ui.plugin.layer.pirolraster.WarpImageToFencePlugIn.Warp-Image-To-Fence = Warp Image To Fence
#T:org.openjump.core.ui.plugin.layer.pirolraster.ZoomToRasterImagePlugIn.Zoom-To-Raster-Image = Zoom To Raster Image
#T:org.openjump.core.ui.plugin.mousemenu.CenterZoomPlugIn = Center to click
#T:org.openjump.core.ui.plugin.mousemenu.DuplicateItemPlugIn=Clone Item
#T:org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Change-Direction = Change Direction
#T:org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Edit-Selected-Side = Edit Selected Side
#T:org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Front = Front
#T:org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Length-must-be-greater-than-zero = Length must be greater than zero
#T:org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Make-Side-One = Make Side One
#T:org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.NA = n/a
#T:org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Selected-Side = Selected Side
#T:org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Side = Side
#T:org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.Zoom-To-Side = Zoom To Side
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.angle = കോണം
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.interior-angle = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.is-an-invalid-double = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSideDialog.length = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSidePlugIn.Edit-Selected-Side = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSidePlugIn.Points-do-not-have-sides = \#T\:
org.openjump.core.ui.plugin.mousemenu.EditSelectedSidePlugIn.Select-only-one-part = \#T\:
org.openjump.core.ui.plugin.mousemenu.MergeSelectedFeaturesPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.MoveAlongAnglePlugIn.Convert-Feet-to-Meters = \#T\:
org.openjump.core.ui.plugin.mousemenu.MoveAlongAnglePlugIn.Move-Along-Angle = \#T\:
org.openjump.core.ui.plugin.mousemenu.MoveAlongAnglePlugIn.Move-Angle = \#T\:
org.openjump.core.ui.plugin.mousemenu.MoveAlongAnglePlugIn.Move-Distance = \#T\:
org.openjump.core.ui.plugin.mousemenu.MoveAlongAnglePlugIn.Move-Selected-Features-Along-Angle = \#T\:
org.openjump.core.ui.plugin.mousemenu.MoveAlongAnglePlugIn.The-angle-in-degrees-to-move = \#T\:
org.openjump.core.ui.plugin.mousemenu.MoveAlongAnglePlugIn.The-distance-in-map-units-to-move = \#T\:
org.openjump.core.ui.plugin.mousemenu.MoveAlongAnglePlugIn.Will-convert-input-value-from-feet-to-meters = \#T\:
org.openjump.core.ui.plugin.mousemenu.NodeFeaturesPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.NodeLinesPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.NodePolygonsPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.PasteItemsAtPlugIn.Paste-Items-At-Point = \#T\:
org.openjump.core.ui.plugin.mousemenu.ReverseOrientationPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.RotatePlugIn.Center = \#T\:
org.openjump.core.ui.plugin.mousemenu.RotatePlugIn.Click-Point = \#T\:
org.openjump.core.ui.plugin.mousemenu.RotatePlugIn.Rotate = \#T\:
org.openjump.core.ui.plugin.mousemenu.RotatePlugIn.Rotate-About = \#T\:
org.openjump.core.ui.plugin.mousemenu.RotatePlugIn.Rotate-Selected-Features = \#T\:
org.openjump.core.ui.plugin.mousemenu.RotatePlugIn.Rotate-about = \#T\:
org.openjump.core.ui.plugin.mousemenu.RotatePlugIn.Rotation-Angle = \#T\:
org.openjump.core.ui.plugin.mousemenu.RotatePlugIn.The-angle-in-degrees-clockwise = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Cannot-save-to-read-only-source-for-layer = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Could-not-save = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Could-not-save-layer = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Could-not-write = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Did-not-save-these-layers-since-they-would-have-to-be-saved-to-the-same-file = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Do-you-want-to-save-the-read-only-layers = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Empty-layer-not-saved = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Error-See-Output-Window = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.File-Name = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Files = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Layer-Name = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.New-layer-created = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.No-modified-writable-layer-selected = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.No-output-directory-designated-for-read-only-source-could-not-save-layer = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.No-output-file-extension-designated-for-read-only-source-could-not-save-layer = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Note-Output-window-will-display-the-results-of-this-command = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Note-layer-name-will-be-filename = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Save-Selected-Datasets = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Save-files-from-read-only-sources = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Saved-Layer = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Saved-task = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.The-read-only-layer-has-replaced-the-following-file(s) = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.The-read-only-layer-would-have-replaced-the-following-file(s) = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Unrecognized-file-type = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Use***Save-Dataset-As***to-Save-Layer = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.Warning-See-Output-Window = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.layer = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.read-only-layer = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.read-only-source-will-replace-an-existing-file = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.replaces-file = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.with-empty-geometry = \#T\:
org.openjump.core.ui.plugin.mousemenu.SaveDatasetsPlugIn.with-mixed-geometry-types = \#T\:
org.openjump.core.ui.plugin.mousemenu.SelectLayersWithSelectedItemsPlugIn.SelectLayersWithSelectedItems = \#T\:
org.openjump.core.ui.plugin.mousemenu.SplitFeaturesPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.SplitPolygonsNodeLinesPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.SplitLinesNodePolygonsPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.ZoomInPlugIn = ക്ലിക്കിലേക്ക് ഒരു ഭാഗം മാത്രം വലുതാക്കുക
org.openjump.core.ui.plugin.mousemenu.ZoomOutPlugIn = \#T\:
org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryOneDown.Move-Category-One-Down = \#T\:
org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryOneDown.Only-a-single-category-can-be-moved = \#T\:
org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryOneUp.Move-Category-One-Up = \#T\:
org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryToBottom.Move-Category-To-Bottom = \#T\:
org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryToTop.Move-Category-To-Top = \#T\:
org.openjump.core.ui.plugin.mousemenu.category.SetCategoryVisibilityPlugIn.Set-Category-Visibility = \#T\:
org.openjump.core.ui.plugin.queries.Function.area = \#T\:
org.openjump.core.ui.plugin.queries.Function.buff = \#T\:
org.openjump.core.ui.plugin.queries.Function.cent = \#T\:
org.openjump.core.ui.plugin.queries.Function.dday = \#T\:
org.openjump.core.ui.plugin.queries.Function.dyea = \#T\:
org.openjump.core.ui.plugin.queries.Function.empt = \#T\:
org.openjump.core.ui.plugin.queries.Function.isnull = \#T\:
org.openjump.core.ui.plugin.queries.Function.leng = \#T\:
org.openjump.core.ui.plugin.queries.Function.nbpa = \#T\:
org.openjump.core.ui.plugin.queries.Function.nbpt = \#T\:
org.openjump.core.ui.plugin.queries.Function.simp = \#T\:
org.openjump.core.ui.plugin.queries.Function.subs = \#T\:
org.openjump.core.ui.plugin.queries.Function.trim = \#T\:
org.openjump.core.ui.plugin.queries.Function.vali = \#T\:
org.openjump.core.ui.plugin.queries.Operator.afte = \#T\:
org.openjump.core.ui.plugin.queries.Operator.befo = \#T\:
org.openjump.core.ui.plugin.queries.Operator.beq = \=
org.openjump.core.ui.plugin.queries.Operator.bne = \#
org.openjump.core.ui.plugin.queries.Operator.conta = \#T\:
org.openjump.core.ui.plugin.queries.Operator.cross = \#T\:
org.openjump.core.ui.plugin.queries.Operator.diff = \#T\:
org.openjump.core.ui.plugin.queries.Operator.disjo = \#T\:
org.openjump.core.ui.plugin.queries.Operator.ends = \#T\:
org.openjump.core.ui.plugin.queries.Operator.eq = \=
org.openjump.core.ui.plugin.queries.Operator.equa = \#T\:
org.openjump.core.ui.plugin.queries.Operator.find = \#T\:
org.openjump.core.ui.plugin.queries.Operator.ge = >\=
org.openjump.core.ui.plugin.queries.Operator.gt = >
org.openjump.core.ui.plugin.queries.Operator.inter = \#T\:
org.openjump.core.ui.plugin.queries.Operator.le = <\=
org.openjump.core.ui.plugin.queries.Operator.lt = <
org.openjump.core.ui.plugin.queries.Operator.matc = \#T\:
org.openjump.core.ui.plugin.queries.Operator.ne = \#
org.openjump.core.ui.plugin.queries.Operator.overl = \#T\:
org.openjump.core.ui.plugin.queries.Operator.relat = \#T\:relate
org.openjump.core.ui.plugin.queries.Operator.star = \#T\:
org.openjump.core.ui.plugin.queries.Operator.touch = \#T\:
org.openjump.core.ui.plugin.queries.Operator.wdist = \#T\:
org.openjump.core.ui.plugin.queries.Operator.withi = \#T\:
org.openjump.core.ui.plugin.queries.Operator.wstri = \#T\:
org.openjump.core.ui.plugin.queries.SearchAllAttributes.all-search-words-must-be-ina-single-attribute = \#T\:
org.openjump.core.ui.plugin.queries.SearchAllAttributes.case-sensitive = \#T\:
org.openjump.core.ui.plugin.queries.SearchAllAttributes.include-geometry = \#T\:
org.openjump.core.ui.plugin.queries.SearchAllAttributes.match-all-search-words = \#T\:
org.openjump.core.ui.plugin.queries.SearchAllAttributes.match-any-search-word = \#T\:
org.openjump.core.ui.plugin.queries.SearchAllAttributes.regular-expressions = \#T\:
#T:org.openjump.core.ui.plugin.mousemenu.ZoomOutPlugIn = Zoom out from Click
#T:org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryOneDown.Move-Category-One-Down = Move Category One Down
#T:org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryOneDown.Only-a-single-category-can-be-moved = Only-a-single-category-can-be-moved\!
#T:org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryOneUp.Move-Category-One-Up = Move Category One Up
#T:org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryToBottom.Move-Category-To-Bottom = Move Category To Bottom
#T:org.openjump.core.ui.plugin.mousemenu.category.MoveCategoryToTop.Move-Category-To-Top = Move Category To Top
#T:org.openjump.core.ui.plugin.mousemenu.category.SetCategoryVisibilityPlugIn.Set-Category-Visibility = Set Category Visibility
#T:org.openjump.core.ui.plugin.queries.Function.area = surface
#T:org.openjump.core.ui.plugin.queries.Function.bnof =
#T:org.openjump.core.ui.plugin.queries.Function.buff = buffer
#T:org.openjump.core.ui.plugin.queries.Function.cent = center
#T:org.openjump.core.ui.plugin.queries.Function.dday = round to day
#T:org.openjump.core.ui.plugin.queries.Function.dnof =
#T:org.openjump.core.ui.plugin.queries.Function.dyea = round to year
#T:org.openjump.core.ui.plugin.queries.Function.empt = is empty
#T:org.openjump.core.ui.plugin.queries.Function.gnof =
#T:org.openjump.core.ui.plugin.queries.Function.isnull = is null
#T:org.openjump.core.ui.plugin.queries.Function.leng = length
#T:org.openjump.core.ui.plugin.queries.Function.nbpa = number of parts
#T:org.openjump.core.ui.plugin.queries.Function.nbpt = number of points