diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/README.txt b/gtk-nsis-pack/README.txt
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/README.txt
rename to gtk-nsis-pack/README.txt
diff --git a/gtk-nsis-pack/bin/fc-cache.exe b/gtk-nsis-pack/bin/fc-cache.exe
new file mode 100644
index 00000000..2729588c
Binary files /dev/null and b/gtk-nsis-pack/bin/fc-cache.exe differ
diff --git a/gtk-nsis-pack/bin/fc-cat.exe b/gtk-nsis-pack/bin/fc-cat.exe
new file mode 100644
index 00000000..677f14f6
Binary files /dev/null and b/gtk-nsis-pack/bin/fc-cat.exe differ
diff --git a/gtk-nsis-pack/bin/fc-list.exe b/gtk-nsis-pack/bin/fc-list.exe
new file mode 100644
index 00000000..eccad632
Binary files /dev/null and b/gtk-nsis-pack/bin/fc-list.exe differ
diff --git a/gtk-nsis-pack/bin/fc-match.exe b/gtk-nsis-pack/bin/fc-match.exe
new file mode 100644
index 00000000..93e2682a
Binary files /dev/null and b/gtk-nsis-pack/bin/fc-match.exe differ
diff --git a/gtk-nsis-pack/bin/fc-pattern.exe b/gtk-nsis-pack/bin/fc-pattern.exe
new file mode 100644
index 00000000..23058378
Binary files /dev/null and b/gtk-nsis-pack/bin/fc-pattern.exe differ
diff --git a/gtk-nsis-pack/bin/fc-query.exe b/gtk-nsis-pack/bin/fc-query.exe
new file mode 100644
index 00000000..6d36a1cc
Binary files /dev/null and b/gtk-nsis-pack/bin/fc-query.exe differ
diff --git a/gtk-nsis-pack/bin/fc-scan.exe b/gtk-nsis-pack/bin/fc-scan.exe
new file mode 100644
index 00000000..779d81ee
Binary files /dev/null and b/gtk-nsis-pack/bin/fc-scan.exe differ
diff --git a/gtk-nsis-pack/bin/fc-validate.exe b/gtk-nsis-pack/bin/fc-validate.exe
new file mode 100644
index 00000000..a0321420
Binary files /dev/null and b/gtk-nsis-pack/bin/fc-validate.exe differ
diff --git a/gtk-nsis-pack/bin/gdk-pixbuf-query-loaders.exe b/gtk-nsis-pack/bin/gdk-pixbuf-query-loaders.exe
new file mode 100644
index 00000000..6b392c83
Binary files /dev/null and b/gtk-nsis-pack/bin/gdk-pixbuf-query-loaders.exe differ
diff --git a/gtk-nsis-pack/bin/gspawn-win64-helper-console.exe b/gtk-nsis-pack/bin/gspawn-win64-helper-console.exe
new file mode 100644
index 00000000..ef74a129
Binary files /dev/null and b/gtk-nsis-pack/bin/gspawn-win64-helper-console.exe differ
diff --git a/gtk-nsis-pack/bin/gspawn-win64-helper.exe b/gtk-nsis-pack/bin/gspawn-win64-helper.exe
new file mode 100644
index 00000000..59f7735a
Binary files /dev/null and b/gtk-nsis-pack/bin/gspawn-win64-helper.exe differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-builder-convert b/gtk-nsis-pack/bin/gtk-builder-convert
similarity index 95%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-builder-convert
rename to gtk-nsis-pack/bin/gtk-builder-convert
index a641b338..ea737de1 100644
--- a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-builder-convert
+++ b/gtk-nsis-pack/bin/gtk-builder-convert
@@ -146,8 +146,9 @@ def copy_properties(node, props, prop_dict):
class GtkBuilderConverter(object):
- def __init__(self, skip_windows, root):
+ def __init__(self, skip_windows, target_version, root):
self.skip_windows = skip_windows
+ self.target_version = target_version
self.root = root
self.root_objects = []
self.objects = {}
@@ -295,6 +296,25 @@ class GtkBuilderConverter(object):
self._convert_menu(node, popup=True)
elif klass in WINDOWS and self.skip_windows:
self._remove_window(node)
+
+ if self.target_version == "3.0":
+ if klass == "GtkComboBoxEntry":
+ node.setAttribute("class","GtkComboBox")
+ prop = self._dom.createElement("property")
+ prop.setAttribute("name", "has-entry")
+ prop.appendChild(self._dom.createTextNode("True"))
+ node.appendChild(prop)
+ elif klass == "GtkDialog":
+ for child in node.childNodes:
+ if child.nodeType != Node.ELEMENT_NODE:
+ continue
+ if child.tagName != 'property':
+ continue
+ if (child.getAttribute("name") not in ("has-separator", "has_separator")):
+ continue;
+ node.removeChild(child)
+ break
+
self._default_widget_converter(node)
def _default_widget_converter(self, node):
@@ -732,7 +752,10 @@ def usage():
def main(args):
try:
opts, args = getopt.getopt(args[1:], "hwr:",
- ["help", "skip-windows", "root="])
+ ["help",
+ "skip-windows",
+ "target-version=",
+ "root="])
except getopt.GetoptError:
usage()
return 2
@@ -746,6 +769,7 @@ def main(args):
skip_windows = False
split = False
root = None
+ target_version = "2.0"
for o, a in opts:
if o in ("-h", "--help"):
usage()
@@ -754,8 +778,11 @@ def main(args):
root = a
elif o in ("-w", "--skip-windows"):
skip_windows = True
+ elif o in ("-t", "--target-version"):
+ target_version = a
conv = GtkBuilderConverter(skip_windows=skip_windows,
+ target_version=target_version,
root=root)
conv.parse_file(input_filename)
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-demo.exe b/gtk-nsis-pack/bin/gtk-demo.exe
similarity index 51%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-demo.exe
rename to gtk-nsis-pack/bin/gtk-demo.exe
index d62b85be..386687ef 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-demo.exe and b/gtk-nsis-pack/bin/gtk-demo.exe differ
diff --git a/gtk-nsis-pack/bin/gtk-query-immodules-2.0.exe b/gtk-nsis-pack/bin/gtk-query-immodules-2.0.exe
new file mode 100644
index 00000000..e1b58500
Binary files /dev/null and b/gtk-nsis-pack/bin/gtk-query-immodules-2.0.exe differ
diff --git a/gtk-nsis-pack/bin/gtk-query-immodules-3.0.exe b/gtk-nsis-pack/bin/gtk-query-immodules-3.0.exe
new file mode 100644
index 00000000..c0838ca8
Binary files /dev/null and b/gtk-nsis-pack/bin/gtk-query-immodules-3.0.exe differ
diff --git a/gtk-nsis-pack/bin/gtk-update-icon-cache.exe b/gtk-nsis-pack/bin/gtk-update-icon-cache.exe
new file mode 100644
index 00000000..95f7fd1c
Binary files /dev/null and b/gtk-nsis-pack/bin/gtk-update-icon-cache.exe differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-update-icon-cache.exe.manifest b/gtk-nsis-pack/bin/gtk-update-icon-cache.exe.manifest
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-update-icon-cache.exe.manifest
rename to gtk-nsis-pack/bin/gtk-update-icon-cache.exe.manifest
diff --git a/gtk-nsis-pack/bin/libasprintf-0.dll b/gtk-nsis-pack/bin/libasprintf-0.dll
new file mode 100644
index 00000000..f63abf0d
Binary files /dev/null and b/gtk-nsis-pack/bin/libasprintf-0.dll differ
diff --git a/gtk-nsis-pack/bin/libatk-1.0-0.dll b/gtk-nsis-pack/bin/libatk-1.0-0.dll
new file mode 100644
index 00000000..b02399a5
Binary files /dev/null and b/gtk-nsis-pack/bin/libatk-1.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libatkmm-1.6-1.dll b/gtk-nsis-pack/bin/libatkmm-1.6-1.dll
new file mode 100644
index 00000000..be39b486
Binary files /dev/null and b/gtk-nsis-pack/bin/libatkmm-1.6-1.dll differ
diff --git a/gtk-nsis-pack/bin/libcairo-2.dll b/gtk-nsis-pack/bin/libcairo-2.dll
new file mode 100644
index 00000000..f4ca8693
Binary files /dev/null and b/gtk-nsis-pack/bin/libcairo-2.dll differ
diff --git a/gtk-nsis-pack/bin/libcairo-gobject-2.dll b/gtk-nsis-pack/bin/libcairo-gobject-2.dll
new file mode 100644
index 00000000..f9f75c19
Binary files /dev/null and b/gtk-nsis-pack/bin/libcairo-gobject-2.dll differ
diff --git a/gtk-nsis-pack/bin/libcairo-script-interpreter-2.dll b/gtk-nsis-pack/bin/libcairo-script-interpreter-2.dll
new file mode 100644
index 00000000..0209486c
Binary files /dev/null and b/gtk-nsis-pack/bin/libcairo-script-interpreter-2.dll differ
diff --git a/gtk-nsis-pack/bin/libcairomm-1.0-1.dll b/gtk-nsis-pack/bin/libcairomm-1.0-1.dll
new file mode 100644
index 00000000..534d333a
Binary files /dev/null and b/gtk-nsis-pack/bin/libcairomm-1.0-1.dll differ
diff --git a/gtk-nsis-pack/bin/libffi-6.dll b/gtk-nsis-pack/bin/libffi-6.dll
new file mode 100644
index 00000000..97dd5ea5
Binary files /dev/null and b/gtk-nsis-pack/bin/libffi-6.dll differ
diff --git a/gtk-nsis-pack/bin/libfontconfig-1.dll b/gtk-nsis-pack/bin/libfontconfig-1.dll
new file mode 100644
index 00000000..8e3fc716
Binary files /dev/null and b/gtk-nsis-pack/bin/libfontconfig-1.dll differ
diff --git a/gtk-nsis-pack/bin/libfreetype-6.dll b/gtk-nsis-pack/bin/libfreetype-6.dll
new file mode 100644
index 00000000..21106aa8
Binary files /dev/null and b/gtk-nsis-pack/bin/libfreetype-6.dll differ
diff --git a/gtk-nsis-pack/bin/libgailutil-18.dll b/gtk-nsis-pack/bin/libgailutil-18.dll
new file mode 100644
index 00000000..325a0f81
Binary files /dev/null and b/gtk-nsis-pack/bin/libgailutil-18.dll differ
diff --git a/gtk-nsis-pack/bin/libgailutil-3-0.dll b/gtk-nsis-pack/bin/libgailutil-3-0.dll
new file mode 100644
index 00000000..da9ec721
Binary files /dev/null and b/gtk-nsis-pack/bin/libgailutil-3-0.dll differ
diff --git a/gtk-nsis-pack/bin/libgdk-3-0.dll b/gtk-nsis-pack/bin/libgdk-3-0.dll
new file mode 100644
index 00000000..971f4d28
Binary files /dev/null and b/gtk-nsis-pack/bin/libgdk-3-0.dll differ
diff --git a/gtk-nsis-pack/bin/libgdk-win32-2.0-0.dll b/gtk-nsis-pack/bin/libgdk-win32-2.0-0.dll
new file mode 100644
index 00000000..a250b6ab
Binary files /dev/null and b/gtk-nsis-pack/bin/libgdk-win32-2.0-0.dll differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgdk_pixbuf-2.0-0.dll b/gtk-nsis-pack/bin/libgdk_pixbuf-2.0-0.dll
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgdk_pixbuf-2.0-0.dll
rename to gtk-nsis-pack/bin/libgdk_pixbuf-2.0-0.dll
diff --git a/gtk-nsis-pack/bin/libgdkmm-2.4-1.dll b/gtk-nsis-pack/bin/libgdkmm-2.4-1.dll
new file mode 100644
index 00000000..ebb216b3
Binary files /dev/null and b/gtk-nsis-pack/bin/libgdkmm-2.4-1.dll differ
diff --git a/gtk-nsis-pack/bin/libgdkmm-3.0-1.dll b/gtk-nsis-pack/bin/libgdkmm-3.0-1.dll
new file mode 100644
index 00000000..85606d11
Binary files /dev/null and b/gtk-nsis-pack/bin/libgdkmm-3.0-1.dll differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgio-2.0-0.dll b/gtk-nsis-pack/bin/libgio-2.0-0.dll
similarity index 55%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgio-2.0-0.dll
rename to gtk-nsis-pack/bin/libgio-2.0-0.dll
index e5a77c38..4263f693 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgio-2.0-0.dll and b/gtk-nsis-pack/bin/libgio-2.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libgiomm-2.4-1.dll b/gtk-nsis-pack/bin/libgiomm-2.4-1.dll
new file mode 100644
index 00000000..4f5f03d5
Binary files /dev/null and b/gtk-nsis-pack/bin/libgiomm-2.4-1.dll differ
diff --git a/gtk-nsis-pack/bin/libglib-2.0-0.dll b/gtk-nsis-pack/bin/libglib-2.0-0.dll
new file mode 100644
index 00000000..33c7845b
Binary files /dev/null and b/gtk-nsis-pack/bin/libglib-2.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libglibmm-2.4-1.dll b/gtk-nsis-pack/bin/libglibmm-2.4-1.dll
new file mode 100644
index 00000000..053d9d5b
Binary files /dev/null and b/gtk-nsis-pack/bin/libglibmm-2.4-1.dll differ
diff --git a/gtk-nsis-pack/bin/libglibmm_generate_extra_defs-2.4-1.dll b/gtk-nsis-pack/bin/libglibmm_generate_extra_defs-2.4-1.dll
new file mode 100644
index 00000000..028abd58
Binary files /dev/null and b/gtk-nsis-pack/bin/libglibmm_generate_extra_defs-2.4-1.dll differ
diff --git a/gtk-nsis-pack/bin/libgmodule-2.0-0.dll b/gtk-nsis-pack/bin/libgmodule-2.0-0.dll
new file mode 100644
index 00000000..3e025bbb
Binary files /dev/null and b/gtk-nsis-pack/bin/libgmodule-2.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libgobject-2.0-0.dll b/gtk-nsis-pack/bin/libgobject-2.0-0.dll
new file mode 100644
index 00000000..67d27f6e
Binary files /dev/null and b/gtk-nsis-pack/bin/libgobject-2.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libgthread-2.0-0.dll b/gtk-nsis-pack/bin/libgthread-2.0-0.dll
new file mode 100644
index 00000000..432fdbfa
Binary files /dev/null and b/gtk-nsis-pack/bin/libgthread-2.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libgtk-3-0.dll b/gtk-nsis-pack/bin/libgtk-3-0.dll
new file mode 100644
index 00000000..a6471ee5
Binary files /dev/null and b/gtk-nsis-pack/bin/libgtk-3-0.dll differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgtk-win32-2.0-0.dll b/gtk-nsis-pack/bin/libgtk-win32-2.0-0.dll
similarity index 73%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgtk-win32-2.0-0.dll
rename to gtk-nsis-pack/bin/libgtk-win32-2.0-0.dll
index 6a7a09ea..0295efec 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgtk-win32-2.0-0.dll and b/gtk-nsis-pack/bin/libgtk-win32-2.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libgtkmm-2.4-1.dll b/gtk-nsis-pack/bin/libgtkmm-2.4-1.dll
new file mode 100644
index 00000000..68656c22
Binary files /dev/null and b/gtk-nsis-pack/bin/libgtkmm-2.4-1.dll differ
diff --git a/gtk-nsis-pack/bin/libgtkmm-3.0-1.dll b/gtk-nsis-pack/bin/libgtkmm-3.0-1.dll
new file mode 100644
index 00000000..ed16e846
Binary files /dev/null and b/gtk-nsis-pack/bin/libgtkmm-3.0-1.dll differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libharfbuzz-0.dll b/gtk-nsis-pack/bin/libharfbuzz-0.dll
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libharfbuzz-0.dll
rename to gtk-nsis-pack/bin/libharfbuzz-0.dll
diff --git a/gtk-nsis-pack/bin/libintl-8.dll b/gtk-nsis-pack/bin/libintl-8.dll
new file mode 100644
index 00000000..5960f403
Binary files /dev/null and b/gtk-nsis-pack/bin/libintl-8.dll differ
diff --git a/gtk-nsis-pack/bin/libpango-1.0-0.dll b/gtk-nsis-pack/bin/libpango-1.0-0.dll
new file mode 100644
index 00000000..db18f158
Binary files /dev/null and b/gtk-nsis-pack/bin/libpango-1.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libpangocairo-1.0-0.dll b/gtk-nsis-pack/bin/libpangocairo-1.0-0.dll
new file mode 100644
index 00000000..7eefda68
Binary files /dev/null and b/gtk-nsis-pack/bin/libpangocairo-1.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libpangoft2-1.0-0.dll b/gtk-nsis-pack/bin/libpangoft2-1.0-0.dll
new file mode 100644
index 00000000..ed3062d9
Binary files /dev/null and b/gtk-nsis-pack/bin/libpangoft2-1.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libpangomm-1.4-1.dll b/gtk-nsis-pack/bin/libpangomm-1.4-1.dll
new file mode 100644
index 00000000..061702fe
Binary files /dev/null and b/gtk-nsis-pack/bin/libpangomm-1.4-1.dll differ
diff --git a/gtk-nsis-pack/bin/libpangowin32-1.0-0.dll b/gtk-nsis-pack/bin/libpangowin32-1.0-0.dll
new file mode 100644
index 00000000..cf8c9e7d
Binary files /dev/null and b/gtk-nsis-pack/bin/libpangowin32-1.0-0.dll differ
diff --git a/gtk-nsis-pack/bin/libpixman-1-0.dll b/gtk-nsis-pack/bin/libpixman-1-0.dll
new file mode 100644
index 00000000..5a66b20f
Binary files /dev/null and b/gtk-nsis-pack/bin/libpixman-1-0.dll differ
diff --git a/gtk-nsis-pack/bin/libpng16-16.dll b/gtk-nsis-pack/bin/libpng16-16.dll
new file mode 100644
index 00000000..aefb49e0
Binary files /dev/null and b/gtk-nsis-pack/bin/libpng16-16.dll differ
diff --git a/gtk-nsis-pack/bin/libxml2-2.dll b/gtk-nsis-pack/bin/libxml2-2.dll
new file mode 100644
index 00000000..9b3797c4
Binary files /dev/null and b/gtk-nsis-pack/bin/libxml2-2.dll differ
diff --git a/gtk-nsis-pack/bin/pango-querymodules.exe b/gtk-nsis-pack/bin/pango-querymodules.exe
new file mode 100644
index 00000000..b63c6868
Binary files /dev/null and b/gtk-nsis-pack/bin/pango-querymodules.exe differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/zlib1.dll b/gtk-nsis-pack/bin/zlib1.dll
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/zlib1.dll
rename to gtk-nsis-pack/bin/zlib1.dll
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/etc/gtk-2.0/gtkrc b/gtk-nsis-pack/etc/gtk-2.0/gtkrc
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/etc/gtk-2.0/gtkrc
rename to gtk-nsis-pack/etc/gtk-2.0/gtkrc
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/etc/gtk-2.0/gtkrc.default b/gtk-nsis-pack/etc/gtk-2.0/gtkrc.default
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/etc/gtk-2.0/gtkrc.default
rename to gtk-nsis-pack/etc/gtk-2.0/gtkrc.default
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-engine/info.txt b/gtk-nsis-pack/gtk-engine/info.txt
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-engine/info.txt
rename to gtk-nsis-pack/gtk-engine/info.txt
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-engine/libpixmap.dll b/gtk-nsis-pack/gtk-engine/libpixmap.dll
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-engine/libpixmap.dll
rename to gtk-nsis-pack/gtk-engine/libpixmap.dll
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-themes.ash.nsi b/gtk-nsis-pack/gtk-themes.ash.nsi
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-themes.ash.nsi
rename to gtk-nsis-pack/gtk-themes.ash.nsi
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk.ico b/gtk-nsis-pack/gtk.ico
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk.ico
rename to gtk-nsis-pack/gtk.ico
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-runtime.ts.nsi b/gtk-nsis-pack/gtk2-runtime.ts.nsi
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-runtime.ts.nsi
rename to gtk-nsis-pack/gtk2-runtime.ts.nsi
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache b/gtk-nsis-pack/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
rename to gtk-nsis-pack/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache
diff --git a/gtk-nsis-pack/lib/gtk-2.0/2.10.0/engines/libpixmap.dll b/gtk-nsis-pack/lib/gtk-2.0/2.10.0/engines/libpixmap.dll
new file mode 100644
index 00000000..e969166e
Binary files /dev/null and b/gtk-nsis-pack/lib/gtk-2.0/2.10.0/engines/libpixmap.dll differ
diff --git a/gtk-nsis-pack/lib/gtk-2.0/2.10.0/engines/libwimp.dll b/gtk-nsis-pack/lib/gtk-2.0/2.10.0/engines/libwimp.dll
new file mode 100644
index 00000000..1f8dc4cc
Binary files /dev/null and b/gtk-nsis-pack/lib/gtk-2.0/2.10.0/engines/libwimp.dll differ
diff --git a/gtk-nsis-pack/lib/gtk-2.0/modules/libgail.dll b/gtk-nsis-pack/lib/gtk-2.0/modules/libgail.dll
new file mode 100644
index 00000000..4d16360d
Binary files /dev/null and b/gtk-nsis-pack/lib/gtk-2.0/modules/libgail.dll differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/license.txt b/gtk-nsis-pack/license.txt
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/license.txt
rename to gtk-nsis-pack/license.txt
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_gpl.txt b/gtk-nsis-pack/license_gpl.txt
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_gpl.txt
rename to gtk-nsis-pack/license_gpl.txt
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_jpeg.txt b/gtk-nsis-pack/license_jpeg.txt
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_jpeg.txt
rename to gtk-nsis-pack/license_jpeg.txt
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_lgpl.txt b/gtk-nsis-pack/license_lgpl.txt
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_lgpl.txt
rename to gtk-nsis-pack/license_lgpl.txt
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_png.txt b/gtk-nsis-pack/license_png.txt
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_png.txt
rename to gtk-nsis-pack/license_png.txt
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_themes.txt b/gtk-nsis-pack/license_themes.txt
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_themes.txt
rename to gtk-nsis-pack/license_themes.txt
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_zlib.txt b/gtk-nsis-pack/license_zlib.txt
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/license_zlib.txt
rename to gtk-nsis-pack/license_zlib.txt
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_configpage.ini b/gtk-nsis-pack/nsi_configpage.ini
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_configpage.ini
rename to gtk-nsis-pack/nsi_configpage.ini
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_env_var_update.nsh b/gtk-nsis-pack/nsi_env_var_update.nsh
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_env_var_update.nsh
rename to gtk-nsis-pack/nsi_env_var_update.nsh
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_install.ico b/gtk-nsis-pack/nsi_install.ico
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_install.ico
rename to gtk-nsis-pack/nsi_install.ico
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_pathpage.ini b/gtk-nsis-pack/nsi_pathpage.ini
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_pathpage.ini
rename to gtk-nsis-pack/nsi_pathpage.ini
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_uninstall.ico b/gtk-nsis-pack/nsi_uninstall.ico
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/nsi_uninstall.ico
rename to gtk-nsis-pack/nsi_uninstall.ico
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/af/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..1f2ac709
Binary files /dev/null and b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/af/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..f0ed89cf
Binary files /dev/null and b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..fe6bd4fe
Binary files /dev/null and b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..8073cddb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/af/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/am/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/am/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/am/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/am/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..61f8aea7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/am/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..73ba52e5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..730e69d2
Binary files /dev/null and b/gtk-nsis-pack/share/locale/am/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/an/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/an/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..8e06b185
Binary files /dev/null and b/gtk-nsis-pack/share/locale/an/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/an/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/an/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..d42ad23e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/an/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/an/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/an/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..3db4c691
Binary files /dev/null and b/gtk-nsis-pack/share/locale/an/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/an/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/an/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..754135e3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/an/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gdk-pixbuf.mo
similarity index 99%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gdk-pixbuf.mo
index 31eff199..75c714c8 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..af48a1e4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..88528f2e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ang/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/ar/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..563720cb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..78ed47ae
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..586b6212
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..c05bcb2c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ar/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/as/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..18452f5e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..1ba5913a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/as/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..b3acfa3b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..53ddd122
Binary files /dev/null and b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..47a7726a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/as/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..e0a20dbb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..3bf56436
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..6a04eadb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..8f824ecd
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..c344969c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ast/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/az/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..5a723391
Binary files /dev/null and b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/az/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..8edd6d8d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..21f076f6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..bc9e3cd7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/az/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..c1375fd6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..3df37972
Binary files /dev/null and b/gtk-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/be/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..1c8891a0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..488a2fdb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gettext-runtime.mo
similarity index 65%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/be/LC_MESSAGES/gettext-runtime.mo
index d6167a7a..3d73ff3f 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..42d9daa6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/be/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c4697905
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..fb6f1825
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..d4a53521
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..39175deb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/be/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/be/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/be/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..0ce1c4a3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..715700b1
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..d263ed67
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..8333ccf0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..1c4f4c07
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..f1d4b443
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-runtime.mo
similarity index 79%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-runtime.mo
index f3ca7f77..e38b2540 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..1c1ec50a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..f49027e4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..28fb9515
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..8325d07a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..8a3b6362
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..bbfb8d32
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/bg/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/bg/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/bn/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..2568027c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c16fbee4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..f66cbbb9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..f7a26ba1
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bn/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..c378e1b5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..3860439a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..147880c4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..d39ee9ea
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..8f701d6d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gdk-pixbuf.mo
similarity index 54%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/br/LC_MESSAGES/gdk-pixbuf.mo
index a9a7cbff..847f8dcf 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..be4d19c0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..bf261dac
Binary files /dev/null and b/gtk-nsis-pack/share/locale/br/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/bs/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..b6fe6a69
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..844df8f7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..defb6ce0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..49cc13f0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/bs/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..14007f60
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..c5b9de1d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-runtime.mo
similarity index 77%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-runtime.mo
index 291bfd8a..7ec13539 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..6c7888c9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..1ba273e7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..75af46db
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..71ebfeb3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..10e00157
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..19690620
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/ca/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/ca/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..16f162d3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..17842bfd
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..67595582
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..63272dc6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo
similarity index 52%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo
index 74f4ab5d..eae9f613 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..36c410c0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..651e1c86
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..cbb24d1b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..b4197f01
Binary files /dev/null and b/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..0f047ca9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/crh/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..37796e40
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..d080121d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-runtime.mo
new file mode 100644
index 00000000..b0d5d88d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..86a48451
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..0abe35f8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20.mo
similarity index 99%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20.mo
index d2c0ee04..092bcba6 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..d81ca351
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..770851b8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/cs/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/cs/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/csb/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/csb/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..69f0e305
Binary files /dev/null and b/gtk-nsis-pack/share/locale/csb/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/cy/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..a917ade9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c3492bb3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..7d8d8a63
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..f307f53b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/cy/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/da/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..e80d19b9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/da/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..856c141a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gettext-runtime.mo
new file mode 100644
index 00000000..046e8621
Binary files /dev/null and b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..124307d6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/da/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..483073a1
Binary files /dev/null and b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..12de0808
Binary files /dev/null and b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..5e8c2fbd
Binary files /dev/null and b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/da/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/da/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/da/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/de/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..38d0f841
Binary files /dev/null and b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/de/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..df5f6b8a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gettext-runtime.mo
similarity index 78%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/de/LC_MESSAGES/gettext-runtime.mo
index b0a6128d..880e9d8e 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..c064740d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/de/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..b4faa7f7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..92c5e6cd
Binary files /dev/null and b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk20.mo
similarity index 51%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk20.mo
index c688efc0..159c8a86 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..daacdd02
Binary files /dev/null and b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..1392d7ad
Binary files /dev/null and b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/de/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/de/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/de/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/dz/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..adf562b8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..508fac62
Binary files /dev/null and b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..08ef4c66
Binary files /dev/null and b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..4b3dd3ea
Binary files /dev/null and b/gtk-nsis-pack/share/locale/dz/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/el/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..f59c392d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..da0c5621
Binary files /dev/null and b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gettext-runtime.mo
similarity index 61%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/el/LC_MESSAGES/gettext-runtime.mo
index f549df77..dabeca4e 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..80e0ad17
Binary files /dev/null and b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/el/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..ec68a812
Binary files /dev/null and b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..3ed55294
Binary files /dev/null and b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..91c0bdc0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..2e5e30cb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/el/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/el/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/en/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/en/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..ae3a58ae
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/en/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/en/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..54d7b493
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo
similarity index 86%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo
index 8cf1ed82..675989f2 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..5671bd37
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo
similarity index 86%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo
index c305149c..fc8e1573 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..a2494cb6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@quot/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/en@quot/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@quot/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/en@quot/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@shaw/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@shaw/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..7a38dfe4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..b0c90d72
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..24d88abb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..4f7b9789
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en@shaw/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..7523f469
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..bee13bbd
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..c12e74c7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..683916b5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..1781e84e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..3559ec47
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..ec3888f1
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..b9c18bec
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20.mo
similarity index 99%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20.mo
index 834f95c2..69a328a2 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..9ac56b5a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..ecd64c6b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/en_GB/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_US/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/en_US/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_US/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/en_US/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/atk10.mo
similarity index 51%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/eo/LC_MESSAGES/atk10.mo
index 36dc8701..2ebdc791 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/atk10.mo and b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/eo/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..efe23cca
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gettext-runtime.mo
similarity index 72%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gettext-runtime.mo
index 10bc3caf..cf03dddd 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..9eeed9fb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..a9be5f61
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..9e1f35dd
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/eo/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/eo/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/es/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..0c8ddc4a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/es/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..108d791a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gettext-runtime.mo
new file mode 100644
index 00000000..b73ecd9a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..7413d495
Binary files /dev/null and b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/es/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..d8d9da02
Binary files /dev/null and b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk20.mo
similarity index 52%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk20.mo
index 4d75bd70..bdc0718c 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..9f65de7b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..5265a8ce
Binary files /dev/null and b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/es/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/es/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/es/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/et/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..8864f9ec
Binary files /dev/null and b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..23c97401
Binary files /dev/null and b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gettext-runtime.mo
similarity index 60%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/et/LC_MESSAGES/gettext-runtime.mo
index 523dad00..20b77244 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..081a486a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/et/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..15980967
Binary files /dev/null and b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..6e37f743
Binary files /dev/null and b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..224c940f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..72987c2d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/et/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/et/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..c63c542e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..18ed24a9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..3ff220f1
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..9f725104
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..298bce2b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..ebf3b063
Binary files /dev/null and b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/eu/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/eu/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..f1f7ae81
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..1de2b5b4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..4510c2ee
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..a149954f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..7660b41d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fa/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..d19843ab
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..5b0f8e70
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-runtime.mo
similarity index 71%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-runtime.mo
index 7563b17e..40cbc85a 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..e2f0b07d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..a655a233
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..d37c1a3b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..1d2fd432
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/fi/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/fi/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/fi/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..bb6c9b10
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/fr/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..19a842a5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-runtime.mo
similarity index 76%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-runtime.mo
index 3c8e653f..3f0f3763 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..b7b3cd04
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..f6908814
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..56db1004
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..569648c6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/fr/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/fr/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/fr/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/ga/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..67219f9d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gettext-runtime.mo
similarity index 77%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gettext-runtime.mo
index 7643c1a0..a84d6ad2 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..3c758ba5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..6c7f744a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..2fe86f2e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/ga/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/ga/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/ga/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/gd/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/gd/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..4a5c3803
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gd/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/gd/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/gd/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..73d53864
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gd/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..e680d34c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..06121328
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-runtime.mo
new file mode 100644
index 00000000..b5c78145
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..edb54c71
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..bd837da2
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20.mo
similarity index 64%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20.mo
index 2471acbc..f8ec84fe 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..3127ef68
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..0ad03e25
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/gl/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/gl/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/gl/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..4c8bd8be
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..5b3d56f8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..87f224fe
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..f0b795e0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..8fad3ded
Binary files /dev/null and b/gtk-nsis-pack/share/locale/gu/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/he/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..4813a189
Binary files /dev/null and b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..fb4e33e9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/he/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..033bfda9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..76e354b2
Binary files /dev/null and b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..24b5811c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..e1607428
Binary files /dev/null and b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/he/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/he/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/he/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..1d23604d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..f7557ba3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..19fbff0a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..b522a649
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..cf4536f6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hi/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/hr/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..e2a66d0a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gettext-runtime.mo
new file mode 100644
index 00000000..df82abb2
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..eadb0ab4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..c4f1153b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..b26e0e96
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/hr/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/hr/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/hr/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..e73cf144
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/hu/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..4e3e10cb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gettext-runtime.mo
new file mode 100644
index 00000000..1b77754f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..14f2cd2a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..4bf6a930
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..a2fba079
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..5094f543
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..93f19ec4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/hu/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/hu/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/hy/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..b4def0fb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..fb24a84d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..29af3514
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..1c97d49e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/hy/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gdk-pixbuf.mo
similarity index 96%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gdk-pixbuf.mo
index 290ed328..47ed6687 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..b90d911c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..b2d60fc3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..1b15b7cb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ia/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/id/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..0d6a96bb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..6d8b0dc3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gettext-runtime.mo
similarity index 77%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/id/LC_MESSAGES/gettext-runtime.mo
index 0acd1d93..312d6188 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..ff8b5605
Binary files /dev/null and b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/id/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..8a5eaaa5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..3c626bc8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..8f090840
Binary files /dev/null and b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/id/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/id/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/id/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gdk-pixbuf.mo
similarity index 52%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/io/LC_MESSAGES/gdk-pixbuf.mo
index 50c7be37..d427d42f 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..d78329ab
Binary files /dev/null and b/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..63503212
Binary files /dev/null and b/gtk-nsis-pack/share/locale/io/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/is/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..27920a10
Binary files /dev/null and b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/is/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..5c60ebe5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..3df533a6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..869b6a57
Binary files /dev/null and b/gtk-nsis-pack/share/locale/is/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/it/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..e7bc06f9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..6d8f0918
Binary files /dev/null and b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gettext-runtime.mo
similarity index 77%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/it/LC_MESSAGES/gettext-runtime.mo
index 5d6a6a41..ae5589ef 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..618a85b8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/it/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..cbb55f40
Binary files /dev/null and b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..a9358b25
Binary files /dev/null and b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk20.mo
similarity index 59%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk20.mo
index 64acc6cb..5689ff5d 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..9b28504a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..a02f67e8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/it/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/it/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..e23e7b1d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..cfa0354b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-runtime.mo
similarity index 84%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-runtime.mo
index c9c4ccb9..65746cbc 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..a5c99a98
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..42d109d1
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..4503b47a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20.mo
similarity index 89%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20.mo
index 753073b7..aa7e88b4 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..3038f08f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..530413fb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/ja/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/ja/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/ja/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/ka/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..c1001223
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..71530a39
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..58a0ea01
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..b8eb4dda
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ka/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..281f923a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..581ee964
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kg/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/kk/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..b2ebe4da
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..0d59bd14
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..25a9f778
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kk/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/km/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/km/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..2d51561b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/km/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/km/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/km/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..9b6905aa
Binary files /dev/null and b/gtk-nsis-pack/share/locale/km/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/km/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/km/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..2643a2f7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/km/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/km/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/km/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..de883682
Binary files /dev/null and b/gtk-nsis-pack/share/locale/km/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..f240c447
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..4a083e0c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..aa663a62
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..3c286ecd
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..de3ee5be
Binary files /dev/null and b/gtk-nsis-pack/share/locale/kn/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..d2273e6c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..570469e5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-runtime.mo
similarity index 85%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-runtime.mo
index 9323cac5..30a6cf68 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..7b043971
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..6557b74c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..5a219fd9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..608782a0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/ko/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/ko/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/ku/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..513db523
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..f53dedbf
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..b8d33914
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..f7cf1b36
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ku/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/ky/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ky/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..783ec5d2
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ky/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ky/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ky/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..09014838
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ky/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..d1ccdf7a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..25d31587
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lg/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/li/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/li/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..1139dcb0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..30e01ff9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..3cccb1cb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/li/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/locale.alias b/gtk-nsis-pack/share/locale/locale.alias
similarity index 76%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/locale.alias
rename to gtk-nsis-pack/share/locale/locale.alias
index 3170ff91..11cc342d 100644
--- a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/locale.alias
+++ b/gtk-nsis-pack/share/locale/locale.alias
@@ -1,20 +1,18 @@
# Locale name alias data base.
# Copyright (C) 1996-2001,2003,2007 Free Software Foundation, Inc.
#
-# This program is free software; you can redistribute it and/or modify it
-# under the terms of the GNU Library General Public License as published
-# by the Free Software Foundation; either version 2, or (at your option)
-# any later version.
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License as published by
+# the Free Software Foundation; either version 2.1 of the License, or
+# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# Library General Public License for more details.
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Lesser General Public License for more details.
#
-# You should have received a copy of the GNU Library General Public
-# License along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
-# USA.
+# You should have received a copy of the GNU Lesser General Public License
+# along with this program. If not, see .
# The format of this file is the same as for the corresponding file of
# the X Window System, which normally can be found in
@@ -29,7 +27,7 @@
# Packages using this file: gettext-runtime gettext-tools
bokmal nb_NO.ISO-8859-1
-bokmål nb_NO.ISO-8859-1
+bokm�l nb_NO.ISO-8859-1
catalan ca_ES.ISO-8859-1
croatian hr_HR.ISO-8859-2
czech cs_CZ.ISO-8859-2
@@ -40,7 +38,7 @@ dutch nl_NL.ISO-8859-1
eesti et_EE.ISO-8859-1
estonian et_EE.ISO-8859-1
finnish fi_FI.ISO-8859-1
-français fr_FR.ISO-8859-1
+fran�ais fr_FR.ISO-8859-1
french fr_FR.ISO-8859-1
galego gl_ES.ISO-8859-1
galician gl_ES.ISO-8859-1
diff --git a/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..936962d7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..f5215dae
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c8513e40
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..b7627893
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..1be71065
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..be5380a6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..4f4557bf
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/lt/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/lt/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..bc539270
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..d7790295
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..78d80a23
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..9a63f282
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..056dce37
Binary files /dev/null and b/gtk-nsis-pack/share/locale/lv/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/mai/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..3f33e189
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..d11fc668
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..61e07de4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..ee74a0f1
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mai/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/mg/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/mg/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..dceff01f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mg/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..a22e0a4a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..98003a05
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..77c703ee
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mi/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/mk/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..3acc3bdb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..0caee1b0
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..1dde08ed
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..3d164b66
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mk/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..ff4d8832
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..a527cb60
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..a935ce54
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..7a16ed2a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..bcfba54d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ml/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/mn/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..a280a308
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..b1daf1f3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..e8a76c6f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..60c6f5e5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mn/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/mr/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..f7fa8e87
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..00493f85
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..3ef71b4d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..4214362e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/mr/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/ms/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..909d6208
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..ac95642b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..8922fbff
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..baf70130
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ms/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..dbad9d00
Binary files /dev/null and b/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..7cc92b45
Binary files /dev/null and b/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..eeccdcac
Binary files /dev/null and b/gtk-nsis-pack/share/locale/my/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..2a6e2b02
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/nb/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..31e1ebe4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-runtime.mo
similarity index 61%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-runtime.mo
index 19d5bb4a..2403dedc 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..ca55bd15
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..05579b0e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20.mo
similarity index 52%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20.mo
index 36ced03b..0d4be660 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..111d5bc8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..2f6aff44
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/nb/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/nb/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo
similarity index 72%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo
index c144829b..f8a1a94b 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..6d34550f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..b78d754d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..b01d5675
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nds/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/ne/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..ef3bf973
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..04bcf554
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..7a3818e5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..77eaadeb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ne/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/nl/LC_MESSAGES/atk10.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/nl/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..0a19119f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-runtime.mo
similarity index 70%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-runtime.mo
index 678ad0d0..279fb44b 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..9d8e6875
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..9a30c198
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20.mo
similarity index 63%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20.mo
index 95314f67..4f89d02d 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..183375d3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..82e16d51
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/nl/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/nl/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/nl/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..28c4fa7b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..3008ac1b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-runtime.mo
similarity index 77%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-runtime.mo
index 3c8538fa..6e5e1074 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..1fa55b4f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..8b04037d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..eb392365
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..104fedea
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nn/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..df6236d3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..e45fc839
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..057ecc25
Binary files /dev/null and b/gtk-nsis-pack/share/locale/nso/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/oc/LC_MESSAGES/atk10.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo
similarity index 60%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo
index ecdfab4f..44871820 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..ba14d64c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..768cbd68
Binary files /dev/null and b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..8f12cde1
Binary files /dev/null and b/gtk-nsis-pack/share/locale/oc/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/or/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..e1fba476
Binary files /dev/null and b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..01ec4297
Binary files /dev/null and b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/or/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..545a76c4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..fae95173
Binary files /dev/null and b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..a167012a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/or/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..2103f343
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..811fb867
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..aba871de
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c8fa8998
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..36a57d6e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..b7ebd157
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pa/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..93a8866d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/pl/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..692dc937
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-runtime.mo
similarity index 79%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-runtime.mo
index 4e7ddff2..51700e28 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..11cc5fd8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..6163622b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..47128a15
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..0b0f6a57
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..fd9a3c96
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..a34898b4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/pl/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/pl/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/pl/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/ps/LC_MESSAGES/atk10.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo
similarity index 71%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo
index 1d8ff543..af28f604 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..da862dc5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..4b9b74be
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..80df5384
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ps/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..5dcecd20
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..3e013653
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-runtime.mo
similarity index 78%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-runtime.mo
index a1cb3cd3..b2191c01 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..b1179371
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..09128415
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..a375b5e7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..4a4bb085
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/pt/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/pt/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..6eda4b8d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..bdc5915a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo
new file mode 100644
index 00000000..a7618edd
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..910f95c3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..4cb8edf7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..984fbe5d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..ece391a8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/pt_BR/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/ro/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..f1f9923e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-runtime.mo
similarity index 76%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-runtime.mo
index 1982aaed..25241d69 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..ea247d39
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/glib20.mo
similarity index 50%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/glib20.mo
rename to gtk-nsis-pack/share/locale/ro/LC_MESSAGES/glib20.mo
index 8ff98a89..a0e6471d 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/glib20.mo and b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..050da27a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..43ae1530
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..81963d31
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..37bc605a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/ro/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/ro/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..90f33ecb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/ru/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..6c5f0d5d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-runtime.mo
new file mode 100644
index 00000000..cb210cb2
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..69c459ce
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..336ce7ee
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20-properties.mo
new file mode 100644
index 00000000..f8037f8d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..feb64f9f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..1a051778
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..2b81f9c8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/ru/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/ru/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/ru/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/rw/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c8e7d290
Binary files /dev/null and b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..9b7748d8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..d339e349
Binary files /dev/null and b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/rw/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/rw/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/si/LC_MESSAGES/atk10.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo
similarity index 69%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo
index 28332ccf..9f6209fa 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/si/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..d948c4ef
Binary files /dev/null and b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..efd65a22
Binary files /dev/null and b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..d0ad3107
Binary files /dev/null and b/gtk-nsis-pack/share/locale/si/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..7b74ccfc
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..f4375c98
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-runtime.mo
similarity index 86%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-runtime.mo
index 53fc95f9..ead5edf2 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..7516a3c6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..64d065f4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..a0cc44c9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..f6eca412
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/sk/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/sk/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..0cdc3df6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..ef75852f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-runtime.mo
similarity index 76%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-runtime.mo
index 47935535..60fc28d0 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..9700b948
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..1020e3c8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20.mo
similarity index 63%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20.mo
index 621b47dd..f182d6f8 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..679b6dea
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..4cb4674d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/sl/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/sl/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/sq/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..61a49847
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c814c354
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..7680100a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..64cb7281
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sq/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..8063a818
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/sr/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..491b9bad
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-runtime.mo
new file mode 100644
index 00000000..83fedef8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..30ebfe73
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..e51c6cdb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..999fc6ee
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..11e8a115
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/sr/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/sr/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..dbf28742
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..94da95cc
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..b995927b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..635ef63d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..43a31bf8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..5c527556
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..20623946
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..ad9b7038
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..9b60de72
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..6941a8f8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..16f80d96
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-runtime.mo
similarity index 86%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-runtime.mo
index 88ba6843..78da068f 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..39320d66
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..e78876aa
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..f1fb453d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..9340e986
Binary files /dev/null and b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/sv/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/sv/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/sv/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..ee4e57c9
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..814517f3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..d0885ea1
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..566023dd
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..bc755709
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ta/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/te/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..b23673b5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..fd94be27
Binary files /dev/null and b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/te/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..4faf3cee
Binary files /dev/null and b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..32642e3a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..8f21833c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..0c69ac7f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/te/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..d0a17532
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..d99d60d5
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..266ee3ec
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..c9cff4cc
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..b72bdbc2
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tg/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/th/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..cdc8e3e6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..d0de5ae8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/th/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..45449a56
Binary files /dev/null and b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk20.mo
new file mode 100644
index 00000000..96ec63bb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..aa0c9b70
Binary files /dev/null and b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..b910fdd6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/th/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/tk/LC_MESSAGES/atk10.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gdk-pixbuf.mo
similarity index 97%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gdk-pixbuf.mo
index dd65791f..fbf6a7c6 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..0a04d3db
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..9368e217
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tk/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/tl/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/tl/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c30e95af
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tl/LC_MESSAGES/glib20.mo differ
diff --git a/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..ab9db368
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..da87b969
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-runtime.mo
similarity index 76%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-runtime.mo
index 54b91f35..413acd56 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..447e0d66
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..13739c97
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..6da3ad46
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..632e9b22
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/tr/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/tr/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/tr/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/tt/LC_MESSAGES/atk10.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo
similarity index 99%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo
index a468082c..a0c2fe74 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c6190482
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..56c6e48b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..84cf9879
Binary files /dev/null and b/gtk-nsis-pack/share/locale/tt/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..9d9f7cc2
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..5926fab2
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..119f43d6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..c0bd0ef4
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..2c05f781
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ug/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..4887ddf6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/uk/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..9ea7c97f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-runtime.mo
similarity index 62%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-runtime.mo
index c7990308..50da19bd 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..7ca89195
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..371b7930
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..f4827a94
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..e8387cd6
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/uk/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/uk/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/uk/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..92a3ec7a
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..4835e40f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/ur/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..f9fded67
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..6bf4c51f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..9d6e4c0f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uz/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gdk-pixbuf.mo
similarity index 50%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gdk-pixbuf.mo
rename to gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gdk-pixbuf.mo
index daa2084b..081e24c1 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gdk-pixbuf.mo and b/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..6234031d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..44c36987
Binary files /dev/null and b/gtk-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..0e9d11ca
Binary files /dev/null and b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/vi/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..d89e351d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-runtime.mo
similarity index 50%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-runtime.mo
index 54c1c797..98f1cd84 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..26dbe7b7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c8ed3a29
Binary files /dev/null and b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..c4e84529
Binary files /dev/null and b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..903bcbcc
Binary files /dev/null and b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/vi/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/vi/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/vi/LC_MESSAGES/wget.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/wa/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..ee85a2eb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c6053d7f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..cb8bc528
Binary files /dev/null and b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..b5d3e0f8
Binary files /dev/null and b/gtk-nsis-pack/share/locale/wa/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/xh/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..2fe7a04b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..6d378aed
Binary files /dev/null and b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..e1c9476b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..ed98ebd3
Binary files /dev/null and b/gtk-nsis-pack/share/locale/xh/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/atk10.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/atk10.mo
rename to gtk-nsis-pack/share/locale/yi/LC_MESSAGES/atk10.mo
diff --git a/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..bbc7b4cb
Binary files /dev/null and b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..b486ae8d
Binary files /dev/null and b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20.mo
diff --git a/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..ce5ebf77
Binary files /dev/null and b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..9627f07e
Binary files /dev/null and b/gtk-nsis-pack/share/locale/yi/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..23163d61
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..85f21860
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo
similarity index 74%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo
index 7ad6d7b3..e35e5978 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..abae4486
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..5b9b0e3b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20.mo
similarity index 56%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20.mo
index 7e0ce557..a09a89ab 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..ff81eb4f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..2f28bba7
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/make.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/make.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/make.mo
rename to gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/make.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/zh_CN/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..a460820b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..2a970014
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo
similarity index 76%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo
index 2eea2f88..800d4111 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..048ceb4c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20.mo
similarity index 99%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20.mo
index 9c04d293..8b85f15d 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..0b1961fc
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..c5470f5f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..7c56b834
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/atk10.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/dos2unix.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/dos2unix.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/dos2unix.mo
rename to gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/dos2unix.mo
diff --git a/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gdk-pixbuf.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gdk-pixbuf.mo
new file mode 100644
index 00000000..3370c92c
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gdk-pixbuf.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo
similarity index 61%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo
rename to gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo
index 744a6882..a0aaf6c8 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo and b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo
new file mode 100644
index 00000000..e3272dab
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-tools.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/glib20.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/glib20.mo
new file mode 100644
index 00000000..c7dfac3b
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/glib20.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo
rename to gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20.mo
similarity index 99%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20.mo
rename to gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20.mo
index a83b1af5..766ed135 100644
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20.mo and b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo
new file mode 100644
index 00000000..c7f21728
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk30-properties.mo differ
diff --git a/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk30.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk30.mo
new file mode 100644
index 00000000..65574e70
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk30.mo differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/wget.mo b/gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/wget.mo
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/wget.mo
rename to gtk-nsis-pack/share/locale/zh_TW/LC_MESSAGES/wget.mo
diff --git a/gtk-nsis-pack/share/locale/zu/LC_MESSAGES/atk10.mo b/gtk-nsis-pack/share/locale/zu/LC_MESSAGES/atk10.mo
new file mode 100644
index 00000000..9f49852f
Binary files /dev/null and b/gtk-nsis-pack/share/locale/zu/LC_MESSAGES/atk10.mo differ
diff --git a/gtk-nsis-pack/share/themes/Default/gtk-2.0-key/gtkrc b/gtk-nsis-pack/share/themes/Default/gtk-2.0-key/gtkrc
new file mode 100644
index 00000000..f677f7f4
--- /dev/null
+++ b/gtk-nsis-pack/share/themes/Default/gtk-2.0-key/gtkrc
@@ -0,0 +1,3 @@
+#
+# Default keybinding set. Empty because it is implemented inline in the code.
+#
diff --git a/gtk-nsis-pack/share/themes/Default/gtk-3.0/gtk-keys.css b/gtk-nsis-pack/share/themes/Default/gtk-3.0/gtk-keys.css
new file mode 100644
index 00000000..59828046
--- /dev/null
+++ b/gtk-nsis-pack/share/themes/Default/gtk-3.0/gtk-keys.css
@@ -0,0 +1,3 @@
+/*
+ * Default keybinding set. Empty because it is implemented inline in the code.
+ */
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Emacs/gtk-2.0-key/gtkrc b/gtk-nsis-pack/share/themes/Emacs/gtk-2.0-key/gtkrc
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Emacs/gtk-2.0-key/gtkrc
rename to gtk-nsis-pack/share/themes/Emacs/gtk-2.0-key/gtkrc
diff --git a/gtk-nsis-pack/share/themes/Emacs/gtk-3.0/gtk-keys.css b/gtk-nsis-pack/share/themes/Emacs/gtk-3.0/gtk-keys.css
new file mode 100644
index 00000000..3c1cd875
--- /dev/null
+++ b/gtk-nsis-pack/share/themes/Emacs/gtk-3.0/gtk-keys.css
@@ -0,0 +1,121 @@
+/*
+ * GTK - The GIMP Toolkit
+ * Copyright (C) 2002 Owen Taylor
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see .
+ */
+
+/*
+ * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
+ * file for a list of people on the GTK+ Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
+/*
+ * A keybinding set implementing Emacs-like keybindings
+ */
+
+/*
+ * Bindings for GtkTextView and GtkEntry
+ */
+@binding-set gtk-emacs-text-entry
+{
+ bind "b" { "move-cursor" (logical-positions, -1, 0) };
+ bind "b" { "move-cursor" (logical-positions, -1, 1) };
+ bind "f" { "move-cursor" (logical-positions, 1, 0) };
+ bind "f" { "move-cursor" (logical-positions, 1, 1) };
+
+ bind "b" { "move-cursor" (words, -1, 0) };
+ bind "b" { "move-cursor" (words, -1, 1) };
+ bind "f" { "move-cursor" (words, 1, 0) };
+ bind "f" { "move-cursor" (words, 1, 1) };
+
+ bind "a" { "move-cursor" (paragraph-ends, -1, 0) };
+ bind "a" { "move-cursor" (paragraph-ends, -1, 1) };
+ bind "e" { "move-cursor" (paragraph-ends, 1, 0) };
+ bind "e" { "move-cursor" (paragraph-ends, 1, 1) };
+
+ bind "w" { "cut-clipboard" () };
+ bind "y" { "paste-clipboard" () };
+
+ bind "d" { "delete-from-cursor" (chars, 1) };
+ bind "d" { "delete-from-cursor" (word-ends, 1) };
+ bind "k" { "delete-from-cursor" (paragraph-ends, 1) };
+ bind "backslash" { "delete-from-cursor" (whitespace, 1) };
+
+ bind "space" { "delete-from-cursor" (whitespace, 1)
+ "insert-at-cursor" (" ") };
+ bind "KP_Space" { "delete-from-cursor" (whitespace, 1)
+ "insert-at-cursor" (" ") };
+ /*
+ * Some non-Emacs keybindings people are attached to
+ */
+ bind "u" { "move-cursor" (paragraph-ends, -1, 0)
+ "delete-from-cursor" (paragraph-ends, 1) };
+
+ bind "h" { "delete-from-cursor" (chars, -1) };
+ bind "w" { "delete-from-cursor" (word-ends, -1) };
+}
+
+/*
+ * Bindings for GtkTextView
+ */
+@binding-set gtk-emacs-text-view
+{
+ bind "p" { "move-cursor" (display-lines, -1, 0) };
+ bind "p" { "move-cursor" (display-lines, -1, 1) };
+ bind "n" { "move-cursor" (display-lines, 1, 0) };
+ bind "n" { "move-cursor" (display-lines, 1, 1) };
+
+ bind "space" { "set-anchor" () };
+ bind "KP_Space" { "set-anchor" () };
+}
+
+/*
+ * Bindings for GtkTreeView
+ */
+@binding-set gtk-emacs-tree-view
+{
+ bind "s" { "start-interactive-search" () };
+ bind "f" { "move-cursor" (logical-positions, 1) };
+ bind "b" { "move-cursor" (logical-positions, -1) };
+}
+
+/*
+ * Bindings for menus
+ */
+@binding-set gtk-emacs-menu
+{
+ bind "n" { "move-current" (next) };
+ bind "p" { "move-current" (prev) };
+ bind "f" { "move-current" (child) };
+ bind "b" { "move-current" (parent) };
+}
+
+GtkEntry {
+ gtk-key-bindings: gtk-emacs-text-entry;
+}
+
+GtkTextView {
+ gtk-key-bindings: gtk-emacs-text-entry, gtk-emacs-text-view;
+}
+
+GtkTreeView {
+ gtk-key-bindings: gtk-emacs-tree-view;
+}
+
+GtkMenuShell {
+ gtk-key-bindings: gtk-emacs-menu;
+}
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/MS-Windows/gtk-2.0/gtkrc b/gtk-nsis-pack/share/themes/MS-Windows/gtk-2.0/gtkrc
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/MS-Windows/gtk-2.0/gtkrc
rename to gtk-nsis-pack/share/themes/MS-Windows/gtk-2.0/gtkrc
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Raleigh/gtk-2.0/gtkrc b/gtk-nsis-pack/share/themes/Raleigh/gtk-2.0/gtkrc
similarity index 100%
rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Raleigh/gtk-2.0/gtkrc
rename to gtk-nsis-pack/share/themes/Raleigh/gtk-2.0/gtkrc
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-cache.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-cache.exe
deleted file mode 100644
index 0ff5b3ca..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-cache.exe and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-cat.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-cat.exe
deleted file mode 100644
index 39f2635a..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-cat.exe and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-list.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-list.exe
deleted file mode 100644
index 4e4086ee..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-list.exe and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gdk-pixbuf-query-loaders.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gdk-pixbuf-query-loaders.exe
deleted file mode 100644
index 49203993..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gdk-pixbuf-query-loaders.exe and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gspawn-win64-helper-console.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gspawn-win64-helper-console.exe
deleted file mode 100644
index de124c91..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gspawn-win64-helper-console.exe and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gspawn-win64-helper.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gspawn-win64-helper.exe
deleted file mode 100644
index 313e59bf..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gspawn-win64-helper.exe and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-query-immodules-2.0.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-query-immodules-2.0.exe
deleted file mode 100644
index 41217fe2..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-query-immodules-2.0.exe and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-update-icon-cache.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-update-icon-cache.exe
deleted file mode 100644
index 8c747f95..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-update-icon-cache.exe and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libasprintf-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libasprintf-0.dll
deleted file mode 100644
index d3adbe19..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libasprintf-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libatk-1.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libatk-1.0-0.dll
deleted file mode 100644
index f1608761..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libatk-1.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-2.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-2.dll
deleted file mode 100644
index c1110a5e..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-2.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-gobject-2.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-gobject-2.dll
deleted file mode 100644
index bcc0d7e3..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-gobject-2.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-script-interpreter-2.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-script-interpreter-2.dll
deleted file mode 100644
index 858e3847..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-script-interpreter-2.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libexpat-1.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libexpat-1.dll
deleted file mode 100644
index 0ed318fe..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libexpat-1.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libffi-6.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libffi-6.dll
deleted file mode 100644
index ac139f01..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libffi-6.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libfontconfig-1.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libfontconfig-1.dll
deleted file mode 100644
index 29778f0a..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libfontconfig-1.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libfreetype-6.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libfreetype-6.dll
deleted file mode 100644
index d909ea88..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libfreetype-6.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgailutil-18.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgailutil-18.dll
deleted file mode 100644
index 3f08b6fb..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgailutil-18.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgdk-win32-2.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgdk-win32-2.0-0.dll
deleted file mode 100644
index 60e6c68f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgdk-win32-2.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libglib-2.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libglib-2.0-0.dll
deleted file mode 100644
index 9387d684..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libglib-2.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgmodule-2.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgmodule-2.0-0.dll
deleted file mode 100644
index f7a1e4e1..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgmodule-2.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgobject-2.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgobject-2.0-0.dll
deleted file mode 100644
index 6df11bdd..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgobject-2.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgthread-2.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgthread-2.0-0.dll
deleted file mode 100644
index 8ac57061..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgthread-2.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libintl-8.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libintl-8.dll
deleted file mode 100644
index fb99030b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libintl-8.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpango-1.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpango-1.0-0.dll
deleted file mode 100644
index 3b78ec19..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpango-1.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangocairo-1.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangocairo-1.0-0.dll
deleted file mode 100644
index 45ee6bea..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangocairo-1.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangoft2-1.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangoft2-1.0-0.dll
deleted file mode 100644
index ccd00ba9..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangoft2-1.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangowin32-1.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangowin32-1.0-0.dll
deleted file mode 100644
index 52b3c871..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangowin32-1.0-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpixman-1-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpixman-1-0.dll
deleted file mode 100644
index 96dd971d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpixman-1-0.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpng16-16.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpng16-16.dll
deleted file mode 100644
index 2d287c8b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpng16-16.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libxml2-2.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libxml2-2.dll
deleted file mode 100644
index 0146f64f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libxml2-2.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/pango-querymodules.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/pango-querymodules.exe
deleted file mode 100644
index b6793d95..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/pango-querymodules.exe and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/2.10.0/engines/libpixmap.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/2.10.0/engines/libpixmap.dll
deleted file mode 100644
index e474718f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/2.10.0/engines/libpixmap.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/2.10.0/engines/libwimp.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/2.10.0/engines/libwimp.dll
deleted file mode 100644
index a33d1658..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/2.10.0/engines/libwimp.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/modules/libgail.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/modules/libgail.dll
deleted file mode 100644
index 4456c436..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/modules/libgail.dll and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 22a883d4..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 5aa1059c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 69444603..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index b676ee8d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 9769ec79..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 421bc935..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 580baf46..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 67634791..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 04c6fbed..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 4c7b009e..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 3e7c4a26..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 386106ca..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/glib20.mo
deleted file mode 100644
index bea2ad9a..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 9c17027c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index e227653f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/glib20.mo
deleted file mode 100644
index cd565ea7..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index af583c0a..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 055c117f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/glib20.mo
deleted file mode 100644
index ba31b120..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 73ff7c7b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 2f25c599..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 0b7becb6..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index 159c18c9..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index 50af841b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 20924869..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/glib20.mo
deleted file mode 100644
index e8c14fa8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/atk10.mo
deleted file mode 100644
index ee425cdf..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 5333208c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/glib20.mo
deleted file mode 100644
index b1e25863..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 623cc531..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 4081e807..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/atk10.mo
deleted file mode 100644
index f7b468aa..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index ddc58970..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 536b962e..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index 8bcbf9a8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index 34afefbb..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 137479c5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index a9124105..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 34bcbada..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index 56af4387..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index d98cae35..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index fcbb8f29..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/atk10.mo
deleted file mode 100644
index b410749d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index bbfc7c71..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-runtime.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-runtime.mo
deleted file mode 100644
index 8c23854f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-runtime.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 2a9ceb57..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 30e2aba4..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 2c9fe670..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index afbae3d0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gettext-runtime.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gettext-runtime.mo
deleted file mode 100644
index dab37f26..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gettext-runtime.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/glib20.mo
deleted file mode 100644
index e85970a4..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 0ce43d68..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 42967277..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 16231205..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index 52ec1270..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 11eec744..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/glib20.mo
deleted file mode 100644
index c5a413cf..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/atk10.mo
deleted file mode 100644
index ab280d77..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index d7b3e6ed..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/glib20.mo
deleted file mode 100644
index a54976dc..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index c434226e..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@shaw/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@shaw/LC_MESSAGES/glib20.mo
deleted file mode 100644
index cd0403f7..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@shaw/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 1fce0793..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/glib20.mo
deleted file mode 100644
index acef68db..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 65409c87..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index a6ec3240..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 20fba103..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index 780cdaf3..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 7b38a0fb..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 7cc143ef..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/glib20.mo
deleted file mode 100644
index eac5cc34..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 28adf2f0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 8151f6e5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gettext-runtime.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gettext-runtime.mo
deleted file mode 100644
index f5521846..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gettext-runtime.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 9b8501c7..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 6ce4832c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 02fa0ee7..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/glib20.mo
deleted file mode 100644
index c583336c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index 78726df8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/atk10.mo
deleted file mode 100644
index eee229eb..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 702db05d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/glib20.mo
deleted file mode 100644
index edf27b74..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 77597fff..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 41dcec93..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/glib20.mo
deleted file mode 100644
index c08b9ce4..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 30790df0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index b5566437..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 2a4fc816..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 45efdab5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index c1b7a7d9..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 9d8ab5fc..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 65574c5e..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 7117ee1e..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 98613262..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index b4b8c88a..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-runtime.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-runtime.mo
deleted file mode 100644
index d63c0a95..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-runtime.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 067609b5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 356fe622..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 67258a0d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/glib20.mo
deleted file mode 100644
index ad6afa63..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 56b0be20..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 99ca4453..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/glib20.mo
deleted file mode 100644
index a6145872..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index 2e49b085..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/atk10.mo
deleted file mode 100644
index cb9ef436..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index d7b4efff..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 95db6f84..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index f1666e4b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/glib20.mo
deleted file mode 100644
index cd5584b5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/atk10.mo
deleted file mode 100644
index e56f5660..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index cc2bc9bd..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 174942bd..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index ae9f91ea..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index ce5a831d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index bb2ef290..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/glib20.mo
deleted file mode 100644
index f3afb010..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index f49db78d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/atk10.mo
deleted file mode 100644
index c3eadac7..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 720ee24b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 2a17ca5d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 7d55c95f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/glib20.mo
deleted file mode 100644
index afb97a8d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 16d4113d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 5f5077c6..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 57e3abbe..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index 48fd3fd3..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/atk10.mo
deleted file mode 100644
index d580d759..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index a1f35a47..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 8cedc082..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index 7f8a96f6..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index c87bcb81..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/glib20.mo
deleted file mode 100644
index ab3f4fb7..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/glib20.mo
deleted file mode 100644
index c2dd3280..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/atk10.mo
deleted file mode 100644
index a155c2f1..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index c5194474..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 0edf20c0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/atk10.mo
deleted file mode 100644
index ab10bba9..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index c7e6b342..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 837d2176..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 9a88bcd7..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/glib20.mo
deleted file mode 100644
index f9abe48f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index e9b6e70a..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 97523f08..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index e8ebc6fd..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 7c6e61f1..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index d28eb173..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index 8b6d9bb4..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 156673a8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 8545b648..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/glib20.mo
deleted file mode 100644
index a4651010..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 66f101aa..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/glib20.mo
deleted file mode 100644
index c5e9ba3d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mg/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mg/LC_MESSAGES/glib20.mo
deleted file mode 100644
index ee657785..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mg/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 9313f10b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 022d1b18..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 88393f12..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/atk10.mo
deleted file mode 100644
index ecb45a1b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index f5aabffd..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/glib20.mo
deleted file mode 100644
index e257e8d9..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index f64ac6da..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 3b46d7c0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 9d2543d8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 7b7c7f79..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 868538e0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 5ead96e7..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index db90520e..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 4c199d02..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 2df52e4b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 35401b0b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 746ad4bf..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 76d9c072..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 33d76fa0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index aa909752..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/glib20.mo
deleted file mode 100644
index ba096691..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 1ae4d255..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index d310cdae..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 9413acf1..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 54528b7f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 94c1a706..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 946aeda7..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 05317fc1..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/glib20.mo
deleted file mode 100644
index bb528184..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 9078ea97..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index da5382a2..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 7fbd9de8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 4391243e..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index fee587f5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/glib20.mo
deleted file mode 100644
index cd15e26c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index ace8048a..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index ce4f53ed..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/glib20.mo
deleted file mode 100644
index c2a347bf..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 793ca771..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 5e847f3e..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/glib20.mo
deleted file mode 100644
index cb92d132..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/atk10.mo
deleted file mode 100644
index f5ca83e8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index a306249c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo
deleted file mode 100644
index 2c284c04..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/glib20.mo
deleted file mode 100644
index dd6aff88..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index de913f95..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index 8c778f6f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/atk10.mo
deleted file mode 100644
index d530842c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index e5339cf0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-runtime.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-runtime.mo
deleted file mode 100644
index e54088cc..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-runtime.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 492a79bc..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20-properties.mo
deleted file mode 100644
index f867b87f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20-properties.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index 80cf8084..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 06628013..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 14c9ce77..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/atk10.mo
deleted file mode 100644
index f0a418f5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 580a50d8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 0d84520f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/atk10.mo
deleted file mode 100644
index d3345d67..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 82543919..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 9a58988d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 5f2f1dc5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 6ea2691d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 5cbd919c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 802b2cfb..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-runtime.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-runtime.mo
deleted file mode 100644
index 06fab1a1..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-runtime.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 9f752d96..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index ac885c75..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/glib20.mo
deleted file mode 100644
index c1003d4b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 51df952c..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 5b6e1010..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 5bac2d07..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 9c8cdeb9..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index ffd46406..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/glib20.mo
deleted file mode 100644
index fce944a2..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/atk10.mo
deleted file mode 100644
index c8dd1b1a..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 1a6d29b9..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 4be829b5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 8cecbfbc..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 179dedfd..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/glib20.mo
deleted file mode 100644
index bb80ba18..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index d81d8d1a..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 5813fe86..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index def34003..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/glib20.mo
deleted file mode 100644
index b50c0cd0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gtk20.mo
deleted file mode 100644
index a963a8d1..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gtk20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tl/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tl/LC_MESSAGES/glib20.mo
deleted file mode 100644
index fb29fb42..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tl/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/atk10.mo
deleted file mode 100644
index d7280ee8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 1f2355fa..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 4fb46299..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/glib20.mo
deleted file mode 100644
index e3b1031d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/atk10.mo
deleted file mode 100644
index e08607cd..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index e4a019ce..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/glib20.mo
deleted file mode 100644
index 6af252ef..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 7baf99ff..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index bd4edde0..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/glib20.mo
deleted file mode 100644
index a84e20f2..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 517f0c9d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/atk10.mo
deleted file mode 100644
index 61f4ff4f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 942e56a1..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/glib20.mo
deleted file mode 100644
index e3a8f889..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index c853300d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/glib20.mo
deleted file mode 100644
index fb35040d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index e239c6cf..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/glib20.mo
deleted file mode 100644
index d0f5ba9f..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 9326c076..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/glib20.mo
deleted file mode 100644
index bfcfc56d..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/atk10.mo
deleted file mode 100644
index a6e36135..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 54f54d86..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/glib20.mo
deleted file mode 100644
index b21d1df8..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/atk10.mo
deleted file mode 100644
index f36ffa66..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index 6a7ace14..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/glib20.mo
deleted file mode 100644
index fda02783..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/glib20.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/atk10.mo
deleted file mode 100644
index d7e4247b..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/atk10.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gdk-pixbuf.mo
deleted file mode 100644
index d9e2ccc5..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gdk-pixbuf.mo and /dev/null differ
diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/glib20.mo
deleted file mode 100644
index e10ca181..00000000
Binary files a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/glib20.mo and /dev/null differ