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
|
# Shavian translation of GTK.
# Copyright (C) 2009.
# This file is distributed under the same license as the GTK package.
# Thomas Thurman <tthurman@gnome.org>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: gtk+\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?product=gdk-"
"pixbuf\n"
"POT-Creation-Date: 2012-02-04 18:44-0500\n"
"PO-Revision-Date: 2010-05-16 16:06 -0400\n"
"Last-Translator: Thomas Thurman <tthurman@gnome.org>\n"
"Language-Team: Shavian <ubuntu-l10n-en-shaw@launchpad.net>\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"
#: gdk-pixbuf/gdk-pixbuf-animation.c:146 gdk-pixbuf/gdk-pixbuf-io.c:1083
#: gdk-pixbuf/gdk-pixbuf-io.c:1349
#, c-format
msgid "Failed to open file '%s': %s"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ด๐๐ฉ๐ฏ ๐๐ฒ๐ค '%s': %s"
#: gdk-pixbuf/gdk-pixbuf-animation.c:159 gdk-pixbuf/gdk-pixbuf-io.c:1095
#, c-format
msgid "Image file '%s' contains no data"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค '%s' ๐๐ฉ๐ฏ๐๐ฑ๐ฏ๐ ๐ฏ๐ด ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/gdk-pixbuf-animation.c:201 gdk-pixbuf/gdk-pixbuf-io.c:1131
#: gdk-pixbuf/gdk-pixbuf-io.c:1401
#, c-format
msgid ""
"Failed to load image '%s': reason not known, probably a corrupt image file"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ค๐ด๐ ๐ฆ๐ฅ๐ฆ๐ก '%s': ๐ฎ๐ฐ๐๐ฉ๐ฏ ๐ฏ๐ช๐ ๐ฏ๐ด๐ฏ, ๐๐ฎ๐ช๐๐ฉ๐๐ค๐ฆ ๐ฉ ๐๐ผ๐ณ๐๐ ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค"
#: gdk-pixbuf/gdk-pixbuf-animation.c:234
#, c-format
msgid ""
"Failed to load animation '%s': reason not known, probably a corrupt "
"animation file"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ค๐ด๐ ๐จ๐ฏ๐ฉ๐ฅ๐ฑ๐๐ฉ๐ฏ '%s': ๐ฎ๐ฐ๐๐ฉ๐ฏ ๐ฏ๐ช๐ ๐ฏ๐ด๐ฏ, ๐๐ฎ๐ช๐๐ฉ๐๐ค๐ฆ ๐ฉ ๐๐ผ๐ณ๐๐ ๐จ๐ฏ๐ฉ๐ฅ๐ฑ๐๐ฉ๐ฏ ๐๐ฒ๐ค"
#: gdk-pixbuf/gdk-pixbuf-io.c:809
#, c-format
msgid "Unable to load image-loading module: %s: %s"
msgstr "๐ณ๐ฏ๐ฑ๐๐ฉ๐ค ๐ ๐ค๐ด๐ ๐ฆ๐ฅ๐ฆ๐ก-๐ค๐ด๐๐ฆ๐ ๐ฅ๐ช๐๐ฟ๐ค: %s: %s"
#: gdk-pixbuf/gdk-pixbuf-io.c:824
#, fuzzy, c-format
msgid ""
"Image-loading module %s does not export the proper interface; perhaps it's "
"from a different gdk-pixbuf version?"
msgstr ""
"๐ฆ๐ฅ๐ฆ๐ก-๐ค๐ด๐๐ฆ๐ ๐ฅ๐ช๐๐ฟ๐ค %s ๐๐ณ๐ ๐ฏ๐ช๐ ๐ง๐๐๐๐น๐ ๐ ๐๐ฎ๐ช๐๐ผ ๐ฆ๐ฏ๐๐ผ๐๐ฑ๐; ๐๐ผ๐ฃ๐จ๐๐ ๐ฆ๐๐ ๐๐ฎ๐ช๐ฅ ๐ฉ "
"๐๐ฆ๐๐ผ๐ฉ๐ฏ๐ GTK ๐๐ป๐ ๐ฉ๐ฏ?"
#: gdk-pixbuf/gdk-pixbuf-io.c:833 gdk-pixbuf/gdk-pixbuf-io.c:884
#, c-format
msgid "Image type '%s' is not supported"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ '%s' ๐ฆ๐ ๐ฏ๐ช๐ ๐๐ฉ๐๐น๐๐ฉ๐"
#: gdk-pixbuf/gdk-pixbuf-io.c:964
#, c-format
msgid "Couldn't recognize the image file format for file '%s'"
msgstr "๐๐ซ๐๐ฏ๐ ๐ฎ๐ง๐๐ช๐๐ฏ๐ฒ๐ ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค ๐๐น๐ฅ๐จ๐ ๐๐น ๐๐ฒ๐ค '%s'"
#: gdk-pixbuf/gdk-pixbuf-io.c:972
msgid "Unrecognized image file format"
msgstr "๐ฉ๐ฏ๐ฎ๐ง๐๐ฉ๐๐ฏ๐ฒ๐๐ ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/gdk-pixbuf-io.c:1140
#, c-format
msgid "Failed to load image '%s': %s"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ค๐ด๐ ๐ฆ๐ฅ๐ฆ๐ก '%s': %s"
#: gdk-pixbuf/gdk-pixbuf-io.c:2028 gdk-pixbuf/io-gdip-utils.c:888
#, c-format
msgid "Error writing to image file: %s"
msgstr "๐ป๐ผ ๐ฎ๐ฒ๐๐ฆ๐ ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค: %s"
#: gdk-pixbuf/gdk-pixbuf-io.c:2073 gdk-pixbuf/gdk-pixbuf-io.c:2203
#, c-format
msgid "This build of gdk-pixbuf does not support saving the image format: %s"
msgstr "๐๐ฆ๐ ๐๐ฆ๐ค๐ ๐ gdk-pixbuf ๐๐ณ๐ ๐ฏ๐ช๐ ๐๐ฉ๐๐น๐ ๐๐ฑ๐๐ฆ๐ ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐: %s"
#: gdk-pixbuf/gdk-pixbuf-io.c:2107
msgid "Insufficient memory to save image to callback"
msgstr "๐ฆ๐ฏ๐๐ฉ๐๐ฆ๐๐ฉ๐ฏ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐๐ฑ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐ ๐๐ท๐ค๐๐จ๐"
#: gdk-pixbuf/gdk-pixbuf-io.c:2120
msgid "Failed to open temporary file"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ด๐๐ฉ๐ฏ ๐๐ง๐ฅ๐๐ผ๐ผ๐ฆ ๐๐ฒ๐ค"
#: gdk-pixbuf/gdk-pixbuf-io.c:2146
msgid "Failed to read from temporary file"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ฎ๐ฐ๐ ๐๐ฎ๐ช๐ฅ ๐๐ง๐ฅ๐๐ผ๐ผ๐ฆ ๐๐ฒ๐ค"
#: gdk-pixbuf/gdk-pixbuf-io.c:2399
#, c-format
msgid "Failed to open '%s' for writing: %s"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ด๐๐ฉ๐ฏ '%s' ๐๐น ๐ฎ๐ฒ๐๐ฆ๐: %s"
#: gdk-pixbuf/gdk-pixbuf-io.c:2425
#, c-format
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:2646 gdk-pixbuf/gdk-pixbuf-io.c:2698
msgid "Insufficient memory to save image into a buffer"
msgstr "๐ฆ๐ฏ๐๐ฉ๐๐ฆ๐๐ฉ๐ฏ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐๐ฑ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐ฆ๐ฏ๐๐ซ ๐ฉ ๐๐ณ๐๐ผ"
#: gdk-pixbuf/gdk-pixbuf-io.c:2744
msgid "Error writing to image stream"
msgstr "๐ป๐ผ ๐ฎ๐ฒ๐๐ฆ๐ ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐๐๐ฎ๐ฐ๐ฅ"
#: gdk-pixbuf/gdk-pixbuf-loader.c:395
#, c-format
msgid ""
"Internal error: Image loader module '%s' failed to complete an operation, "
"but didn't give a reason for the failure"
msgstr ""
"๐ฆ๐ฏ๐๐ป๐ฏ๐ฉ๐ค ๐ป๐ผ: ๐ฆ๐ฅ๐ฆ๐ก ๐ค๐ด๐๐ป ๐ฅ๐ช๐๐ฟ๐ค '%s' ๐๐ฑ๐ค๐ ๐ ๐๐ฉ๐ฅ๐๐ค๐ฐ๐ ๐ฉ๐ฏ ๐ช๐๐ผ๐ฑ๐๐ฑ๐ค๐, ๐๐ณ๐ ๐๐ฆ๐๐ฏ๐ ๐๐ฆ๐ ๐ฉ "
"๐ฎ๐ฐ๐๐ฉ๐ฏ ๐๐น ๐ ๐๐ฑ๐ค๐๐ผ"
#: gdk-pixbuf/gdk-pixbuf-loader.c:437
#, c-format
msgid "Incremental loading of image type '%s' is not supported"
msgstr "๐ฆ๐ฏ๐๐ฎ๐ฉ๐ฅ๐ง๐ฏ๐๐ฉ๐ค ๐ค๐ด๐๐ฆ๐ ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ '%s' ๐ฆ๐ ๐ฏ๐ช๐ ๐๐ฉ๐๐น๐๐ฉ๐"
#: gdk-pixbuf/gdk-pixdata.c:160
msgid "Image header corrupt"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐ง๐๐ผ ๐๐ผ๐ณ๐๐"
#: gdk-pixbuf/gdk-pixdata.c:165
msgid "Image format unknown"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐ ๐ณ๐ฏ๐ด๐ฏ"
#: gdk-pixbuf/gdk-pixdata.c:170 gdk-pixbuf/gdk-pixdata.c:502
msgid "Image pixel data corrupt"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐๐ฆ๐๐๐ฉ๐ค ๐๐ฑ๐๐ฉ ๐๐ผ๐ณ๐๐"
#: gdk-pixbuf/gdk-pixdata.c:446
#, c-format
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:229 gdk-pixbuf/io-bmp.c:266 gdk-pixbuf/io-bmp.c:337
#: gdk-pixbuf/io-bmp.c:369 gdk-pixbuf/io-bmp.c:392 gdk-pixbuf/io-bmp.c:495
msgid "BMP image has bogus header data"
msgstr "BMP ๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐๐ด๐๐ฉ๐ ๐ฃ๐ง๐๐ผ ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-bmp.c:240 gdk-pixbuf/io-bmp.c:432
msgid "Not enough memory to load bitmap image"
msgstr "๐ฏ๐ช๐ ๐ฆ๐ฏ๐ณ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ ๐๐ฆ๐๐ฅ๐จ๐ ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-bmp.c:318
msgid "BMP image has unsupported header size"
msgstr "BMP ๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐ณ๐ฏ๐๐ฉ๐๐น๐๐ฉ๐ ๐ฃ๐ง๐๐ผ ๐๐ฒ๐"
#: gdk-pixbuf/io-bmp.c:356
msgid "Topdown BMP images cannot be compressed"
msgstr "๐๐ช๐๐๐ฌ๐ฏ BMP ๐ฆ๐ฅ๐ฆ๐ก๐ฉ๐ ๐๐จ๐ฏ๐ช๐ ๐๐ฐ ๐๐ช๐ฅ๐๐ฎ๐ง๐๐"
#: gdk-pixbuf/io-bmp.c:716 gdk-pixbuf/io-pnm.c:707
msgid "Premature end-of-file encountered"
msgstr "๐๐ฎ๐ฐ๐ฅ๐ฉ๐๐ซ๐ฎ ๐ง๐ฏ๐-๐-๐๐ฒ๐ค ๐ฆ๐ฏ๐๐ถ๐ฏ๐๐ป๐"
#: gdk-pixbuf/io-bmp.c:1328
msgid "Couldn't allocate memory for saving BMP file"
msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐๐ฑ๐๐ฆ๐ BMP ๐๐ฒ๐ค"
#: gdk-pixbuf/io-bmp.c:1369
msgid "Couldn't write to BMP file"
msgstr "๐๐ซ๐๐ฏ๐ ๐ฎ๐ฒ๐ ๐ BMP ๐๐ฒ๐ค"
#: gdk-pixbuf/io-bmp.c:1422 gdk-pixbuf/io-gdip-bmp.c:82
msgid "The BMP image format"
msgstr "๐ BMP ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-gdip-emf.c:59
#, fuzzy
msgid "The EMF image format"
msgstr "๐ EMF ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-gdip-gif.c:80 gdk-pixbuf/io-gif.c:1699
msgid "The GIF image format"
msgstr "๐ GIF ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-gdip-ico.c:59 gdk-pixbuf/io-ico.c:1271
msgid "The ICO image format"
msgstr "๐ ICO ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-gdip-jpeg.c:53 gdk-pixbuf/io-jpeg.c:1139
#, c-format
msgid ""
"JPEG quality must be a value between 0 and 100; value '%s' could not be "
"parsed."
msgstr "JPEG ๐๐ข๐ช๐ค๐ฆ๐๐ฐ ๐ฅ๐ณ๐๐ ๐๐ฐ ๐ฉ ๐๐จ๐ค๐ฟ ๐๐ฆ๐๐ข๐ฐ๐ฏ 0 ๐ฏ 100; ๐๐จ๐ค๐ฟ '%s' ๐๐ซ๐ ๐ฏ๐ช๐ ๐๐ฐ ๐๐ธ๐๐."
#: gdk-pixbuf/io-gdip-jpeg.c:68 gdk-pixbuf/io-jpeg.c:1154
#, c-format
msgid ""
"JPEG quality must be a value between 0 and 100; value '%d' is not allowed."
msgstr "JPEG ๐๐ข๐ช๐ค๐ฆ๐๐ฐ ๐ฅ๐ณ๐๐ ๐๐ฐ ๐ฉ ๐๐จ๐ค๐ฟ ๐๐ฆ๐๐ข๐ฐ๐ฏ 0 ๐ฏ 100; ๐๐จ๐ค๐ฟ '%d' ๐ฆ๐ ๐ฏ๐ช๐ ๐ฉ๐ค๐ฌ๐."
#: gdk-pixbuf/io-gdip-jpeg.c:136 gdk-pixbuf/io-jpeg.c:1316
msgid "The JPEG image format"
msgstr "๐ JPEG ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-gdip-utils.c:154
#, fuzzy, c-format
msgid "Could not allocate memory: %s"
msgstr "๐๐ซ๐ ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ: %s"
#: gdk-pixbuf/io-gdip-utils.c:179 gdk-pixbuf/io-gdip-utils.c:293
#: gdk-pixbuf/io-gdip-utils.c:333
#, fuzzy, c-format
msgid "Could not create stream: %s"
msgstr "๐๐ซ๐ ๐ฏ๐ช๐ ๐๐ฎ๐ฆ๐ฑ๐ ๐๐๐ฎ๐ฐ๐ฅ: %s"
#: gdk-pixbuf/io-gdip-utils.c:193
#, fuzzy, c-format
msgid "Could not seek stream: %s"
msgstr "๐๐ซ๐ ๐ฏ๐ช๐ ๐๐ฐ๐ ๐๐๐ฎ๐ฐ๐ฅ: %s"
#: gdk-pixbuf/io-gdip-utils.c:205
#, fuzzy, c-format
msgid "Could not read from stream: %s"
msgstr "๐๐ซ๐ ๐ฏ๐ช๐ ๐ฎ๐ง๐ ๐๐ฎ๐ช๐ฅ ๐๐๐ฎ๐ฐ๐ฅ: %s"
#: gdk-pixbuf/io-gdip-utils.c:617 gdk-pixbuf/io-gdip-utils.c:752
msgid "Couldn't load bitmap"
msgstr "๐๐ซ๐๐ฏ๐ ๐ค๐ด๐ ๐๐ฆ๐๐ฅ๐จ๐"
#: gdk-pixbuf/io-gdip-utils.c:774
#, fuzzy
msgid "Couldn't load metafile"
msgstr "๐๐ซ๐๐ฏ๐ ๐ค๐ด๐ metafile"
#: gdk-pixbuf/io-gdip-utils.c:933
#, fuzzy
msgid "Unsupported image format for GDI+"
msgstr "๐ณ๐ฏ๐๐ฉ๐๐น๐๐ฉ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐ ๐๐น GDI+"
#: gdk-pixbuf/io-gdip-utils.c:940
msgid "Couldn't save"
msgstr "๐๐ซ๐๐ฏ๐ ๐๐ฑ๐"
#: gdk-pixbuf/io-gdip-wmf.c:58
#, fuzzy
msgid "The WMF image format"
msgstr "๐ WMF ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-gif.c:221
#, c-format
msgid "Failure reading GIF: %s"
msgstr "๐๐ฑ๐ค๐๐ผ ๐ฎ๐ฐ๐๐ฆ๐ GIF: %s"
#: gdk-pixbuf/io-gif.c:495 gdk-pixbuf/io-gif.c:1482 gdk-pixbuf/io-gif.c:1648
msgid "GIF file was missing some data (perhaps it was truncated somehow?)"
msgstr "GIF ๐๐ฒ๐ค ๐ข๐ช๐ ๐ฅ๐ฆ๐๐ฆ๐ ๐๐ณ๐ฅ ๐๐ฑ๐๐ฉ (๐๐ผ๐ฃ๐จ๐๐ ๐ฆ๐ ๐ข๐ช๐ ๐๐ฎ๐ฉ๐๐๐ฑ๐๐ฆ๐ ๐๐ณ๐ฅ๐ฃ๐ฌ?)"
#: gdk-pixbuf/io-gif.c:504
#, c-format
msgid "Internal error in the GIF loader (%s)"
msgstr "๐ฆ๐ฏ๐๐ป๐ฏ๐ฉ๐ค ๐ป๐ผ ๐ฆ๐ฏ ๐ GIF ๐ค๐ด๐๐ป (%s)"
#: gdk-pixbuf/io-gif.c:578
msgid "Stack overflow"
msgstr "๐๐๐จ๐ ๐ด๐๐ผ๐๐ค๐ด"
#: gdk-pixbuf/io-gif.c:638
msgid "GIF image loader cannot understand this image."
msgstr "GIF ๐ฆ๐ฅ๐ฆ๐ก ๐ค๐ด๐๐ป ๐๐จ๐ฏ๐ช๐ ๐ณ๐ฏ๐๐ผ๐๐๐จ๐ฏ๐ ๐๐ฆ๐ ๐ฆ๐ฅ๐ฆ๐ก."
#: gdk-pixbuf/io-gif.c:667
msgid "Bad code encountered"
msgstr "๐๐จ๐ ๐๐ด๐ ๐ฆ๐ฏ๐๐ถ๐ฏ๐๐ป๐"
#: gdk-pixbuf/io-gif.c:677
msgid "Circular table entry in GIF file"
msgstr "๐๐ป๐๐๐ซ๐ค๐ผ ๐๐ฑ๐๐ฉ๐ค ๐ง๐ฏ๐๐ฎ๐ฆ ๐ฆ๐ฏ GIF ๐๐ฒ๐ค"
#: gdk-pixbuf/io-gif.c:865 gdk-pixbuf/io-gif.c:1468 gdk-pixbuf/io-gif.c:1521
#: gdk-pixbuf/io-gif.c:1636
msgid "Not enough memory to load GIF file"
msgstr "๐ฏ๐ช๐ ๐ฆ๐ฏ๐ณ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ GIF ๐๐ฒ๐ค"
#: gdk-pixbuf/io-gif.c:959
msgid "Not enough memory to composite a frame in GIF file"
msgstr "๐ฏ๐ช๐ ๐ฆ๐ฏ๐ณ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐๐ฉ๐ฅ๐๐ญ๐๐ฉ๐ ๐ฉ ๐๐ฎ๐ฑ๐ฅ ๐ฆ๐ฏ GIF ๐๐ฒ๐ค"
#: gdk-pixbuf/io-gif.c:1131
msgid "GIF image is corrupt (incorrect LZW compression)"
msgstr "GIF ๐ฆ๐ฅ๐ฆ๐ก ๐ฆ๐ ๐๐ผ๐ณ๐๐ (๐ฆ๐ฏ๐๐ฉ๐ฎ๐ง๐๐ LZW ๐๐ฉ๐ฅ๐๐ฎ๐ง๐๐ฉ๐ฏ)"
#: gdk-pixbuf/io-gif.c:1181
msgid "File does not appear to be a GIF file"
msgstr "๐๐ฒ๐ค ๐๐ณ๐ ๐ฏ๐ช๐ ๐ฉ๐๐ฝ ๐ ๐๐ฐ ๐ฉ GIF ๐๐ฒ๐ค"
#: gdk-pixbuf/io-gif.c:1193
#, c-format
msgid "Version %s of the GIF file format is not supported"
msgstr "๐๐ป๐ ๐ฉ๐ฏ %s ๐ ๐ GIF ๐๐ฒ๐ค ๐๐น๐ฅ๐จ๐ ๐ฆ๐ ๐ฏ๐ช๐ ๐๐ฉ๐๐น๐๐ฉ๐"
#: gdk-pixbuf/io-gif.c:1302
msgid ""
"GIF image has no global colormap, and a frame inside it has no local "
"colormap."
msgstr ""
"GIF ๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐ฏ๐ด ๐๐ค๐ด๐๐ฉ๐ค ๐๐ณ๐ค๐ผ๐ฅ๐จ๐, ๐ฏ ๐ฉ ๐๐ฎ๐ฑ๐ฅ ๐ฆ๐ฏ๐๐ฒ๐ ๐ฆ๐ ๐ฃ๐จ๐ ๐ฏ๐ด ๐ค๐ด๐๐ฉ๐ค ๐๐ณ๐ค๐ผ๐ฅ๐จ๐."
#: gdk-pixbuf/io-gif.c:1543
msgid "GIF image was truncated or incomplete."
msgstr "GIF ๐ฆ๐ฅ๐ฆ๐ก ๐ข๐ช๐ ๐๐ฎ๐ฉ๐๐๐ฑ๐๐ฆ๐ ๐น ๐ฆ๐ฏ๐๐ฉ๐ฅ๐๐ค๐ฐ๐."
#: gdk-pixbuf/io-icns.c:347
#, fuzzy, c-format
msgid "Error reading ICNS image: %s"
msgstr "๐ป๐ผ ๐ฎ๐ฐ๐๐ฆ๐ ICNS ๐ฆ๐ฅ๐ฆ๐ก: %s"
#: gdk-pixbuf/io-icns.c:364
#, fuzzy
msgid "Could not decode ICNS file"
msgstr "๐๐ซ๐ ๐ฏ๐ช๐ ๐๐ฐ๐๐ด๐ ICNS ๐๐ฒ๐ค"
#: gdk-pixbuf/io-icns.c:397
#, fuzzy
msgid "The ICNS image format"
msgstr "๐ ICNS ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-ico.c:228 gdk-pixbuf/io-ico.c:242 gdk-pixbuf/io-ico.c:291
#: gdk-pixbuf/io-ico.c:302 gdk-pixbuf/io-ico.c:395
msgid "Invalid header in icon"
msgstr "๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐ ๐ฃ๐ง๐๐ผ ๐ฆ๐ฏ ๐ฒ๐๐ช๐ฏ"
#: gdk-pixbuf/io-ico.c:257 gdk-pixbuf/io-ico.c:312 gdk-pixbuf/io-ico.c:405
#: gdk-pixbuf/io-ico.c:458 gdk-pixbuf/io-ico.c:488
msgid "Not enough memory to load icon"
msgstr "๐ฏ๐ช๐ ๐ฆ๐ฏ๐ณ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ ๐ฒ๐๐ช๐ฏ"
#: gdk-pixbuf/io-ico.c:338
msgid "Compressed icons are not supported"
msgstr "๐๐ช๐ฅ๐๐ฎ๐ง๐๐ ๐ฒ๐๐ช๐ฏ๐ ๐ธ ๐ฏ๐ช๐ ๐๐ฉ๐๐น๐๐ฉ๐"
#: gdk-pixbuf/io-ico.c:358
msgid "Icon has zero width"
msgstr "๐ฒ๐๐ช๐ฏ ๐ฃ๐จ๐ ๐๐ฝ๐ด ๐ข๐ฆ๐๐"
#: gdk-pixbuf/io-ico.c:368
msgid "Icon has zero height"
msgstr "๐ฒ๐๐ช๐ฏ ๐ฃ๐จ๐ ๐๐ฝ๐ด ๐ฃ๐ฒ๐"
#: gdk-pixbuf/io-ico.c:443
msgid "Unsupported icon type"
msgstr "๐ณ๐ฏ๐๐ฉ๐๐น๐๐ฉ๐ ๐ฒ๐๐ช๐ฏ ๐๐ฒ๐"
#: gdk-pixbuf/io-ico.c:537
msgid "Not enough memory to load ICO file"
msgstr "๐ฏ๐ช๐ ๐ฆ๐ฏ๐ณ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ ICO ๐๐ฒ๐ค"
#: gdk-pixbuf/io-ico.c:1002
msgid "Image too large to be saved as ICO"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐๐ต ๐ค๐ธ๐ก ๐ ๐๐ฐ ๐๐ฑ๐๐ ๐จ๐ ICO"
#: gdk-pixbuf/io-ico.c:1013
msgid "Cursor hotspot outside image"
msgstr "๐๐ป๐๐ผ ๐ฃ๐ช๐๐๐๐ช๐ ๐ฌ๐๐๐ฒ๐ ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-ico.c:1036
#, c-format
msgid "Unsupported depth for ICO file: %d"
msgstr "๐ณ๐ฏ๐๐ฉ๐๐น๐๐ฉ๐ ๐๐ง๐๐ ๐๐น ICO ๐๐ฒ๐ค: %d"
#: gdk-pixbuf/io-jasper.c:74
msgid "Couldn't allocate memory for stream"
msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐๐๐ฎ๐ฐ๐ฅ"
#: gdk-pixbuf/io-jasper.c:104
msgid "Couldn't decode image"
msgstr "๐๐ซ๐๐ฏ๐ ๐๐ฐ๐๐ด๐ ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-jasper.c:122
#, fuzzy
msgid "Transformed JPEG2000 has zero width or height"
msgstr "๐๐ฎ๐จ๐ฏ๐๐๐ช๐ฎ๐ฅ๐ JPEG2000 ๐ฃ๐จ๐ ๐๐ฝ๐ด ๐ข๐ฆ๐๐ ๐น ๐ฃ๐ฒ๐"
#: gdk-pixbuf/io-jasper.c:136
msgid "Image type currently not supported"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ ๐๐ณ๐ฎ๐ฉ๐ฏ๐๐ค๐ฆ ๐ฏ๐ช๐ ๐๐ฉ๐๐น๐๐ฉ๐"
#: gdk-pixbuf/io-jasper.c:148 gdk-pixbuf/io-jasper.c:156
msgid "Couldn't allocate memory for color profile"
msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐๐ณ๐ค๐ผ ๐๐ฎ๐ด๐๐ฒ๐ค"
#: gdk-pixbuf/io-jasper.c:182
#, fuzzy
msgid "Insufficient memory to open JPEG 2000 file"
msgstr "๐ฆ๐ฏ๐๐ฉ๐๐ฆ๐๐ฉ๐ฏ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ด๐๐ฉ๐ฏ JPEG 2000 ๐๐ฒ๐ค"
#: gdk-pixbuf/io-jasper.c:261
msgid "Couldn't allocate memory to buffer image data"
msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐๐ณ๐๐ผ ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-jasper.c:305
#, fuzzy
msgid "The JPEG 2000 image format"
msgstr "๐ JPEG 2000 ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-jpeg.c:116
#, c-format
msgid "Error interpreting JPEG image file (%s)"
msgstr "๐ป๐ผ ๐ฆ๐ฏ๐๐ป๐๐ฎ๐ฉ๐๐ฆ๐ JPEG ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค (%s)"
#: gdk-pixbuf/io-jpeg.c:527
msgid ""
"Insufficient memory to load image, try exiting some applications to free "
"memory"
msgstr "๐ฆ๐ฏ๐๐ฉ๐๐ฆ๐๐ฉ๐ฏ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ ๐ฆ๐ฅ๐ฆ๐ก, ๐๐ฎ๐ฒ ๐ง๐๐๐ฆ๐๐ฆ๐ ๐๐ณ๐ฅ ๐ฉ๐๐ค๐ฆ๐๐ฑ๐๐ฉ๐ฏ๐ ๐ ๐๐ฎ๐ฐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ"
#: gdk-pixbuf/io-jpeg.c:568 gdk-pixbuf/io-jpeg.c:781
#, c-format
msgid "Unsupported JPEG color space (%s)"
msgstr "๐ณ๐ฏ๐๐ฉ๐๐น๐๐ฉ๐ JPEG ๐๐ณ๐ค๐ผ ๐๐๐ฑ๐ (%s)"
#: gdk-pixbuf/io-jpeg.c:680 gdk-pixbuf/io-jpeg.c:950 gdk-pixbuf/io-jpeg.c:1183
#: gdk-pixbuf/io-jpeg.c:1192
msgid "Couldn't allocate memory for loading JPEG file"
msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐ค๐ด๐๐ฆ๐ JPEG ๐๐ฒ๐ค"
#: gdk-pixbuf/io-jpeg.c:925
msgid "Transformed JPEG has zero width or height."
msgstr "๐๐ฎ๐จ๐ฏ๐๐๐ช๐ฎ๐ฅ๐ JPEG ๐ฃ๐จ๐ ๐๐ฝ๐ด ๐ข๐ฆ๐๐ ๐น ๐ฃ๐ฒ๐."
#: gdk-pixbuf/io-pcx.c:186
msgid "Couldn't allocate memory for header"
msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐ฃ๐ง๐๐ผ"
#: gdk-pixbuf/io-pcx.c:201 gdk-pixbuf/io-pcx.c:559
msgid "Couldn't allocate memory for context buffer"
msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐๐ช๐ฏ๐๐ง๐๐๐ ๐๐ณ๐๐ผ"
#: gdk-pixbuf/io-pcx.c:600
msgid "Image has invalid width and/or height"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐ ๐ข๐ฆ๐๐ ๐ฏ/๐น ๐ฃ๐ฒ๐"
#: gdk-pixbuf/io-pcx.c:612 gdk-pixbuf/io-pcx.c:673
msgid "Image has unsupported bpp"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐ณ๐ฏ๐๐ฉ๐๐น๐๐ฉ๐ bpp"
#: gdk-pixbuf/io-pcx.c:617 gdk-pixbuf/io-pcx.c:625
#, c-format
msgid "Image has unsupported number of %d-bit planes"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐ณ๐ฏ๐๐ฉ๐๐น๐๐ฉ๐ ๐ฏ๐ณ๐ฅ๐๐ผ ๐ %d-๐๐ฆ๐ ๐๐ค๐ฑ๐ฏ๐"
#: gdk-pixbuf/io-pcx.c:641
msgid "Couldn't create new pixbuf"
msgstr "๐๐ซ๐๐ฏ๐ ๐๐ฎ๐ฆ๐ฑ๐ ๐ฏ๐ฟ ๐๐ฆ๐๐๐๐ณ๐"
#: gdk-pixbuf/io-pcx.c:649
msgid "Couldn't allocate memory for line data"
msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐ค๐ฒ๐ฏ ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-pcx.c:656
#, fuzzy
msgid "Couldn't allocate memory for PCX image"
msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐ฃ๐ง๐๐ผ"
#: gdk-pixbuf/io-pcx.c:703
msgid "Didn't get all lines of PCX image"
msgstr "๐๐ฆ๐๐ฏ๐ ๐๐ง๐ ๐ท๐ค ๐ค๐ฒ๐ฏ๐ ๐ PCX ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-pcx.c:710
msgid "No palette found at end of PCX data"
msgstr "๐ฏ๐ด ๐๐ฉ๐ค๐ง๐ ๐๐ฌ๐ฏ๐ ๐จ๐ ๐ง๐ฏ๐ ๐ PCX ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-pcx.c:755
msgid "The PCX image format"
msgstr "๐ PCX ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-pixdata.c:148
#, fuzzy
msgid "Transformed pixbuf has zero width or height."
msgstr "๐๐ฎ๐จ๐ฏ๐๐๐ช๐ฎ๐ฅ๐ PNG ๐ฃ๐จ๐ ๐๐ฝ๐ด ๐ข๐ฆ๐๐ ๐น ๐ฃ๐ฒ๐."
#: gdk-pixbuf/io-pixdata.c:186
#, fuzzy
msgid "The GdkPixdata format"
msgstr "๐ GIF ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-png.c:54
msgid "Bits per channel of PNG image is invalid."
msgstr "๐๐ฆ๐๐ ๐๐ป ๐๐จ๐ฏ๐ฉ๐ค ๐ PNG ๐ฆ๐ฅ๐ฆ๐ก ๐ฆ๐ ๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐."
#: gdk-pixbuf/io-png.c:135 gdk-pixbuf/io-png.c:641
msgid "Transformed PNG has zero width or height."
msgstr "๐๐ฎ๐จ๐ฏ๐๐๐ช๐ฎ๐ฅ๐ PNG ๐ฃ๐จ๐ ๐๐ฝ๐ด ๐ข๐ฆ๐๐ ๐น ๐ฃ๐ฒ๐."
#: gdk-pixbuf/io-png.c:143
msgid "Bits per channel of transformed PNG is not 8."
msgstr "๐๐ฆ๐๐ ๐๐ป ๐๐จ๐ฏ๐ฉ๐ค ๐ ๐๐ฎ๐จ๐ฏ๐๐๐ช๐ฎ๐ฅ๐ PNG ๐ฆ๐ ๐ฏ๐ช๐ 8."
#: gdk-pixbuf/io-png.c:152
msgid "Transformed PNG not RGB or RGBA."
msgstr "๐๐ฎ๐จ๐ฏ๐๐๐ช๐ฎ๐ฅ๐ PNG ๐ฏ๐ช๐ RGB ๐น RGBA."
#: gdk-pixbuf/io-png.c:161
msgid "Transformed PNG has unsupported number of channels, must be 3 or 4."
msgstr "๐๐ฎ๐จ๐ฏ๐๐๐ช๐ฎ๐ฅ๐ PNG ๐ฃ๐จ๐ ๐ณ๐ฏ๐๐ฉ๐๐น๐๐ฉ๐ ๐ฏ๐ณ๐ฅ๐๐ผ ๐ ๐๐จ๐ฏ๐ฉ๐ค๐, ๐ฅ๐ณ๐๐ ๐๐ฐ 3 ๐น 4."
#: gdk-pixbuf/io-png.c:182
#, c-format
msgid "Fatal error in PNG image file: %s"
msgstr "๐๐ฑ๐๐ฉ๐ค ๐ป๐ผ ๐ฆ๐ฏ PNG ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค: %s"
#: gdk-pixbuf/io-png.c:315
msgid "Insufficient memory to load PNG file"
msgstr "๐ฆ๐ฏ๐๐ฉ๐๐ฆ๐๐ฉ๐ฏ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ PNG ๐๐ฒ๐ค"
#: gdk-pixbuf/io-png.c:656
#, c-format
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:719
msgid "Fatal error reading PNG image file"
msgstr "๐๐ฑ๐๐ฉ๐ค ๐ป๐ผ ๐ฎ๐ฐ๐๐ฆ๐ PNG ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค"
#: gdk-pixbuf/io-png.c:768
#, c-format
msgid "Fatal error reading PNG image file: %s"
msgstr "๐๐ฑ๐๐ฉ๐ค ๐ป๐ผ ๐ฎ๐ฐ๐๐ฆ๐ PNG ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค: %s"
#: gdk-pixbuf/io-png.c:862
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:871
msgid "Keys for PNG text chunks must be ASCII characters."
msgstr "๐๐ฐ๐ ๐๐น PNG ๐๐ง๐๐๐ ๐๐ฉ๐๐๐ ๐ฅ๐ณ๐๐ ๐๐ฐ ASCII ๐๐จ๐ฎ๐ฉ๐๐๐ผ๐."
#: gdk-pixbuf/io-png.c:885 gdk-pixbuf/io-tiff.c:737
#, fuzzy, c-format
msgid "Color profile has invalid length %d."
msgstr "๐๐ณ๐ค๐ผ ๐๐ฎ๐ด๐๐ฒ๐ค ๐ฃ๐จ๐ ๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐ ๐ค๐ง๐๐ %d."
#: gdk-pixbuf/io-png.c:898
#, c-format
msgid ""
"PNG compression level must be a value between 0 and 9; value '%s' could not "
"be parsed."
msgstr ""
"PNG ๐๐ฉ๐ฅ๐๐ฎ๐ง๐๐ฉ๐ฏ ๐ค๐ง๐๐ฉ๐ค ๐ฅ๐ณ๐๐ ๐๐ฐ ๐ฉ ๐๐จ๐ค๐ฟ ๐๐ฆ๐๐ข๐ฐ๐ฏ 0 ๐ฏ 9; ๐๐จ๐ค๐ฟ '%s' ๐๐ซ๐ ๐ฏ๐ช๐ ๐๐ฐ ๐๐ธ๐๐."
#: gdk-pixbuf/io-png.c:911
#, c-format
msgid ""
"PNG compression level must be a value between 0 and 9; value '%d' is not "
"allowed."
msgstr ""
"PNG ๐๐ฉ๐ฅ๐๐ฎ๐ง๐๐ฉ๐ฏ ๐ค๐ง๐๐ฉ๐ค ๐ฅ๐ณ๐๐ ๐๐ฐ ๐ฉ ๐๐จ๐ค๐ฟ ๐๐ฆ๐๐ข๐ฐ๐ฏ 0 ๐ฏ 9; ๐๐จ๐ค๐ฟ '%d' ๐ฆ๐ ๐ฏ๐ช๐ ๐ฉ๐ค๐ฌ๐."
#: gdk-pixbuf/io-png.c:959
#, c-format
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:1122
msgid "The PNG image format"
msgstr "๐ PNG ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-pnm.c:248
msgid "PNM loader expected to find an integer, but didn't"
msgstr "PNM ๐ค๐ด๐๐ป ๐ฆ๐๐๐๐ง๐๐๐ฉ๐ ๐ ๐๐ฒ๐ฏ๐ ๐ฉ๐ฏ ๐ฆ๐ฏ๐๐ฉ๐ก๐ผ, ๐๐ณ๐ ๐๐ฆ๐๐ฏ๐"
#: gdk-pixbuf/io-pnm.c:280
msgid "PNM file has an incorrect initial byte"
msgstr "PNM ๐๐ฒ๐ค ๐ฃ๐จ๐ ๐ฉ๐ฏ ๐ฆ๐ฏ๐๐ฉ๐ฎ๐ง๐๐ ๐ฆ๐ฏ๐ฆ๐๐ฉ๐ค ๐๐ฒ๐"
#: gdk-pixbuf/io-pnm.c:310
msgid "PNM file is not in a recognized PNM subformat"
msgstr "PNM ๐๐ฒ๐ค ๐ฆ๐ ๐ฏ๐ช๐ ๐ฆ๐ฏ ๐ฉ ๐ฎ๐ง๐๐ช๐๐ฏ๐ฒ๐๐ PNM ๐๐ณ๐๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-pnm.c:335
msgid "PNM file has an image width of 0"
msgstr "PNM ๐๐ฒ๐ค ๐ฃ๐จ๐ ๐ฉ๐ฏ ๐ฆ๐ฅ๐ฆ๐ก ๐ข๐ฆ๐๐ ๐ 0"
#: gdk-pixbuf/io-pnm.c:356
msgid "PNM file has an image height of 0"
msgstr "PNM ๐๐ฒ๐ค ๐ฃ๐จ๐ ๐ฉ๐ฏ ๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐ฒ๐ ๐ 0"
#: gdk-pixbuf/io-pnm.c:379
msgid "Maximum color value in PNM file is 0"
msgstr "๐ฅ๐จ๐๐๐ฆ๐ฅ๐ฉ๐ฅ ๐๐ณ๐ค๐ผ ๐๐จ๐ค๐ฟ ๐ฆ๐ฏ PNM ๐๐ฒ๐ค ๐ฆ๐ 0"
#: gdk-pixbuf/io-pnm.c:387
msgid "Maximum color value in PNM file is too large"
msgstr "๐ฅ๐จ๐๐๐ฆ๐ฅ๐ฉ๐ฅ ๐๐ณ๐ค๐ผ ๐๐จ๐ค๐ฟ ๐ฆ๐ฏ PNM ๐๐ฒ๐ค ๐ฆ๐ ๐๐ต ๐ค๐ธ๐ก"
#: gdk-pixbuf/io-pnm.c:427 gdk-pixbuf/io-pnm.c:457 gdk-pixbuf/io-pnm.c:502
msgid "Raw PNM image type is invalid"
msgstr "๐ฎ๐ท PNM ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ ๐ฆ๐ ๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐"
#: gdk-pixbuf/io-pnm.c:652
msgid "PNM image loader does not support this PNM subformat"
msgstr "PNM ๐ฆ๐ฅ๐ฆ๐ก ๐ค๐ด๐๐ป ๐๐ณ๐ ๐ฏ๐ช๐ ๐๐ฉ๐๐น๐ ๐๐ฆ๐ PNM ๐๐ณ๐๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-pnm.c:739 gdk-pixbuf/io-pnm.c:966
msgid "Raw PNM formats require exactly one whitespace before sample data"
msgstr "๐ฎ๐ท PNM ๐๐น๐ฅ๐จ๐๐ ๐ฎ๐ฆ๐๐ข๐ฒ๐ผ ๐ฆ๐๐๐จ๐๐๐ค๐ฆ ๐ข๐ณ๐ฏ ๐ข๐ฒ๐๐๐๐ฑ๐ ๐๐ฆ๐๐น ๐๐ญ๐ฅ๐๐ฉ๐ค ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-pnm.c:766
msgid "Cannot allocate memory for loading PNM image"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐ค๐ด๐๐ฆ๐ PNM ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-pnm.c:816
msgid "Insufficient memory to load PNM context struct"
msgstr "๐ฆ๐ฏ๐๐ฉ๐๐ฆ๐๐ฉ๐ฏ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ PNM ๐๐ช๐ฏ๐๐ง๐๐๐ ๐๐๐ฎ๐ณ๐๐"
#: gdk-pixbuf/io-pnm.c:867
msgid "Unexpected end of PNM image data"
msgstr "๐ณ๐ฏ๐ฆ๐๐๐๐ง๐๐๐ฉ๐ ๐ง๐ฏ๐ ๐ PNM ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-pnm.c:995
msgid "Insufficient memory to load PNM file"
msgstr "๐ฆ๐ฏ๐๐ฉ๐๐ฆ๐๐ฉ๐ฏ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ PNM ๐๐ฒ๐ค"
#: gdk-pixbuf/io-pnm.c:1079
msgid "The PNM/PBM/PGM/PPM image format family"
msgstr "๐ PNM/PBM/๐๐ฐ๐ก๐ฐ๐ง๐ฅ/๐๐ฐ๐๐ฐ๐ง๐ฅ ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐ ๐๐จ๐ฅ๐ฆ๐ค๐ฆ"
#: gdk-pixbuf/io-qtif.c:128
#, fuzzy
msgid "Input file descriptor is NULL."
msgstr "๐ฆ๐ฏ๐๐ซ๐ ๐๐ฒ๐ค descriptor ๐ฆ๐ ๐ฏ๐ณ๐ค."
#: gdk-pixbuf/io-qtif.c:143
#, fuzzy
msgid "Failed to read QTIF header"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ฎ๐ฐ๐ QTIF ๐ฃ๐ง๐๐ผ"
#: gdk-pixbuf/io-qtif.c:152 gdk-pixbuf/io-qtif.c:189 gdk-pixbuf/io-qtif.c:460
#, fuzzy, c-format
msgid "QTIF atom size too large (%d byte)"
msgid_plural "QTIF atom size too large (%d bytes)"
msgstr[0] "QTIF ๐จ๐๐ฉ๐ฅ ๐๐ฒ๐ ๐๐ต ๐ค๐ธ๐ก (%d ๐๐ฒ๐๐)"
msgstr[1] "QTIF ๐จ๐๐ฉ๐ฅ ๐๐ฒ๐ ๐๐ต ๐ค๐ธ๐ก (%d ๐๐ฒ๐๐)"
#: gdk-pixbuf/io-qtif.c:175
#, fuzzy, c-format
msgid "Failed to allocate %d byte for file read buffer"
msgid_plural "Failed to allocate %d bytes for file read buffer"
msgstr[0] "๐๐ฑ๐ค๐ ๐ ๐จ๐ค๐ด๐๐ฑ๐ %d ๐๐ฒ๐๐ ๐๐น ๐๐ฒ๐ค ๐ฎ๐ง๐ ๐๐ณ๐๐ผ"
msgstr[1] "๐๐ฑ๐ค๐ ๐ ๐จ๐ค๐ด๐๐ฑ๐ %d ๐๐ฒ๐๐ ๐๐น ๐๐ฒ๐ค ๐ฎ๐ง๐ ๐๐ณ๐๐ผ"
#: gdk-pixbuf/io-qtif.c:206
#, fuzzy, c-format
msgid "File error when reading QTIF atom: %s"
msgstr "๐๐ฒ๐ค ๐ป๐ผ ๐ข๐ง๐ฏ ๐ฎ๐ฐ๐๐ฆ๐ QTIF ๐จ๐๐ฉ๐ฅ: %s"
#: gdk-pixbuf/io-qtif.c:243
#, fuzzy, c-format
msgid "Failed to skip the next %d byte with seek()."
msgid_plural "Failed to skip the next %d bytes with seek()."
msgstr[0] "๐๐ฑ๐ค๐ ๐ ๐๐๐ฆ๐ ๐ ๐ฏ๐ง๐๐๐ %d ๐๐ฒ๐๐ ๐ข๐ฆ๐ ๐๐ฐ๐()."
msgstr[1] "๐๐ฑ๐ค๐ ๐ ๐๐๐ฆ๐ ๐ ๐ฏ๐ง๐๐๐ %d ๐๐ฒ๐๐ ๐ข๐ฆ๐ ๐๐ฐ๐()."
#: gdk-pixbuf/io-qtif.c:270
#, fuzzy
msgid "Failed to allocate QTIF context structure."
msgstr "๐๐ฑ๐ค๐ ๐ ๐จ๐ค๐ด๐๐ฑ๐ QTIF ๐๐ช๐ฏ๐๐ง๐๐๐ ๐๐๐ฎ๐ณ๐๐๐ผ."
#: gdk-pixbuf/io-qtif.c:330
#, fuzzy
msgid "Failed to create GdkPixbufLoader object."
msgstr "๐๐ฑ๐ค๐ ๐ ๐๐ฎ๐ฆ๐ฑ๐ GdkPixbufLoader ๐ฉ๐๐ก๐ง๐๐."
#: gdk-pixbuf/io-qtif.c:434
msgid "Failed to find an image data atom."
msgstr "๐๐ฑ๐ค๐ ๐ ๐๐ฒ๐ฏ๐ ๐ฉ๐ฏ ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฑ๐๐ฉ ๐จ๐๐ฉ๐ฅ."
#: gdk-pixbuf/io-qtif.c:619
#, fuzzy
msgid "The QTIF image format"
msgstr "๐ QTIF ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-ras.c:125
msgid "RAS image has bogus header data"
msgstr "๐ฎ๐จ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐๐ด๐๐ฉ๐ ๐ฃ๐ง๐๐ผ ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-ras.c:147
msgid "RAS image has unknown type"
msgstr "๐ฎ๐จ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐ณ๐ฏ๐ด๐ฏ ๐๐ฒ๐"
#: gdk-pixbuf/io-ras.c:155
msgid "unsupported RAS image variation"
msgstr "๐ณ๐ฏ๐๐ฉ๐๐น๐๐ฉ๐ ๐ฎ๐จ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐๐ง๐ฎ๐ฐ๐ฑ๐๐ฉ๐ฏ"
#: gdk-pixbuf/io-ras.c:170 gdk-pixbuf/io-ras.c:199
msgid "Not enough memory to load RAS image"
msgstr "๐ฏ๐ช๐ ๐ฆ๐ฏ๐ณ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ ๐ฎ๐จ๐ ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-ras.c:544
msgid "The Sun raster image format"
msgstr "๐ ๐๐ณ๐ฏ ๐ฎ๐จ๐๐๐ป ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-tga.c:153
msgid "Cannot allocate memory for IOBuffer struct"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น IOBuffer ๐๐๐ฎ๐ณ๐๐"
#: gdk-pixbuf/io-tga.c:172
msgid "Cannot allocate memory for IOBuffer data"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น IOBuffer ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-tga.c:183
msgid "Cannot realloc IOBuffer data"
msgstr "๐๐จ๐ฏ๐ช๐ ๐ฎ๐ฐ๐จ๐ค๐ช๐ IOBuffer ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-tga.c:213
msgid "Cannot allocate temporary IOBuffer data"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐๐ง๐ฅ๐๐ผ๐ผ๐ฆ IOBuffer ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-tga.c:346
msgid "Cannot allocate new pixbuf"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฏ๐ฟ ๐๐ฆ๐๐๐๐ณ๐"
#: gdk-pixbuf/io-tga.c:685
msgid "Image is corrupted or truncated"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐ฆ๐ ๐๐ผ๐ณ๐๐๐ฉ๐ ๐น ๐๐ฎ๐ฉ๐๐๐ฑ๐๐ฆ๐"
#: gdk-pixbuf/io-tga.c:692
msgid "Cannot allocate colormap structure"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐๐ณ๐ค๐ผ๐ฅ๐จ๐ ๐๐๐ฎ๐ณ๐๐๐ผ"
#: gdk-pixbuf/io-tga.c:699
msgid "Cannot allocate colormap entries"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐๐ณ๐ค๐ผ๐ฅ๐จ๐ ๐ง๐ฏ๐๐ฎ๐ฆ๐"
#: gdk-pixbuf/io-tga.c:721
msgid "Unexpected bitdepth for colormap entries"
msgstr "๐ณ๐ฏ๐ฆ๐๐๐๐ง๐๐๐ฉ๐ ๐๐ฆ๐๐๐ง๐๐ ๐๐น ๐๐ณ๐ค๐ผ๐ฅ๐จ๐ ๐ง๐ฏ๐๐ฎ๐ฆ๐"
#: gdk-pixbuf/io-tga.c:739
msgid "Cannot allocate TGA header memory"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ TGA ๐ฃ๐ง๐๐ผ ๐ฅ๐ง๐ฅ๐ผ๐ฆ"
#: gdk-pixbuf/io-tga.c:772
msgid "TGA image has invalid dimensions"
msgstr "TGA ๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐ ๐๐ฒ๐ฅ๐ง๐ฏ๐๐ช๐ฏ๐"
#: gdk-pixbuf/io-tga.c:778 gdk-pixbuf/io-tga.c:787 gdk-pixbuf/io-tga.c:797
#: gdk-pixbuf/io-tga.c:807 gdk-pixbuf/io-tga.c:814
msgid "TGA image type not supported"
msgstr "TGA ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ ๐ฏ๐ช๐ ๐๐ฉ๐๐น๐๐ฉ๐"
#: gdk-pixbuf/io-tga.c:861
msgid "Cannot allocate memory for TGA context struct"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น TGA ๐๐ช๐ฏ๐๐ง๐๐๐ ๐๐๐ฎ๐ณ๐๐"
#: gdk-pixbuf/io-tga.c:926
msgid "Excess data in file"
msgstr "๐ฆ๐๐๐ง๐ ๐๐ฑ๐๐ฉ ๐ฆ๐ฏ ๐๐ฒ๐ค"
#: gdk-pixbuf/io-tga.c:1007
msgid "The Targa image format"
msgstr "๐ ยท๐๐ธ๐๐ฉ ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-tiff.c:164
msgid "Could not get image width (bad TIFF file)"
msgstr "๐๐ซ๐ ๐ฏ๐ช๐ ๐๐ง๐ ๐ฆ๐ฅ๐ฆ๐ก ๐ข๐ฆ๐๐ (๐๐จ๐ TIFF ๐๐ฒ๐ค)"
#: gdk-pixbuf/io-tiff.c:171
msgid "Could not get image height (bad TIFF file)"
msgstr "๐๐ซ๐ ๐ฏ๐ช๐ ๐๐ง๐ ๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐ฒ๐ (๐๐จ๐ TIFF ๐๐ฒ๐ค)"
#: gdk-pixbuf/io-tiff.c:179
msgid "Width or height of TIFF image is zero"
msgstr "๐ข๐ฆ๐๐ ๐น ๐ฃ๐ฒ๐ ๐ TIFF ๐ฆ๐ฅ๐ฆ๐ก ๐ฆ๐ ๐๐ฝ๐ด"
#: gdk-pixbuf/io-tiff.c:188 gdk-pixbuf/io-tiff.c:197
msgid "Dimensions of TIFF image too large"
msgstr "๐๐ฒ๐ฅ๐ง๐ฏ๐๐ช๐ฏ๐ ๐ TIFF ๐ฆ๐ฅ๐ฆ๐ก ๐๐ต ๐ค๐ธ๐ก"
#: gdk-pixbuf/io-tiff.c:221 gdk-pixbuf/io-tiff.c:233 gdk-pixbuf/io-tiff.c:560
msgid "Insufficient memory to open TIFF file"
msgstr "๐ฆ๐ฏ๐๐ฉ๐๐ฆ๐๐ฉ๐ฏ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ด๐๐ฉ๐ฏ TIFF ๐๐ฒ๐ค"
#: gdk-pixbuf/io-tiff.c:294
msgid "Failed to load RGB data from TIFF file"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ค๐ด๐ RGB ๐๐ฑ๐๐ฉ ๐๐ฎ๐ช๐ฅ TIFF ๐๐ฒ๐ค"
#: gdk-pixbuf/io-tiff.c:350
msgid "Failed to open TIFF image"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ด๐๐ฉ๐ฏ TIFF ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-tiff.c:362 gdk-pixbuf/io-tiff.c:777
msgid "TIFFClose operation failed"
msgstr "TIFFClose ๐ช๐๐ผ๐ฑ๐๐ฉ๐ฏ ๐๐ฑ๐ค๐"
#: gdk-pixbuf/io-tiff.c:492 gdk-pixbuf/io-tiff.c:505
msgid "Failed to load TIFF image"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ค๐ด๐ TIFF ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-tiff.c:691
msgid "Failed to save TIFF image"
msgstr "๐๐ฑ๐ค๐ ๐ ๐๐ฑ๐ TIFF ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-tiff.c:726
msgid "TIFF compression doesn't refer to a valid codec."
msgstr "๐๐ฆ๐ ๐๐ฉ๐ฅ๐๐ฎ๐ง๐๐ฉ๐ฏ ๐๐ณ๐๐ฏ๐ ๐ฎ๐ฆ๐๐ป ๐ ๐ฉ ๐๐จ๐ค๐ฆ๐ ๐๐ด๐๐ง๐."
#: gdk-pixbuf/io-tiff.c:766
msgid "Failed to write TIFF data"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ฎ๐ฒ๐ TIFF ๐๐ฑ๐๐ฉ"
#: gdk-pixbuf/io-tiff.c:813
msgid "Couldn't write to TIFF file"
msgstr "๐๐ซ๐๐ฏ๐ ๐ฎ๐ฒ๐ ๐ TIFF ๐๐ฒ๐ค"
#: gdk-pixbuf/io-tiff.c:868
msgid "The TIFF image format"
msgstr "๐ TIFF ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-wbmp.c:245
msgid "Image has zero width"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐๐ฝ๐ด ๐ข๐ฆ๐๐"
#: gdk-pixbuf/io-wbmp.c:263
msgid "Image has zero height"
msgstr "๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐จ๐ ๐๐ฝ๐ด ๐ฃ๐ฒ๐"
#: gdk-pixbuf/io-wbmp.c:274
msgid "Not enough memory to load image"
msgstr "๐ฏ๐ช๐ ๐ฆ๐ฏ๐ณ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-wbmp.c:333
msgid "Couldn't save the rest"
msgstr "๐๐ซ๐๐ฏ๐ ๐๐ฑ๐ ๐ ๐ฎ๐ง๐๐"
#: gdk-pixbuf/io-wbmp.c:374
msgid "The WBMP image format"
msgstr "๐ WBMP ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-xbm.c:296
msgid "Invalid XBM file"
msgstr "๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐ XBM ๐๐ฒ๐ค"
#: gdk-pixbuf/io-xbm.c:306
msgid "Insufficient memory to load XBM image file"
msgstr "๐ฆ๐ฏ๐๐ฉ๐๐ฆ๐๐ฉ๐ฏ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐ ๐ค๐ด๐ XBM ๐ฆ๐ฅ๐ฆ๐ก ๐๐ฒ๐ค"
#: gdk-pixbuf/io-xbm.c:454
msgid "Failed to write to temporary file when loading XBM image"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ฎ๐ฒ๐ ๐ ๐๐ง๐ฅ๐๐ผ๐ผ๐ฆ ๐๐ฒ๐ค ๐ข๐ง๐ฏ ๐ค๐ด๐๐ฆ๐ XBM ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-xbm.c:493
msgid "The XBM image format"
msgstr "๐ XBM ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#: gdk-pixbuf/io-xpm.c:469
msgid "No XPM header found"
msgstr "๐ฏ๐ด XPM ๐ฃ๐ง๐๐ผ ๐๐ฌ๐ฏ๐"
#: gdk-pixbuf/io-xpm.c:478
msgid "Invalid XPM header"
msgstr "๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐ XPM ๐ฃ๐ง๐๐ผ"
#: gdk-pixbuf/io-xpm.c:486
msgid "XPM file has image width <= 0"
msgstr "XPM ๐๐ฒ๐ค ๐ฃ๐จ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐ข๐ฆ๐๐ <= 0"
#: gdk-pixbuf/io-xpm.c:494
msgid "XPM file has image height <= 0"
msgstr "XPM ๐๐ฒ๐ค ๐ฃ๐จ๐ ๐ฆ๐ฅ๐ฆ๐ก ๐ฃ๐ฒ๐ <= 0"
#: gdk-pixbuf/io-xpm.c:502
msgid "XPM has invalid number of chars per pixel"
msgstr "XPM ๐ฃ๐จ๐ ๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐ ๐ฏ๐ณ๐ฅ๐๐ผ ๐ ๐๐ธ๐ ๐๐ป ๐๐ฆ๐๐๐ฉ๐ค"
#: gdk-pixbuf/io-xpm.c:511
msgid "XPM file has invalid number of colors"
msgstr "XPM ๐๐ฒ๐ค ๐ฃ๐จ๐ ๐ฆ๐ฏ๐๐จ๐ค๐ฆ๐ ๐ฏ๐ณ๐ฅ๐๐ผ ๐ ๐๐ณ๐ค๐ผ๐"
#: gdk-pixbuf/io-xpm.c:523 gdk-pixbuf/io-xpm.c:532 gdk-pixbuf/io-xpm.c:584
msgid "Cannot allocate memory for loading XPM image"
msgstr "๐๐จ๐ฏ๐ช๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐ค๐ด๐๐ฆ๐ XPM ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-xpm.c:546
msgid "Cannot read XPM colormap"
msgstr "๐๐จ๐ฏ๐ช๐ ๐ฎ๐ฐ๐ XPM ๐๐ณ๐ค๐ผ๐ฅ๐จ๐"
#: gdk-pixbuf/io-xpm.c:778
msgid "Failed to write to temporary file when loading XPM image"
msgstr "๐๐ฑ๐ค๐ ๐ ๐ฎ๐ฒ๐ ๐ ๐๐ง๐ฅ๐๐ผ๐ผ๐ฆ ๐๐ฒ๐ค ๐ข๐ง๐ฏ ๐ค๐ด๐๐ฆ๐ XPM ๐ฆ๐ฅ๐ฆ๐ก"
#: gdk-pixbuf/io-xpm.c:817
msgid "The XPM image format"
msgstr "๐ XPM ๐ฆ๐ฅ๐ฆ๐ก ๐๐น๐ฅ๐จ๐"
#~ msgid "Couldn't allocate memory for paletted data"
#~ msgstr "๐๐ซ๐๐ฏ๐ ๐จ๐ค๐ด๐๐ฑ๐ ๐ฅ๐ง๐ฅ๐ผ๐ฆ ๐๐น ๐๐จ๐ค๐ง๐๐ฆ๐ ๐๐ฑ๐๐ฉ"
|