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
|
# translation of Glib.po to Kannada
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Shankar Prasad <svenkate@redhat.com>, 2007.
msgid ""
msgstr ""
"Project-Id-Version: Glib\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-09-16 14:50-0400\n"
"PO-Revision-Date: 2007-08-31 12:40+0530\n"
"Last-Translator: Shankar Prasad <svenkate@redhat.com>\n"
"Language-Team: Kannada <en@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: glib/gbookmarkfile.c:705 glib/gbookmarkfile.c:782 glib/gbookmarkfile.c:861
#: glib/gbookmarkfile.c:908
#, c-format
msgid "Unexpected attribute '%s' for element '%s'"
msgstr "'%s'ಘಟಕಕ್ಕೆ ಅನಪೇಕ್ಷಿತ ಗುಣ ವಿಶೇಷ '%s'"
#: glib/gbookmarkfile.c:716 glib/gbookmarkfile.c:793 glib/gbookmarkfile.c:803
#: glib/gbookmarkfile.c:919
#, c-format
msgid "Attribute '%s' of element '%s' not found"
msgstr "'%s' ದ ಘಟಕಕ್ಕೆ '%s' ಗುಣವಿಶೇಷ ಪತ್ತೆಯಾಗಿಲ್ಲ"
#: glib/gbookmarkfile.c:1092 glib/gbookmarkfile.c:1157
#: glib/gbookmarkfile.c:1221 glib/gbookmarkfile.c:1231
#, c-format
msgid "Unexpected tag '%s', tag '%s' expected"
msgstr "ಅನಪೇಕ್ಷಿತ ಪದಗುಚ್ಛ '%s', ಪದಗುಚ್ಛ '%s' ವನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
#: glib/gbookmarkfile.c:1117 glib/gbookmarkfile.c:1131
#: glib/gbookmarkfile.c:1199 glib/gbookmarkfile.c:1251
#, c-format
msgid "Unexpected tag '%s' inside '%s'"
msgstr "'%s' ದ ಒಳಗೆ ಅನಪೇಕ್ಷಿತ ಪದಗುಚ್ಛ '%s"
#: glib/gbookmarkfile.c:1781
#, c-format
msgid "No valid bookmark file found in data dirs"
msgstr "ದತ್ತಾಂಶ ಕೋಶದಲ್ಲಿ ಯಾವುದೇ ಮಾನ್ಯ ಬುಕ್ ಮಾರ್ಕ್ ಕಂಡು ಬಂದಿಲ್ಲ"
#: glib/gbookmarkfile.c:1982
#, c-format
msgid "A bookmark for URI '%s' already exists"
msgstr "URI '%s' ಗೆ ಈಗಾಗಲೆ ಒಂದು ಬುಕ್ ಮಾರ್ಕ್ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ"
#: glib/gbookmarkfile.c:2028 glib/gbookmarkfile.c:2185
#: glib/gbookmarkfile.c:2270 glib/gbookmarkfile.c:2350
#: glib/gbookmarkfile.c:2435 glib/gbookmarkfile.c:2518
#: glib/gbookmarkfile.c:2596 glib/gbookmarkfile.c:2675
#: glib/gbookmarkfile.c:2717 glib/gbookmarkfile.c:2814
#: glib/gbookmarkfile.c:2940 glib/gbookmarkfile.c:3130
#: glib/gbookmarkfile.c:3206 glib/gbookmarkfile.c:3371
#: glib/gbookmarkfile.c:3460 glib/gbookmarkfile.c:3550
#: glib/gbookmarkfile.c:3677
#, c-format
msgid "No bookmark found for URI '%s'"
msgstr "URI '%s' ಗೆ ಯಾವುದೇ ಬುಕ್ ಮಾರ್ಕ್ ಕಂಡು ಬಂದಿಲ್ಲ"
#: glib/gbookmarkfile.c:2359
#, c-format
msgid "No MIME type defined in the bookmark for URI '%s'"
msgstr "URI '%s' ಗಾಗಿನ ಬುಕ್ ಮಾರ್ಕಿನಲ್ಲಿ ಯಾವುದೇ MIME ಪ್ರಕಾರವು ಕಂಡುಬಂದಿಲ್ಲ"
#: glib/gbookmarkfile.c:2444
#, c-format
msgid "No private flag has been defined in bookmark for URI '%s'"
msgstr "URI '%s' ನ ಬುಕ್ ಮಾರ್ಕಿನಲ್ಲಿ ಯಾವುದೇ ಖಾಸಗಿ ನಿಶಾನೆಯು ಸೂಚಿತವಾಗಿಲ್ಲ"
#: glib/gbookmarkfile.c:2823
#, c-format
msgid "No groups set in bookmark for URI '%s'"
msgstr "URI '%s' ಗಾಗಿ ಯಾವುದೇ ಸಮೂಹವು ಸಂಯೋಜಿತವಾಗಿಲ್ಲ"
#: glib/gbookmarkfile.c:3224 glib/gbookmarkfile.c:3381
#, c-format
msgid "No application with name '%s' registered a bookmark for '%s'"
msgstr "'%s' ಎಂಬ ಹೆಸರಿನ ಯಾವುದೇ ಅನ್ವಯವು '%s' ಗಾಗಿ ಒಂದು ಬುಕ್-ಮಾರ್ಕನ್ನು ನೊಂದಾಯಿಸಿಲ್ಲ"
#: glib/gbookmarkfile.c:3404
#, c-format
msgid "Failed to expand exec line '%s' with URI '%s'"
msgstr "exec ಸಾಲು '%s' ಅನ್ನು URI '%s' ನೊಂದಿಗೆ ವಿಸ್ತರಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ"
#: glib/gconvert.c:424 glib/gconvert.c:502 glib/giochannel.c:1148
#, c-format
msgid "Conversion from character set '%s' to '%s' is not supported"
msgstr "'%s' ಅಕ್ಷರಗಳಿಂದ '%s' ಗೆ ಪರಿವರ್ತಿಸುವುದು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ"
#: glib/gconvert.c:428 glib/gconvert.c:506
#, c-format
msgid "Could not open converter from '%s' to '%s'"
msgstr "'%s' ನಿಂದ '%s'ಗೆ ಪರಿವರ್ತಕವನ್ನು ತೆರೆಯಲಾಗುತ್ತಿಲ್ಲ"
#: glib/gconvert.c:622 glib/gconvert.c:1011 glib/giochannel.c:1320
#: glib/giochannel.c:1362 glib/giochannel.c:2204 glib/gutf8.c:950
#: glib/gutf8.c:1399
#, c-format
msgid "Invalid byte sequence in conversion input"
msgstr "ಪರಿವರ್ತಿತ ಆದಾನದಲ್ಲಿನ ಬೈಟ್ ಅನುಕ್ರಮ ಅಮಾನ್ಯವಾಗಿದೆ"
#: glib/gconvert.c:628 glib/gconvert.c:938 glib/giochannel.c:1327
#: glib/giochannel.c:2216
#, c-format
msgid "Error during conversion: %s"
msgstr "ಪರಿವರ್ತಿಸುವಾಗ ದೋಷ: %s"
#: glib/gconvert.c:663 glib/gutf8.c:946 glib/gutf8.c:1150 glib/gutf8.c:1291
#: glib/gutf8.c:1395
#, c-format
msgid "Partial character sequence at end of input"
msgstr "ಆದಾನದ ಕೊನೆಯಲ್ಲಿ ಆಂಶಿಕ ಅಕ್ಷರ ಅನುಕ್ರಮಣೆ"
#: glib/gconvert.c:913
#, c-format
msgid "Cannot convert fallback '%s' to codeset '%s'"
msgstr "fallback '%s' ಅನ್ನು ಸಂಕೇತಸೆಟ್ '%s' ಗೆ ಪರಿವರ್ತಿಸಲಾಗಿಲ್ಲ"
#: glib/gconvert.c:1727
#, c-format
msgid "The URI '%s' is not an absolute URI using the \"file\" scheme"
msgstr "URI '%s' \"ಕಡತ\" ವಿಧಾನವನ್ನು ಬಳಸುವ ಒಂದು ಪರಿಪೂರ್ಣವಾದ URI ಅಲ್ಲ"
#: glib/gconvert.c:1737
#, c-format
msgid "The local file URI '%s' may not include a '#'"
msgstr "ಸ್ಥಳೀಯ ಕಡತ URI '%s' ಒಂದು '#' ಅನ್ನು ಹೊಂದಿಲ್ಲದಿರಬಹುದು"
#: glib/gconvert.c:1754
#, c-format
msgid "The URI '%s' is invalid"
msgstr "URI '%s' ಅಮಾನ್ಯವಾಗಿದೆ"
#: glib/gconvert.c:1766
#, c-format
msgid "The hostname of the URI '%s' is invalid"
msgstr "URI '%s' ನ ಅತಿಥೇಯದ ಹೆಸರು ಸರಿಯಿಲ್ಲ"
#: glib/gconvert.c:1782
#, c-format
msgid "The URI '%s' contains invalidly escaped characters"
msgstr "URI '%s' ಅಮಾನ್ಯವಾಗಿ ನುಣುಚಿಕೊಂಡ ಚಿಹ್ನೆಗಳನ್ನು ಒಳಗೊಂಡಿದೆ"
#: glib/gconvert.c:1877
#, c-format
msgid "The pathname '%s' is not an absolute path"
msgstr "ಪಥದ ಹೆಸರು '%s' ಒಂದು ಪರಿಪೂರ್ಣವಾದ ಪಥವಲ್ಲ"
#: glib/gconvert.c:1887
#, c-format
msgid "Invalid hostname"
msgstr "ಅಮಾನ್ಯವಾದ ಅತಿಥೇಯದ ಹೆಸರು"
#: glib/gdir.c:104 glib/gdir.c:124
#, c-format
msgid "Error opening directory '%s': %s"
msgstr "ಕಡತ ಕೋಶ '%s' ವನ್ನು ತೆರೆಯುವಲ್ಲಿ ದೋಷ: %s"
#: glib/gfileutils.c:557 glib/gfileutils.c:630
#, fuzzy, c-format
msgid "Could not allocate %lu bytes to read file \"%s\""
msgstr "%lu ಅಷ್ಟಕಗಳನ್ನು(bytes), \"%s\" ಕಡತವನ್ನು ಓದುವಂತೆ ನಿಯೋಜಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
#: glib/gfileutils.c:572
#, c-format
msgid "Error reading file '%s': %s"
msgstr "'%s' ಕಡತವನ್ನು ಓದುವಲ್ಲಿ ದೋಷ: %s"
#: glib/gfileutils.c:654
#, c-format
msgid "Failed to read from file '%s': %s"
msgstr "'%s' ಕಡತದಿಂದ ಓದುವಲ್ಲಿ ವಿಫಲತೆ: %s"
#: glib/gfileutils.c:705 glib/gfileutils.c:792
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "'%s' ಅನ್ನು ತೆರೆಯಲು ವಿಫಲವಾಗಿದೆ: %s"
#: glib/gfileutils.c:722 glib/gmappedfile.c:133
#, c-format
msgid "Failed to get attributes of file '%s': fstat() failed: %s"
msgstr "'%s' ಕಡತದಿಂದ ಗುಣಲಕ್ಷಣಗಳನ್ನು ಪಡೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fstat() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gfileutils.c:756
#, c-format
msgid "Failed to open file '%s': fdopen() failed: %s"
msgstr "'%s' ಕಡತವನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲತೆ: fdopen() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gfileutils.c:890
#, c-format
msgid "Failed to rename file '%s' to '%s': g_rename() failed: %s"
msgstr "'%s' ಕಡತವನ್ನು '%s' ಕ್ಕೆ ಪುನರ್ ನಾಮಕರಣ ಮಾಡುವಲ್ಲಿ: g_rename() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gfileutils.c:932 glib/gfileutils.c:1390
#, c-format
msgid "Failed to create file '%s': %s"
msgstr "'%s' ಕಡತವನ್ನು ರಚಿಸುವಲ್ಲಿ ವಿಫಲತೆ: %s"
#: glib/gfileutils.c:946
#, c-format
msgid "Failed to open file '%s' for writing: fdopen() failed: %s"
msgstr ""
"ಕಡತ '%s' ವನ್ನು ಬರೆಯಲು ಅನುವಾಗುವಣ್ತೆ ತೆರೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fdopen() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gfileutils.c:971
#, c-format
msgid "Failed to write file '%s': fwrite() failed: %s"
msgstr "ಕಡತ '%s'ವನ್ನು ಬರೆಯುವಲ್ಲಿ ವಿಫಲತೆ: fwrite() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gfileutils.c:990
#, c-format
msgid "Failed to close file '%s': fclose() failed: %s"
msgstr "ಕಡತ '%s' ವನ್ನು ಮುಚ್ಚುವಲ್ಲಿ ವಿಫಲತೆ: fclose() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gfileutils.c:1108
#, c-format
msgid "Existing file '%s' could not be removed: g_unlink() failed: %s"
msgstr ""
"ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ '%s' ಕಡತವನ್ನು ತೆಗೆದು ಹಾಕಲಾಗುವುದಿಲ್ಲ: g_unlink() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gfileutils.c:1352
#, c-format
msgid "Template '%s' invalid, should not contain a '%s'"
msgstr "ಮಾದರಿ '%s' ಅಮಾನ್ಯವಾಗಿದೆ, ಅದು ಒಂದು '%s' ಅನ್ನು ಹೊಂದಿರುವಂತಿಲ್ಲ"
#: glib/gfileutils.c:1365
#, c-format
msgid "Template '%s' doesn't contain XXXXXX"
msgstr "ಮಾದರಿ '%s' ಯು XXXXXX ಅನ್ನು ಹೊಂದಿಲ್ಲ"
#: glib/gfileutils.c:1840
#, c-format
msgid "Failed to read the symbolic link '%s': %s"
msgstr "ಸಾಂಕೇತಿಕ ಲಿಂಕ್ '%s' ಅನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲತೆ: %s"
#: glib/gfileutils.c:1861
#, c-format
msgid "Symbolic links not supported"
msgstr "ಸಾಂಕೇತಿಕ ಲಿಂಕುಗಳು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ"
#: glib/giochannel.c:1152
#, c-format
msgid "Could not open converter from '%s' to '%s': %s"
msgstr "'%s' ನಿಂದ '%s' ಗೆ ಪರಿವರ್ತಕವನ್ನು ತೆರೆಯಲು ಆಗಿಲ್ಲ: %s"
#: glib/giochannel.c:1497
#, c-format
msgid "Can't do a raw read in g_io_channel_read_line_string"
msgstr "g_io_channel_read_line_string ನಲ್ಲಿ ಒಂದು ಹಗುರ ಓದನ್ನು ಮಾಡಲಾಗಲಿಲ್ಲ"
#: glib/giochannel.c:1544 glib/giochannel.c:1801 glib/giochannel.c:1887
#, c-format
msgid "Leftover unconverted data in read buffer"
msgstr "ಪರಿವರ್ತಿತವಾಗದೆ ಬಾಕಿ ಉಳಿದ ದತ್ತಾಂಶಗಳು ಓದು-ಬಫರಿನಲ್ಲಿ"
#: glib/giochannel.c:1624 glib/giochannel.c:1701
#, c-format
msgid "Channel terminates in a partial character"
msgstr "ಮಾರ್ಗವು ಒಂದು ಆಂಶಿಕ ಅಕ್ಷರದಲ್ಲಿ ಕೊನೆಗೊಳ್ಳುತ್ತದೆ"
#: glib/giochannel.c:1687
#, c-format
msgid "Can't do a raw read in g_io_channel_read_to_end"
msgstr "g_io_channel_read_to_end ನಲ್ಲಿ ಒಂದು ಹಗುರ ಓದನ್ನು ಮಾಡಲಾಗಲಿಲ್ಲ"
#: glib/gmappedfile.c:116
#, c-format
msgid "Failed to open file '%s': open() failed: %s"
msgstr "ಕಡತ '%s' ವನ್ನು ತೆರೆಯಲು ವಿಫಲವಾಗಿದೆ: ತೆರೆಯುವುದು() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gmappedfile.c:193
#, c-format
msgid "Failed to map file '%s': mmap() failed: %s"
msgstr "'%s' ವನ್ನು ನಕ್ಷೆ ಕಡತಮಾಡುವಲ್ಲಿ ವಿಫಲ: mmap() ವಿಫಲಗೊಂಡಿದೆ: %s"
#: glib/gmarkup.c:226
#, c-format
msgid "Error on line %d char %d: %s"
msgstr "%d ಸಾಲಿನ %d ಚಿಹ್ನೆಯಲ್ಲಿ ದೋಷ: %s"
#: glib/gmarkup.c:324
#, c-format
msgid "Error on line %d: %s"
msgstr "%d ಸಾಲಿನಲ್ಲಿ ದೋಷ: %s"
#: glib/gmarkup.c:428
msgid ""
"Empty entity '&;' seen; valid entities are: & " < > '"
msgstr ""
"ಖಾಲಿ ಘಟಕ '&;' ಕಂಡು ಬಂದಿದೆ; ಮಾನ್ಯ ನಮೂದುಗಳೆಂದರೆ: & " < > '"
#: glib/gmarkup.c:438
#, c-format
msgid ""
"Character '%s' is not valid at the start of an entity name; the & character "
"begins an entity; if this ampersand isn't supposed to be an entity, escape "
"it as &"
msgstr ""
"'%s' ವು ಒಂದು ಘಟಕದ ಹೆಸರಿನ ಒಂದು ಆರಂಭದಲ್ಲಿ ಇರುವಂತಿಲ್ಲ; & ಅಕ್ಷರವು ಒಂದು ಘಟಕದ "
"ಆರಂಭದಲ್ಲಿರಬೇಕು ಇದರಿಂದ ಹೊರಬರಲು & ಮಾಡಿ"
#: glib/gmarkup.c:472
#, c-format
msgid "Character '%s' is not valid inside an entity name"
msgstr "ಒಂದು ಘಟಕದ ಹೆಸರಿನಲ್ಲಿ ಅಕ್ಷರ '%s' ವು ಮಾನ್ಯವಿಲ್ಲ"
#: glib/gmarkup.c:509
#, c-format
msgid "Entity name '%s' is not known"
msgstr "ತಿಳಿದಿಲ್ಲದ ಘಟಕದ ಹೆಸರು '%s'"
#: glib/gmarkup.c:520
msgid ""
"Entity did not end with a semicolon; most likely you used an ampersand "
"character without intending to start an entity - escape ampersand as &"
msgstr ""
"ಘಟಕವು ಒಂದು ಅರ್ಧವಿರಾಮ ಚಿಹ್ನೆಯಿಂದ ಕೊನೆಗೊಂಡಿಲ್ಲ; ಹೆಚ್ಚಿನ ಪಕ್ಷ ನೀವು ಒಂದು ಘಟಕವನ್ನು "
"ಆರಂಭಿಸುವ ಉದ್ದೇಶವಿಲ್ಲದೇ ampersand ಅಕ್ಷರವನ್ನು ಬಳಸಿದ್ದೀರಿ - ampersand ನಿಂದ ಹೊರಬರಲು "
"& ಎಂದು ಮಾಡಿ"
#: glib/gmarkup.c:573
#, c-format
msgid ""
"Failed to parse '%-.*s', which should have been a digit inside a character "
"reference (ê for example) - perhaps the digit is too large"
msgstr ""
"'%-.*s' ಅನ್ನು parse ಮಾಡುವಲ್ಲಿ ವಿಫಲ, ಇದು ಒಂದು ಉಲ್ಲೇಖ ಅಕ್ಷರದ ಒಳಗಿನ ಒಂದು "
"ಅಂಕಿಯಾಗಿರಬೇಕಿತ್ತು(ê ಉದಾಹರಣೆಗೆ) - ಬಹುಷಃ ಅಂಕಿಯು ಬಹಳ ದೊಡ್ಡದಾಗಿರಬೇಕು"
#: glib/gmarkup.c:598
#, c-format
msgid "Character reference '%-.*s' does not encode a permitted character"
msgstr "ಅಕ್ಷರ ಉಲ್ಲೇಖ '%-.*s' ವು ಒಂದು ಅನುಮತಿ ಇರುವ ಅಕ್ಷರವನ್ನು encode ಮಾಡುವುದಿಲ್ಲ"
#: glib/gmarkup.c:613
msgid "Empty character reference; should include a digit such as dž"
msgstr "ಖಾಲಿ ಉಲ್ಲೇಖ ಅಕ್ಷರ; dž ನಂತಹ ಅಂಕಿಗಳನ್ನು ಒಳಗೊಂಡಿರಬೇಕು"
#: glib/gmarkup.c:623
msgid ""
"Character reference did not end with a semicolon; most likely you used an "
"ampersand character without intending to start an entity - escape ampersand "
"as &"
msgstr ""
"ಅಕ್ಷರ ಉಲ್ಲೇಖವು ಒಂದು ಅರ್ಧವಿರಾಮ ಚಿಹ್ನೆಯಿಂದ ಕೊನೆಗೊಂಡಿಲ್ಲ; ಹೆಚ್ಚಿನ ಪಕ್ಷ ನೀವು ಒಂದು "
"ಘಟಕವನ್ನು ಆರಂಭಿಸುವ ಉದ್ದೇಶವಿಲ್ಲದೇ ampersand ಅಕ್ಷರವನ್ನು ಬಳಸಿದ್ದೀರಿ - ampersand ನಿಂದ "
"ಹೊರಬರಲು & ಎಂದು ಮಾಡಿ"
#: glib/gmarkup.c:709
msgid "Unfinished entity reference"
msgstr "ಪೂರ್ಣಗೊಳಿಸದ ಘಟಕ ಉಲ್ಲೇಖ"
#: glib/gmarkup.c:715
msgid "Unfinished character reference"
msgstr "ಪೂರ್ಣಗೊಳಿಸದ ಅಕ್ಷರ ಉಲ್ಲೇಖ"
#: glib/gmarkup.c:958
#, fuzzy
msgid "Invalid UTF-8 encoded text - overlong sequence"
msgstr "ಅಮಾನ್ಯ UTF-8 encoded ಪಠ್ಯ"
#: glib/gmarkup.c:986
#, fuzzy
msgid "Invalid UTF-8 encoded text - not a start char"
msgstr "ಅಮಾನ್ಯ UTF-8 encoded ಪಠ್ಯ"
#: glib/gmarkup.c:1022
#, fuzzy, c-format
msgid "Invalid UTF-8 encoded text - not valid '%s'"
msgstr "ಅಮಾನ್ಯ UTF-8 encoded ಪಠ್ಯ"
#: glib/gmarkup.c:1060
msgid "Document must begin with an element (e.g. <book>)"
msgstr "ದಸ್ತಾವೇಜುಗಳು ಒಂದು ಅಂಶದಿಂದ ಆರಂಭಗೊಳ್ಳಬೇಕು (e.g. <book>)"
#: glib/gmarkup.c:1100
#, c-format
msgid ""
"'%s' is not a valid character following a '<' character; it may not begin an "
"element name"
msgstr ""
"'<' ಅಕ್ಷರವು ಬಂದ ನಂತರ, '%s' ವು ಒಂದು ಮಾನ್ಯವಲ್ಲದ ಅಕ್ಷರವಾಗಿದೆ; ಅದು ಒಂದು ಅಂಶದ ಹೆಸರನ್ನು "
"ಆರಂಭಿಸದೇ ಇರಬಹುದು"
#: glib/gmarkup.c:1164
#, c-format
msgid ""
"Odd character '%s', expected a '>' character to end the start tag of element "
"'%s'"
msgstr ""
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', '%s' ಅಂಶದ ಟ್ಯಾಗಿನ ಆರಂಭವು ಒಂದು '>' ಅಕ್ಷರದಿಂದ ಕೊನೆಗೊಳ್ಳಬೇಕು "
"ಎಂದು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
#: glib/gmarkup.c:1253
#, c-format
msgid ""
"Odd character '%s', expected a '=' after attribute name '%s' of element '%s'"
msgstr ""
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', '%s'ವು '%s' ಅಂಶದ ಗುಣಲಕ್ಷಣ ಹೆಸರಾಗಿದ್ದು ಅದರ ನಂತರ ಒಂದು '=' "
"ಅನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
#: glib/gmarkup.c:1295
#, c-format
msgid ""
"Odd character '%s', expected a '>' or '/' character to end the start tag of "
"element '%s', or optionally an attribute; perhaps you used an invalid "
"character in an attribute name"
msgstr ""
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', '%s' ಅಂಶದ ಟ್ಯಾಗಿನ ಆರಂಭವು ಒಂದು '>' ಅಥವ '/' ಅಕ್ಷರದಿಂದ "
"ಕೊನೆಗೊಳ್ಳಬೇಕು ಎಂದು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು, ಅಥವ ಆಯ್ಕಾತ್ಮಕವಾಗಿ ಒಂದು ಗುಣಲಕ್ಷಣ; ಬಹುಷಃ ನೀವು "
"ಅಮಾನ್ಯ ಅಕ್ಷರವನ್ನು ಒಂದು ಗುಣಲಕ್ಷಣದ ಹೆಸರಿನಲ್ಲಿ ಬಳಸಿದ್ದೀರೆಂದು ತೋರುತ್ತದೆ"
#: glib/gmarkup.c:1384
#, c-format
msgid ""
"Odd character '%s', expected an open quote mark after the equals sign when "
"giving value for attribute '%s' of element '%s'"
msgstr ""
"ಸರಿಯಲ್ಲದ ಅಕ್ಷರ '%s', ಗುಣಲಕ್ಷಣ '%s'ವು '%s' ದ ಅಂಶವಾಗಿದ್ದು, ಇದಕ್ಕೆ ಒಂದು ಮೌಲ್ಯವನ್ನು "
"ಕೊಡುವಾಗ ಸಮ ಚಿಹ್ನೆಯ ನಂತರ ಒಂದು ಮುಕ್ತ ಉದ್ಧರಣ ಚಿಹ್ನೆಯನ್ನು ನಿರೀಕ್ಷಿಸಲಾಗಿತ್ತು"
#: glib/gmarkup.c:1529
#, c-format
msgid ""
"'%s' is not a valid character following the characters '</'; '%s' may not "
"begin an element name"
msgstr ""
"'%s' ವು '</' ಗಳಂತಹ ಅಕ್ಷರಗಳ ನಂತರ ಬರುವ ಒಂದು ಮಾನ್ಯವಾದ ಅಕ್ಷರವಲ್ಲ; ಒಂದು ಅಂಶದ ಹೆಸರು '%"
"s' ನಿಂದ ಆರಂಭಗೊಳ್ಳುವುದಿಲ್ಲ"
#: glib/gmarkup.c:1569
#, c-format
msgid ""
"'%s' is not a valid character following the close element name '%s'; the "
"allowed character is '>'"
msgstr ""
"'%s' ವು ಮುಚ್ಚಲ್ಪಟ್ಟ ಅಂಶ ಹೆಸರು '%s' ನಂತರ ಬರುವ ಒಂದು ಮಾನ್ಯವಾದ ಅಕ್ಷರವಲ್ಲ; '>' ವು "
"ಅನುಮತಿ ಇರುವ ಅಕ್ಷರವಾಗಿರುತ್ತದೆ"
#: glib/gmarkup.c:1580
#, c-format
msgid "Element '%s' was closed, no element is currently open"
msgstr "ಅಂಶವು '%s' was closed, no element is currently open"
#: glib/gmarkup.c:1589
#, c-format
msgid "Element '%s' was closed, but the currently open element is '%s'"
msgstr "ಅಂಶ '%s' ವು ಮುಚ್ಚಲ್ಪಟ್ಟಿದೆ, ಆದರೆ ಪ್ರಸ್ತುತ ಮುಕ್ತವಾಗಿರುವ ಅಂಶವೆಂದರೆ '%s' ಆಗಿದೆ"
#: glib/gmarkup.c:1755
msgid "Document was empty or contained only whitespace"
msgstr "ದಸ್ತಾವೇಜು ಖಾಲಿಯಾಗಿತ್ತು ಅಥವ ಕೇವಲ ಕೇವಲ ಖಾಲಿ ಜಾಗಗಳನ್ನು ಹೊಂದಿತ್ತು"
#: glib/gmarkup.c:1769
msgid "Document ended unexpectedly just after an open angle bracket '<'"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಮುಕ್ತ ಕೋನ ಆವರಣ ಚಿಹ್ನೆ '<' ಯ ನಂತರ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1777 glib/gmarkup.c:1822
#, c-format
msgid ""
"Document ended unexpectedly with elements still open - '%s' was the last "
"element opened"
msgstr ""
"ಅಂಶಗಳು ತೆರೆದಿರುವಾಗಲೇ ದಸ್ತಾವೇಜು ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ - '%s' ಯು ತೆರೆಯಲ್ಪಟ್ಟ "
"ಕೊನೆಯ ಅಂಶ"
#: glib/gmarkup.c:1785
#, c-format
msgid ""
"Document ended unexpectedly, expected to see a close angle bracket ending "
"the tag <%s/>"
msgstr ""
"ದಸ್ತಾವೇಜು ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ, <%s/> ಟ್ಯಾಗಿನ ಕೊನೆಯಲ್ಲಿ ಒಂದು ಮುಕ್ತ ಕೋನ ಆವರಣ "
"ಚಿಹ್ನೆಯನ್ನು ಕಾಣಲು ಅಪೇಕ್ಷಿಸಲಾಗಿತ್ತು"
#: glib/gmarkup.c:1791
msgid "Document ended unexpectedly inside an element name"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶದ ಹೆಸರಿನಲ್ಲಿ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1797
msgid "Document ended unexpectedly inside an attribute name"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣ ಹೆಸರಿನಲ್ಲಿ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1802
msgid "Document ended unexpectedly inside an element-opening tag."
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶ ತೆರೆಯುವ ಟ್ಯಾಗಿನ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1808
msgid ""
"Document ended unexpectedly after the equals sign following an attribute "
"name; no attribute value"
msgstr ""
"ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣದ ಹೆಸರಿನ ನಂತರದ ಸಮ ಚಿಹ್ನೆಯ ನಂತರ ಅನಿರೀಕ್ಷಿತವಾಗಿ "
"ಕೊನೆಗೊಂಡಿದೆ; ಯಾವುದೇ ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯವಿಲ್ಲ"
#: glib/gmarkup.c:1815
msgid "Document ended unexpectedly while inside an attribute value"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಗುಣಲಕ್ಷಣ ಮೌಲ್ಯದ ಒಳಗಿರುವಾಗ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1831
#, c-format
msgid "Document ended unexpectedly inside the close tag for element '%s'"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಅಂಶ'%s'ದ ಮುಚ್ಚಲ್ಪಟ್ಟ ಟ್ಯಾಗಿನ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gmarkup.c:1837
msgid "Document ended unexpectedly inside a comment or processing instruction"
msgstr "ದಸ್ತಾವೇಜು ಒಂದು ಹೇಳಿಕೆ ಅಥವ ಪ್ರಕ್ರಿಯೆ ಸೂಚನೆಯ ಒಳಗೆ ಅನಿರೀಕ್ಷಿತವಾಗಿ ಕೊನೆಗೊಂಡಿದೆ"
#: glib/gregex.c:131
msgid "corrupted object"
msgstr "ಭ್ರಷ್ಟಗೊಂಡ ವಸ್ತು"
#: glib/gregex.c:133
msgid "internal error or corrupted object"
msgstr "ಆಂತರಿಕ ದೋಷ ಅಥವ ಭ್ರಷ್ಟಗೊಂಡ ವಸ್ತು"
#: glib/gregex.c:135
msgid "out of memory"
msgstr "ಮೆಮೊರಿ ಖಾಲಿಯಾಗಿದೆ"
#: glib/gregex.c:140
msgid "backtracking limit reached"
msgstr "ಹಿಂಬಾಲಿಸುವ ಮಿತಿ ತಲುಪಿದೆ"
#: glib/gregex.c:152 glib/gregex.c:160
msgid "the pattern contains items not supported for partial matching"
msgstr "ಆಂಶಿಕ ಹೊಂದಾಣಿಕೆಗೆ ಬೆಂಬಲಿತವಾಗದ ಅಂಶಗಳನ್ನು ಈ ವಿನ್ಯಾಸವು ಹೊಂದಿದೆ"
#: glib/gregex.c:154
msgid "internal error"
msgstr "ಆಂತರಿಕ ದೋಷ"
#: glib/gregex.c:162
msgid "back references as conditions are not supported for partial matching"
msgstr ""
"ಆಂಶಿಕ ತಾಳೆಗೆ ಪರಿಸ್ಥಿತಿಯು ಬೆಂಬಲಿತವಾಗಿಲ್ಲ ಆದ್ದರಿಂದ ಹಿಂಬದಿಯ ಉಲ್ಲೇಖಗಳನ್ನು ಬಳಸಲಾಗುವುದು"
#: glib/gregex.c:171
msgid "recursion limit reached"
msgstr "ರಿಕರ್ಶನ್ ಮಿತಿಯನ್ನು ತಲುಪಿದೆ"
#: glib/gregex.c:173
msgid "workspace limit for empty substrings reached"
msgstr "ಖಾಲಿ ಉಪಸಾಲುಗಳಿಗಾಗಿನ ಕಾರ್ಯಕ್ಷೇತ್ರದ ಮಿತಿಯನ್ನು ತಲುಪಲ್ಪಟ್ಟಿದೆ"
#: glib/gregex.c:175
msgid "invalid combination of newline flags"
msgstr "ಹೊಸಸಾಲು ಗುರುತುಗಳ ಅಮಾನ್ಯ ಸಂಯೋಜನೆ"
#: glib/gregex.c:179
msgid "unknown error"
msgstr "ಗೊತ್ತಿರದ ದೋಷ"
#: glib/gregex.c:324 glib/gregex.c:1360
#, c-format
msgid "Error while matching regular expression %s: %s"
msgstr "ಸಾಮಾನ್ಯ ನಿರೂಪಣೆಯ %s ಅನ್ನು ಹೊಂದಾಣಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ: %s"
#: glib/gregex.c:875
msgid "PCRE library is compiled without UTF8 support"
msgstr "UTF8 ಬೆಂಬಲವಿಲ್ಲದೆ PCRE ಭಂಡಾರವು ಸಂಕಲಿತಗೊಂಡಿದೆ"
#: glib/gregex.c:884
msgid "PCRE library is compiled without UTF8 properties support"
msgstr "UTF8 ಗುಣಲಕ್ಷಣಗಳ ಬೆಂಬಲವಿಲ್ಲದೆ PCRE ಭಂಡಾರವು ಸಂಕಲಿತಗೊಂಡಿದೆ"
#: glib/gregex.c:929
#, fuzzy, c-format
msgid "Error while compiling regular expression %s at char %d: %s"
msgstr "ಸಾಮಾನ್ಯ ನಿರೂಪಣೆಯ %s ಅನ್ನು char %d ನಲ್ಲಿ ಸಂಕಲಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ: %s"
#: glib/gregex.c:964
#, c-format
msgid "Error while optimizing regular expression %s: %s"
msgstr "ಸಾಮಾನ್ಯ ನಿರೂಪಣೆಯ %s ಅನ್ನು ಸರಳೀಕರಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ: %s"
#: glib/gregex.c:1788
msgid "hexadecimal digit or '}' expected"
msgstr "ಷೋಡ-ದಶಮಾನ ಅಂಕಿ ಅಥವ '}' ಅನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿದೆ"
#: glib/gregex.c:1804
msgid "hexadecimal digit expected"
msgstr "ಷೋಡ-ದಶಮಾನ ಅಂಕಿಯನ್ನು ಅಪೇಕ್ಷಿಸಲಾಗಿದೆ"
#: glib/gregex.c:1844
msgid "missing '<' in symbolic reference"
msgstr "ಸಾಂಕೇತಿಕ ಉಲ್ಲೇಖದಲ್ಲಿ '<' ಕಾಣೆಯಾಗಿದೆ"
#: glib/gregex.c:1853
msgid "unfinished symbolic reference"
msgstr "ಅಪೂರ್ಣಗೊಂಡಿರುವ ಸಾಂಕೇತಿಕ ಉಲ್ಲೇಖ"
#: glib/gregex.c:1860
msgid "zero-length symbolic reference"
msgstr "ಶೂನ್ಯ-ಉದ್ದದ ಸಾಂಕೇತಿಕ ಉಲ್ಲೇಖ"
#: glib/gregex.c:1871
msgid "digit expected"
msgstr "ಅಪೇಕ್ಷಿತ ಅಂಕಿ"
#: glib/gregex.c:1889
msgid "illegal symbolic reference"
msgstr "ನಿಯಮ ಬಾಹಿರವಾದ ಸಾಂಕೇತಿಕ ಉಲ್ಲೇಖ"
#: glib/gregex.c:1951
msgid "stray final '\\'"
msgstr "ಅಪರೂಪದ ಅಂತ್ಯ '\\'"
#: glib/gregex.c:1955
msgid "unknown escape sequence"
msgstr "ಗೊತ್ತಿರದ ಪಾರು ಅನುಕ್ರಮ"
#: glib/gregex.c:1965
#, c-format
msgid "Error while parsing replacement text \"%s\" at char %lu: %s"
msgstr "ಬದಲಾಯಿಸಲ್ಪಟ್ಟ ಪಠ್ಯ \"%s\"ಅನ್ನು %lu ನಲ್ಲಿ parsing ಮಾಡುವಾಗಿನ ದೋಷ: %s"
#: glib/gshell.c:70
#, c-format
msgid "Quoted text doesn't begin with a quotation mark"
msgstr "ಉದ್ಧರಿತ ಪಠ್ಯವು ಒಂದು ಉದ್ಧರನ ಚಿಹ್ನೆಯಿಂದ ಆರಂಭಗೊಳ್ಳುವುದಿಲ್ಲ"
#: glib/gshell.c:160
#, c-format
msgid "Unmatched quotation mark in command line or other shell-quoted text"
msgstr ""
"ಆಜ್ಞಾ ಸಾಲಿನಲ್ಲಿ ಅಥವ ಇತರೆ ಶೆಲ್ಲಿನಲ್ಲಿ ಉದ್ಧರಿಸಲಾದ ಪಠ್ಯದಲ್ಲಿ ತಾಳೆಯಾಗದ ಉದ್ಧರಣಚಿಹ್ನೆಗಳು"
#: glib/gshell.c:538
#, c-format
msgid "Text ended just after a '\\' character. (The text was '%s')"
msgstr "ಪಠ್ಯವು ಒಂದು '\\' ಅಕ್ಷರದ ನಂತರ ಅಂತ್ಯಗೊಂಡಿತು. (ಪಠ್ಯವು '%s' ಆಗಿತ್ತು)"
#: glib/gshell.c:545
#, c-format
msgid "Text ended before matching quote was found for %c. (The text was '%s')"
msgstr "%c ಗಾಗಿನ (ಪಠ್ಯವು '%s' ಆಗಿತ್ತು)"
#: glib/gshell.c:557
#, c-format
msgid "Text was empty (or contained only whitespace)"
msgstr "ಪಠ್ಯವು ಖಾಲಿಯಾಗಿತ್ತು (ಅಥವ ಕೇವಲ ಖಾಲಿಜಾಗಗಳನ್ನು ಹೊಂದಿತ್ತು)"
#: glib/gspawn-win32.c:272
#, c-format
msgid "Failed to read data from child process"
msgstr "child ಪ್ರಕ್ರಿಯೆಯಿಂದ ದತ್ತಾಂಶವನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ"
#: glib/gspawn-win32.c:287 glib/gspawn.c:1395
#, c-format
msgid "Failed to create pipe for communicating with child process (%s)"
msgstr "ಉಪ ಪ್ರಕ್ರಿಯೆಯೊಂದಿಗೆ ಸಂವಹನಕ್ಕೆ ಪೈಪನ್ನು ರಚಿಸುವಲ್ಲಿ ವಿಫಲವಾಗಿದೆ (%s)"
#: glib/gspawn-win32.c:325 glib/gspawn.c:1059
#, c-format
msgid "Failed to read from child pipe (%s)"
msgstr "child pipe (%s) ನಿಂದ ಓದುವಲ್ಲಿ ವಿಫಲತೆ"
#: glib/gspawn-win32.c:351 glib/gspawn.c:1264
#, c-format
msgid "Failed to change to directory '%s' (%s)"
msgstr "'%s' ಕೋಶಕ್ಕೆ ಬದಲಾಯಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ (%s)"
#: glib/gspawn-win32.c:357 glib/gspawn-win32.c:481
#, c-format
msgid "Failed to execute child process (%s)"
msgstr "child ಪ್ರಕ್ರಿಯೆ (%s) ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ"
#: glib/gspawn-win32.c:428
#, c-format
msgid "Invalid program name: %s"
msgstr "ಅಮಾನ್ಯವಾದ ಪ್ರೋಗ್ರಾಂ ಹೆಸರು: %s"
#: glib/gspawn-win32.c:438 glib/gspawn-win32.c:678 glib/gspawn-win32.c:1218
#, c-format
msgid "Invalid string in argument vector at %d: %s"
msgstr "%d ದಲ್ಲಿರುವ ಆರ್ಗ್ಯುಮೆಂಟ್ ವೆಕ್ಟರಿನಲ್ಲಿನ ಅಮಾನ್ಯ ಸಾಲು: %s"
#: glib/gspawn-win32.c:449 glib/gspawn-win32.c:692 glib/gspawn-win32.c:1251
#, c-format
msgid "Invalid string in environment: %s"
msgstr "ಪರಿಸರದಲ್ಲಿನ ಅಮಾನ್ಯ ಸಾಲು: %s"
#: glib/gspawn-win32.c:674 glib/gspawn-win32.c:1199
#, c-format
msgid "Invalid working directory: %s"
msgstr "ಅಮಾನ್ಯ ಕಾರ್ಯಕಾರಿ ಕೋಶ: %s"
#: glib/gspawn-win32.c:738
#, c-format
msgid "Failed to execute helper program (%s)"
msgstr "ಸಹಾಯಕ ಪ್ರೊಗ್ರಾಂ (%s) ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ"
#: glib/gspawn-win32.c:938
#, c-format
msgid ""
"Unexpected error in g_io_channel_win32_poll() reading data from a child "
"process"
msgstr ""
"child ಪ್ರಕ್ರಿಯೆ ಯಿಂದ ದತ್ತಾಂಶವನ್ನು ಓದುವಾಗ g_io_channel_win32_poll() ನಲ್ಲಿ ಅನಪೇಕ್ಷಿತ "
"ದೋಷ"
#: glib/gspawn.c:175
#, c-format
msgid "Failed to read data from child process (%s)"
msgstr "child ಪ್ರಕ್ರಿಯೆ (%s) ಯಿಂದ ದತ್ತಾಂಶವನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲ"
#: glib/gspawn.c:307
#, c-format
msgid "Unexpected error in select() reading data from a child process (%s)"
msgstr "child ಪ್ರಕ್ರಿಯೆ (%s) ಯಿಂದ ದತ್ತಾಂಶವನ್ನು ಓದುವಾಗ select() ನಲ್ಲಿ ಅನಪೇಕ್ಷಿತ ದೋಷ"
#: glib/gspawn.c:390
#, c-format
msgid "Unexpected error in waitpid() (%s)"
msgstr "waitpid() ನಲ್ಲಿ ಅನಪೇಕ್ಷಿತ ದೋಷ (%s)"
#: glib/gspawn.c:1124
#, c-format
msgid "Failed to fork (%s)"
msgstr "ಕವಲೊಡೆಸುವಲ್ಲಿ ವಿಫಲತೆ (%s)"
#: glib/gspawn.c:1274
#, c-format
msgid "Failed to execute child process \"%s\" (%s)"
msgstr "child ಪ್ರಕ್ರಿಯೆ \"%s\" (%s) ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ"
#: glib/gspawn.c:1284
#, c-format
msgid "Failed to redirect output or input of child process (%s)"
msgstr ""
"child ಪ್ರಕ್ರಿಯೆಯ ಆದಾನ ಅಥವ ಪ್ರದಾನವನ್ನು ಪುನರ್ನಿರ್ದೇಶಿಸುವಲ್ಲಿ ವಿಫಲತೆ ಎದುರಾಗಿದೆ (%s)"
#: glib/gspawn.c:1293
#, c-format
msgid "Failed to fork child process (%s)"
msgstr "child ಪ್ರಕ್ರಿಯೆಯನ್ನು ಕವಲೊಡೆಯಲು ವಿಫಲಗೊಂಡಿದೆ (%s)"
#: glib/gspawn.c:1301
#, c-format
msgid "Unknown error executing child process \"%s\""
msgstr "child ಪ್ರಕ್ರಿಯೆ \"%s\" ಅನ್ನು ಕಾರ್ಯಗತಗೊಳಿಸುವಾಗ ಗೊತ್ತಿರದ ದೋಷ"
#: glib/gspawn.c:1323
#, c-format
msgid "Failed to read enough data from child pid pipe (%s)"
msgstr "child pid pipe (%s) ಇಂದ ಸಾಕಷ್ಟು ದತ್ತಾಂಶವನ್ನು ಓದುವಲ್ಲಿ ವಿಫಲಗೊಂಡಿದೆ"
#: glib/gutf8.c:1024
#, c-format
msgid "Character out of range for UTF-8"
msgstr "ಅಕ್ಷರವು UTF-8 ನ ವ್ಯಾಪ್ತಿ ಇಂದ ಹೊರಗಿದೆ"
#: glib/gutf8.c:1118 glib/gutf8.c:1127 glib/gutf8.c:1259 glib/gutf8.c:1268
#: glib/gutf8.c:1409 glib/gutf8.c:1505
#, c-format
msgid "Invalid sequence in conversion input"
msgstr "ಆದಾನ ಪರಿವರ್ತನೆಯಲ್ಲಿ ಅಮಾನ್ಯ ಅನುಕ್ರಮ"
#: glib/gutf8.c:1420 glib/gutf8.c:1516
#, c-format
msgid "Character out of range for UTF-16"
msgstr "ಅಕ್ಷರವು UTF-16 ನ ವ್ಯಾಪ್ತಿ ಇಂದ ಹೊರಗಿದೆ"
#: glib/goption.c:572
msgid "Usage:"
msgstr "ಬಳಕೆ:"
#: glib/goption.c:572
msgid "[OPTION...]"
msgstr "[OPTION...]"
#: glib/goption.c:676
msgid "Help Options:"
msgstr "ಸಹಾಯ ಆಯ್ಕೆಗಳು:"
#: glib/goption.c:677
msgid "Show help options"
msgstr "ಸಹಾಯ ಆಯ್ಕೆಯನ್ನು ತೋರಿಸು"
#: glib/goption.c:683
msgid "Show all help options"
msgstr "ಎಲ್ಲಾ ಸಹಾಯ ಅಂಶಪಟ್ಟಿಯನ್ನು ತೋರಿಸು"
#: glib/goption.c:735
msgid "Application Options:"
msgstr "ಅನ್ವಯದ ಆಯ್ಕೆಗಳು:"
#: glib/goption.c:796 glib/goption.c:866
#, c-format
msgid "Cannot parse integer value '%s' for %s"
msgstr " for %s ಕ್ಕಾಗಿನ ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ಅನ್ನು ಶಬ್ಧಲಕ್ಷಣ ಹೇಳಲಾಗಿಲ್ಲ"
#: glib/goption.c:806 glib/goption.c:874
#, c-format
msgid "Integer value '%s' for %s out of range"
msgstr "%s ಕ್ಕಾಗಿನ ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ವು ವ್ಯಾಪ್ತಿಯಿಂದ ಹೊರಗಿದೆ"
#: glib/goption.c:831
#, c-format
msgid "Cannot parse double value '%s' for %s"
msgstr "'%s' ದ %s ಕ್ಕಾಗಿನ ದ್ವಿಮೌಲ್ಯವನ್ನು parse ಮಾಡಲಾಗಿಲ್ಲ"
#: glib/goption.c:839
#, c-format
msgid "Double value '%s' for %s out of range"
msgstr "%s ಕ್ಕಾಗಿನ '%s' ದ್ವಿ ಮೌಲ್ಯವು ವ್ಯಾಪ್ತಿಯಿಂದ ಹೊರಗಿದೆ"
#: glib/goption.c:1176
#, c-format
msgid "Error parsing option %s"
msgstr "%s ಆಯ್ಕೆಯ ಶಬ್ಧಲಕ್ಷಣವನ್ನು ಹೇಳುವಾಗ ದೋಷ"
#: glib/goption.c:1207 glib/goption.c:1318
#, c-format
msgid "Missing argument for %s"
msgstr "%s ಗೆ ಆರ್ಗ್ಯುಮೆಂಟ್ ಕಾಣುತ್ತಿಲ್ಲ"
#: glib/goption.c:1713
#, c-format
msgid "Unknown option %s"
msgstr "ಗೊತ್ತಿರದ ಆಯ್ಕೆ %s"
#: glib/gkeyfile.c:341
#, c-format
msgid "Valid key file could not be found in search dirs"
msgstr "ಹುಡುಕು ಕೋಶದಲ್ಲಿ ಮಾನ್ಯ ಕೀಲಿ ಪತ್ತೆಯಾಗಿಲ್ಲ"
#: glib/gkeyfile.c:376
#, c-format
msgid "Not a regular file"
msgstr "ಒಂದು ಸಾಮಾನ್ಯ ಕಡತವಲ್ಲ"
#: glib/gkeyfile.c:384
#, c-format
msgid "File is empty"
msgstr "ಕಡತವು ಖಾಲಿ ಇದೆ"
#: glib/gkeyfile.c:746
#, c-format
msgid ""
"Key file contains line '%s' which is not a key-value pair, group, or comment"
msgstr ""
"ಕೀಲಿ ಕಡತವು '%s' ಸಾಲನ್ನು ಹೊಂದಿದೆ, ಇದು ಒಂದು ಕೀಲಿ-ಮೌಲ್ಯ ಜೋಡಿ, ಸಮೂಹ, ಅಥವ ಹೇಳಿಕೆಯಲ್ಲ"
#: glib/gkeyfile.c:806
#, c-format
msgid "Invalid group name: %s"
msgstr "ಅಮಾನ್ಯ ಸಮೂಹ ಹೆಸರು: %s"
#: glib/gkeyfile.c:828
#, c-format
msgid "Key file does not start with a group"
msgstr "ಕೀಲಿ ಕಡತವು ಒಂದು ಸಮೂಹದೊಂದಿಗೆ ಆರಂಭಗೊಳ್ಳುವುದಿಲ್ಲ"
#: glib/gkeyfile.c:854
#, c-format
msgid "Invalid key name: %s"
msgstr "ಅಮಾನ್ಯ ಕೀಲಿ ಹೆಸರು: %s"
#: glib/gkeyfile.c:881
#, c-format
msgid "Key file contains unsupported encoding '%s'"
msgstr "ಕೀಲಿ ಕಡತವು ಬೆಂಬಲಿತವಲ್ಲದ encoding '%s'ಅನ್ನು ಹೊಂದಿದೆ"
#: glib/gkeyfile.c:1094 glib/gkeyfile.c:1253 glib/gkeyfile.c:2455
#: glib/gkeyfile.c:2521 glib/gkeyfile.c:2640 glib/gkeyfile.c:2775
#: glib/gkeyfile.c:2928 glib/gkeyfile.c:3108 glib/gkeyfile.c:3165
#, c-format
msgid "Key file does not have group '%s'"
msgstr "ಕೀಲಿ ಕಡತವು ಸಮೂಹ '%s'ವನ್ನು ಹೊಂದಿಲ್ಲ"
#: glib/gkeyfile.c:1265
#, c-format
msgid "Key file does not have key '%s'"
msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿಲ್ಲ"
#: glib/gkeyfile.c:1367 glib/gkeyfile.c:1477
#, c-format
msgid "Key file contains key '%s' with value '%s' which is not UTF-8"
msgstr ""
"ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿದ್ದು ಅದು UTF-8 ಅಲ್ಲದ ಮೌಲ್ಯವಾದ '%s'ವನ್ನು ಹೊಂದಿದೆ "
#: glib/gkeyfile.c:1387 glib/gkeyfile.c:1497 glib/gkeyfile.c:1866
#, c-format
msgid "Key file contains key '%s' which has value that cannot be interpreted."
msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿದ್ದು ಅದು ಮೌಲ್ಯವನ್ನು ವಿವರಿಸಲಾಗುವುದಿಲ್ಲ."
#: glib/gkeyfile.c:2078 glib/gkeyfile.c:2287
#, c-format
msgid ""
"Key file contains key '%s' in group '%s' which has value that cannot be "
"interpreted."
msgstr ""
"ಕೀಲಿ ಕಡತವು ಕೀಲಿ '%s'ಯನ್ನು ಹೊಂದಿದ್ದು ಅದು ಸಮೂಹ '%s'ದ್ದಾಗಿದ್ದು ಹಾಗು ಅದರ ಮೌಲ್ಯವನ್ನು "
"ವಿವರಿಸಲಾಗುವುದಿಲ್ಲ."
#: glib/gkeyfile.c:2470 glib/gkeyfile.c:2655 glib/gkeyfile.c:3176
#, c-format
msgid "Key file does not have key '%s' in group '%s'"
msgstr "ಕೀಲಿ ಕಡತವು ಕೀಲಿ'%s' ಯನ್ನು ಗುಂಪು '%s'ನಲ್ಲಿ ಹೊಂದಿಲ್ಲ"
#: glib/gkeyfile.c:3415
#, c-format
msgid "Key file contains escape character at end of line"
msgstr "ಕೀಲಿ ಕಡತವು ಸಾಲಿನ ಕೊನೆಯಲ್ಲಿ ಪಾರು ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿದೆ"
#: glib/gkeyfile.c:3437
#, c-format
msgid "Key file contains invalid escape sequence '%s'"
msgstr "ಕೀಲಿ ಕಡತವು ಅಮಾನ್ಯ ಪಾರು ಅನುಕ್ರಮವನ್ನು ಹೊಂದಿದೆ '%s'"
#: glib/gkeyfile.c:3579
#, c-format
msgid "Value '%s' cannot be interpreted as a number."
msgstr "ಮೌಲ್ಯ '%s' ವನ್ನು ಒಂದು ಸಂಖ್ಯೆಯಾಗಿ ಸೂಚಿಸಲು ಆಗುವುದಿಲ್ಲ."
#: glib/gkeyfile.c:3593
#, c-format
msgid "Integer value '%s' out of range"
msgstr "ಪೂರ್ಣಾಂಕ ಮೌಲ್ಯ '%s' ವು ವ್ಯಾಪ್ತಿಯನ್ನು ಮೀರಿದೆ"
#: glib/gkeyfile.c:3626
#, c-format
msgid "Value '%s' cannot be interpreted as a float number."
msgstr "ಮೌಲ್ಯ '%s' ವನ್ನು ಒಂದು ತೇಲು ಸಂಖ್ಯೆ ಆಗಿ ವಿವರಿಸಲು ಆಗುವುದಿಲ್ಲ."
#: glib/gkeyfile.c:3650
#, c-format
msgid "Value '%s' cannot be interpreted as a boolean."
msgstr "ಮೌಲ್ಯ '%s' ವನ್ನು ಒಂದು ಬೂಲಿಯನ್ ಆಗಿ ವಿವರಿಸಲು ಆಗುವುದಿಲ್ಲ."
|