~ubuntu-art-pkg/ubuntu-wallpapers/ubuntu

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
# Ukrainian translation for ubuntu-wallpapers
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
# This file is distributed under the same license as the ubuntu-wallpapers package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: ubuntu-wallpapers\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2024-09-05 10:30+0200\n"
"PO-Revision-Date: 2014-03-13 06:05+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@gmail.com>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2024-09-18 04:37+0000\n"
"X-Generator: Launchpad (build 1b1ed1ad2dbfc71ee62b5c5491c975135a771bf0)\n"

#: ../artful-wallpapers.xml.in.h:1
msgid "Bee on lavender"
msgstr "Бджола на лаванді"

#: ../artful-wallpapers.xml.in.h:2
msgid "Bloom"
msgstr "Цвітіння"

#: ../artful-wallpapers.xml.in.h:3
msgid "Grand Canyon North Rim"
msgstr "Гранд-Каньйон Північний Рим"

#: ../artful-wallpapers.xml.in.h:4
msgid "Green Island"
msgstr "Зелений острів"

#: ../artful-wallpapers.xml.in.h:5
msgid "Headstock"
msgstr "Головка грифа"

#: ../artful-wallpapers.xml.in.h:6
msgid "Lighthouse at sunrise"
msgstr "Маяк на сході сонця"

#: ../artful-wallpapers.xml.in.h:7
msgid "Lily of the Valley"
msgstr "Конвалія"

#: ../artful-wallpapers.xml.in.h:8
msgid "London Eye"
msgstr "London Eye"

#: ../artful-wallpapers.xml.in.h:9
msgid "More Kamikochi"
msgstr "Більше Камікочі"

#: ../artful-wallpapers.xml.in.h:10
msgid "Planking is going against the grain"
msgstr "Дощечка поперек помосту"

#: ../artful-wallpapers.xml.in.h:11
msgid "Red delight"
msgstr "Червоне захоплення"

#: ../artful-wallpapers.xml.in.h:12
msgid "Sunrise on the beach"
msgstr "Світанок на пляжі"

#: ../artful-wallpapers.xml.in.h:13
msgid "Voss"
msgstr "Восс"

#: ../bionic-wallpapers.xml.in.h:1
msgid "Cathédrale Marie-Rheine-du-Monde"
msgstr "Кафедральный собор Марии Королевы Мира"

#: ../bionic-wallpapers.xml.in.h:2
msgid "Crocus Wallpaper"
msgstr "Крокус"

#: ../bionic-wallpapers.xml.in.h:3
msgid "Definitive Light Zen Orange"
msgstr "Definitive Light Zen Orange"

#: ../bionic-wallpapers.xml.in.h:4
msgid "El Haouaria"
msgstr "Ель-Хуарія"

#: ../bionic-wallpapers.xml.in.h:5
msgid "Halifax Sunset"
msgstr "Світанок в Галіфаксі"

#: ../bionic-wallpapers.xml.in.h:6
msgid "Manhattan Sunset"
msgstr "Світанок на Манхеттені"

#: ../bionic-wallpapers.xml.in.h:7
msgid "On top of the Rubihorn"
msgstr "На вершині Рубіхорну"

#: ../bionic-wallpapers.xml.in.h:8
msgid "Raindrops On The Table"
msgstr "Краплі дощу на столі"

#: ../bionic-wallpapers.xml.in.h:9
msgid "Ross Jones Rockpool (Sydney)"
msgstr "Кам'яний басейн Рос Джонс (Сідней)"

#: ../bionic-wallpapers.xml.in.h:10
msgid "Spices in Athens"
msgstr "Спеції в Афінах"

#: ../bionic-wallpapers.xml.in.h:11
msgid "This Is Bionic Beaver"
msgstr "Це біонічний бобер"

#: ../bionic-wallpapers.xml.in.h:12
msgid "Wall with door on Gozo"
msgstr "Стіна з дверима на острові Гоцо"

#: ../cosmic-wallpapers.xml.in.h:1
msgid "Black Sand Beach"
msgstr "Чорний Піщаний пляж"

#: ../cosmic-wallpapers.xml.in.h:2
msgid "Carriage Return"
msgstr "Повернення каретки"

#: ../cosmic-wallpapers.xml.in.h:3
msgid "Cosmic Cuttlefish"
msgstr "Космічна каракатиця"

#: ../cosmic-wallpapers.xml.in.h:4
msgid "Encounter"
msgstr "Дуель"

#: ../cosmic-wallpapers.xml.in.h:5
msgid "Fairground at Night"
msgstr "Ярмарок уночі"

#: ../cosmic-wallpapers.xml.in.h:6
msgid "Image of Mount Parnassus"
msgstr "Знімок гори Парнас"

#: ../cosmic-wallpapers.xml.in.h:7
msgid "Milky Way Before The Dawn"
msgstr "Чумацький шлях перед світанком"

#: ../cosmic-wallpapers.xml.in.h:8
msgid "Morning"
msgstr "Ранок"

#: ../cosmic-wallpapers.xml.in.h:9
msgid "Spring Flowers"
msgstr "Весняні квіти"

#: ../cosmic-wallpapers.xml.in.h:10
msgid "Tapiola Espoo Cultural Center"
msgstr "Культурний центра Tapiola Espoo"

#: ../cosmic-wallpapers.xml.in.h:11
msgid "touch de vert"
msgstr "touch de vert"

#: ../cosmic-wallpapers.xml.in.h:12
msgid "Ubuntu Party de Paris"
msgstr "Вечірка Ubuntu в Парижі"

#: ../disco-wallpapers.xml.in.h:1
msgid "Capucijnengang"
msgstr "Капусейненганг"

#: ../disco-wallpapers.xml.in.h:2
msgid "Cramond Island"
msgstr "Острів Крамонд"

#: ../disco-wallpapers.xml.in.h:3
msgid "Flower Gate Bridge"
msgstr "Міст Квіткові ворота"

#: ../disco-wallpapers.xml.in.h:4
msgid "On the harbour"
msgstr "На гавані"

#: ../disco-wallpapers.xml.in.h:5
msgid "Staniel Cay"
msgstr "Станіель Кей"

#: ../disco-wallpapers.xml.in.h:6
msgid "Sunset of Peloponnesus"
msgstr "Захід Пелопоннеса"

#: ../disco-wallpapers.xml.in.h:7
msgid "Tennis ball"
msgstr "Тенісний м'яч"

#: ../disco-wallpapers.xml.in.h:8
msgid "Water of Leith"
msgstr "Вода Лейта"

#: ../disco-wallpapers.xml.in.h:9
msgid "80s Disco Dingo Simulation"
msgstr "Імітація Disco Dingo 80-х"

#: ../disco-wallpapers.xml.in.h:10
msgid "Disco Dingo Alt Default"
msgstr "Альтернативна типова для Disco Dingo"

#: ../eoan-wallpapers.xml.in.h:1
msgid "Beijling park burial path"
msgstr "Поховальна доріжка у парку Бейлінг"

#: ../eoan-wallpapers.xml.in.h:2
msgid "Frozen sunset on the lake"
msgstr "Морозний захід сонця на озері"

#: ../eoan-wallpapers.xml.in.h:3
msgid "Origin of nature"
msgstr "Недоторкана природа"

#: ../eoan-wallpapers.xml.in.h:4
msgid "Sky Sparkles"
msgstr "Небесні іскри"

#: ../eoan-wallpapers.xml.in.h:5
msgid "Stargazing"
msgstr "Замріяність"

#: ../eoan-wallpapers.xml.in.h:6
msgid "Ubuntu 80s glitch"
msgstr "Збій Ubuntu 80-х"

#: ../eoan-wallpapers.xml.in.h:7
msgid "Ubuntu gel"
msgstr "Ubuntu-гель"

#: ../eoan-wallpapers.xml.in.h:8
msgid "Ermine lines"
msgstr "Обриси горностая"

#: ../eoan-wallpapers.xml.in.h:9
msgid "Flight dive"
msgstr "Летюче занурення"

#: ../focal-wallpapers.xml.in.h:1
msgid "Stone Mountain"
msgstr "Кам’яна гора"

#: ../focal-wallpapers.xml.in.h:2
msgid "Something Yellow"
msgstr "Щось Жовте"

#: ../focal-wallpapers.xml.in.h:3
msgid "2nd Avenue"
msgstr "2-й проспект"

#: ../focal-wallpapers.xml.in.h:4
msgid "Skykomish River"
msgstr "Річка Скайкоміш"

#: ../focal-wallpapers.xml.in.h:5
msgid "Hardy Heron (Remaster)"
msgstr "Hardy Heron (Remaster)"

#: ../groovy-wallpapers.xml.in.h:1
msgid "Abstract Painting Photo"
msgstr "Фото абстрактного живопису"

#: ../groovy-wallpapers.xml.in.h:2
msgid "Camera Film"
msgstr "Плівковий фотоапарат"

#: ../groovy-wallpapers.xml.in.h:3
msgid "Colored Pencils"
msgstr "Кольорові олівці"

#: ../groovy-wallpapers.xml.in.h:4
msgid "Landscape Photography Of Mountains"
msgstr "Пейзажне фото гір"

#: ../groovy-wallpapers.xml.in.h:5
msgid "Silver Back Gorilla"
msgstr "Срібляста горила"

#: ../hirsute-wallpapers.xml.in.h:1
msgid "Hippopotamus Swimming Photo"
msgstr "Плавучий Бегемот"

#: ../hirsute-wallpapers.xml.in.h:2
msgid "Macro Shot of Black Animal"
msgstr "Макрозйомка тварин темного окрасу"

#: ../impish-wallpapers.xml.in.h:1
msgid "Milky Way"
msgstr "Чумацький шлях"

#: ../impish-wallpapers.xml.in.h:2
msgid "Way"
msgstr "Тракт"

#: ../jammy-wallpapers.xml.in.h:1
msgid "Blue flower"
msgstr ""

#: ../jammy-wallpapers.xml.in.h:2
msgid "canvas"
msgstr ""

#: ../jammy-wallpapers.xml.in.h:3
msgid "Cherry Tree in Lakones"
msgstr ""

#: ../jammy-wallpapers.xml.in.h:4
msgid "DSC2943"
msgstr ""

#: ../jammy-wallpapers.xml.in.h:5
msgid "jj dark"
msgstr ""

#: ../jammy-wallpapers.xml.in.h:6
msgid "jj light"
msgstr ""

#: ../jammy-wallpapers.xml.in.h:7
msgid "Mirror"
msgstr ""

#: ../jammy-wallpapers.xml.in.h:8
msgid "Optical Fibers in Dark"
msgstr ""

#: ../jammy-wallpapers.xml.in.h:9
msgid "ubuntu2"
msgstr ""

#: ../jammy-wallpapers.xml.in.h:10
msgid "ubuntu"
msgstr ""

#: ../karmic-wallpapers.xml.in.h:1
msgid "White Orchid"
msgstr "Біла орхідея"

#: ../karmic-wallpapers.xml.in.h:2
msgid "Throwing Stones"
msgstr "Метання каменів"

#: ../karmic-wallpapers.xml.in.h:3
msgid "Radioactive Sunrise.jpg"
msgstr "Радіоактивний схід сонця"

#: ../karmic-wallpapers.xml.in.h:4
msgid "O Life.jpg"
msgstr "Ох, життя..."

#: ../karmic-wallpapers.xml.in.h:5
msgid "Grass in A.jpg"
msgstr "Трава в А"

#: ../karmic-wallpapers.xml.in.h:6
msgid "Climbing.jpg"
msgstr "Альпінізм"

#: ../karmic-wallpapers.xml.in.h:7
msgid "Cherries.jpg"
msgstr "Вишні"

#: ../karmic-wallpapers.xml.in.h:8
msgid "Primula Red"
msgstr "Червоний Первоцвіт"

#: ../karmic-wallpapers.xml.in.h:9
msgid "Butterfly"
msgstr "Метелик"

#: ../karmic-wallpapers.xml.in.h:10
msgid "The Rainbow is Dead"
msgstr "Мертва Веселка"

#: ../karmic-wallpapers.xml.in.h:11 ../oracular-wallpapers.xml.in.h:4
msgid "Sunset"
msgstr "Захід сонця"

#: ../karmic-wallpapers.xml.in.h:12
msgid "Mi old, old Shoes"
msgstr "Мої старі, старі черевики"

#: ../karmic-wallpapers.xml.in.h:13
msgid "Sand"
msgstr "Пісок"

#: ../karmic-wallpapers.xml.in.h:14
msgid "Palmengarten"
msgstr "Пальмовий сад"

#: ../karmic-wallpapers.xml.in.h:15
msgid "Naranja"
msgstr "Помаранч"

#: ../karmic-wallpapers.xml.in.h:16
msgid "Misty Morning"
msgstr "Туманний ранок"

#: ../karmic-wallpapers.xml.in.h:17
msgid "Frog"
msgstr "Жаба"

#: ../karmic-wallpapers.xml.in.h:18
msgid "Flor de Loto"
msgstr "Флор де Лото"

#: ../karmic-wallpapers.xml.in.h:19
msgid "Bay"
msgstr "Бухта"

#: ../kinetic-wallpapers.xml.in.h:1
msgid "Kinetic Kudu"
msgstr ""

#: ../kinetic-wallpapers.xml.in.h:2
msgid "Obersee"
msgstr ""

#: ../kinetic-wallpapers.xml.in.h:3
msgid "Sunset Over Lake Lugano"
msgstr ""

#: ../kinetic-wallpapers.xml.in.h:4
msgid "Twisted Gradients"
msgstr ""

#: ../kinetic-wallpapers.xml.in.h:5
msgid "Reflection"
msgstr ""

#: ../kinetic-wallpapers.xml.in.h:6
msgid "Saffron"
msgstr ""

#: ../lucid-wallpapers.xml.in.h:1
msgid "Bosque TK"
msgstr "Густа крона"

#: ../lucid-wallpapers.xml.in.h:2
msgid "Busqueda Nocturna"
msgstr "Нічний пошук"

#: ../lucid-wallpapers.xml.in.h:3
msgid "Cornered"
msgstr "У кутку"

#: ../lucid-wallpapers.xml.in.h:4
msgid "Curls by Candy"
msgstr "Скручені пелюстки"

#: ../lucid-wallpapers.xml.in.h:5
msgid "Daisy"
msgstr "Дейзі"

#: ../lucid-wallpapers.xml.in.h:6
msgid "Fall Drops, Ancient Light"
msgstr "Опале листя, тьмяне світло"

#: ../lucid-wallpapers.xml.in.h:7
msgid "Fluffodome"
msgstr "Кульбаба"

#: ../lucid-wallpapers.xml.in.h:8
msgid "Icy stones 2"
msgstr "Крижане каміння 2"

#: ../lucid-wallpapers.xml.in.h:9
msgid "In the dark Redux"
msgstr "Повернення з пітьми"

#: ../lucid-wallpapers.xml.in.h:10
msgid "Maraetai before sunrise"
msgstr "Маретаї на світанку"

#: ../lucid-wallpapers.xml.in.h:11
msgid "Out of focus"
msgstr "Поза фокусом"

#: ../lucid-wallpapers.xml.in.h:12
msgid "Pointy"
msgstr "Загострені"

#: ../lucid-wallpapers.xml.in.h:13
msgid "Warmlights"
msgstr "Тепле світло"

#: ../lucid-wallpapers.xml.in.h:14
msgid "Yellowflower"
msgstr "Жовта квітка"

#: ../lucid-wallpapers.xml.in.h:15
msgid "SmoothMoment"
msgstr "Миттєвість плавності"

#: ../lunar-wallpapers.xml.in.h:1
msgid "Copper Mountain"
msgstr ""

#: ../lunar-wallpapers.xml.in.h:2
msgid "Startrail"
msgstr ""

#: ../lunar-wallpapers.xml.in.h:3
msgid "Warm Filament"
msgstr ""

#: ../lunar-wallpapers.xml.in.h:4
msgid "Flow"
msgstr ""

#: ../lunar-wallpapers.xml.in.h:5
msgid "LunarCatcher"
msgstr ""

#: ../lunar-wallpapers.xml.in.h:6
msgid "Lunar-lobster-side"
msgstr ""

#: ../lunar-wallpapers.xml.in.h:7
msgid "Multiverse"
msgstr ""

#: ../lunar-wallpapers.xml.in.h:8
msgid "winter-is-leaving"
msgstr ""

#: ../mantic-wallpapers.xml.in.h:1
msgid "Bane_of_theseus_by_aprisk"
msgstr ""

#: ../mantic-wallpapers.xml.in.h:2
msgid "Bodacious_bovine_by_oklopfer"
msgstr ""

#: ../mantic-wallpapers.xml.in.h:3
msgid "Haukelivegen_norway_by_madsrh"
msgstr ""

#: ../mantic-wallpapers.xml.in.h:4
msgid "Mantic_maze_by_motaymour"
msgstr ""

#: ../mantic-wallpapers.xml.in.h:5
msgid "Milkyway_by_mizuno_as"
msgstr ""

#: ../mantic-wallpapers.xml.in.h:6
msgid "Minotaur_by_gixo"
msgstr ""

#: ../mantic-wallpapers.xml.in.h:7
msgid "Minotaur_papercut_by_sbutcher"
msgstr ""

#: ../mantic-wallpapers.xml.in.h:8
msgid "Mountain_king_by_seashxlls"
msgstr ""

#: ../mantic-wallpapers.xml.in.h:9
msgid "Ubuntu_warrior_by_jt05"
msgstr ""

#: ../maverick-wallpapers.xml.in.h:1 ../natty-wallpapers.xml.in.h:1
msgid "Aeg"
msgstr "Равлик"

#: ../maverick-wallpapers.xml.in.h:2
msgid "Blue box number 2"
msgstr "Блакитна коробка 2"

#: ../maverick-wallpapers.xml.in.h:3 ../wily-wallpapers.xml.in.h:7
msgid "Blue"
msgstr "Блакитний"

#: ../maverick-wallpapers.xml.in.h:4
msgid "Bubbles"
msgstr "Бульбашки"

#: ../maverick-wallpapers.xml.in.h:5
msgid "Crocosmia"
msgstr "Крокосмія"

#: ../maverick-wallpapers.xml.in.h:6
msgid "Feather"
msgstr "Перо"

#: ../maverick-wallpapers.xml.in.h:7
msgid "Fern"
msgstr "Папороть"

#: ../maverick-wallpapers.xml.in.h:8
msgid "Life"
msgstr "Життя"

#: ../maverick-wallpapers.xml.in.h:9
msgid "Liquid glass"
msgstr "Краплі на склі"

#: ../maverick-wallpapers.xml.in.h:10
msgid "Mirada Perduda"
msgstr "Очікування"

#: ../maverick-wallpapers.xml.in.h:11
msgid "Morning II"
msgstr "Ранок ІІ"

#: ../maverick-wallpapers.xml.in.h:12
msgid "Primer Amanecer 2010"
msgstr "Перший світанок 2010 року"

#: ../maverick-wallpapers.xml.in.h:13
msgid "Ropey Photo"
msgstr "Знімок з канатами"

#: ../maverick-wallpapers.xml.in.h:14
msgid "Serenity Enchanted"
msgstr "Чарівний спокій"

#: ../maverick-wallpapers.xml.in.h:15
msgid "Smile"
msgstr "Посмішка"

#: ../maverick-wallpapers.xml.in.h:16
msgid "Spiral"
msgstr "Спіраль"

#: ../maverick-wallpapers.xml.in.h:17
msgid "Waterchain"
msgstr "Водяна цівка"

#: ../natty-wallpapers.xml.in.h:2
msgid "Arboreal ballet"
msgstr "Деревний балет"

#: ../natty-wallpapers.xml.in.h:3
msgid "Aubergine Sea"
msgstr "Баклажанове море"

#: ../natty-wallpapers.xml.in.h:4 ../trusty-wallpapers.xml.in.h:3
msgid "Berries"
msgstr "Ягоди шипшини"

#: ../natty-wallpapers.xml.in.h:5
msgid "Bird"
msgstr "Птаха"

#: ../natty-wallpapers.xml.in.h:6
msgid "Fabric"
msgstr "Тканина"

#: ../natty-wallpapers.xml.in.h:7
msgid "Green"
msgstr "Зелена"

#: ../natty-wallpapers.xml.in.h:8
msgid "Grey day"
msgstr "Сірий день"

#: ../natty-wallpapers.xml.in.h:9
msgid "Holes"
msgstr "Дірочки"

#: ../natty-wallpapers.xml.in.h:10
msgid "Ilunabarra Azkainetik"
msgstr "Ілюнабарра азкайнетік"

#: ../natty-wallpapers.xml.in.h:11
msgid "Lá no alto"
msgstr "Метеорит"

#: ../natty-wallpapers.xml.in.h:12
msgid "Quandro"
msgstr "Квандро"

#: ../natty-wallpapers.xml.in.h:13
msgid "Signpost"
msgstr "Вказівник"

#: ../natty-wallpapers.xml.in.h:14
msgid "Tiny Worlds"
msgstr "Маленькі світи"

#: ../natty-wallpapers.xml.in.h:15
msgid "Touch the light"
msgstr "Дотик світла"

#: ../natty-wallpapers.xml.in.h:16
msgid "Tri Narwhal"
msgstr "Три нарвали"

#: ../natty-wallpapers.xml.in.h:17
msgid "Variations On Natty Narwhal 1"
msgstr "Варіації на тему Natty Narwhal 1"

#: ../natty-wallpapers.xml.in.h:18
msgid "White flowers"
msgstr "Білі квіти"

#: ../noble-wallpapers.xml.in.h:1
msgid "Clouds"
msgstr ""

#: ../noble-wallpapers.xml.in.h:2
msgid "Little numbat boy"
msgstr ""

#: ../noble-wallpapers.xml.in.h:3
msgid "Monument valley"
msgstr ""

#: ../noble-wallpapers.xml.in.h:4
msgid "Province of the south of france"
msgstr ""

#: ../noble-wallpapers.xml.in.h:5
msgid "Fuji san"
msgstr ""

#: ../noble-wallpapers.xml.in.h:6
msgid "Fuwafuwa nanbatto san"
msgstr ""

#: ../noble-wallpapers.xml.in.h:7
msgid "Rainbow lightbulb"
msgstr ""

#: ../noble-wallpapers.xml.in.h:8
msgid "Northan lights"
msgstr ""

#: ../oneiric-wallpapers.xml.in.h:1
msgid "Buck Off!"
msgstr "Оленяйтеся!"

#: ../oneiric-wallpapers.xml.in.h:2
msgid "Darkening Clockwork"
msgstr "Затемнений годинниковий механізм"

#: ../oneiric-wallpapers.xml.in.h:3
msgid "Dybbølsbro Station"
msgstr "Станція Дюббельсбро"

#: ../oneiric-wallpapers.xml.in.h:4
msgid "Jardin Polar"
msgstr "Полярний сад"

#: ../oneiric-wallpapers.xml.in.h:5
msgid "Langelinie Allé"
msgstr "Алея Лангеліньє"

#: ../oneiric-wallpapers.xml.in.h:6
msgid "Momiji Dream"
msgstr "Сон момідзі"

#: ../oneiric-wallpapers.xml.in.h:7
msgid "Mount Snowdon, Wales"
msgstr "Гора Сноудон, Уельс"

#: ../oneiric-wallpapers.xml.in.h:8
msgid "Not Alone"
msgstr "Не одна"

#: ../oneiric-wallpapers.xml.in.h:9
msgid "Power of Words"
msgstr "Могутність слів"

#: ../oneiric-wallpapers.xml.in.h:10
msgid "Purple Dancers"
msgstr "Пурпурові танцівники"

#: ../oneiric-wallpapers.xml.in.h:11
msgid "Small flowers"
msgstr "Малі квітки"

#: ../oneiric-wallpapers.xml.in.h:12
msgid "Stalking Ocelot"
msgstr "Оцелот, що підкрадається"

#: ../oneiric-wallpapers.xml.in.h:13
msgid "The Grass Ain't Greener"
msgstr "Трава не зеленішає"

#: ../oneiric-wallpapers.xml.in.h:14
msgid "Wild Wheat"
msgstr "Дика пшениця"

#: ../oracular-wallpapers.xml.in.h:1
msgid "Arizona night"
msgstr ""

#: ../oracular-wallpapers.xml.in.h:2
msgid "Einsamer Raum"
msgstr ""

#: ../oracular-wallpapers.xml.in.h:3
msgid "Oriole"
msgstr ""

#: ../oracular-wallpapers.xml.in.h:5
msgid "Warty remastered"
msgstr ""

#: ../oracular-wallpapers.xml.in.h:6
msgid "Oriole 3D"
msgstr ""

#: ../oracular-wallpapers.xml.in.h:7
msgid "OrioleMascot"
msgstr ""

#: ../oracular-wallpapers.xml.in.h:8
msgid "Ubuntu Legacy"
msgstr ""

#: ../precise-wallpapers.xml.in.h:1
msgid "Delicate Petals"
msgstr "Ніжні пелюстки"

#: ../precise-wallpapers.xml.in.h:2
msgid "Early Blossom"
msgstr "На початку цвітіння"

#: ../precise-wallpapers.xml.in.h:3
msgid "Flocking"
msgstr "Небесні пушинки"

#: ../precise-wallpapers.xml.in.h:4
msgid "Floorboards"
msgstr "Підлога трампліна"

#: ../precise-wallpapers.xml.in.h:5
msgid "Golden Bloom"
msgstr "Золоте сяйво"

#: ../precise-wallpapers.xml.in.h:6
msgid "London Eye From Beneath"
msgstr "Лондонське оглядове колесо знизу"

#: ../precise-wallpapers.xml.in.h:7
msgid "Morning Dew"
msgstr "Ранкова роса"

#: ../precise-wallpapers.xml.in.h:8
msgid "Murales"
msgstr "Графіті"

#: ../precise-wallpapers.xml.in.h:9
msgid "Precise Pangolin"
msgstr "Точний панголін"

#: ../precise-wallpapers.xml.in.h:10
msgid "Speaker Weave"
msgstr "Тканина на гучномовці"

#: ../precise-wallpapers.xml.in.h:11
msgid "The Forbidden City"
msgstr "Заборонене місто"

#: ../precise-wallpapers.xml.in.h:12
msgid "Tie My Boat"
msgstr "Прив’язь човна"

#: ../precise-wallpapers.xml.in.h:13
msgid "Twilight Frost"
msgstr "Сутінкова паморозь"

#: ../precise-wallpapers.xml.in.h:14
msgid "Winter Morning"
msgstr "Зимовий ранок"

#: ../quantal-wallpapers.xml.in.h:1
msgid "A Little Quetzal"
msgstr "Маленький кетцаль"

#: ../quantal-wallpapers.xml.in.h:2
msgid "Below Clouds"
msgstr "Під хмарами"

#: ../quantal-wallpapers.xml.in.h:3
msgid "Cairn"
msgstr "Піраміда з каменів"

#: ../quantal-wallpapers.xml.in.h:4
msgid "Early Morning"
msgstr "Ранній ранок"

#: ../quantal-wallpapers.xml.in.h:5
msgid "Frozen"
msgstr "Паморозь"

#: ../quantal-wallpapers.xml.in.h:6
msgid "Gran Canaria"
msgstr "Гран-Канарія"

#: ../quantal-wallpapers.xml.in.h:7
msgid "Green Plant"
msgstr "Молодило"

#: ../quantal-wallpapers.xml.in.h:8
msgid "H"
msgstr "Ейч"

#: ../quantal-wallpapers.xml.in.h:9
msgid "Pantano de Orellana"
msgstr "Болото Орельяна"

#: ../quantal-wallpapers.xml.in.h:10
msgid "Roof Tiles"
msgstr "Черепиця"

#: ../quantal-wallpapers.xml.in.h:11
msgid "Vanishing"
msgstr "Щезання"

#: ../raring-wallpapers.xml.in.h:1
msgid "Begonia"
msgstr "Бегонія"

#: ../raring-wallpapers.xml.in.h:2
msgid "Blue frost"
msgstr "Блакитна паморозь"

#: ../raring-wallpapers.xml.in.h:3
msgid "Brother typewriter"
msgstr "Друкарська машинка Brother"

#: ../raring-wallpapers.xml.in.h:4
msgid "Cacomixtle Ubunteño"
msgstr "Какоміцл Убунтеньйо"

#: ../raring-wallpapers.xml.in.h:5
msgid "Fleurs de Prunus 24"
msgstr "Цвітіння сливи 24"

#: ../raring-wallpapers.xml.in.h:6
msgid "La Gomera"
msgstr "Гомера"

#: ../raring-wallpapers.xml.in.h:7
msgid "Landing"
msgstr "Приземлення"

#: ../raring-wallpapers.xml.in.h:8
msgid "Last breath…"
msgstr "Останній подих…"

#: ../raring-wallpapers.xml.in.h:9
msgid "Leftover"
msgstr "Залишок"

#: ../raring-wallpapers.xml.in.h:10
msgid "Morning Sun on Frost-Covered Leaves"
msgstr "Вранішнє сонце на вкритих памороззю листках"

#: ../raring-wallpapers.xml.in.h:11
msgid "Stop the light"
msgstr "Зупинити світло"

#: ../raring-wallpapers.xml.in.h:12
msgid "Trazo solitario"
msgstr "Крапля роси"

#: ../raring-wallpapers.xml.in.h:13
msgid "Winter Fog"
msgstr "Зимовий туман"

#: ../saucy-wallpapers.xml.in.h:1
msgid "163"
msgstr "163"

#: ../saucy-wallpapers.xml.in.h:2
msgid "Cyclotron"
msgstr "Циклотрон"

#: ../saucy-wallpapers.xml.in.h:3
msgid "Gota D'água"
msgstr "Крапелька"

#: ../saucy-wallpapers.xml.in.h:4
msgid "Grass"
msgstr "Трава"

#: ../saucy-wallpapers.xml.in.h:5
msgid "I am a Saucy Salamander..."
msgstr "Я Зухвала Саламандра…"

#: ../saucy-wallpapers.xml.in.h:6
msgid "Mountains"
msgstr "Гори"

#: ../saucy-wallpapers.xml.in.h:7
msgid "Mr. Tau and The Tree -"
msgstr "Містер Тау і Дерево"

#: ../saucy-wallpapers.xml.in.h:8
msgid "Nylon Rainbow"
msgstr "Нейлонова веселка"

#: ../saucy-wallpapers.xml.in.h:9
msgid "Oak"
msgstr "Дуб"

#: ../saucy-wallpapers.xml.in.h:10
msgid "Salamander"
msgstr "Саламандра"

#: ../saucy-wallpapers.xml.in.h:11
msgid "Saucy Salamander Abstract"
msgstr "Абстрактна Зухвала Саламандра"

#: ../saucy-wallpapers.xml.in.h:12
msgid "Savannah Lilian Blot"
msgstr "Саванна Ліліан Блот"

#: ../saucy-wallpapers.xml.in.h:13
msgid "Taxus baccata"
msgstr "Тис ягідний"

#: ../saucy-wallpapers.xml.in.h:14
msgid "The City of Polen"
msgstr "Місто пилку"

#: ../saucy-wallpapers.xml.in.h:15
msgid "THE 'OUT' STANDING"
msgstr "Ті, що вибилися"

#: ../saucy-wallpapers.xml.in.h:16
msgid "Thingvellir"
msgstr "Тінґветлір"

#: ../saucy-wallpapers.xml.in.h:17
msgid "Untitled"
msgstr "Без назви"

#: ../saucy-wallpapers.xml.in.h:18
msgid "Water Lily"
msgstr "Водяна лілія"

#: ../trusty-wallpapers.xml.in.h:1
msgid "Backyard Mushrooms"
msgstr "Гриби на задвірках"

#: ../trusty-wallpapers.xml.in.h:2
msgid "Beach"
msgstr "Пляж"

#: ../trusty-wallpapers.xml.in.h:4
msgid "Foggy Forest"
msgstr "Туманний ранок"

#: ../trusty-wallpapers.xml.in.h:5
msgid "Ibanez Infinity"
msgstr "Нескінченність гітари Ібаньєс"

#: ../trusty-wallpapers.xml.in.h:6
msgid "Jelly Fish"
msgstr "Медуза"

#: ../trusty-wallpapers.xml.in.h:7
msgid "Mono Lake"
msgstr "Озеро Моно"

#: ../trusty-wallpapers.xml.in.h:8
msgid "Partitura"
msgstr "Партитура"

#: ../trusty-wallpapers.xml.in.h:9
msgid "Reflections"
msgstr "Віддзеркалення"

#: ../trusty-wallpapers.xml.in.h:10
msgid "Sea Fury"
msgstr "Морська фурія"

#: ../trusty-wallpapers.xml.in.h:11
msgid "Water web"
msgstr "Водяна сітка"

#: ../trusty-wallpapers.xml.in.h:12
msgid "Forever"
msgstr "Назавжди"

#: ../ubuntu-wallpapers.xml.in.h:1
msgid "Ubuntu"
msgstr "Ubuntu"

#: ../ubuntu-wallpapers.xml.in.h:2
msgid "Ubuntu Light"
msgstr ""

#: ../ubuntu-wallpapers.xml.in.h:3
msgid "Ubuntu Dark"
msgstr ""

#: ../ubuntu-wallpapers.xml.in.h:4
msgid "Ubuntu Greyscale"
msgstr "Відтінки сірого Ubuntu"

#: ../utopic-wallpapers.xml.in.h:1
msgid "Empty Space"
msgstr "Без тла"

#: ../utopic-wallpapers.xml.in.h:2
msgid "Golden leaves"
msgstr "Золоте листя"

#: ../utopic-wallpapers.xml.in.h:3
msgid "Horses on sand dunes"
msgstr "Коні на піщаних дюнах"

#: ../utopic-wallpapers.xml.in.h:4
msgid "Kronach leuchtet 2014"
msgstr "Вогні Кронаха 2014"

#: ../utopic-wallpapers.xml.in.h:5
msgid "Music"
msgstr "Музика"

#: ../utopic-wallpapers.xml.in.h:6
msgid "Night Seascape"
msgstr "Пейзаж нічного моря"

#: ../utopic-wallpapers.xml.in.h:7
msgid "Redes de hilo"
msgstr "Дротові мережі"

#: ../utopic-wallpapers.xml.in.h:8
msgid "salcantayperu"
msgstr "Салкантай Перу"

#: ../utopic-wallpapers.xml.in.h:9
msgid "Sunny Autumn"
msgstr "Сонячна осінь"

#: ../utopic-wallpapers.xml.in.h:10
msgid "Utopic Unicorn"
msgstr "Утопічний Єдиноріг"

#: ../utopic-wallpapers.xml.in.h:11
msgid "Warm grasses"
msgstr "Теплі трави"

#: ../utopic-wallpapers.xml.in.h:12
msgid "xgu472hf2"
msgstr "xgu472hf2"

#: ../vivid-wallpapers.xml.in.h:1
msgid "150305-cinqAA"
msgstr "150305-cinqAA"

#: ../vivid-wallpapers.xml.in.h:2
msgid "Cedar Wax Wing"
msgstr "Омелюх кедровий"

#: ../vivid-wallpapers.xml.in.h:3
msgid "Christmas Lights"
msgstr "Різдвяні вогні"

#: ../vivid-wallpapers.xml.in.h:4
msgid "Euphoria!"
msgstr "Ейфорія!"

#: ../vivid-wallpapers.xml.in.h:5
msgid "Oyster Catcher in the Rocks"
msgstr "Кулик-сорока в скелях"

#: ../vivid-wallpapers.xml.in.h:6
msgid "Polka Dots and Moonbeams"
msgstr "Polka Dots and Moonbeams"

#: ../vivid-wallpapers.xml.in.h:7
msgid "Primavera"
msgstr "Весна"

#: ../vivid-wallpapers.xml.in.h:8
msgid "Tenerife Roques de Anaga"
msgstr "Гори Анага, Тенеріфе"

#: ../vivid-wallpapers.xml.in.h:9
msgid "Tesla"
msgstr "Тесла"

#: ../vivid-wallpapers.xml.in.h:10
msgid "Traviny"
msgstr "Злаки"

#: ../wily-wallpapers.xml.in.h:1
msgid "Tramonto a Scalea"
msgstr "Захід сонця в Скалеї"

#: ../wily-wallpapers.xml.in.h:2
msgid "Tranquil"
msgstr "Ідилія"

#: ../wily-wallpapers.xml.in.h:3
msgid "Light my fire evening sun"
msgstr "Запали мене, вечірнє сонце"

#: ../wily-wallpapers.xml.in.h:4
msgid "Sitting Here, Making Fun"
msgstr "Сидимо, розважаємо"

#: ../wily-wallpapers.xml.in.h:5
msgid "Moss inflorescence"
msgstr "Суцвіття моху"

#: ../wily-wallpapers.xml.in.h:6
msgid "Breaker"
msgstr "Рубильник"

#: ../wily-wallpapers.xml.in.h:8
msgid "Hotel"
msgstr "Готель"

#: ../wily-wallpapers.xml.in.h:9
msgid "Mediterranean Sea"
msgstr "Середземне море"

#: ../wily-wallpapers.xml.in.h:10
msgid "Abstract Ubuntu"
msgstr "Абстрактний Ubuntu"

#: ../xenial-wallpapers.xml.in.h:1
msgid "160218-deux-two"
msgstr "160218-deux-two"

#: ../xenial-wallpapers.xml.in.h:2
msgid "Black hole"
msgstr "Чорна діра"

#: ../xenial-wallpapers.xml.in.h:3
msgid "Cielo estrellado"
msgstr "Зоряне небо"

#: ../xenial-wallpapers.xml.in.h:4
msgid "clock"
msgstr "Годинник"

#: ../xenial-wallpapers.xml.in.h:5
msgid "Dans ma bulle"
msgstr "В моїй бульбашці"

#: ../xenial-wallpapers.xml.in.h:6
msgid "Flora"
msgstr "Флора"

#: ../xenial-wallpapers.xml.in.h:7
msgid "Icy Grass"
msgstr "Лісова трава"

#: ../xenial-wallpapers.xml.in.h:8
msgid "Night lights"
msgstr "Нічні вогні"

#: ../xenial-wallpapers.xml.in.h:9
msgid "passion flower"
msgstr "Квітка пристрасті"

#: ../xenial-wallpapers.xml.in.h:10
msgid "Spring"
msgstr "Весна"

#: ../xenial-wallpapers.xml.in.h:11
msgid "TCP118v1"
msgstr "TCP118v1"

#: ../xenial-wallpapers.xml.in.h:12
msgid "The Land of Edonias"
msgstr "Край Едонія"

#: ../yakkety-wallpapers.xml.in.h:1
msgid "Alien wing"
msgstr "Крило чужого"

#: ../yakkety-wallpapers.xml.in.h:2
msgid "Classic Guitar Detail"
msgstr "Деталь класичної гітари"

#: ../yakkety-wallpapers.xml.in.h:3
msgid "DSC3907"
msgstr "DSC3907"

#: ../yakkety-wallpapers.xml.in.h:4
msgid "Haukland Beach view"
msgstr "Вид на пляж Хаукланд"

#: ../yakkety-wallpapers.xml.in.h:5
msgid "IMG 0081"
msgstr "IMG 0081"

#: ../yakkety-wallpapers.xml.in.h:6
msgid "IMG 7632"
msgstr "IMG 7632"

#: ../yakkety-wallpapers.xml.in.h:7
msgid "larung gar by night"
msgstr "Долина Ларунг уночі"

#: ../yakkety-wallpapers.xml.in.h:8
msgid "P1310728"
msgstr "P1310728"

#: ../yakkety-wallpapers.xml.in.h:9
msgid "ubuntu16_10"
msgstr "ubuntu16_10"

#: ../yakkety-wallpapers.xml.in.h:10
msgid "ubuntu wallpaper 16 10 02"
msgstr "ubuntu wallpaper 16 10 02"

#: ../yakkety-wallpapers.xml.in.h:11
msgid "Wanaka Tree"
msgstr "Дерево Ванака"

#: ../yakkety-wallpapers.xml.in.h:12
msgid "Yala mountain"
msgstr "Вершина Яла"

#: ../zesty-wallpapers.xml.in.h:1
msgid "A star has fallen"
msgstr "Зірка впала"

#: ../zesty-wallpapers.xml.in.h:2
msgid "Candy"
msgstr "Цукерка"

#: ../zesty-wallpapers.xml.in.h:3
msgid "Espaciolandia"
msgstr "Espaciolandia"

#: ../zesty-wallpapers.xml.in.h:4
msgid "Forest"
msgstr "Ліс"

#: ../zesty-wallpapers.xml.in.h:5
msgid "Mushrooms 3"
msgstr "Гриби 3"

#: ../zesty-wallpapers.xml.in.h:6
msgid "Passion"
msgstr "Пристрасть"

#: ../zesty-wallpapers.xml.in.h:7
msgid "Pink and Blue"
msgstr "Рожевий і синій"

#: ../zesty-wallpapers.xml.in.h:8
msgid "Purple Daisy"
msgstr "Барвиста ромашка"

#: ../zesty-wallpapers.xml.in.h:9
msgid "Road to Nowhere"
msgstr "Дорога в нікуди"

#: ../zesty-wallpapers.xml.in.h:10
msgid "Seebrücke Graal-Müritz"
msgstr "П'єр Грааль-Мюріц"

#: ../zesty-wallpapers.xml.in.h:11
msgid "Some Light Reading"
msgstr "Трохи легкого чтива"

#: ../zesty-wallpapers.xml.in.h:12
msgid "there is something human in that stuff"
msgstr "є в цій речі щось людське"