summaryrefslogtreecommitdiff
path: root/graphics/kipi-plugins/PLIST
blob: 5224867dd9b183e76019a5524d83826e498ea70a (plain)
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
@comment $NetBSD: PLIST,v 1.15 2010/04/10 03:10:15 markd Exp $
bin/dngconverter
bin/expoblending
bin/scangui
lib/kde4/kipiplugin_acquireimages.so
lib/kde4/kipiplugin_advancedslideshow.so
lib/kde4/kipiplugin_batchprocessimages.so
lib/kde4/kipiplugin_calendar.so
lib/kde4/kipiplugin_dngconverter.so
lib/kde4/kipiplugin_expoblending.so
lib/kde4/kipiplugin_facebook.so
lib/kde4/kipiplugin_flashexport.so
lib/kde4/kipiplugin_flickrexport.so
lib/kde4/kipiplugin_galleryexport.so
lib/kde4/kipiplugin_gpssync.so
lib/kde4/kipiplugin_htmlexport.so
lib/kde4/kipiplugin_imageviewer.so
lib/kde4/kipiplugin_jpeglossless.so
lib/kde4/kipiplugin_kioexportimport.so
lib/kde4/kipiplugin_metadataedit.so
lib/kde4/kipiplugin_picasawebexport.so
lib/kde4/kipiplugin_printimages.so
lib/kde4/kipiplugin_rawconverter.so
lib/kde4/kipiplugin_removeredeyes.so
lib/kde4/kipiplugin_sendimages.so
lib/kde4/kipiplugin_shwup.so
lib/kde4/kipiplugin_smug.so
lib/kde4/kipiplugin_timeadjust.so
lib/libkipiplugins.so
lib/libkipiplugins.so.1
lib/libkipiplugins.so.1.0.0
share/applications/kde4/dngconverter.desktop
share/applications/kde4/expoblending.desktop
share/applications/kde4/kipiplugins.desktop
share/applications/kde4/scangui.desktop
share/icons/hicolor/16x16/actions/expoblending.png
share/icons/hicolor/16x16/actions/facebook.png
share/icons/hicolor/16x16/actions/flash.png
share/icons/hicolor/16x16/actions/flickr.png
share/icons/hicolor/16x16/actions/gallery.png
share/icons/hicolor/16x16/actions/gpsimagetag.png
share/icons/hicolor/16x16/actions/hq.png
share/icons/hicolor/16x16/actions/ogl.png
share/icons/hicolor/16x16/actions/picasa.png
share/icons/hicolor/16x16/actions/shwup.png
share/icons/hicolor/16x16/actions/smugmug.png
share/icons/hicolor/16x16/actions/zooomr.png
share/icons/hicolor/22x22/actions/expoblending.png
share/icons/hicolor/22x22/actions/facebook.png
share/icons/hicolor/22x22/actions/flash.png
share/icons/hicolor/22x22/actions/flickr.png
share/icons/hicolor/22x22/actions/gallery.png
share/icons/hicolor/22x22/actions/hq.png
share/icons/hicolor/22x22/actions/picasa.png
share/icons/hicolor/22x22/actions/shwup.png
share/icons/hicolor/22x22/actions/slideshow.png
share/icons/hicolor/22x22/actions/smugmug.png
share/icons/hicolor/22x22/actions/zooomr.png
share/icons/hicolor/32x32/actions/borderimages.png
share/icons/hicolor/32x32/actions/colorimages.png
share/icons/hicolor/32x32/actions/convertimages.png
share/icons/hicolor/32x32/actions/effectimages.png
share/icons/hicolor/32x32/actions/expoblending.png
share/icons/hicolor/32x32/actions/facebook.png
share/icons/hicolor/32x32/actions/filterimages.png
share/icons/hicolor/32x32/actions/flash.png
share/icons/hicolor/32x32/actions/flickr.png
share/icons/hicolor/32x32/actions/flip-horizontal.png
share/icons/hicolor/32x32/actions/gallery.png
share/icons/hicolor/32x32/actions/gpsimagetag.png
share/icons/hicolor/32x32/actions/grayscaleconvert.png
share/icons/hicolor/32x32/actions/hq.png
share/icons/hicolor/32x32/actions/ogl.png
share/icons/hicolor/32x32/actions/picasa.png
share/icons/hicolor/32x32/actions/recompressimages.png
share/icons/hicolor/32x32/actions/renameimages.png
share/icons/hicolor/32x32/actions/resizeimages.png
share/icons/hicolor/32x32/actions/shwup.png
share/icons/hicolor/32x32/actions/smugmug.png
share/icons/hicolor/32x32/actions/timeadjust.png
share/icons/hicolor/32x32/actions/zooomr.png
share/icons/hicolor/48x48/actions/expoblending.png
share/icons/hicolor/48x48/actions/facebook.png
share/icons/hicolor/48x48/actions/flash.png
share/icons/hicolor/48x48/actions/flickr.png
share/icons/hicolor/48x48/actions/gallery.png
share/icons/hicolor/48x48/actions/hq.png
share/icons/hicolor/48x48/actions/picasa.png
share/icons/hicolor/48x48/actions/shwup.png
share/icons/hicolor/48x48/actions/smugmug.png
share/icons/hicolor/48x48/actions/zooomr.png
share/icons/hicolor/64x64/actions/metadataedit.png
share/icons/hicolor/scalable/actions/facebook.svgz
share/icons/hicolor/scalable/actions/flash.svgz
share/icons/hicolor/scalable/actions/flickr.svgz
share/icons/hicolor/scalable/actions/gallery.svgz
share/icons/hicolor/scalable/actions/hq.svgz
share/icons/hicolor/scalable/actions/picasa.svgz
share/icons/hicolor/scalable/actions/smugmug.svgz
share/icons/hicolor/scalable/actions/zooomr.svgz
share/icons/oxygen/128x128/apps/dngconverter.png
share/icons/oxygen/128x128/apps/rawconverter.png
share/icons/oxygen/16x16/apps/dngconverter.png
share/icons/oxygen/16x16/apps/rawconverter.png
share/icons/oxygen/22x22/apps/dngconverter.png
share/icons/oxygen/22x22/apps/rawconverter.png
share/icons/oxygen/32x32/apps/dngconverter.png
share/icons/oxygen/32x32/apps/rawconverter.png
share/icons/oxygen/48x48/apps/dngconverter.png
share/icons/oxygen/48x48/apps/rawconverter.png
share/icons/oxygen/64x64/apps/dngconverter.png
share/icons/oxygen/64x64/apps/rawconverter.png
share/icons/oxygen/scalable/apps/dngconverter.svgz
share/icons/oxygen/scalable/apps/rawconverter.svgz
share/kde/apps/kipiplugin_expoblending/pics/assistant-enfuse.png
share/kde/apps/kipiplugin_expoblending/pics/assistant-preprocessing.png
share/kde/apps/kipiplugin_expoblending/pics/assistant-stack.png
share/kde/apps/kipiplugin_expoblending/pics/assistant-tripod.png
share/kde/apps/kipiplugin_flashexport/index.template
share/kde/apps/kipiplugin_flashexport/simpleviewer_html/space.png
share/kde/apps/kipiplugin_galleryexport/pics/gallery_logo.png
share/kde/apps/kipiplugin_htmlexport/THEME_HOWTO
share/kde/apps/kipiplugin_htmlexport/themes/classic/classic.desktop
share/kde/apps/kipiplugin_htmlexport/themes/classic/gohome.png
share/kde/apps/kipiplugin_htmlexport/themes/classic/template.xsl
share/kde/apps/kipiplugin_htmlexport/themes/classic/up.png
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/black.css
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/blue.css
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/brown.css
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/cleanframes.desktop
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/green.css
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/lavender.css
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/pink.css
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/red.css
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/star.png
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/template.xsl
share/kde/apps/kipiplugin_htmlexport/themes/cleanframes/yellow.css
share/kde/apps/kipiplugin_htmlexport/themes/dateframes/dateframes.desktop
share/kde/apps/kipiplugin_htmlexport/themes/dateframes/template.xsl
share/kde/apps/kipiplugin_htmlexport/themes/floating_cards/back.png
share/kde/apps/kipiplugin_htmlexport/themes/floating_cards/floating_cards.desktop
share/kde/apps/kipiplugin_htmlexport/themes/floating_cards/forward.png
share/kde/apps/kipiplugin_htmlexport/themes/floating_cards/next.png
share/kde/apps/kipiplugin_htmlexport/themes/floating_cards/prev.png
share/kde/apps/kipiplugin_htmlexport/themes/floating_cards/style.css
share/kde/apps/kipiplugin_htmlexport/themes/floating_cards/template.xsl
share/kde/apps/kipiplugin_htmlexport/themes/floating_cards/up.png
share/kde/apps/kipiplugin_htmlexport/themes/frames/frames.desktop
share/kde/apps/kipiplugin_htmlexport/themes/frames/style.css
share/kde/apps/kipiplugin_htmlexport/themes/frames/template.xsl
share/kde/apps/kipiplugin_htmlexport/themes/matrix/bg.png
share/kde/apps/kipiplugin_htmlexport/themes/matrix/matrix.desktop
share/kde/apps/kipiplugin_htmlexport/themes/matrix/style.css
share/kde/apps/kipiplugin_htmlexport/themes/matrix/template.xsl
share/kde/apps/kipiplugin_htmlexport/themes/s0/arrows_source.svg
share/kde/apps/kipiplugin_htmlexport/themes/s0/next.png
share/kde/apps/kipiplugin_htmlexport/themes/s0/next_disabled.png
share/kde/apps/kipiplugin_htmlexport/themes/s0/previous.png
share/kde/apps/kipiplugin_htmlexport/themes/s0/previous_disabled.png
share/kde/apps/kipiplugin_htmlexport/themes/s0/s0.desktop
share/kde/apps/kipiplugin_htmlexport/themes/s0/style.css
share/kde/apps/kipiplugin_htmlexport/themes/s0/template.xsl
share/kde/apps/kipiplugin_htmlexport/themes/s0/up.png
share/kde/apps/kipiplugin_htmlexport/themes/simple/dark.css
share/kde/apps/kipiplugin_htmlexport/themes/simple/natural.css
share/kde/apps/kipiplugin_htmlexport/themes/simple/simple.desktop
share/kde/apps/kipiplugin_htmlexport/themes/simple/template.xsl
share/kde/apps/kipiplugin_htmlexport/themes/snow/next.png
share/kde/apps/kipiplugin_htmlexport/themes/snow/next.svg
share/kde/apps/kipiplugin_htmlexport/themes/snow/next_disabled.png
share/kde/apps/kipiplugin_htmlexport/themes/snow/previous.png
share/kde/apps/kipiplugin_htmlexport/themes/snow/previous_disabled.png
share/kde/apps/kipiplugin_htmlexport/themes/snow/snow.desktop
share/kde/apps/kipiplugin_htmlexport/themes/snow/style.css
share/kde/apps/kipiplugin_htmlexport/themes/snow/template.xsl
share/kde/apps/kipiplugin_imageviewer/pics/hand.png
share/kde/apps/kipiplugin_imageviewer/pics/nullImage.png
share/kde/apps/kipiplugin_imageviewer/pics/zoom.png
share/kde/apps/kipiplugin_metadataedit/data/topicset.iptc-subjectcode.xml
share/kde/apps/kipiplugin_printimages/TEMPLATE_HOWTO
share/kde/apps/kipiplugin_printimages/templates/1_photo_10.5x14.8cm.desktop
share/kde/apps/kipiplugin_printimages/templates/1_photo_10x15cm.desktop
share/kde/apps/kipiplugin_printimages/templates/1_photo_20x25cm.desktop
share/kde/apps/kipiplugin_printimages/templates/1_photo_8x10.desktop
share/kde/apps/kipiplugin_printimages/templates/1_photo_9x13cm.desktop
share/kde/apps/kipiplugin_printimages/templates/2_photos_13x18cm.desktop
share/kde/apps/kipiplugin_printimages/templates/2_photos_5x7.desktop
share/kde/apps/kipiplugin_printimages/templates/3_photos_10x15cm.desktop
share/kde/apps/kipiplugin_printimages/templates/3_photos_4x6.desktop
share/kde/apps/kipiplugin_printimages/templates/4_photos_10x13.33cm.desktop
share/kde/apps/kipiplugin_printimages/templates/4_photos_3.5x5.desktop
share/kde/apps/kipiplugin_printimages/templates/4_photos_4.5x5cm.desktop
share/kde/apps/kipiplugin_printimages/templates/4_photos_9x13cm.desktop
share/kde/apps/kipiplugin_printimages/templates/4x6Album.desktop
share/kde/apps/kipiplugin_printimages/templates/6_photos_3.5x4cm.desktop
share/kde/apps/kipiplugin_printimages/templates/8_photos_6x9cm.desktop
share/kde/apps/kipiplugin_printimages/templates/Album-Collage.desktop
share/kde/apps/kipiplugin_printimages/templates/Album-Collage1.desktop
share/kde/apps/kipiplugin_printimages/templates/Album_10x15cm.desktop
share/kde/apps/kipiplugin_printimages/templates/Album_11.5x15cm.desktop
share/kde/apps/kipiplugin_printimages/templates/FullPage.desktop
share/kde/apps/kipiplugin_printimages/templates/Photoframe.desktop
share/kde/apps/kipiplugin_printimages/templates/Thumbnails_5x4.desktop
share/kde/apps/kipiplugin_printimages/templates/Thumbnails_6x5.desktop
share/kde/apps/kipiplugin_printimages/templates/templates.xml
share/kde/apps/kipiplugin_removeredeyes/controlwidget.svg
share/kde/apps/kipiplugin_removeredeyes/removeredeyes_classifier_eye_20_20.xml
share/kde4/services/kipiplugin_acquireimages.desktop
share/kde4/services/kipiplugin_advancedslideshow.desktop
share/kde4/services/kipiplugin_batchprocessimages.desktop
share/kde4/services/kipiplugin_calendar.desktop
share/kde4/services/kipiplugin_dngconverter.desktop
share/kde4/services/kipiplugin_expoblending.desktop
share/kde4/services/kipiplugin_facebook.desktop
share/kde4/services/kipiplugin_flashexport.desktop
share/kde4/services/kipiplugin_flickrexport.desktop
share/kde4/services/kipiplugin_galleryexport.desktop
share/kde4/services/kipiplugin_gpssync.desktop
share/kde4/services/kipiplugin_htmlexport.desktop
share/kde4/services/kipiplugin_imageviewer.desktop
share/kde4/services/kipiplugin_jpeglossless.desktop
share/kde4/services/kipiplugin_kioexportimport.desktop
share/kde4/services/kipiplugin_metadataedit.desktop
share/kde4/services/kipiplugin_picasawebexport.desktop
share/kde4/services/kipiplugin_printimages.desktop
share/kde4/services/kipiplugin_rawconverter.desktop
share/kde4/services/kipiplugin_removeredeyes.desktop
share/kde4/services/kipiplugin_sendimages.desktop
share/kde4/services/kipiplugin_shwup.desktop
share/kde4/services/kipiplugin_smug.desktop
share/kde4/services/kipiplugin_timeadjust.desktop
share/locale/ar/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ar/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ar/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ar/LC_MESSAGES/kipiplugins.mo
share/locale/ast/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/ast/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/ast/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ast/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ast/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ast/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ast/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ast/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/ast/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ast/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/ast/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/ast/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/ast/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/ast/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ast/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ast/LC_MESSAGES/kipiplugins.mo
share/locale/be/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/be/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/be/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/be/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/be/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/be/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/be/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/be/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/be/LC_MESSAGES/kipiplugins.mo
share/locale/ca/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/ca/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/ca/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/ca/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ca/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/ca/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/ca/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/ca/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ca/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ca/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ca/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ca/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/ca/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ca/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/ca/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/ca/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/ca/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/ca/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/ca/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/ca/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ca/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ca/LC_MESSAGES/kipiplugins.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ca@valencia/LC_MESSAGES/kipiplugins.mo
share/locale/cs/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/cs/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/cs/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/cs/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/cs/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/cs/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/cs/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/cs/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/cs/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/cs/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/cs/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/cs/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/cs/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/cs/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/cs/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/cs/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/cs/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/cs/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/cs/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/cs/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/cs/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/cs/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/cs/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/cs/LC_MESSAGES/kipiplugin_smug.mo
share/locale/cs/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/cs/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/cs/LC_MESSAGES/kipiplugins.mo
share/locale/da/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/da/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/da/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/da/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/da/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/da/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/da/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/da/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/da/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/da/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/da/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/da/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/da/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/da/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/da/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/da/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/da/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/da/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/da/LC_MESSAGES/kipiplugin_smug.mo
share/locale/da/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/da/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/da/LC_MESSAGES/kipiplugins.mo
share/locale/de/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/de/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/de/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/de/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/de/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/de/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/de/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/de/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/de/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/de/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/de/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/de/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/de/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/de/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/de/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/de/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/de/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/de/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/de/LC_MESSAGES/kipiplugin_smug.mo
share/locale/de/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/de/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/de/LC_MESSAGES/kipiplugins.mo
share/locale/el/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/el/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/el/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/el/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/el/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/el/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/el/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/el/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/el/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/el/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/el/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/el/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/el/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/el/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/el/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/el/LC_MESSAGES/kipiplugin_smug.mo
share/locale/el/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/el/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/el/LC_MESSAGES/kipiplugins.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_smug.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/en_GB/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/en_GB/LC_MESSAGES/kipiplugins.mo
share/locale/eo/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/eo/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/eo/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/eo/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/eo/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/eo/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/eo/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/eo/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/eo/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/eo/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/eo/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/eo/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/eo/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/eo/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/eo/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/eo/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/eo/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/eo/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/eo/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/eo/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/eo/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/eo/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/eo/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/eo/LC_MESSAGES/kipiplugin_smug.mo
share/locale/eo/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/eo/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/eo/LC_MESSAGES/kipiplugins.mo
share/locale/es/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/es/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/es/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/es/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/es/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/es/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/es/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/es/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/es/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/es/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/es/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/es/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/es/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/es/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/es/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/es/LC_MESSAGES/kipiplugin_smug.mo
share/locale/es/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/es/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/es/LC_MESSAGES/kipiplugins.mo
share/locale/et/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/et/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/et/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/et/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/et/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/et/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/et/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/et/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/et/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/et/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/et/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/et/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/et/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/et/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/et/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/et/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/et/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/et/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/et/LC_MESSAGES/kipiplugin_smug.mo
share/locale/et/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/et/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/et/LC_MESSAGES/kipiplugins.mo
share/locale/fi/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/fi/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/fi/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/fi/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/fi/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/fi/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/fi/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/fi/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/fi/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/fi/LC_MESSAGES/kipiplugins.mo
share/locale/fr/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/fr/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/fr/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/fr/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/fr/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/fr/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/fr/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/fr/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/fr/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/fr/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/fr/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/fr/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/fr/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/fr/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/fr/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/fr/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/fr/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/fr/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/fr/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/fr/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/fr/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/fr/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/fr/LC_MESSAGES/kipiplugin_smug.mo
share/locale/fr/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/fr/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/fr/LC_MESSAGES/kipiplugins.mo
share/locale/ga/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/ga/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/ga/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/ga/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ga/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/ga/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/ga/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/ga/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ga/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/ga/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ga/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/ga/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/ga/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/ga/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/ga/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/ga/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/ga/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/ga/LC_MESSAGES/kipiplugin_smug.mo
share/locale/ga/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ga/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ga/LC_MESSAGES/kipiplugins.mo
share/locale/gl/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/gl/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/gl/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/gl/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/gl/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/gl/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/gl/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/gl/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/gl/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/gl/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/gl/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/gl/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/gl/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/gl/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/gl/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/gl/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/gl/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/gl/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/gl/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/gl/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/gl/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/gl/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/gl/LC_MESSAGES/kipiplugin_smug.mo
share/locale/gl/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/gl/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/gl/LC_MESSAGES/kipiplugins.mo
share/locale/hi/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/hi/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/hi/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/hi/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/hi/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/hi/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/hi/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/hi/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/hi/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/hi/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/hi/LC_MESSAGES/kipiplugins.mo
share/locale/hne/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/hne/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/hne/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/hne/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/hne/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/hne/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/hne/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/hne/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/hne/LC_MESSAGES/kipiplugins.mo
share/locale/hr/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/hr/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/hr/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/hr/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/hr/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/hr/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/hr/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/hr/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/hr/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/hr/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/hr/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/hr/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/hr/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/hr/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/hr/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/hr/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/hr/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/hr/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/hr/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/hr/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/hr/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/hr/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/hr/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/hr/LC_MESSAGES/kipiplugin_smug.mo
share/locale/hr/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/hr/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/hr/LC_MESSAGES/kipiplugins.mo
share/locale/is/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/is/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/is/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/is/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/is/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/is/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/is/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/is/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/is/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/is/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/is/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/is/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/is/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/is/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/is/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/is/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/is/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/is/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/is/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/is/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/is/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/is/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/is/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/is/LC_MESSAGES/kipiplugin_smug.mo
share/locale/is/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/is/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/is/LC_MESSAGES/kipiplugins.mo
share/locale/it/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/it/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/it/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/it/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/it/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/it/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/it/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/it/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/it/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/it/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/it/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/it/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/it/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/it/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/it/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/it/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/it/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/it/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/it/LC_MESSAGES/kipiplugin_smug.mo
share/locale/it/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/it/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/it/LC_MESSAGES/kipiplugins.mo
share/locale/ja/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/ja/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/ja/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/ja/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ja/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/ja/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/ja/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ja/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/ja/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ja/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/ja/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/ja/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/ja/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/ja/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/ja/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/ja/LC_MESSAGES/kipiplugin_smug.mo
share/locale/ja/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ja/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ja/LC_MESSAGES/kipiplugins.mo
share/locale/km/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/km/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/km/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/km/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/km/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/km/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/km/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/km/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/km/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/km/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/km/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/km/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/km/LC_MESSAGES/kipiplugins.mo
share/locale/lt/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/lt/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/lt/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/lt/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/lt/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/lt/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/lt/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/lt/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/lt/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/lt/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/lt/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/lt/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/lt/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/lt/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/lt/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/lt/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/lt/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/lt/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/lt/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/lt/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/lt/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/lt/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/lt/LC_MESSAGES/kipiplugin_smug.mo
share/locale/lt/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/lt/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/lt/LC_MESSAGES/kipiplugins.mo
share/locale/lv/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/lv/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/lv/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/lv/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/lv/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/lv/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/lv/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/lv/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/lv/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/lv/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/lv/LC_MESSAGES/kipiplugins.mo
share/locale/ms/LC_MESSAGES/kipiplugins.mo
share/locale/nb/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/nb/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/nb/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/nb/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/nb/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/nb/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/nb/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/nb/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/nb/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/nb/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/nb/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/nb/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/nb/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/nb/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/nb/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/nb/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/nb/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/nb/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/nb/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/nb/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/nb/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/nb/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/nb/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/nb/LC_MESSAGES/kipiplugin_smug.mo
share/locale/nb/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/nb/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/nb/LC_MESSAGES/kipiplugins.mo
share/locale/nds/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/nds/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/nds/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/nds/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/nds/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/nds/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/nds/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/nds/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/nds/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/nds/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/nds/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/nds/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/nds/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/nds/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/nds/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/nds/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/nds/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/nds/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/nds/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/nds/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/nds/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/nds/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/nds/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/nds/LC_MESSAGES/kipiplugin_smug.mo
share/locale/nds/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/nds/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/nds/LC_MESSAGES/kipiplugins.mo
share/locale/nl/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/nl/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/nl/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/nl/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/nl/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/nl/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/nl/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/nl/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/nl/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/nl/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/nl/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/nl/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/nl/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/nl/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/nl/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/nl/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/nl/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/nl/LC_MESSAGES/kipiplugin_smug.mo
share/locale/nl/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/nl/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/nl/LC_MESSAGES/kipiplugins.mo
share/locale/nn/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/nn/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/nn/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/nn/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/nn/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/nn/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/nn/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/nn/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/nn/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/nn/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/nn/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/nn/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/nn/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/nn/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/nn/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/nn/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/nn/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/nn/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/nn/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/nn/LC_MESSAGES/kipiplugins.mo
share/locale/oc/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/oc/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/oc/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/oc/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/oc/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/oc/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/oc/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/oc/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/oc/LC_MESSAGES/kipiplugins.mo
share/locale/pa/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/pa/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/pa/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/pa/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/pa/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/pa/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/pa/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/pa/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/pa/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/pa/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/pa/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/pa/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/pa/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/pa/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/pa/LC_MESSAGES/kipiplugins.mo
share/locale/pl/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/pl/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/pl/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/pl/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/pl/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/pl/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/pl/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/pl/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/pl/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/pl/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/pl/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/pl/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/pl/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/pl/LC_MESSAGES/kipiplugins.mo
share/locale/pt/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/pt/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/pt/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/pt/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/pt/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/pt/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/pt/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/pt/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/pt/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/pt/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/pt/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/pt/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/pt/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/pt/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/pt/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/pt/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/pt/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/pt/LC_MESSAGES/kipiplugin_smug.mo
share/locale/pt/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/pt/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/pt/LC_MESSAGES/kipiplugins.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_smug.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo
share/locale/ro/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/ro/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/ro/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/ro/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/ro/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/ro/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/ro/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/ro/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/ro/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ro/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/ro/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ro/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ro/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/ro/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/ro/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ro/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/ro/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/ro/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/ro/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/ro/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/ro/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/ro/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/ro/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/ro/LC_MESSAGES/kipiplugin_smug.mo
share/locale/ro/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ro/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ro/LC_MESSAGES/kipiplugins.mo
share/locale/ru/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/ru/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/ru/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/ru/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/ru/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/ru/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/ru/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/ru/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/ru/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/ru/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/ru/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/ru/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/ru/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/ru/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/ru/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/ru/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/ru/LC_MESSAGES/kipiplugins.mo
share/locale/se/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/se/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/se/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/se/LC_MESSAGES/kipiplugins.mo
share/locale/sk/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/sk/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/sk/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/sk/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/sk/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/sk/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/sk/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/sk/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/sk/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/sk/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/sk/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/sk/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/sk/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/sk/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/sk/LC_MESSAGES/kipiplugin_smug.mo
share/locale/sk/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/sk/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/sk/LC_MESSAGES/kipiplugins.mo
share/locale/sv/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/sv/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/sv/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/sv/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/sv/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/sv/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/sv/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/sv/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/sv/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/sv/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/sv/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/sv/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/sv/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/sv/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/sv/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/sv/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/sv/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/sv/LC_MESSAGES/kipiplugin_smug.mo
share/locale/sv/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/sv/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/sv/LC_MESSAGES/kipiplugins.mo
share/locale/th/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/th/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/th/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/th/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/th/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/th/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/th/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/th/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/th/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/th/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/th/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/th/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/th/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/th/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/th/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/th/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/th/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/th/LC_MESSAGES/kipiplugins.mo
share/locale/tr/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/tr/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/tr/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/tr/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/tr/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/tr/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/tr/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/tr/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/tr/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/tr/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/tr/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/tr/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/tr/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/tr/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/tr/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/tr/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/tr/LC_MESSAGES/kipiplugin_smug.mo
share/locale/tr/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/tr/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/tr/LC_MESSAGES/kipiplugins.mo
share/locale/uk/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/uk/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/uk/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/uk/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/uk/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/uk/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/uk/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/uk/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/uk/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/uk/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/uk/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/uk/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/uk/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/uk/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/uk/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/uk/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/uk/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/uk/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/uk/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/uk/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/uk/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/uk/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/uk/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/uk/LC_MESSAGES/kipiplugin_smug.mo
share/locale/uk/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/uk/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/uk/LC_MESSAGES/kipiplugins.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_smug.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/zh_CN/LC_MESSAGES/kipiplugins.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_acquireimages.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_advancedslideshow.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_batchprocessimages.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_calendar.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_dngconverter.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_expoblending.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_facebook.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_flashexport.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_flickrexport.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_galleryexport.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_gpssync.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_htmlexport.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_imageviewer.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_ipodexport.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_jpeglossless.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_kioexportimport.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_metadataedit.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_picasawebexport.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_printimages.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_rawconverter.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_removeredeyes.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_sendimages.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_shwup.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_smug.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_timeadjust.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugin_wallpaper.mo
share/locale/zh_TW/LC_MESSAGES/kipiplugins.mo