-
Notifications
You must be signed in to change notification settings - Fork 0
5281 lines (4263 loc) · 163 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Shavian translation of GTK.
# Copyright (C) 2009.
# This file is distributed under the same license as the GTK package.
# Thomas Thurman <[email protected]>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: gtk+\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gtk%2b&component=general\n"
"POT-Creation-Date: 2010-05-16 01:34+0000\n"
"PO-Revision-Date: 2010-05-16 16:06 -0400\n"
"Last-Translator: Thomas Thurman <[email protected]>\n"
"Language-Team: Shavian <[email protected]>\n"
"Language: en@shaw\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n!=1;\n"
#, c-format
#, fuzzy
#: ../gdk/gdk.c:103
msgid "Error parsing option --gdk-debug"
msgstr "𐑻𐑼 𐑐𐑸𐑕𐑦𐑙 𐑪𐑐𐑖𐑩𐑯 --gdk-𐑛𐑰𐑚𐑳𐑜"
#, c-format
#, fuzzy
#: ../gdk/gdk.c:123
msgid "Error parsing option --gdk-no-debug"
msgstr "𐑻𐑼 𐑐𐑸𐑕𐑦𐑙 𐑪𐑐𐑖𐑩𐑯 --gdk-𐑯𐑴-𐑛𐑰𐑚𐑳𐑜"
#. Description of --class=CLASS in --help output
#: ../gdk/gdk.c:151
msgid "Program class as used by the window manager"
msgstr "𐑐𐑮𐑴𐑜𐑮𐑨𐑥 𐑒𐑤𐑭𐑕 𐑨𐑟 𐑿𐑕𐑑 𐑚𐑲 𐑞 𐑢𐑦𐑯𐑛𐑴 𐑥𐑨𐑯𐑩𐑡𐑼"
#. Placeholder in --class=CLASS in --help output
#: ../gdk/gdk.c:152
msgid "CLASS"
msgstr "𐑒𐑤𐑭𐑕"
#. Description of --name=NAME in --help output
#: ../gdk/gdk.c:154
msgid "Program name as used by the window manager"
msgstr "𐑐𐑮𐑴𐑜𐑮𐑨𐑥 𐑯𐑱𐑥 𐑨𐑟 𐑿𐑕𐑑 𐑚𐑲 𐑞 𐑢𐑦𐑯𐑛𐑴 𐑥𐑨𐑯𐑩𐑡𐑼"
#. Placeholder in --name=NAME in --help output
#: ../gdk/gdk.c:155
msgid "NAME"
msgstr "𐑯𐑱𐑥"
#. Description of --display=DISPLAY in --help output
#: ../gdk/gdk.c:157
msgid "X display to use"
msgstr "X 𐑛𐑩𐑕𐑐𐑤𐑱 𐑑 𐑿𐑕"
#. Placeholder in --display=DISPLAY in --help output
#: ../gdk/gdk.c:158
msgid "DISPLAY"
msgstr "𐑛𐑩𐑕𐑐𐑤𐑱"
#. Description of --screen=SCREEN in --help output
#: ../gdk/gdk.c:160
msgid "X screen to use"
msgstr "X 𐑕𐑒𐑮𐑰𐑯 𐑑 𐑿𐑕"
#. Placeholder in --screen=SCREEN in --help output
#: ../gdk/gdk.c:161
msgid "SCREEN"
msgstr "𐑕𐑒𐑮𐑰𐑯"
#. Description of --gdk-debug=FLAGS in --help output
#: ../gdk/gdk.c:164
msgid "Gdk debugging flags to set"
msgstr "Gdk 𐑛𐑰𐑚𐑳𐑜𐑦𐑙 𐑓𐑤𐑨𐑜𐑟 𐑑 𐑕𐑧𐑑"
#. Placeholder in --gdk-debug=FLAGS in --help output
#. Placeholder in --gdk-no-debug=FLAGS in --help output
#. Placeholder in --gtk-debug=FLAGS in --help output
#. Placeholder in --gtk-no-debug=FLAGS in --help output
#: ../gdk/gdk.c:165 ../gdk/gdk.c:168 ../gtk/gtkmain.c:454 ../gtk/gtkmain.c:457
msgid "FLAGS"
msgstr "𐑓𐑤𐑨𐑜𐑟"
#. Description of --gdk-no-debug=FLAGS in --help output
#: ../gdk/gdk.c:167
msgid "Gdk debugging flags to unset"
msgstr "Gdk 𐑛𐑰𐑚𐑳𐑜𐑦𐑙 𐑓𐑤𐑨𐑜𐑟 𐑑 𐑩𐑯𐑕𐑧𐑑"
#, fuzzy
#: ../gdk/keyname-table.h:3940
msgctxt "keyboard label"
msgid "BackSpace"
msgstr "BackSpace"
#: ../gdk/keyname-table.h:3941
msgctxt "keyboard label"
msgid "Tab"
msgstr "𐑑𐑨𐑚"
#: ../gdk/keyname-table.h:3942
msgctxt "keyboard label"
msgid "Return"
msgstr "𐑮𐑦𐑑𐑻𐑯"
#: ../gdk/keyname-table.h:3943
msgctxt "keyboard label"
msgid "Pause"
msgstr "𐑐𐑷𐑟"
#, fuzzy
#: ../gdk/keyname-table.h:3944
msgctxt "keyboard label"
msgid "Scroll_Lock"
msgstr "_ScrollLock"
#, fuzzy
#: ../gdk/keyname-table.h:3945
msgctxt "keyboard label"
msgid "Sys_Req"
msgstr "_SysReq"
#: ../gdk/keyname-table.h:3946
msgctxt "keyboard label"
msgid "Escape"
msgstr "𐑦𐑕𐑒𐑱𐑐"
#, fuzzy
#: ../gdk/keyname-table.h:3947
msgctxt "keyboard label"
msgid "Multi_key"
msgstr "_Multikey"
#: ../gdk/keyname-table.h:3948
msgctxt "keyboard label"
msgid "Home"
msgstr "𐑣𐑴𐑥"
#: ../gdk/keyname-table.h:3949
msgctxt "keyboard label"
msgid "Left"
msgstr "𐑤𐑧𐑓𐑑"
#: ../gdk/keyname-table.h:3950
msgctxt "keyboard label"
msgid "Up"
msgstr "𐑳𐑐"
#: ../gdk/keyname-table.h:3951
msgctxt "keyboard label"
msgid "Right"
msgstr "𐑮𐑲𐑑"
#: ../gdk/keyname-table.h:3952
msgctxt "keyboard label"
msgid "Down"
msgstr "𐑛𐑬𐑯"
#, fuzzy
#: ../gdk/keyname-table.h:3953
msgctxt "keyboard label"
msgid "Page_Up"
msgstr "_PageUp"
#, fuzzy
#: ../gdk/keyname-table.h:3954
msgctxt "keyboard label"
msgid "Page_Down"
msgstr "_PageDown"
#: ../gdk/keyname-table.h:3955
msgctxt "keyboard label"
msgid "End"
msgstr "𐑧𐑯𐑛"
#: ../gdk/keyname-table.h:3956
msgctxt "keyboard label"
msgid "Begin"
msgstr "𐑚𐑩𐑜𐑦𐑯"
#: ../gdk/keyname-table.h:3957
msgctxt "keyboard label"
msgid "Print"
msgstr "𐑐𐑮𐑦𐑯𐑑"
#: ../gdk/keyname-table.h:3958
msgctxt "keyboard label"
msgid "Insert"
msgstr "𐑦𐑯𐑕𐑻𐑑"
#, fuzzy
#: ../gdk/keyname-table.h:3959
msgctxt "keyboard label"
msgid "Num_Lock"
msgstr "_NumLock"
#, fuzzy
#: ../gdk/keyname-table.h:3960
msgctxt "keyboard label"
msgid "KP_Space"
msgstr "_KPSpace"
#, fuzzy
#: ../gdk/keyname-table.h:3961
msgctxt "keyboard label"
msgid "KP_Tab"
msgstr "_KPTab"
#, fuzzy
#: ../gdk/keyname-table.h:3962
msgctxt "keyboard label"
msgid "KP_Enter"
msgstr "_KPEnter"
#, fuzzy
#: ../gdk/keyname-table.h:3963
msgctxt "keyboard label"
msgid "KP_Home"
msgstr "_KPHome"
#, fuzzy
#: ../gdk/keyname-table.h:3964
msgctxt "keyboard label"
msgid "KP_Left"
msgstr "_KPLeft"
#, fuzzy
#: ../gdk/keyname-table.h:3965
msgctxt "keyboard label"
msgid "KP_Up"
msgstr "_KPUp"
#, fuzzy
#: ../gdk/keyname-table.h:3966
msgctxt "keyboard label"
msgid "KP_Right"
msgstr "_KPRight"
#, fuzzy
#: ../gdk/keyname-table.h:3967
msgctxt "keyboard label"
msgid "KP_Down"
msgstr "_KPDown"
#, fuzzy
#: ../gdk/keyname-table.h:3968
msgctxt "keyboard label"
msgid "KP_Page_Up"
msgstr "_KPPage_𐑳𐑐"
#, fuzzy
#: ../gdk/keyname-table.h:3969
msgctxt "keyboard label"
msgid "KP_Prior"
msgstr "_KPPrior"
#, fuzzy
#: ../gdk/keyname-table.h:3970
msgctxt "keyboard label"
msgid "KP_Page_Down"
msgstr "_KPPage_𐑛𐑬𐑯"
#, fuzzy
#: ../gdk/keyname-table.h:3971
msgctxt "keyboard label"
msgid "KP_Next"
msgstr "_KPNext"
#, fuzzy
#: ../gdk/keyname-table.h:3972
msgctxt "keyboard label"
msgid "KP_End"
msgstr "_KPEnd"
#, fuzzy
#: ../gdk/keyname-table.h:3973
msgctxt "keyboard label"
msgid "KP_Begin"
msgstr "_KPBegin"
#, fuzzy
#: ../gdk/keyname-table.h:3974
msgctxt "keyboard label"
msgid "KP_Insert"
msgstr "_KPInsert"
#, fuzzy
#: ../gdk/keyname-table.h:3975
msgctxt "keyboard label"
msgid "KP_Delete"
msgstr "_KPDelete"
#: ../gdk/keyname-table.h:3976
msgctxt "keyboard label"
msgid "Delete"
msgstr "𐑛𐑦𐑤𐑰𐑑"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-animation.c:133 ../gdk-pixbuf/gdk-pixbuf-io.c:982
#: ../gdk-pixbuf/gdk-pixbuf-io.c:1242 ../tests/testfilechooser.c:222
msgid "Failed to open file '%s': %s"
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑴𐑐𐑩𐑯 𐑓𐑲𐑤 '%s': %s"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-animation.c:146 ../gdk-pixbuf/gdk-pixbuf-io.c:994
msgid "Image file '%s' contains no data"
msgstr "𐑦𐑥𐑦𐑡 𐑓𐑲𐑤 '%s' 𐑒𐑩𐑯𐑑𐑱𐑯𐑟 𐑯𐑴 𐑛𐑱𐑑𐑩"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-animation.c:188 ../gdk-pixbuf/gdk-pixbuf-io.c:1030
#: ../gdk-pixbuf/gdk-pixbuf-io.c:1294 ../tests/testfilechooser.c:267
msgid ""
"Failed to load image '%s': reason not known, probably a corrupt image file"
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑤𐑴𐑛 𐑦𐑥𐑦𐑡 '%s': 𐑮𐑰𐑟𐑩𐑯 𐑯𐑪𐑑 𐑯𐑴𐑯, 𐑐𐑮𐑪𐑚𐑩𐑚𐑤𐑦 𐑩 𐑒𐑼𐑳𐑐𐑑 𐑦𐑥𐑦𐑡 𐑓𐑲𐑤"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-animation.c:221
msgid ""
"Failed to load animation '%s': reason not known, probably a corrupt animation "
"file"
msgstr ""
"𐑓𐑱𐑤𐑛 𐑑 𐑤𐑴𐑛 𐑨𐑯𐑩𐑥𐑱𐑖𐑩𐑯 '%s': 𐑮𐑰𐑟𐑩𐑯 𐑯𐑪𐑑 𐑯𐑴𐑯, 𐑐𐑮𐑪𐑚𐑩𐑚𐑤𐑦 𐑩 𐑒𐑼𐑳𐑐𐑑 𐑨𐑯𐑩𐑥𐑱𐑖𐑩𐑯 𐑓𐑲𐑤"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-io.c:715
msgid "Unable to load image-loading module: %s: %s"
msgstr "𐑳𐑯𐑱𐑚𐑩𐑤 𐑑 𐑤𐑴𐑛 𐑦𐑥𐑦𐑡-𐑤𐑴𐑛𐑦𐑙 𐑥𐑪𐑛𐑿𐑤: %s: %s"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-io.c:730
msgid ""
"Image-loading module %s does not export the proper interface; perhaps it's "
"from a different GTK version?"
msgstr ""
"𐑦𐑥𐑦𐑡-𐑤𐑴𐑛𐑦𐑙 𐑥𐑪𐑛𐑿𐑤 %s 𐑛𐑳𐑟 𐑯𐑪𐑑 𐑧𐑒𐑕𐑐𐑹𐑑 𐑞 𐑐𐑮𐑪𐑐𐑼 𐑦𐑯𐑑𐑼𐑓𐑱𐑕; 𐑐𐑼𐑣𐑨𐑐𐑕 𐑦𐑑𐑕 𐑓𐑮𐑪𐑥 𐑩 𐑛𐑦𐑓𐑼𐑩𐑯𐑑 "
"GTK 𐑝𐑻𐑠𐑩𐑯?"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-io.c:739 ../gdk-pixbuf/gdk-pixbuf-io.c:790
msgid "Image type '%s' is not supported"
msgstr "𐑦𐑥𐑦𐑡 𐑑𐑲𐑐 '%s' 𐑦𐑟 𐑯𐑪𐑑 𐑕𐑩𐑐𐑹𐑑𐑩𐑛"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-io.c:863
msgid "Couldn't recognize the image file format for file '%s'"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑮𐑧𐑒𐑪𐑜𐑯𐑲𐑟 𐑞 𐑦𐑥𐑦𐑡 𐑓𐑲𐑤 𐑓𐑹𐑥𐑨𐑑 𐑓𐑹 𐑓𐑲𐑤 '%s'"
#: ../gdk-pixbuf/gdk-pixbuf-io.c:871
msgid "Unrecognized image file format"
msgstr "𐑩𐑯𐑮𐑧𐑒𐑩𐑜𐑯𐑲𐑟𐑛 𐑦𐑥𐑦𐑡 𐑓𐑲𐑤 𐑓𐑹𐑥𐑨𐑑"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-io.c:1039
msgid "Failed to load image '%s': %s"
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑤𐑴𐑛 𐑦𐑥𐑦𐑡 '%s': %s"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-io.c:1673 ../gdk-pixbuf/io-gdip-utils.c:961
msgid "Error writing to image file: %s"
msgstr "𐑻𐑼 𐑮𐑲𐑑𐑦𐑙 𐑑 𐑦𐑥𐑦𐑡 𐑓𐑲𐑤: %s"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-io.c:1718 ../gdk-pixbuf/gdk-pixbuf-io.c:1848
msgid "This build of gdk-pixbuf does not support saving the image format: %s"
msgstr "𐑞𐑦𐑕 𐑚𐑦𐑤𐑛 𐑝 gdk-pixbuf 𐑛𐑳𐑟 𐑯𐑪𐑑 𐑕𐑩𐑐𐑹𐑑 𐑕𐑱𐑝𐑦𐑙 𐑞 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑: %s"
#: ../gdk-pixbuf/gdk-pixbuf-io.c:1752
msgid "Insufficient memory to save image to callback"
msgstr "𐑦𐑯𐑕𐑩𐑓𐑦𐑖𐑩𐑯𐑑 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑕𐑱𐑝 𐑦𐑥𐑦𐑡 𐑑 𐑒𐑷𐑤𐑚𐑨𐑒"
#: ../gdk-pixbuf/gdk-pixbuf-io.c:1765
msgid "Failed to open temporary file"
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑴𐑐𐑩𐑯 𐑑𐑧𐑥𐑐𐑼𐑼𐑦 𐑓𐑲𐑤"
#: ../gdk-pixbuf/gdk-pixbuf-io.c:1791
msgid "Failed to read from temporary file"
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑮𐑰𐑛 𐑓𐑮𐑪𐑥 𐑑𐑧𐑥𐑐𐑼𐑼𐑦 𐑓𐑲𐑤"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-io.c:2044
msgid "Failed to open '%s' for writing: %s"
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑴𐑐𐑩𐑯 '%s' 𐑓𐑹 𐑮𐑲𐑑𐑦𐑙: %s"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-io.c:2070
msgid ""
"Failed to close '%s' while writing image, all data may not have been saved: %s"
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑒𐑤𐑴𐑕 '%s' 𐑢𐑲𐑤 𐑮𐑲𐑑𐑦𐑙 𐑦𐑥𐑦𐑡, 𐑷𐑤 𐑛𐑱𐑑𐑩 𐑥𐑱 𐑯𐑪𐑑 𐑣𐑨𐑝 𐑚𐑰𐑯 𐑕𐑱𐑝𐑛: %s"
#: ../gdk-pixbuf/gdk-pixbuf-io.c:2290 ../gdk-pixbuf/gdk-pixbuf-io.c:2341
msgid "Insufficient memory to save image into a buffer"
msgstr "𐑦𐑯𐑕𐑩𐑓𐑦𐑖𐑩𐑯𐑑 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑕𐑱𐑝 𐑦𐑥𐑦𐑡 𐑦𐑯𐑑𐑫 𐑩 𐑚𐑳𐑓𐑼"
#: ../gdk-pixbuf/gdk-pixbuf-io.c:2387
msgid "Error writing to image stream"
msgstr "𐑻𐑼 𐑮𐑲𐑑𐑦𐑙 𐑑 𐑦𐑥𐑦𐑡 𐑕𐑑𐑮𐑰𐑥"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-loader.c:334
msgid ""
"Internal error: Image loader module '%s' failed to complete an operation, but "
"didn't give a reason for the failure"
msgstr ""
"𐑦𐑯𐑑𐑻𐑯𐑩𐑤 𐑻𐑼: 𐑦𐑥𐑦𐑡 𐑤𐑴𐑛𐑻 𐑥𐑪𐑛𐑿𐑤 '%s' 𐑓𐑱𐑤𐑛 𐑑 𐑒𐑩𐑥𐑐𐑤𐑰𐑑 𐑩𐑯 𐑪𐑐𐑼𐑱𐑓𐑱𐑤𐑛, 𐑚𐑳𐑑 𐑛𐑦𐑛𐑯𐑑 𐑜𐑦𐑝 𐑩 "
"𐑮𐑰𐑟𐑩𐑯 𐑓𐑹 𐑞 𐑓𐑱𐑤𐑘𐑼"
#, c-format
#: ../gdk-pixbuf/gdk-pixbuf-loader.c:376
msgid "Incremental loading of image type '%s' is not supported"
msgstr "𐑦𐑯𐑒𐑮𐑩𐑥𐑧𐑯𐑑𐑩𐑤 𐑤𐑴𐑛𐑦𐑙 𐑝 𐑦𐑥𐑦𐑡 𐑑𐑲𐑐 '%s' 𐑦𐑟 𐑯𐑪𐑑 𐑕𐑩𐑐𐑹𐑑𐑩𐑛"
#: ../gdk-pixbuf/gdk-pixdata.c:147
msgid "Image header corrupt"
msgstr "𐑦𐑥𐑦𐑡 𐑣𐑧𐑛𐑼 𐑒𐑼𐑳𐑐𐑑"
#: ../gdk-pixbuf/gdk-pixdata.c:152
msgid "Image format unknown"
msgstr "𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑 𐑳𐑯𐑴𐑯"
#: ../gdk-pixbuf/gdk-pixdata.c:157 ../gdk-pixbuf/gdk-pixdata.c:488
msgid "Image pixel data corrupt"
msgstr "𐑦𐑥𐑦𐑡 𐑐𐑦𐑒𐑕𐑩𐑤 𐑛𐑱𐑑𐑩 𐑒𐑼𐑳𐑐𐑑"
#, c-format
#: ../gdk-pixbuf/gdk-pixdata.c:432
msgid "failed to allocate image buffer of %u byte"
msgid_plural "failed to allocate image buffer of %u bytes"
msgstr[0] "𐑓𐑱𐑤𐑛 𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑦𐑥𐑦𐑡 𐑚𐑳𐑓𐑼 𐑝 %u 𐑚𐑲𐑑"
msgstr[1] "𐑓𐑱𐑤𐑛 𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑦𐑥𐑦𐑡 𐑚𐑳𐑓𐑼 𐑝 %u 𐑚𐑲𐑑𐑕"
#: ../gdk-pixbuf/io-ani.c:244
msgid "Unexpected icon chunk in animation"
msgstr "𐑳𐑯𐑦𐑒𐑕𐑐𐑧𐑒𐑑𐑩𐑛 𐑲𐑒𐑪𐑯 𐑗𐑩𐑙𐑒 𐑦𐑯 𐑨𐑯𐑩𐑥𐑱𐑖𐑩𐑯"
#: ../gdk-pixbuf/io-ani.c:337
msgid "Unsupported animation type"
msgstr "𐑳𐑯𐑕𐑩𐑐𐑹𐑑𐑩𐑛 𐑨𐑯𐑩𐑥𐑱𐑖𐑩𐑯 𐑑𐑲𐑐"
#: ../gdk-pixbuf/io-ani.c:348 ../gdk-pixbuf/io-ani.c:406
#: ../gdk-pixbuf/io-ani.c:432 ../gdk-pixbuf/io-ani.c:455
#: ../gdk-pixbuf/io-ani.c:482 ../gdk-pixbuf/io-ani.c:569
msgid "Invalid header in animation"
msgstr "𐑦𐑯𐑝𐑨𐑤𐑦𐑛 𐑣𐑧𐑛𐑼 𐑦𐑯 𐑨𐑯𐑩𐑥𐑱𐑖𐑩𐑯"
#: ../gdk-pixbuf/io-ani.c:358 ../gdk-pixbuf/io-ani.c:380
#: ../gdk-pixbuf/io-ani.c:464 ../gdk-pixbuf/io-ani.c:491
#: ../gdk-pixbuf/io-ani.c:542 ../gdk-pixbuf/io-ani.c:614
msgid "Not enough memory to load animation"
msgstr "𐑯𐑪𐑑 𐑦𐑯𐑳𐑓 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 𐑨𐑯𐑩𐑥𐑱𐑖𐑩𐑯"
#: ../gdk-pixbuf/io-ani.c:398 ../gdk-pixbuf/io-ani.c:424
#: ../gdk-pixbuf/io-ani.c:443
msgid "Malformed chunk in animation"
msgstr "𐑥𐑨𐑤𐑓𐑹𐑥𐑛 𐑗𐑩𐑙𐑒 𐑦𐑯 𐑨𐑯𐑩𐑥𐑱𐑖𐑩𐑯"
#: ../gdk-pixbuf/io-ani.c:711
msgid "The ANI image format"
msgstr "𐑞 ANI 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-bmp.c:230 ../gdk-pixbuf/io-bmp.c:267
#: ../gdk-pixbuf/io-bmp.c:338 ../gdk-pixbuf/io-bmp.c:370
#: ../gdk-pixbuf/io-bmp.c:393 ../gdk-pixbuf/io-bmp.c:496
msgid "BMP image has bogus header data"
msgstr "BMP 𐑦𐑥𐑦𐑡 𐑣𐑨𐑟 𐑚𐑴𐑜𐑩𐑕 𐑣𐑧𐑛𐑼 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-bmp.c:241 ../gdk-pixbuf/io-bmp.c:433
msgid "Not enough memory to load bitmap image"
msgstr "𐑯𐑪𐑑 𐑦𐑯𐑳𐑓 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 𐑚𐑦𐑑𐑥𐑨𐑐 𐑦𐑥𐑦𐑡"
#: ../gdk-pixbuf/io-bmp.c:319
msgid "BMP image has unsupported header size"
msgstr "BMP 𐑦𐑥𐑦𐑡 𐑣𐑨𐑟 𐑳𐑯𐑕𐑩𐑐𐑹𐑑𐑩𐑛 𐑣𐑧𐑛𐑼 𐑕𐑲𐑟"
#: ../gdk-pixbuf/io-bmp.c:357
msgid "Topdown BMP images cannot be compressed"
msgstr "𐑑𐑪𐑐𐑛𐑬𐑯 BMP 𐑦𐑥𐑦𐑡𐑩𐑟 𐑒𐑨𐑯𐑪𐑑 𐑚𐑰 𐑒𐑪𐑥𐑐𐑮𐑧𐑕𐑑"
#: ../gdk-pixbuf/io-bmp.c:717 ../gdk-pixbuf/io-pnm.c:709
msgid "Premature end-of-file encountered"
msgstr "𐑐𐑮𐑰𐑥𐑩𐑗𐑫𐑮 𐑧𐑯𐑛-𐑝-𐑓𐑲𐑤 𐑦𐑯𐑒𐑶𐑯𐑑𐑻𐑛"
#: ../gdk-pixbuf/io-bmp.c:1329
msgid "Couldn't allocate memory for saving BMP file"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 𐑕𐑱𐑝𐑦𐑙 BMP 𐑓𐑲𐑤"
#: ../gdk-pixbuf/io-bmp.c:1370
msgid "Couldn't write to BMP file"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑮𐑲𐑑 𐑑 BMP 𐑓𐑲𐑤"
#: ../gdk-pixbuf/io-bmp.c:1423 ../gdk-pixbuf/io-gdip-bmp.c:82
msgid "The BMP image format"
msgstr "𐑞 BMP 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#, c-format
#: ../gdk-pixbuf/io-gif.c:222
msgid "Failure reading GIF: %s"
msgstr "𐑓𐑱𐑤𐑘𐑼 𐑮𐑰𐑛𐑦𐑙 GIF: %s"
#: ../gdk-pixbuf/io-gif.c:496 ../gdk-pixbuf/io-gif.c:1481
#: ../gdk-pixbuf/io-gif.c:1642
msgid "GIF file was missing some data (perhaps it was truncated somehow?)"
msgstr "GIF 𐑓𐑲𐑤 𐑢𐑪𐑟 𐑥𐑦𐑕𐑦𐑙 𐑕𐑳𐑥 𐑛𐑱𐑑𐑩 (𐑐𐑼𐑣𐑨𐑐𐑕 𐑦𐑑 𐑢𐑪𐑟 𐑑𐑮𐑩𐑙𐑒𐑱𐑑𐑦𐑛 𐑕𐑳𐑥𐑣𐑬?)"
#, c-format
#: ../gdk-pixbuf/io-gif.c:505
msgid "Internal error in the GIF loader (%s)"
msgstr "𐑦𐑯𐑑𐑻𐑯𐑩𐑤 𐑻𐑼 𐑦𐑯 𐑞 GIF 𐑤𐑴𐑛𐑻 (%s)"
#: ../gdk-pixbuf/io-gif.c:579
msgid "Stack overflow"
msgstr "𐑕𐑑𐑨𐑒 𐑴𐑝𐑼𐑓𐑤𐑴"
#: ../gdk-pixbuf/io-gif.c:639
msgid "GIF image loader cannot understand this image."
msgstr "GIF 𐑦𐑥𐑦𐑡 𐑤𐑴𐑛𐑻 𐑒𐑨𐑯𐑪𐑑 𐑳𐑯𐑛𐑼𐑕𐑑𐑨𐑯𐑛 𐑞𐑦𐑕 𐑦𐑥𐑦𐑡."
#: ../gdk-pixbuf/io-gif.c:668
msgid "Bad code encountered"
msgstr "𐑚𐑨𐑛 𐑒𐑴𐑛 𐑦𐑯𐑒𐑶𐑯𐑑𐑻𐑛"
#: ../gdk-pixbuf/io-gif.c:678
msgid "Circular table entry in GIF file"
msgstr "𐑕𐑻𐑒𐑘𐑫𐑤𐑼 𐑑𐑱𐑚𐑩𐑤 𐑧𐑯𐑑𐑮𐑦 𐑦𐑯 GIF 𐑓𐑲𐑤"
#: ../gdk-pixbuf/io-gif.c:866 ../gdk-pixbuf/io-gif.c:1468
#: ../gdk-pixbuf/io-gif.c:1515 ../gdk-pixbuf/io-gif.c:1630
msgid "Not enough memory to load GIF file"
msgstr "𐑯𐑪𐑑 𐑦𐑯𐑳𐑓 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 GIF 𐑓𐑲𐑤"
#: ../gdk-pixbuf/io-gif.c:960
msgid "Not enough memory to composite a frame in GIF file"
msgstr "𐑯𐑪𐑑 𐑦𐑯𐑳𐑓 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑒𐑩𐑥𐑐𐑭𐑟𐑩𐑑 𐑩 𐑓𐑮𐑱𐑥 𐑦𐑯 GIF 𐑓𐑲𐑤"
#: ../gdk-pixbuf/io-gif.c:1132
msgid "GIF image is corrupt (incorrect LZW compression)"
msgstr "GIF 𐑦𐑥𐑦𐑡 𐑦𐑟 𐑒𐑼𐑳𐑐𐑑 (𐑦𐑯𐑒𐑩𐑮𐑧𐑒𐑑 LZW 𐑒𐑩𐑥𐑐𐑮𐑧𐑖𐑩𐑯)"
#: ../gdk-pixbuf/io-gif.c:1182
msgid "File does not appear to be a GIF file"
msgstr "𐑓𐑲𐑤 𐑛𐑳𐑟 𐑯𐑪𐑑 𐑩𐑐𐑽 𐑑 𐑚𐑰 𐑩 GIF 𐑓𐑲𐑤"
#, c-format
#: ../gdk-pixbuf/io-gif.c:1194
msgid "Version %s of the GIF file format is not supported"
msgstr "𐑝𐑻𐑠𐑩𐑯 %s 𐑝 𐑞 GIF 𐑓𐑲𐑤 𐑓𐑹𐑥𐑨𐑑 𐑦𐑟 𐑯𐑪𐑑 𐑕𐑩𐑐𐑹𐑑𐑩𐑛"
#: ../gdk-pixbuf/io-gif.c:1303
msgid ""
"GIF image has no global colormap, and a frame inside it has no local colormap."
msgstr ""
"GIF 𐑦𐑥𐑦𐑡 𐑣𐑨𐑟 𐑯𐑴 𐑜𐑤𐑴𐑚𐑩𐑤 𐑒𐑳𐑤𐑼𐑥𐑨𐑐, 𐑯 𐑩 𐑓𐑮𐑱𐑥 𐑦𐑯𐑕𐑲𐑛 𐑦𐑑 𐑣𐑨𐑟 𐑯𐑴 𐑤𐑴𐑒𐑩𐑤 𐑒𐑳𐑤𐑼𐑥𐑨𐑐."
#: ../gdk-pixbuf/io-gif.c:1537
msgid "GIF image was truncated or incomplete."
msgstr "GIF 𐑦𐑥𐑦𐑡 𐑢𐑪𐑟 𐑑𐑮𐑩𐑙𐑒𐑱𐑑𐑦𐑛 𐑹 𐑦𐑯𐑒𐑩𐑥𐑐𐑤𐑰𐑑."
#: ../gdk-pixbuf/io-gif.c:1693 ../gdk-pixbuf/io-gdip-gif.c:80
msgid "The GIF image format"
msgstr "𐑞 GIF 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-ico.c:211 ../gdk-pixbuf/io-ico.c:225
#: ../gdk-pixbuf/io-ico.c:277 ../gdk-pixbuf/io-ico.c:290
#: ../gdk-pixbuf/io-ico.c:359
msgid "Invalid header in icon"
msgstr "𐑦𐑯𐑝𐑨𐑤𐑦𐑛 𐑣𐑧𐑛𐑼 𐑦𐑯 𐑲𐑒𐑪𐑯"
#: ../gdk-pixbuf/io-ico.c:240 ../gdk-pixbuf/io-ico.c:300
#: ../gdk-pixbuf/io-ico.c:369 ../gdk-pixbuf/io-ico.c:432
#: ../gdk-pixbuf/io-ico.c:462
msgid "Not enough memory to load icon"
msgstr "𐑯𐑪𐑑 𐑦𐑯𐑳𐑓 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 𐑲𐑒𐑪𐑯"
#: ../gdk-pixbuf/io-ico.c:322
msgid "Icon has zero width"
msgstr "𐑲𐑒𐑪𐑯 𐑣𐑨𐑟 𐑟𐑽𐑴 𐑢𐑦𐑛𐑔"
#: ../gdk-pixbuf/io-ico.c:332
msgid "Icon has zero height"
msgstr "𐑲𐑒𐑪𐑯 𐑣𐑨𐑟 𐑟𐑽𐑴 𐑣𐑲𐑑"
#: ../gdk-pixbuf/io-ico.c:384
msgid "Compressed icons are not supported"
msgstr "𐑒𐑪𐑥𐑐𐑮𐑧𐑕𐑑 𐑲𐑒𐑪𐑯𐑟 𐑸 𐑯𐑪𐑑 𐑕𐑩𐑐𐑹𐑑𐑩𐑛"
#: ../gdk-pixbuf/io-ico.c:417
msgid "Unsupported icon type"
msgstr "𐑳𐑯𐑕𐑩𐑐𐑹𐑑𐑩𐑛 𐑲𐑒𐑪𐑯 𐑑𐑲𐑐"
#: ../gdk-pixbuf/io-ico.c:511
msgid "Not enough memory to load ICO file"
msgstr "𐑯𐑪𐑑 𐑦𐑯𐑳𐑓 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 ICO 𐑓𐑲𐑤"
#: ../gdk-pixbuf/io-ico.c:976
msgid "Image too large to be saved as ICO"
msgstr "𐑦𐑥𐑦𐑡 𐑑𐑵 𐑤𐑸𐑡 𐑑 𐑚𐑰 𐑕𐑱𐑝𐑛 𐑨𐑟 ICO"
#: ../gdk-pixbuf/io-ico.c:987
msgid "Cursor hotspot outside image"
msgstr "𐑒𐑻𐑕𐑼 𐑣𐑪𐑑𐑕𐑐𐑪𐑑 𐑬𐑑𐑕𐑲𐑛 𐑦𐑥𐑦𐑡"
#, c-format
#: ../gdk-pixbuf/io-ico.c:1010
msgid "Unsupported depth for ICO file: %d"
msgstr "𐑳𐑯𐑕𐑩𐑐𐑹𐑑𐑩𐑛 𐑛𐑧𐑐𐑔 𐑓𐑹 ICO 𐑓𐑲𐑤: %d"
#: ../gdk-pixbuf/io-ico.c:1245 ../gdk-pixbuf/io-gdip-ico.c:59
msgid "The ICO image format"
msgstr "𐑞 ICO 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#, c-format
#, fuzzy
#: ../gdk-pixbuf/io-icns.c:347
msgid "Error reading ICNS image: %s"
msgstr "𐑻𐑼 𐑮𐑰𐑛𐑦𐑙 ICNS 𐑦𐑥𐑦𐑡: %s"
#, fuzzy
#: ../gdk-pixbuf/io-icns.c:364
msgid "Could not decode ICNS file"
msgstr "𐑒𐑫𐑛 𐑯𐑪𐑑 𐑛𐑰𐑒𐑴𐑛 ICNS 𐑓𐑲𐑤"
#, fuzzy
#: ../gdk-pixbuf/io-icns.c:397
msgid "The ICNS image format"
msgstr "𐑞 ICNS 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-jasper.c:75
msgid "Couldn't allocate memory for stream"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 𐑕𐑑𐑮𐑰𐑥"
#: ../gdk-pixbuf/io-jasper.c:105
msgid "Couldn't decode image"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑛𐑰𐑒𐑴𐑛 𐑦𐑥𐑦𐑡"
#, fuzzy
#: ../gdk-pixbuf/io-jasper.c:123
msgid "Transformed JPEG2000 has zero width or height"
msgstr "𐑑𐑮𐑨𐑯𐑕𐑓𐑪𐑮𐑥𐑛 JPEG2000 𐑣𐑨𐑟 𐑟𐑽𐑴 𐑢𐑦𐑛𐑔 𐑹 𐑣𐑲𐑑"
#: ../gdk-pixbuf/io-jasper.c:137
msgid "Image type currently not supported"
msgstr "𐑦𐑥𐑦𐑡 𐑑𐑲𐑐 𐑒𐑳𐑮𐑩𐑯𐑑𐑤𐑦 𐑯𐑪𐑑 𐑕𐑩𐑐𐑹𐑑𐑩𐑛"
#: ../gdk-pixbuf/io-jasper.c:149 ../gdk-pixbuf/io-jasper.c:157
msgid "Couldn't allocate memory for color profile"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 𐑒𐑳𐑤𐑼 𐑐𐑮𐑴𐑓𐑲𐑤"
#, fuzzy
#: ../gdk-pixbuf/io-jasper.c:183
msgid "Insufficient memory to open JPEG 2000 file"
msgstr "𐑦𐑯𐑕𐑩𐑓𐑦𐑖𐑩𐑯𐑑 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑴𐑐𐑩𐑯 JPEG 2000 𐑓𐑲𐑤"
#: ../gdk-pixbuf/io-jasper.c:262
msgid "Couldn't allocate memory to buffer image data"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑚𐑳𐑓𐑼 𐑦𐑥𐑦𐑡 𐑛𐑱𐑑𐑩"
#, fuzzy
#: ../gdk-pixbuf/io-jasper.c:306
msgid "The JPEG 2000 image format"
msgstr "𐑞 JPEG 2000 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#, c-format
#: ../gdk-pixbuf/io-jpeg.c:117
msgid "Error interpreting JPEG image file (%s)"
msgstr "𐑻𐑼 𐑦𐑯𐑑𐑻𐑐𐑮𐑩𐑑𐑦𐑙 JPEG 𐑦𐑥𐑦𐑡 𐑓𐑲𐑤 (%s)"
#: ../gdk-pixbuf/io-jpeg.c:528
msgid ""
"Insufficient memory to load image, try exiting some applications to free "
"memory"
msgstr "𐑦𐑯𐑕𐑩𐑓𐑦𐑖𐑩𐑯𐑑 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 𐑦𐑥𐑦𐑡, 𐑑𐑮𐑲 𐑧𐑜𐑟𐑦𐑑𐑦𐑙 𐑕𐑳𐑥 𐑩𐑐𐑤𐑦𐑒𐑱𐑕𐑩𐑯𐑟 𐑑 𐑓𐑮𐑰 𐑥𐑧𐑥𐑼𐑦"
#, c-format
#: ../gdk-pixbuf/io-jpeg.c:569 ../gdk-pixbuf/io-jpeg.c:775
msgid "Unsupported JPEG color space (%s)"
msgstr "𐑳𐑯𐑕𐑩𐑐𐑹𐑑𐑩𐑛 JPEG 𐑒𐑳𐑤𐑼 𐑕𐑐𐑱𐑕 (%s)"
#: ../gdk-pixbuf/io-jpeg.c:674 ../gdk-pixbuf/io-jpeg.c:944
#: ../gdk-pixbuf/io-jpeg.c:1177 ../gdk-pixbuf/io-jpeg.c:1186
msgid "Couldn't allocate memory for loading JPEG file"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 𐑤𐑴𐑛𐑦𐑙 JPEG 𐑓𐑲𐑤"
#: ../gdk-pixbuf/io-jpeg.c:919
msgid "Transformed JPEG has zero width or height."
msgstr "𐑑𐑮𐑨𐑯𐑕𐑓𐑪𐑮𐑥𐑛 JPEG 𐑣𐑨𐑟 𐑟𐑽𐑴 𐑢𐑦𐑛𐑔 𐑹 𐑣𐑲𐑑."
#, c-format
#: ../gdk-pixbuf/io-jpeg.c:1133 ../gdk-pixbuf/io-gdip-jpeg.c:53
msgid ""
"JPEG quality must be a value between 0 and 100; value '%s' could not be "
"parsed."
msgstr ""
"JPEG 𐑒𐑢𐑪𐑤𐑦𐑑𐑰 𐑥𐑳𐑕𐑑 𐑚𐑰 𐑩 𐑝𐑨𐑤𐑿 𐑚𐑦𐑑𐑢𐑰𐑯 0 𐑯 100; 𐑝𐑨𐑤𐑿 '%s' 𐑒𐑫𐑛 𐑯𐑪𐑑 𐑚𐑰 𐑐𐑸𐑕𐑑."
#, c-format
#: ../gdk-pixbuf/io-jpeg.c:1148 ../gdk-pixbuf/io-gdip-jpeg.c:68
msgid ""
"JPEG quality must be a value between 0 and 100; value '%d' is not allowed."
msgstr "JPEG 𐑒𐑢𐑪𐑤𐑦𐑑𐑰 𐑥𐑳𐑕𐑑 𐑚𐑰 𐑩 𐑝𐑨𐑤𐑿 𐑚𐑦𐑑𐑢𐑰𐑯 0 𐑯 100; 𐑝𐑨𐑤𐑿 '%d' 𐑦𐑟 𐑯𐑪𐑑 𐑩𐑤𐑬𐑛."
#: ../gdk-pixbuf/io-jpeg.c:1310 ../gdk-pixbuf/io-gdip-jpeg.c:136
msgid "The JPEG image format"
msgstr "𐑞 JPEG 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-pcx.c:187
msgid "Couldn't allocate memory for header"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 𐑣𐑧𐑛𐑼"
#: ../gdk-pixbuf/io-pcx.c:202 ../gdk-pixbuf/io-pcx.c:560
msgid "Couldn't allocate memory for context buffer"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 𐑒𐑪𐑯𐑑𐑧𐑒𐑕𐑑 𐑚𐑳𐑓𐑼"
#: ../gdk-pixbuf/io-pcx.c:601
msgid "Image has invalid width and/or height"
msgstr "𐑦𐑥𐑦𐑡 𐑣𐑨𐑟 𐑦𐑯𐑝𐑨𐑤𐑦𐑛 𐑢𐑦𐑛𐑔 𐑯/𐑹 𐑣𐑲𐑑"
#: ../gdk-pixbuf/io-pcx.c:613 ../gdk-pixbuf/io-pcx.c:674
msgid "Image has unsupported bpp"
msgstr "𐑦𐑥𐑦𐑡 𐑣𐑨𐑟 𐑳𐑯𐑕𐑩𐑐𐑹𐑑𐑩𐑛 bpp"
#, c-format
#: ../gdk-pixbuf/io-pcx.c:618 ../gdk-pixbuf/io-pcx.c:626
msgid "Image has unsupported number of %d-bit planes"
msgstr "𐑦𐑥𐑦𐑡 𐑣𐑨𐑟 𐑳𐑯𐑕𐑩𐑐𐑹𐑑𐑩𐑛 𐑯𐑳𐑥𐑚𐑼 𐑝 %d-𐑚𐑦𐑑 𐑐𐑤𐑱𐑯𐑟"
#: ../gdk-pixbuf/io-pcx.c:642
msgid "Couldn't create new pixbuf"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑒𐑮𐑦𐑱𐑑 𐑯𐑿 𐑐𐑦𐑒𐑕𐑚𐑳𐑓"
#: ../gdk-pixbuf/io-pcx.c:650
msgid "Couldn't allocate memory for line data"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 𐑤𐑲𐑯 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-pcx.c:657
msgid "Couldn't allocate memory for paletted data"
msgstr "𐑒𐑫𐑛𐑯𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 𐑐𐑨𐑤𐑧𐑑𐑦𐑛 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-pcx.c:704
msgid "Didn't get all lines of PCX image"
msgstr "𐑛𐑦𐑛𐑯𐑑 𐑜𐑧𐑑 𐑷𐑤 𐑤𐑲𐑯𐑟 𐑝 PCX 𐑦𐑥𐑦𐑡"
#: ../gdk-pixbuf/io-pcx.c:711
msgid "No palette found at end of PCX data"
msgstr "𐑯𐑴 𐑐𐑩𐑤𐑧𐑑 𐑓𐑬𐑯𐑛 𐑨𐑑 𐑧𐑯𐑛 𐑝 PCX 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-pcx.c:756
msgid "The PCX image format"
msgstr "𐑞 PCX 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-png.c:55
msgid "Bits per channel of PNG image is invalid."
msgstr "𐑚𐑦𐑑𐑕 𐑐𐑻 𐑗𐑨𐑯𐑩𐑤 𐑝 PNG 𐑦𐑥𐑦𐑡 𐑦𐑟 𐑦𐑯𐑝𐑨𐑤𐑦𐑛."
#: ../gdk-pixbuf/io-png.c:136 ../gdk-pixbuf/io-png.c:642
msgid "Transformed PNG has zero width or height."
msgstr "𐑑𐑮𐑨𐑯𐑕𐑓𐑪𐑮𐑥𐑛 PNG 𐑣𐑨𐑟 𐑟𐑽𐑴 𐑢𐑦𐑛𐑔 𐑹 𐑣𐑲𐑑."
#: ../gdk-pixbuf/io-png.c:144
msgid "Bits per channel of transformed PNG is not 8."
msgstr "𐑚𐑦𐑑𐑕 𐑐𐑻 𐑗𐑨𐑯𐑩𐑤 𐑝 𐑑𐑮𐑨𐑯𐑕𐑓𐑪𐑮𐑥𐑛 PNG 𐑦𐑟 𐑯𐑪𐑑 8."
#: ../gdk-pixbuf/io-png.c:153
msgid "Transformed PNG not RGB or RGBA."
msgstr "𐑑𐑮𐑨𐑯𐑕𐑓𐑪𐑮𐑥𐑛 PNG 𐑯𐑪𐑑 RGB 𐑹 RGBA."
#: ../gdk-pixbuf/io-png.c:162
msgid "Transformed PNG has unsupported number of channels, must be 3 or 4."
msgstr "𐑑𐑮𐑨𐑯𐑕𐑓𐑪𐑮𐑥𐑛 PNG 𐑣𐑨𐑟 𐑳𐑯𐑕𐑩𐑐𐑹𐑑𐑩𐑛 𐑯𐑳𐑥𐑚𐑼 𐑝 𐑗𐑨𐑯𐑩𐑤𐑟, 𐑥𐑳𐑕𐑑 𐑚𐑰 3 𐑹 4."
#, c-format
#: ../gdk-pixbuf/io-png.c:183
msgid "Fatal error in PNG image file: %s"
msgstr "𐑓𐑱𐑑𐑩𐑤 𐑻𐑼 𐑦𐑯 PNG 𐑦𐑥𐑦𐑡 𐑓𐑲𐑤: %s"
#: ../gdk-pixbuf/io-png.c:316
msgid "Insufficient memory to load PNG file"
msgstr "𐑦𐑯𐑕𐑩𐑓𐑦𐑖𐑩𐑯𐑑 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 PNG 𐑓𐑲𐑤"
#, c-format
#: ../gdk-pixbuf/io-png.c:657
msgid ""
"Insufficient memory to store a %ld by %ld image; try exiting some "
"applications to reduce memory usage"
msgstr ""
"𐑦𐑯𐑕𐑩𐑓𐑦𐑖𐑩𐑯𐑑 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑕𐑑𐑹 𐑩 %ld 𐑚𐑲 %ld 𐑦𐑥𐑦𐑡; 𐑑𐑮𐑲 𐑧𐑜𐑟𐑦𐑑𐑦𐑙 𐑕𐑳𐑥 𐑩𐑐𐑤𐑦𐑒𐑱𐑕𐑩𐑯𐑟 𐑑 𐑮𐑦𐑛𐑿𐑕 "
"𐑥𐑧𐑥𐑼𐑦 𐑿𐑕𐑦𐑡"
#: ../gdk-pixbuf/io-png.c:720
msgid "Fatal error reading PNG image file"
msgstr "𐑓𐑱𐑑𐑩𐑤 𐑻𐑼 𐑮𐑰𐑛𐑦𐑙 PNG 𐑦𐑥𐑦𐑡 𐑓𐑲𐑤"
#, c-format
#: ../gdk-pixbuf/io-png.c:769
msgid "Fatal error reading PNG image file: %s"
msgstr "𐑓𐑱𐑑𐑩𐑤 𐑻𐑼 𐑮𐑰𐑛𐑦𐑙 PNG 𐑦𐑥𐑦𐑡 𐑓𐑲𐑤: %s"
#: ../gdk-pixbuf/io-png.c:863
msgid ""
"Keys for PNG text chunks must have at least 1 and at most 79 characters."
msgstr "𐑒𐑰𐑟 𐑓𐑹 PNG 𐑑𐑧𐑒𐑕𐑑 𐑗𐑩𐑙𐑒𐑕 𐑥𐑳𐑕𐑑 𐑣𐑨𐑝 𐑨𐑑 𐑤𐑰𐑕𐑑 1 𐑯 𐑨𐑑 𐑥𐑴𐑕𐑑 79 𐑒𐑨𐑮𐑩𐑒𐑑𐑼𐑟."
#: ../gdk-pixbuf/io-png.c:872
msgid "Keys for PNG text chunks must be ASCII characters."
msgstr "𐑒𐑰𐑟 𐑓𐑹 PNG 𐑑𐑧𐑒𐑕𐑑 𐑗𐑩𐑙𐑒𐑕 𐑥𐑳𐑕𐑑 𐑚𐑰 ASCII 𐑒𐑨𐑮𐑩𐑒𐑑𐑼𐑟."
#, c-format
#, fuzzy
#: ../gdk-pixbuf/io-png.c:886 ../gdk-pixbuf/io-tiff.c:738
msgid "Color profile has invalid length %d."
msgstr "𐑒𐑳𐑤𐑼 𐑐𐑮𐑴𐑓𐑲𐑤 𐑣𐑨𐑟 𐑦𐑯𐑝𐑨𐑤𐑦𐑛 𐑤𐑧𐑙𐑔 %d."
#, c-format
#: ../gdk-pixbuf/io-png.c:899 ../gdk-pixbuf/io-gdip-png.c:56
msgid ""
"PNG compression level must be a value between 0 and 9; value '%s' could not "
"be parsed."
msgstr ""
"PNG 𐑒𐑩𐑥𐑐𐑮𐑧𐑖𐑩𐑯 𐑤𐑧𐑝𐑩𐑤 𐑥𐑳𐑕𐑑 𐑚𐑰 𐑩 𐑝𐑨𐑤𐑿 𐑚𐑦𐑑𐑢𐑰𐑯 0 𐑯 9; 𐑝𐑨𐑤𐑿 '%s' 𐑒𐑫𐑛 𐑯𐑪𐑑 𐑚𐑰 𐑐𐑸𐑕𐑑."
#, c-format
#: ../gdk-pixbuf/io-png.c:912 ../gdk-pixbuf/io-gdip-png.c:68
msgid ""
"PNG compression level must be a value between 0 and 9; value '%d' is not "
"allowed."
msgstr ""
"PNG 𐑒𐑩𐑥𐑐𐑮𐑧𐑖𐑩𐑯 𐑤𐑧𐑝𐑩𐑤 𐑥𐑳𐑕𐑑 𐑚𐑰 𐑩 𐑝𐑨𐑤𐑿 𐑚𐑦𐑑𐑢𐑰𐑯 0 𐑯 9; 𐑝𐑨𐑤𐑿 '%d' 𐑦𐑟 𐑯𐑪𐑑 𐑩𐑤𐑬𐑛."
#, c-format
#: ../gdk-pixbuf/io-png.c:951
msgid ""
"Value for PNG text chunk %s cannot be converted to ISO-8859-1 encoding."
msgstr "𐑝𐑨𐑤𐑿 𐑓𐑹 PNG 𐑑𐑧𐑒𐑕𐑑 𐑗𐑩𐑙𐑒 %s 𐑒𐑨𐑯𐑪𐑑 𐑚𐑰 𐑒𐑩𐑯𐑝𐑻𐑑𐑩𐑛 𐑑 ISO-8859-1 𐑧𐑯𐑒𐑴𐑛𐑦𐑙."
#: ../gdk-pixbuf/io-png.c:1112 ../gdk-pixbuf/io-gdip-png.c:133
msgid "The PNG image format"
msgstr "𐑞 PNG 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-pnm.c:250
msgid "PNM loader expected to find an integer, but didn't"
msgstr "PNM 𐑤𐑴𐑛𐑻 𐑦𐑒𐑕𐑐𐑧𐑒𐑑𐑩𐑛 𐑑 𐑓𐑲𐑯𐑛 𐑩𐑯 𐑦𐑯𐑑𐑩𐑡𐑼, 𐑚𐑳𐑑 𐑛𐑦𐑛𐑯𐑑"
#: ../gdk-pixbuf/io-pnm.c:282
msgid "PNM file has an incorrect initial byte"
msgstr "PNM 𐑓𐑲𐑤 𐑣𐑨𐑟 𐑩𐑯 𐑦𐑯𐑒𐑩𐑮𐑧𐑒𐑑 𐑦𐑯𐑦𐑖𐑩𐑤 𐑚𐑲𐑑"
#: ../gdk-pixbuf/io-pnm.c:312
msgid "PNM file is not in a recognized PNM subformat"
msgstr "PNM 𐑓𐑲𐑤 𐑦𐑟 𐑯𐑪𐑑 𐑦𐑯 𐑩 𐑮𐑧𐑒𐑪𐑜𐑯𐑲𐑟𐑛 PNM 𐑕𐑳𐑚𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-pnm.c:337
msgid "PNM file has an image width of 0"
msgstr "PNM 𐑓𐑲𐑤 𐑣𐑨𐑟 𐑩𐑯 𐑦𐑥𐑦𐑡 𐑢𐑦𐑛𐑔 𐑝 0"
#: ../gdk-pixbuf/io-pnm.c:358
msgid "PNM file has an image height of 0"
msgstr "PNM 𐑓𐑲𐑤 𐑣𐑨𐑟 𐑩𐑯 𐑦𐑥𐑦𐑡 𐑣𐑲𐑑 𐑝 0"
#: ../gdk-pixbuf/io-pnm.c:381
msgid "Maximum color value in PNM file is 0"
msgstr "𐑥𐑨𐑒𐑕𐑦𐑥𐑩𐑥 𐑒𐑳𐑤𐑼 𐑝𐑨𐑤𐑿 𐑦𐑯 PNM 𐑓𐑲𐑤 𐑦𐑟 0"
#: ../gdk-pixbuf/io-pnm.c:389
msgid "Maximum color value in PNM file is too large"
msgstr "𐑥𐑨𐑒𐑕𐑦𐑥𐑩𐑥 𐑒𐑳𐑤𐑼 𐑝𐑨𐑤𐑿 𐑦𐑯 PNM 𐑓𐑲𐑤 𐑦𐑟 𐑑𐑵 𐑤𐑸𐑡"
#: ../gdk-pixbuf/io-pnm.c:429 ../gdk-pixbuf/io-pnm.c:459
#: ../gdk-pixbuf/io-pnm.c:504
msgid "Raw PNM image type is invalid"
msgstr "𐑮𐑷 PNM 𐑦𐑥𐑦𐑡 𐑑𐑲𐑐 𐑦𐑟 𐑦𐑯𐑝𐑨𐑤𐑦𐑛"
#: ../gdk-pixbuf/io-pnm.c:654
msgid "PNM image loader does not support this PNM subformat"
msgstr "PNM 𐑦𐑥𐑦𐑡 𐑤𐑴𐑛𐑻 𐑛𐑳𐑟 𐑯𐑪𐑑 𐑕𐑩𐑐𐑹𐑑 𐑞𐑦𐑕 PNM 𐑕𐑳𐑚𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-pnm.c:741 ../gdk-pixbuf/io-pnm.c:968
msgid "Raw PNM formats require exactly one whitespace before sample data"
msgstr "𐑮𐑷 PNM 𐑓𐑹𐑥𐑨𐑑𐑕 𐑮𐑦𐑒𐑢𐑲𐑼 𐑦𐑜𐑟𐑨𐑒𐑑𐑤𐑦 𐑢𐑳𐑯 𐑢𐑲𐑑𐑕𐑐𐑱𐑕 𐑚𐑦𐑓𐑹 𐑕𐑭𐑥𐑐𐑩𐑤 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-pnm.c:768
msgid "Cannot allocate memory for loading PNM image"
msgstr "𐑒𐑨𐑯𐑪𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 𐑤𐑴𐑛𐑦𐑙 PNM 𐑦𐑥𐑦𐑡"
#: ../gdk-pixbuf/io-pnm.c:818
msgid "Insufficient memory to load PNM context struct"
msgstr "𐑦𐑯𐑕𐑩𐑓𐑦𐑖𐑩𐑯𐑑 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 PNM 𐑒𐑪𐑯𐑑𐑧𐑒𐑕𐑑 𐑕𐑑𐑮𐑳𐑒𐑑"
#: ../gdk-pixbuf/io-pnm.c:869
msgid "Unexpected end of PNM image data"
msgstr "𐑳𐑯𐑦𐑒𐑕𐑐𐑧𐑒𐑑𐑩𐑛 𐑧𐑯𐑛 𐑝 PNM 𐑦𐑥𐑦𐑡 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-pnm.c:997
msgid "Insufficient memory to load PNM file"
msgstr "𐑦𐑯𐑕𐑩𐑓𐑦𐑖𐑩𐑯𐑑 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 PNM 𐑓𐑲𐑤"
#: ../gdk-pixbuf/io-pnm.c:1081
msgid "The PNM/PBM/PGM/PPM image format family"
msgstr "𐑞 PNM/PBM/𐑐𐑰𐑡𐑰𐑧𐑥/𐑐𐑰𐑐𐑰𐑧𐑥 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑 𐑓𐑨𐑥𐑦𐑤𐑦"
#, fuzzy
#: ../gdk-pixbuf/io-qtif.c:128
msgid "Input file descriptor is NULL."
msgstr "𐑦𐑯𐑐𐑫𐑑 𐑓𐑲𐑤 descriptor 𐑦𐑟 𐑯𐑳𐑤."
#, fuzzy
#: ../gdk-pixbuf/io-qtif.c:143
msgid "Failed to read QTIF header"
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑮𐑰𐑛 QTIF 𐑣𐑧𐑛𐑼"
#, c-format
#, fuzzy
#: ../gdk-pixbuf/io-qtif.c:152 ../gdk-pixbuf/io-qtif.c:182
#: ../gdk-pixbuf/io-qtif.c:446
msgid "QTIF atom size too large (%d bytes)"
msgstr "QTIF 𐑨𐑑𐑩𐑥 𐑕𐑲𐑟 𐑑𐑵 𐑤𐑸𐑡 (%d 𐑚𐑲𐑑𐑕)"
#, c-format
#, fuzzy
#: ../gdk-pixbuf/io-qtif.c:172
msgid "Failed to allocate %d bytes for file read buffer"
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 %d 𐑚𐑲𐑑𐑕 𐑓𐑹 𐑓𐑲𐑤 𐑮𐑧𐑛 𐑚𐑳𐑓𐑼"
#, c-format
#, fuzzy
#: ../gdk-pixbuf/io-qtif.c:196
msgid "File error when reading QTIF atom: %s"
msgstr "𐑓𐑲𐑤 𐑻𐑼 𐑢𐑧𐑯 𐑮𐑰𐑛𐑦𐑙 QTIF 𐑨𐑑𐑩𐑥: %s"
#, c-format
#, fuzzy
#: ../gdk-pixbuf/io-qtif.c:233
msgid "Failed to skip the next %d bytes with seek()."
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑕𐑒𐑦𐑐 𐑞 𐑯𐑧𐑒𐑕𐑑 %d 𐑚𐑲𐑑𐑕 𐑢𐑦𐑞 𐑕𐑰𐑒()."
#, fuzzy
#: ../gdk-pixbuf/io-qtif.c:257
msgid "Failed to allocate QTIF context structure."
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 QTIF 𐑒𐑪𐑯𐑑𐑧𐑒𐑕𐑑 𐑕𐑑𐑮𐑳𐑒𐑗𐑼."
#, fuzzy
#: ../gdk-pixbuf/io-qtif.c:317
msgid "Failed to create GdkPixbufLoader object."
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑒𐑮𐑦𐑱𐑑 GdkPixbufLoader 𐑩𐑚𐑡𐑧𐑒𐑑."
#: ../gdk-pixbuf/io-qtif.c:421
msgid "Failed to find an image data atom."
msgstr "𐑓𐑱𐑤𐑛 𐑑 𐑓𐑲𐑯𐑛 𐑩𐑯 𐑦𐑥𐑦𐑡 𐑛𐑱𐑑𐑩 𐑨𐑑𐑩𐑥."
#, fuzzy
#: ../gdk-pixbuf/io-qtif.c:602
msgid "The QTIF image format"
msgstr "𐑞 QTIF 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-ras.c:126
msgid "RAS image has bogus header data"
msgstr "𐑮𐑨𐑕 𐑦𐑥𐑦𐑡 𐑣𐑨𐑟 𐑚𐑴𐑜𐑩𐑕 𐑣𐑧𐑛𐑼 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-ras.c:148
msgid "RAS image has unknown type"
msgstr "𐑮𐑨𐑕 𐑦𐑥𐑦𐑡 𐑣𐑨𐑟 𐑳𐑯𐑴𐑯 𐑑𐑲𐑐"
#: ../gdk-pixbuf/io-ras.c:156
msgid "unsupported RAS image variation"
msgstr "𐑳𐑯𐑕𐑩𐑐𐑹𐑑𐑩𐑛 𐑮𐑨𐑕 𐑦𐑥𐑦𐑡 𐑝𐑧𐑮𐑰𐑱𐑖𐑩𐑯"
#: ../gdk-pixbuf/io-ras.c:171 ../gdk-pixbuf/io-ras.c:200
msgid "Not enough memory to load RAS image"
msgstr "𐑯𐑪𐑑 𐑦𐑯𐑳𐑓 𐑥𐑧𐑥𐑼𐑦 𐑑 𐑤𐑴𐑛 𐑮𐑨𐑕 𐑦𐑥𐑦𐑡"
#: ../gdk-pixbuf/io-ras.c:545
msgid "The Sun raster image format"
msgstr "𐑞 𐑕𐑳𐑯 𐑮𐑨𐑕𐑑𐑻 𐑦𐑥𐑦𐑡 𐑓𐑹𐑥𐑨𐑑"
#: ../gdk-pixbuf/io-tga.c:154
msgid "Cannot allocate memory for IOBuffer struct"
msgstr "𐑒𐑨𐑯𐑪𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 IOBuffer 𐑕𐑑𐑮𐑳𐑒𐑑"
#: ../gdk-pixbuf/io-tga.c:173
msgid "Cannot allocate memory for IOBuffer data"
msgstr "𐑒𐑨𐑯𐑪𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑥𐑧𐑥𐑼𐑦 𐑓𐑹 IOBuffer 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-tga.c:184
msgid "Cannot realloc IOBuffer data"
msgstr "𐑒𐑨𐑯𐑪𐑑 𐑮𐑰𐑨𐑤𐑪𐑒 IOBuffer 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-tga.c:214
msgid "Cannot allocate temporary IOBuffer data"
msgstr "𐑒𐑨𐑯𐑪𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑑𐑧𐑥𐑐𐑼𐑼𐑦 IOBuffer 𐑛𐑱𐑑𐑩"
#: ../gdk-pixbuf/io-tga.c:347
msgid "Cannot allocate new pixbuf"
msgstr "𐑒𐑨𐑯𐑪𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑯𐑿 𐑐𐑦𐑒𐑕𐑚𐑳𐑓"
#: ../gdk-pixbuf/io-tga.c:686
msgid "Image is corrupted or truncated"
msgstr "𐑦𐑥𐑦𐑡 𐑦𐑟 𐑒𐑼𐑳𐑐𐑑𐑩𐑛 𐑹 𐑑𐑮𐑩𐑙𐑒𐑱𐑑𐑦𐑛"
#: ../gdk-pixbuf/io-tga.c:693
msgid "Cannot allocate colormap structure"
msgstr "𐑒𐑨𐑯𐑪𐑑 𐑨𐑤𐑴𐑒𐑱𐑑 𐑒𐑳𐑤𐑼𐑥𐑨𐑐 𐑕𐑑𐑮𐑳𐑒𐑗𐑼"
#: ../gdk-pixbuf/io-tga.c:700