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
|
# translation of gnome-settings-daemon.HEAD.ml.po to Malayalam
# This file is distributed under the same license as the gnome-settings-daemon package.
# Copyright (C) 2003-2008 gnome-settings-daemon'S COPYRIGHT HOLDER.
# FSF-India <locale@gnu.org.in>, 2003.
# Santhosh|സന്തോഷ് Thottingal|തോട്ടിങ്ങല് <santhosh00@gmail.com>, 2007.
# Ani Peter <apeter@redhat.com>, 2007.
# Anivar Aravind|അനിവര് അരവിന്ദ് <anivar@movingrepublic.org>, 2007.
# Hari Vishnu <harivishnu@gmail.com>, 2008.
# Praveen|പ്രവീണ് A|എ <pravi.a@gmail.com>, 2007,2008.
msgid ""
msgstr ""
"Project-Id-Version: gnome-control-center.HEAD.ml\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-09-09 00:53+0000\n"
"PO-Revision-Date: 2008-09-08 20:18-0500\n"
"Last-Translator: പ്രവീണ് അരിമ്പ്രത്തൊടിയില് <pravi.a@gmail.com>\n"
"Language-Team: Malayalam <smc-discuss@googlegroups.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Lokalize 0.2\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-Country: INDIA\n"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:1
msgid "Binding to eject an optical disk."
msgstr "ഒരു ഓപ്റ്റിക്കല് ഡിസ്ക് പുറത്തേക്ക് എറക്കാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:2
msgid "Binding to launch the calculator."
msgstr "കാല്കുലേറ്റര് തുടങ്ങാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:3
msgid "Binding to launch the email client."
msgstr "ഇ-മെയില് ക്ലയന്റ് തുടങ്ങാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:4
msgid "Binding to launch the help browser."
msgstr "സഹായകബ്രൌസര് തുടങ്ങുവാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:5
msgid "Binding to launch the media player."
msgstr "മാധ്യമ പ്ലേയര് തുടങ്ങാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:6
msgid "Binding to launch the search tool."
msgstr "തിരയല് ഉപകരണം തുടങ്ങാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:7
msgid "Binding to launch the web browser."
msgstr "ബ്രൌസര് തുടങ്ങുവാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:8
msgid "Binding to lock the screen."
msgstr "സ്ക്രീന് പൂട്ടാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:9
msgid "Binding to log out."
msgstr "പുറത്തിറങ്ങാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:10
msgid "Binding to lower the system volume."
msgstr "സിസ്റ്റത്തിലെ ശബ്ദം കുറയ്ക്കാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:11
msgid "Binding to mute the system volume."
msgstr "സിസ്റ്റം നിശബ്ദമാക്കാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:12
msgid "Binding to open the Home folder."
msgstr "'വീട്' അറ തുറക്കാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:13
msgid "Binding to pause playback."
msgstr "പ്ലേബാക്ക് താല്കാലികമായി നിര്ത്താനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:14
msgid "Binding to raise the system volume."
msgstr "സിസ്റ്റത്തിലെ ശബ്ദം കൂട്ടാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:15
msgid "Binding to skip to next track."
msgstr "അടുത്ത ട്രാക്കിലേയ്ക്കു് പോകുവാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:16
msgid "Binding to skip to previous track."
msgstr "മുമ്പുളളതിലേയ്ക്കു് പോകുവാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:17
msgid "Binding to start playback (or toggle play/pause)."
msgstr "പ്ലേബാക്ക് തുടങ്ങാനുള്ള ബന്ധം (അല്ലെങ്കില് തുടങ്ങുക/താല്കാലികമായി നിര്ത്തുക തമ്മില് മാറാനുള്ളത്)"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:18
msgid "Binding to stop playback."
msgstr "പ്ലേബാക്ക് നിര്ത്താനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:19
msgid "Binding to suspend the computer."
msgstr "കമ്പ്യൂടറിനെ മയക്കുവാനുള്ള ബന്ധം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:20
msgid "Eject"
msgstr "പുറത്തെടുക്കുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:21
msgid "Home folder"
msgstr "തട്ടകം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:22
msgid "Launch calculator"
msgstr "കാല്ക്കുലേറ്റര് തുടങ്ങുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:23
msgid "Launch email client"
msgstr "ഇ-മെയില് ക്ലയന്റ് തുടങ്ങുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:24
msgid "Launch help browser"
msgstr "സഹായകബ്രൌസര് തുറക്കുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:25
msgid "Launch media player"
msgstr "ചലച്ചിത്രദര്ശിനി തുടങ്ങുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:26
msgid "Launch web browser"
msgstr "ബ്രൌസര് തുറക്കുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:27
msgid "Lock screen"
msgstr "സ്ക്രീന് പൂട്ടുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:28
msgid "Log out"
msgstr "പുറത്തിറങ്ങുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:29
msgid "Next track"
msgstr "അടുത്ത ട്രാക്ക്"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:30
msgid "Pause playback"
msgstr "പ്ലേബാക്ക് താല്കാലികമായി നിര്ത്താനുള്ള കീ"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:31
msgid "Play (or play/pause)"
msgstr "പാടുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:32
msgid "Previous track"
msgstr "മുമ്പുളള ട്രാക്"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:33
msgid "Search"
msgstr "തെരച്ചില്"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:34
msgid "Stop playback"
msgstr "പ്ലേബാക്ക് നിര്ത്താനുള്ള കീ"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:35
msgid "Suspend"
msgstr "മയക്കുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:36
msgid "Volume down"
msgstr "ശബ്ദം കുറയ്ക്കുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:37
msgid "Volume mute"
msgstr "നിശ്ശബ്ദമാക്കുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:38
msgid "Volume step"
msgstr "ശബ്ദം ഉയര്ത്തേണ്ട ക്രമം"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:39
msgid "Volume step as percentage of volume."
msgstr "ശബ്ദത്തിനെ ശതമാനക്കണക്കില് ഉയര്ത്തുക"
#: ../data/apps_gnome_settings_daemon_keybindings.schemas.in.h:40
msgid "Volume up"
msgstr "ശബ്ദം കൂട്ടുക"
#: ../data/apps_gnome_settings_daemon_screensaver.schemas.in.h:1
msgid ""
"Set to True to display a dialog when there are errors running the "
"screensaver."
msgstr "'സത്യം' എന്നാക്കുക, സ്ക്രീന് സേവര് പ്രവര്ത്തിപ്പിക്കാന് പിശകുകളുണ്ടാകുമ്പോള് ഡയലോഗ് കാണിക്കാന്"
#: ../data/apps_gnome_settings_daemon_screensaver.schemas.in.h:2
msgid "Set to True to run the screensaver at login."
msgstr "'സത്യം' എന്നാക്കുക, ലോഗിന് ആകുമ്പോള് സ്ക്രീന്സേവര് പ്രവര്ത്തിപ്പിക്കാന്"
#: ../data/apps_gnome_settings_daemon_screensaver.schemas.in.h:3
msgid "Show startup errors"
msgstr "ആരംഭത്തിലുണ്ടായ പിശകുകള് കാണിയ്ക്കുക"
#: ../data/apps_gnome_settings_daemon_screensaver.schemas.in.h:4
msgid "Start screensaver"
msgstr "സ്ക്രീന് സേവര് ആരംഭിക്കുക"
#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:1
msgid ""
"If a notification icon with display related things should be shown in the "
"panel."
msgstr "അവതരണവുമായി ബന്ധപ്പെട്ട കാര്യങ്ങളുടെ അറിയിപ്പ് ചിഹ്നം പാളിയില് കാണിക്കണോ എന്ന്."
#: ../data/apps_gnome_settings_daemon_xrandr.schemas.in.h:2
msgid "Show Displays in Notification Area"
msgstr "അവതരണങ്ങള് അറിയിപ്പ് വിഭഗത്തില് കാണിക്കുക"
#: ../data/desktop_gnome_font_rendering.schemas.in.h:1
msgid "Antialiasing"
msgstr "ആന്റി-എലയാസിങ്ങ്"
#: ../data/desktop_gnome_font_rendering.schemas.in.h:2
msgid "DPI"
msgstr "ഡി.പി.ഐ"
#: ../data/desktop_gnome_font_rendering.schemas.in.h:3
msgid "Hinting"
msgstr "<b>ഹിന്റിങ്ങ്(നിര്ദ്ദേശം കൊടുക്കല്)</b>:"
#: ../data/desktop_gnome_font_rendering.schemas.in.h:4
msgid "RGBA order"
msgstr "ആര്.ജി.ബി.എ ക്രമം"
#: ../data/desktop_gnome_font_rendering.schemas.in.h:5
msgid ""
"The order of subpixel elements on an LCD screen; only used when antialiasing "
"is set to \"rgba\". Possible values are: \"rgb\" for red on left (most "
"common), \"bgr\" for blue on left, \"vrgb\" for red on top, \"vbgr\" for red "
"on bottom."
msgstr ""
"രണ്ടാം തരം പിക്സെലുകള് (ചിത്ര-അണുക്കള്) ഒരു എല്.സി.ഡി സ്ക്രീനേല് വരുന്ന ക്രമം; ഉപയോഗിക്കുന്നത് "
"ആന്റി-എലയാസിങ്ങ് \"rgba\" (\"ആര്.ജി.ബി.എ\") ആക്കുംബോള് മാത്രം. എടുക്കാവുന്ന വിലകള് : \"rgb"
"\"(\"ആര്.ജി.ബി\") ചുവപ്പ് ഇടതു വശത്തേക്കായ് (പൊതുവേ ഉള്ള തരം),\"bgr\"(\"ബി.ജി.ആര്\") "
"നീല വലതുവശത്തേക്കായ്,\"vrgb\"(\"വി.ആര്.ജി.ബി\") മുകളിലായ്, \"vbgr\" (\"വി.ബി.ജി.ആര്"
"\" ) ചുവപ്പ് താഴെയായ് വരാന്."
#: ../data/desktop_gnome_font_rendering.schemas.in.h:6
msgid ""
"The resolution used for converting font sizes to pixel sizes, in dots per "
"inch."
msgstr ""
"ലിപി-വലിപ്പങ്ങള് പിക്സെല് (ചിത്ര-അണു) വലിപ്പങ്ങളായി മാറ്റാനുള്ള റെസലൂഷന്, ഇഞ്ചില് എത്ര "
"ബിന്ദുക്കള് എന്ന എണ്ണത്തില് (ഡോട്സ് പര് ഇഞ്ച്)"
#: ../data/desktop_gnome_font_rendering.schemas.in.h:7
msgid ""
"The type of antialiasing to use when rendering fonts. Possible values are: "
"\"none\" for no antialiasing, \"grayscale\" for standard grayscale "
"antialiasing, and \"rgba\" for subpixel antialiasing (LCD screens only)."
msgstr ""
"ലിപികള് അവതരിപ്പിക്കുംബോള് ഉപയോഗിക്കേണ്ട തരം ആന്റി-എലയാസിങ്ങ്. ഉപയോഗിക്കാവുന്ന വിലകള് : "
"\"none\"(\"ഒന്നും അല്ല\") ആന്റി-എലയാസിങ്ങ് വേണ്ടെങ്കില്, \"grayscale\"(\"ഗ്രേസ്കേല്\") "
"സാധാരണ ഗ്രേസ്കേല് ആന്റി-എലയാസിങ്ങിനായ്,\"rgba\"( \"ആര്.ജി.ബി.എ\") സബ്-പിക്സെല് (രണ്ടാം "
"തരം ചിത്ര-അണു) എലയാസിങ്ങിനായ് (എല്.സി.ഡി സ്ക്രീനിനു മാത്രം)."
#: ../data/desktop_gnome_font_rendering.schemas.in.h:8
msgid ""
"The type of hinting to use when rendering fonts. Possible values are: \"none"
"\" for no hinting, \"slight\" for basic, \"medium\" for moderate, and \"full"
"\" for maximum hinting (may cause distortion of letter forms)."
msgstr ""
"ലിപികള് അവതരിപ്പിക്കുംബോള് ഉപയോഗിക്കേണ്ട തരം നിര്ദ്ദേശങ്ങള്. ഉപയോഗിക്കാവുന്ന വിലകള് : "
"\"none\"(\"ഒന്നും അല്ല\") നിര്ദ്ദേശങ്ങള് വേണ്ടെങ്കില്, \"slight\"(\"ചെറുതായിട്ട്\") "
"അടിസ്ഥാനപരമായതിന്,\"medium\"( \"പരിമിതം\") പരിമിതമായതിനായ് ,\"full\"( \"മുഴുവന്\") "
"ഏറ്റവും കൂടുതല് നിര്ദ്ദേശങ്ങള്ക്കായ് (അക്ഷര രൂപങ്ങളില് വ്യത്യാസം വരുത്തിയേക്കാം)."
#: ../data/gnome-settings-daemon.desktop.in.in.h:1
msgid "GNOME Settings Daemon"
msgstr "ഗ്നോമിലെ സജ്ജീകരണങ്ങളുടെ നിരന്തരപ്രവൃത്തി"
#: ../data/gnome-settings-daemon.schemas.in.h:1
msgid "Enable accessibility keyboard plugin"
msgstr "കീബോര്ഡ് ആക്സസിബിളിറ്റി സമ്യോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:2
msgid "Enable background plugin"
msgstr "പശ്ചാത്തലചിത്രം സമ്യോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:3
msgid "Enable clipboard plugin"
msgstr "'താല്കാലിക വിവര ശേഖരം' സംയോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:4
msgid "Enable font plugin"
msgstr "'ലിപി' സംയോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:5
msgid "Enable housekeeping plugin"
msgstr "വീട്-കയ്കാര്യം ചെയ്യല് സംയോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:6
msgid "Enable keybindings plugin"
msgstr "'കീ-ബന്ധങ്ങള്' സംയോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:7
msgid "Enable keyboard plugin"
msgstr "കീബോര്ഡ് സമ്യോജകം പ്രാവര്ത്തികമാക്കുക. "
#: ../data/gnome-settings-daemon.schemas.in.h:8
msgid "Enable media keys plugin"
msgstr "'മാധ്യമ കീകള്' സംയോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:9
msgid "Enable mouse plugin"
msgstr "മൌസ് സമ്യോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:10
msgid "Enable screensaver plugin"
msgstr "സ്ക്രീന്സേവര് സമ്യോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:11
msgid "Enable sound plugin"
msgstr "ശബ്ദ സമ്യോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:12
msgid "Enable typing breaks plugin"
msgstr "'ടൈപ്പിങ്ങ് പൊട്ടലുകള്' സംയോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:13
msgid "Enable xrandr plugin"
msgstr "'എക്സ്-റാന്റ്-ആര്' സംയോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:14
msgid "Enable xrdb plugin"
msgstr "എക്സ്.ആര്.ഡി.ബി സമ്യോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:15
msgid "Enable xsettings plugin"
msgstr "'എക്സ്-സജ്ജീകരണങ്ങള്' സംയോജകം പ്രാവര്ത്തികമാക്കുക"
#: ../data/gnome-settings-daemon.schemas.in.h:16
msgid ""
"Set to True to enable the housekeeping plugin, to prune transient file "
"caches."
msgstr ""
"'സത്യം' എന്നാക്കുക, വീട് കാര്യസ്ഥന് സംയോജകം പ്രാവര്ത്തികമാക്കാന്, ട്രാന്സിയെന്റ് ഫയലുകളുടെ "
"താല്കാലിക ശേഖരം വെട്ടി ചുരുക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:17
msgid "Set to True to enable the plugin to manage clipboard settings."
msgstr ""
"'സത്യം' എന്നാക്കുക, താല്കാലിക വിവര ശേഖരം സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം "
"പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:18
msgid "Set to True to enable the plugin to manage desktop background settings."
msgstr ""
"'സത്യം' എന്നാക്കുക, പണിയിട പശ്ചാത്തലം സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം "
"പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:19
msgid "Set to True to enable the plugin to manage font settings."
msgstr "'സത്യം' എന്നാക്കുക, ലിപി സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:20
msgid "Set to True to enable the plugin to manage keyboard settings."
msgstr "'സത്യം' എന്നാക്കുക, കീബോര്ട് സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:21
msgid "Set to True to enable the plugin to manage mouse settings."
msgstr "'സത്യം' എന്നാക്കുക, മൌസ് സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:22
msgid "Set to True to enable the plugin to manage multimedia keys settings."
msgstr ""
"'സത്യം' എന്നാക്കുക, ബഹുമാധ്യമ കീകളുടെ സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം "
"പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:23
msgid "Set to True to enable the plugin to manage screensaver settings."
msgstr ""
"'സത്യം' എന്നാക്കുക, സ്ക്രീന് സുരക്ഷകന് സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം "
"പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:24
msgid "Set to True to enable the plugin to manage sound settings."
msgstr "'സത്യം' എന്നാക്കുക, ശബ്ദ സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:25
msgid ""
"Set to True to enable the plugin to manage the accessibility keyboard "
"settings."
msgstr ""
"'സത്യം' എന്നാക്കുക, ഉപയുക്തി കീബോര്ട് സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം "
"പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:26
msgid "Set to True to enable the plugin to manage the keybindings."
msgstr "'സത്യം' എന്നാക്കുക, കീ ബന്ധ്ധങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:27
msgid "Set to True to enable the plugin to manage typing breaks."
msgstr "'സത്യം' എന്നാക്കുക, ടൈപ്പിങ്ങ് പൊട്ടലുകള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:28
msgid "Set to True to enable the plugin to manage xrandr settings."
msgstr ""
"'സത്യം' എന്നാക്കുക, എക്സ്-റാന്റ്-ആര് സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം "
"പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:29
msgid "Set to True to enable the plugin to manage xrdb settings."
msgstr ""
"'സത്യം' എന്നാക്കുക, എക്സ്-ആര്-ഡി-ബി സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം "
"പ്രാവര്ത്തികമാക്കാന്."
#: ../data/gnome-settings-daemon.schemas.in.h:30
msgid "Set to True to enable the plugin to manage xsettings."
msgstr "'സത്യം' എന്നാക്കുക, എക്സ്-സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യാനുള്ള സംയോജകം പ്രാവര്ത്തികമാക്കാന്."
#: ../gnome-settings-daemon/main.c:50
msgid "Enable debugging code"
msgstr "പിഴവുതിരുത്തല്കോഡ് പ്രാവര്ത്തികമാക്കുക. "
#: ../gnome-settings-daemon/main.c:51
msgid "Don't become a daemon"
msgstr "നിരന്തരപ്രവൃത്തി (ഡീമണ്) ആവേണ്ടതില്ല"
#: ../gnome-settings-daemon/main.c:52
msgid "GConf prefix from which to load plugin settings"
msgstr "ജി-കോണ്ഫ് പ്രീഫിക്സ് - ഇതില് നിന്നും സംയോജക സജ്ജീകരണങ്ങള് തുറക്കാം."
#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:1
msgid "Accessibility Keyboard"
msgstr "സാമീപ്യത കീബോര്ഡ്"
#: ../plugins/a11y-keyboard/a11y-keyboard.gnome-settings-plugin.in.h:2
msgid "Accessibility keyboard plugin"
msgstr "സാമീപ്യത കീബോര്ഡ് സമ്യോജകം"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:400
#, c-format
msgid "There was an error displaying help: %s"
msgstr "സഹായം കാണിയ്ക്കുന്നതില് തെറ്റുണ്ടായി: %s"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:526
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:596
msgid "Do you want to activate Slow Keys?"
msgstr "നിങ്ങള്ക്ക് വേഗത കുറഞ്ഞ കീ പ്രവര്ത്തിപ്പിക്കണമോ?"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:527
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:597
msgid "Do you want to deactivate Slow Keys?"
msgstr "നിങ്ങള്ക്ക് വേഗത കുറഞ്ഞ കീ പ്രവര്ത്തന രഹിതമാക്കണമോ?"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:528
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:598
msgid ""
"You just held down the Shift key for 8 seconds. This is the shortcut for "
"the Slow Keys feature, which affects the way your keyboard works."
msgstr ""
"നിങ്ങള് ഷിഫ്റ്റ് കീ 8 സെക്കന്റ് നേരത്തേക്ക് അമര്ത്തിപ്പിടിച്ചു. ഇത് സ്ലോ കീ സൌകര്യത്തിനുള്ള കുറുക്കു "
"കീ ആണ്. കീബോര്ഡ് പ്രവര്ത്തിക്കുന്ന രീതിയെ ഇത് ബാധിക്കും. "
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:554
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:697
msgid "Don't activate"
msgstr "സജ്ജമാക്കേണ്ടതില്ല"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:554
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:697
msgid "Don't deactivate"
msgstr "സജ്ജമാക്കാതിരിക്കേണ്ടതില്ല"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:560
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:703
msgid "Activate"
msgstr "സജ്ജമാക്കുക"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:560
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:703
msgid "Deactivate"
msgstr "നിര്ത്തുക"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:619
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:764
msgid "Do_n't activate"
msgstr "പ്രവര്ത്തനം _സജ്ജമാക്കേണ്ടതില്ല"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:619
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:764
msgid "Do_n't deactivate"
msgstr "പ്രവര്ത്തനം നിര്ത്തേണ്ട_തില്ല"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:622
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:767
msgid "_Activate"
msgstr "_സജീവമാക്കുക"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:622
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:767
msgid "_Deactivate"
msgstr "പ്രവര്ത്തനം _നിര്ത്തുക"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:626
msgid "Slow Keys Alert"
msgstr "വേഗത കുറഞ്ഞ കീ അറിയിപ്പ്"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:666
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:738
msgid "Do you want to activate Sticky Keys?"
msgstr "നിങ്ങള്ക്ക് സ്റ്റിക്കി കീകള് സജ്ജമാക്കണമോ?"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:667
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:739
msgid "Do you want to deactivate Sticky Keys?"
msgstr "നിങ്ങള്ക്ക് സ്റ്റിക്കി കീകളുടെ പ്രവര്ത്തനം നിര്ത്തണമോ?"
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:669
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:741
msgid ""
"You just pressed the Shift key 5 times in a row. This is the shortcut for "
"the Sticky Keys feature, which affects the way your keyboard works."
msgstr ""
"നിങ്ങള് ഷിഫ്റ്റ് കീ 5 തവണ ഒരു വരിയില് അമര്ത്തിപ്പിടിച്ചു. ഇത് സ്റ്റിക്കി കീ സൌകര്യത്തിനുള്ള കുറുക്കു "
"കീ ആണ്. കീബോര്ഡ് പ്രവര്ത്തിക്കുന്ന രീതിയെ ഇത് ബാധിക്കും. "
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:671
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:743
msgid ""
"You just pressed two keys at once, or pressed the Shift key 5 times in a "
"row. This turns off the Sticky Keys feature, which affects the way your "
"keyboard works."
msgstr ""
"നിങ്ങള് രണ്ട് കീ ഒരേ സമയം അമര്ത്തി അല്ലെങ്കില് ഷിഫ്റ്റ് കീ 5 തവണ ഒരു വരിയില് "
"അമര്ത്തിപ്പിടിച്ചു. ഇത് സ്റ്റിക്കി കീ സൌകര്യം നിര്ത്താനുള്ള കുറുക്കു കീ ആണ്. കീബോര്ഡ് പ്രവര്ത്തിക്കുന്ന "
"രീതിയെ ഇത് ബാധിക്കും. "
#: ../plugins/a11y-keyboard/gsd-a11y-keyboard-manager.c:771
msgid "Sticky Keys Alert"
msgstr "സ്റ്റിക്കി കീ അറിയിപ്പ്"
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.c:899
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.glade.h:4
msgid "Universal Access Preferences"
msgstr "ആഗോള സമീപന മുന്ഗണനകള്"
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.glade.h:1
msgid "Enhance _contrast in colors"
msgstr "(_)നിറ-വ്യത്യാസം കൂട്ടുക"
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.glade.h:2
msgid "Make _text larger and easier to read"
msgstr "(_t)അക്ഷരങ്ങള് വലുതും വായിക്കാന് എളുപ്പവും ആക്കുക"
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.glade.h:3
msgid "Press and _hold keys to accept them (Slow Keys)"
msgstr "കീകള് അമര്ത്തി (_h)പിടിക്കുക അവ അംഗീകരിക്കാന് (പതുക്കെയുള്ള കീകള്)"
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.glade.h:5
msgid "Use on-screen _keyboard"
msgstr "ഓണ് സ്ക്രീന് (_k)കീബോര്ഡ് ഉപയോഗിക്കുക"
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.glade.h:6
msgid "Use screen _magnifier"
msgstr "സ്ക്രീന് (_m)വലിപ്പം കൂട്ടാനുള്ള ഉപകരണം ഉപയോഗിക്കുക"
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.glade.h:7
msgid "Use screen _reader"
msgstr "സ്ക്രീന് (_r)വായനക്കാരന്"
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.glade.h:8
msgid "_Ignore duplicate keypresses (Bounce Keys)"
msgstr "ഈ സമയത്തിനിടയിലെ ഇരട്ട കീ അമര്ത്തലുകളെ അവഗണിക്കുക(_I)"
#: ../plugins/a11y-keyboard/gsd-a11y-preferences-dialog.glade.h:9
msgid "_Press keyboard shortcuts one key at a time (Sticky Keys)"
msgstr ""
"കീബോര്ട് ചുരുക്കവഴി-കീകള് ഓരോന്നായി അമര്ത്തുക (സ്റ്റിക്കി കീകള്)_Press keyboard shortcuts "
"one key at a time (Sticky Keys)"
#: ../plugins/background/background.gnome-settings-plugin.in.h:1
msgid "Background"
msgstr "പശ്ചാത്തലം"
#: ../plugins/background/background.gnome-settings-plugin.in.h:2
msgid "Background plugin"
msgstr "പശ്ചാത്തലചിത്രം സമ്യോജകം "
#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:1
msgid "Clipboard"
msgstr "താല്കാലിക വിവര ശേഖരം"
#: ../plugins/clipboard/clipboard.gnome-settings-plugin.in.h:2
msgid "Clipboard plugin"
msgstr "താല്കാലിക വിവര ശേഖരം സംയോജകം"
#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:1
msgid "Dummy"
msgstr "വ്യാജന്"
#: ../plugins/dummy/dummy.gnome-settings-plugin.in.h:2
msgid "Dummy plugin"
msgstr "വ്യാജന് സംയോജകം"
#: ../plugins/font/font.gnome-settings-plugin.in.h:1
msgid "Font"
msgstr "ലിപി"
#: ../plugins/font/font.gnome-settings-plugin.in.h:2
msgid "Font plugin"
msgstr "ലിപി സംയോജകം"
#: ../plugins/font/gsd-font-manager.c:207
#, c-format
msgid ""
"Cannot create the directory \"%s\".\n"
"This is needed to allow changing the mouse pointer theme."
msgstr ""
"\"%s\" ഡയറക്ടറി ഉണ്ടാക്കുവാന് സാധ്യമല്ല.\n"
"മൌസ് സൂചികയുടെ തീമില് മാറ്റം വരുത്തുന്നതിനായി ഇത് ആവശ്യമുണ്ട്."
#: ../plugins/font/gsd-font-manager.c:230
#, c-format
msgid ""
"Cannot create the directory \"%s\".\n"
"This is needed to allow changing cursors."
msgstr ""
"\"%s\" ഡയറക്ടറി ഉണ്ടാക്കുവാന് സാധ്യമല്ല.\n"
"സൂചകത്തില് മാറ്റം വരുത്തുന്നതിനായി ഇത് ആവശ്യമുണ്ട്."
#: ../plugins/keybindings/gsd-keybindings-manager.c:190
#, c-format
msgid "Key binding (%s) is incomplete"
msgstr "കീ ബന്ധനം(%s) അപൂര്ണ്ണമാണ്"
#: ../plugins/keybindings/gsd-keybindings-manager.c:222
#, c-format
msgid "Key binding (%s) is invalid"
msgstr "കീ ബന്ധനം(%s) അസാധുവാണ്"
#: ../plugins/keybindings/gsd-keybindings-manager.c:409
#, c-format
msgid ""
"Error while trying to run (%s)\n"
"which is linked to the key (%s)"
msgstr ""
"(%s) പ്രവര്ത്തിപ്പിക്കുന്നതില് പിശക് ,\n"
"ഇത് (%s) കീയുമായി ലിങ്ക് ചെയ്തിരിക്കുന്നു."
#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:1
msgid "Keybindings"
msgstr "കീ-ബന്ധങ്ങള് "
#: ../plugins/keybindings/keybindings.gnome-settings-plugin.in.h:2
msgid "Keybindings plugin"
msgstr "കീ-ബന്ധങ്ങള് സംയോജകം"
#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:1
msgid "Keyboard"
msgstr "കീബോര്ഡ്"
#: ../plugins/keyboard/keyboard.gnome-settings-plugin.in.h:2
msgid "Keyboard plugin"
msgstr "കീബോര്ഡ് സംയോജകം"
#: ../plugins/keyboard/modmap-dialog.glade.h:1
msgid "A_vailable files:"
msgstr "_ലഭ്യമായ ഫയലുകള്:"
#: ../plugins/keyboard/modmap-dialog.glade.h:2
msgid "Do _not show this warning again."
msgstr "ഈ മുന്നറിയിപ്പ് ഇനി _കാണിക്കേണ്ടതില്ല"
#: ../plugins/keyboard/modmap-dialog.glade.h:3
msgid "Load modmap files"
msgstr "modmap ഫയലുകള് ലോഡ് ചെയ്യുക"
#: ../plugins/keyboard/modmap-dialog.glade.h:4
msgid "Would you like to load the modmap file(s)?"
msgstr "നിങ്ങള്ക്ക് modmap ഫയല് ലോഡ് ചെയ്യണമോ?"
#: ../plugins/keyboard/modmap-dialog.glade.h:5
msgid "_Load"
msgstr "_ചേര്ക്കുക"
#: ../plugins/keyboard/modmap-dialog.glade.h:6
msgid "_Loaded files:"
msgstr "_ചേര്ത്ത ഫയലുകള്:"
#: ../plugins/media-keys/gsd-media-keys-manager.c:183
msgid ""
"Could not get default terminal. Verify that your default terminal command is "
"set and points to a valid application."
msgstr ""
"സഹജമായ ടെര്മിനല് കിട്ടിയില്ല. സഹജമായ ടെര്മിനലിനുള്ള ആജ്ഞ ക്രമീകരിച്ചിരിക്കുന്നുവെന്നും, അത് "
"ശരിയായ പ്രയോഗത്തിലേയ്ക്കാണ് ചൂണ്ടുന്നതെന്നും ഉറപ്പുവരുത്തുക"
#: ../plugins/media-keys/gsd-media-keys-manager.c:223
#, c-format
msgid ""
"Couldn't execute command: %s\n"
"Verify that this is a valid command."
msgstr ""
"ആജ്ഞ നടപ്പിലാക്കാന് പറ്റിയില്ല.: %s\n"
" ഈ ആജ്ഞ നിലവിലുണ്ടെന്ന് ഉറപ്പുവരുത്തുക"
#: ../plugins/media-keys/gsd-media-keys-manager.c:239
msgid ""
"Couldn't put the machine to sleep.\n"
"Verify that the machine is correctly configured."
msgstr ""
"സിസ്റ്റം നിദ്രയിലാക്കുവാന് പറ്റിയില്ല .\n"
"സിസ്റ്റം ശരിയായി ക്രമീകരിച്ചിരിക്കുന്നു എന്ന് ഉറപ്പ് വരുത്തുക."
#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:1
msgid "Media keys"
msgstr "മാധ്യമ സംയോജകം"
#: ../plugins/media-keys/media-keys.gnome-settings-plugin.in.h:2
msgid "Media keys plugin"
msgstr " സംയോജകം"
#: ../plugins/mouse/gsd-mouse-manager.c:571
msgid "Could not enable mouse accessibility features"
msgstr "മൌസ് ഉപയുക്തി സവിശേഷതകള് പ്രാവര്ത്തികമാക്കാനായില്ല"
#: ../plugins/mouse/gsd-mouse-manager.c:573
msgid "Mouse accessibility requires mousetweaks to be installed on your system."
msgstr "മൌസ് സാമീപ്യത മൌസ്-ട്വീക്സ് നിങ്ങളുടെ സിസ്റ്റത്തില് ഉണ്ടാവണം എന്ന് ആവശ്യപെടുന്നു."
#: ../plugins/mouse/gsd-mouse-manager.c:576
msgid "Mouse Preferences"
msgstr "മൌസ് മുന്ഗണനകള്"
#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:1
msgid "Mouse"
msgstr "മൌസ്"
#: ../plugins/mouse/mouse.gnome-settings-plugin.in.h:2
msgid "Mouse plugin"
msgstr "മൌസ് സംയോജകം"
#: ../plugins/screensaver/gsd-screensaver-manager.c:153
#, c-format
msgid ""
"There was an error starting up the screensaver:\n"
"\n"
"%s\n"
"\n"
"Screensaver functionality will not work in this session."
msgstr ""
"സ്ക്രീന് സേവര് ആരംഭിക്കുന്നതില് പിശക്:\n"
"\n"
"%s\n"
"\n"
"ഈ സെഷനില് സ്ക്രീന് സേവര് പ്രവര്ത്തിക്കുന്നതല്ല."
#: ../plugins/screensaver/gsd-screensaver-manager.c:162
msgid "_Do not show this message again"
msgstr "ഇനി ഈ സന്ദേശം _കാണിക്കേണ്ടതില്ല"
#: ../plugins/screensaver/screensaver.gnome-settings-plugin.in.h:1
msgid "Screensaver"
msgstr "സ്ക്രീന് സേവര്"
#: ../plugins/screensaver/screensaver.gnome-settings-plugin.in.h:2
msgid "Screensaver plugin"
msgstr "സ്ക്രീന്സേവര് സംയോജകം"
#: ../plugins/sound/gsd-sound-manager.c:273
#, c-format
msgid "Couldn't load sound file %s as sample %s"
msgstr "ശബ്ദത്തിനുളള ഫയല് %s ഉദാഹരണം %s ആയി ലോഡ് ചെയ്യുവാന് സാധ്യമല്ല"
#: ../plugins/sound/libsounds/sound-view.c:43
msgid "Login"
msgstr "അകത്തേയ്ക്കു്"
#: ../plugins/sound/libsounds/sound-view.c:44
msgid "Logout"
msgstr "പുറത്തേയ്ക്കു്"
#: ../plugins/sound/libsounds/sound-view.c:45
msgid "Boing"
msgstr "ബോയിങ്"
#: ../plugins/sound/libsounds/sound-view.c:46
msgid "Siren"
msgstr "സൈറന്"
#: ../plugins/sound/libsounds/sound-view.c:47
msgid "Clink"
msgstr "ക്ലിങ്ക്"
#: ../plugins/sound/libsounds/sound-view.c:48
msgid "Beep"
msgstr "ബീപ്"
#: ../plugins/sound/libsounds/sound-view.c:49
msgid "No sound"
msgstr "ശബ്ദമില്ല"
#: ../plugins/sound/libsounds/sound-view.c:131
msgid "Sound not set for this event."
msgstr "ഈ ഇവന്റിനുളള ശബ്ദം ക്രമീകരിച്ചിട്ടില്ല."
#: ../plugins/sound/libsounds/sound-view.c:140
msgid ""
"The sound file for this event does not exist.\n"
"You may want to install the gnome-audio package for a set of default sounds."
msgstr ""
"ഈ ഇവന്റിനുളള ശബ്ദരേഖ നിലവിലില്ല.\n"
"സഹജമായ ശബ്ദങ്ങള്ക്കായി, gnome-audio പാക്കേജ് ഇന്സ്റ്റാള് ചെയ്യേണ്ടതാണ്."
#: ../plugins/sound/libsounds/sound-view.c:151
msgid "The sound file for this event does not exist."
msgstr "ഈ ഇവന്റിന് ആവശ്യമുളള ശബ്ദരേഖനിലവിലില്ല."
#: ../plugins/sound/libsounds/sound-view.c:182
msgid "Select Sound File"
msgstr "ആവശ്യമായ ശബ്ദരേഖ തെരഞ്ഞെടുക്കുക"
#: ../plugins/sound/libsounds/sound-view.c:209
#, c-format
msgid "The file %s is not a valid wav file"
msgstr "ഫയല് %s സാധുതയുളള ഒരു wav ഫയല് അല്ല"
#: ../plugins/sound/libsounds/sound-view.c:270
msgid "Select sound file..."
msgstr "ശബ്ദരേഖ തെരഞ്ഞെടുക്കുക"
#: ../plugins/sound/libsounds/sound-view.c:372
msgid "System Sounds"
msgstr "സിസ്റ്റത്തിന്റെ ശബ്ദങ്ങള്"
#: ../plugins/sound/sound.gnome-settings-plugin.in.h:1
msgid "Sound"
msgstr "ശബ്ദം"
#: ../plugins/sound/sound.gnome-settings-plugin.in.h:2
msgid "Sound plugin"
msgstr "ശബ്ദ സംയോജകം"
#: ../plugins/typing-break/typing-break.gnome-settings-plugin.in.h:1
msgid "Typing Break"
msgstr "ടൈപ്പിങ്ങ് വിശ്രമവേള"
#: ../plugins/typing-break/typing-break.gnome-settings-plugin.in.h:2
msgid "Typing break plugin"
msgstr "ടൈപ്പിങ്ങ് വിശ്രമവേള സംയോജകം"
#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:1
msgid "Set up screen size and rotation settings"
msgstr "സ്ക്രീന് വലിപ്പവും തിരിക്കലും സജ്ജീകരിക്കുക"
#: ../plugins/xrandr/xrandr.gnome-settings-plugin.in.h:2
msgid "XRandR"
msgstr "XRandR(എക്സ്-റാന്റ്-ആര്)"
#: ../plugins/xrandr/gsd-xrandr-manager.c:419
msgid "<i>Rotation not supported</i>"
msgstr "<i>തിരിയ്ക്കുന്നതിനുള്ള പിന്തുണയില്ല</i>"
#: ../plugins/xrandr/gsd-xrandr-manager.c:456
#: ../plugins/xrandr/gsd-xrandr-manager.c:464
msgid "The selected rotation could not be applied"
msgstr "തെരഞ്ഞെടുത്ത തിരിവു് പ്രായോഗികമാക്കാനായില്ല"
#: ../plugins/xrandr/gsd-xrandr-manager.c:457
msgid "An error occurred while configuring the screen"
msgstr "സ്ക്രീന് ക്രമീകരിയ്ക്കുമ്പോളൊരു പിശകു് പറ്റി"
#: ../plugins/xrandr/gsd-xrandr-manager.c:478
msgid "Normal"
msgstr "സാധാരണ"
#: ../plugins/xrandr/gsd-xrandr-manager.c:479
msgid "Left"
msgstr "ഇടത്"
#: ../plugins/xrandr/gsd-xrandr-manager.c:480
msgid "Right"
msgstr "വലത്ത്"
#: ../plugins/xrandr/gsd-xrandr-manager.c:481
msgid "Upside Down"
msgstr "തല തിരിച്ചു്"
#: ../plugins/xrandr/gsd-xrandr-manager.c:600
msgid "_Configure Display Settings ..."
msgstr "അവതരണ സജ്ജീകരണങ്ങള് _ക്രമീകരിക്കുക..."
#: ../plugins/xrandr/gsd-xrandr-manager.c:641
msgid "Configure display settings"
msgstr "അവതരണ സജ്ജീകരണങ്ങള് ക്രമീകരിക്കുക"
#: ../plugins/xrdb/gsd-xrdb-manager.c:255
#: ../plugins/xrdb/gsd-xrdb-manager.c:324
msgid "Cannot determine user's home directory"
msgstr "ഉപയോക്താവിന്റെ സ്വന്തം തട്ട് ലഭ്യമല്ല"
#: ../plugins/xrdb/xrdb.gnome-settings-plugin.in.h:1
msgid "Manage the X resource database"
msgstr "എക്സ്-വിഭവ വിവരസംഭരണി കയ്കാര്യം ചെയ്യുക"
#: ../plugins/xrdb/xrdb.gnome-settings-plugin.in.h:2
msgid "X Resource Database"
msgstr "എക്സ്-വിഭവ വിവരസംഭരണി"
#: ../plugins/xsettings/gsd-xsettings-manager.c:609
#, c-format
msgid "GConf key %s set to type %s but its expected type was %s\n"
msgstr "GConf കീ %s %s തരമായി സെറ്റ് ചെയ്തിരിക്കുന്നു,പ്രതീക്ഷിച്ചത് %s തരമാണ്\n"
#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:1
msgid "Manage X Settings"
msgstr "എക്സ് സജ്ജീകരണങ്ങള് കയ്കാര്യം ചെയ്യുക"
#: ../plugins/xsettings/xsettings.gnome-settings-plugin.in.h:2
msgid "X Settings"
msgstr "എക്സ് സജ്ജീകരണങ്ങള്"
|