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 new file mode 100644 index 00000000..eeb9ade1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-cache.exe 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 new file mode 100644 index 00000000..52d0f3c4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-cat.exe 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 new file mode 100644 index 00000000..bc87da6a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/fc-list.exe 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 new file mode 100644 index 00000000..efe3f46a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gdk-pixbuf-query-loaders.exe 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 new file mode 100644 index 00000000..ddb2c362 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gspawn-win64-helper-console.exe 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 new file mode 100644 index 00000000..5752cecd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gspawn-win64-helper.exe differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-builder-convert b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-builder-convert new file mode 100644 index 00000000..a641b338 --- /dev/null +++ b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-builder-convert @@ -0,0 +1,772 @@ +#!/usr/bin/env python +# +# Copyright (C) 2006-2008 Async Open Source +# Henrique Romano +# Johan Dahlin +# +# 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 +# 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 General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# TODO: +# Toolbars + +"""Usage: gtk-builder-convert [OPTION] [INPUT] [OUTPUT] +Converts Glade files into XML files which can be loaded with GtkBuilder. +The [INPUT] file is + + -w, --skip-windows Convert everything but GtkWindow subclasses. + -r, --root Convert only widget named root and its children + -h, --help display this help and exit + +When OUTPUT is -, write to standard output. + +Examples: + gtk-builder-convert preference.glade preferences.ui + +Report bugs to http://bugzilla.gnome.org/.""" + +import getopt +import os +import sys + +from xml.dom import minidom, Node + +DIALOGS = ['GtkDialog', + 'GtkFileChooserDialog', + 'GtkMessageDialog'] +WINDOWS = ['GtkWindow'] + DIALOGS + +# The subprocess is only available in Python 2.4+ +try: + import subprocess + subprocess # pyflakes +except ImportError: + subprocess = None + +def get_child_nodes(node): + assert node.tagName == 'object' + nodes = [] + for child in node.childNodes: + if child.nodeType != Node.ELEMENT_NODE: + continue + if child.tagName != 'child': + continue + nodes.append(child) + return nodes + +def get_properties(node): + assert node.tagName == 'object' + properties = {} + for child in node.childNodes: + if child.nodeType != Node.ELEMENT_NODE: + continue + if child.tagName != 'property': + continue + value = child.childNodes[0].data + properties[child.getAttribute('name')] = value + return properties + +def get_property(node, property_name): + assert node.tagName == 'object' + properties = get_properties(node) + return properties.get(property_name) + +def get_property_node(node, property_name): + assert node.tagName == 'object' + properties = {} + for child in node.childNodes: + if child.nodeType != Node.ELEMENT_NODE: + continue + if child.tagName != 'property': + continue + if child.getAttribute('name') == property_name: + return child + +def get_signal_nodes(node): + assert node.tagName == 'object' + signals = [] + for child in node.childNodes: + if child.nodeType != Node.ELEMENT_NODE: + continue + if child.tagName == 'signal': + signals.append(child) + return signals + +def get_property_nodes(node): + assert node.tagName == 'object' + properties = [] + for child in node.childNodes: + if child.nodeType != Node.ELEMENT_NODE: + continue + # FIXME: handle comments + if child.tagName == 'property': + properties.append(child) + return properties + +def get_accelerator_nodes(node): + assert node.tagName == 'object' + accelerators = [] + for child in node.childNodes: + if child.nodeType != Node.ELEMENT_NODE: + continue + if child.tagName == 'accelerator': + accelerators.append(child) + return accelerators + +def get_object_node(child_node): + assert child_node.tagName == 'child', child_node + nodes = [] + for node in child_node.childNodes: + if node.nodeType != Node.ELEMENT_NODE: + continue + if node.tagName == 'object': + nodes.append(node) + assert len(nodes) == 1, nodes + return nodes[0] + +def copy_properties(node, props, prop_dict): + assert node.tagName == 'object' + for prop_name in props: + child = get_property_node(node, prop_name) + if child is not None: + prop_dict[prop_name] = child + + return node + +class GtkBuilderConverter(object): + + def __init__(self, skip_windows, root): + self.skip_windows = skip_windows + self.root = root + self.root_objects = [] + self.objects = {} + + # + # Public API + # + + def parse_file(self, file): + self._dom = minidom.parse(file) + self._parse() + + def parse_buffer(self, buffer): + self._dom = minidom.parseString(buffer) + self._parse() + + def to_xml(self): + xml = self._dom.toprettyxml("", "") + return xml.encode('utf-8') + + # + # Private + # + + def _get_object(self, name): + return self.objects.get(name) + + def _get_objects_by_attr(self, attribute, value): + return [w for w in self._dom.getElementsByTagName("object") + if w.getAttribute(attribute) == value] + + def _create_object(self, obj_class, obj_id, template=None, properties=None): + """ + Creates a new tag. + Optionally a name template can be provided which will be used + to avoid naming collisions. + The properties dictionary can either contain string values or Node + values. If a node is provided the name of the node will be overridden + by the dictionary key. + + @param obj_class: class of the object (class tag) + @param obj_id: identifier of the object (id tag) + @param template: name template to use, for example 'button' + @param properties: dictionary of properties + @type properties: string or Node. + @returns: Newly created node of the object + """ + if template is not None: + count = 1 + while True: + obj_id = template + str(count) + widget = self._get_object(obj_id) + if widget is None: + break + + count += 1 + + obj = self._dom.createElement('object') + obj.setAttribute('class', obj_class) + obj.setAttribute('id', obj_id) + if properties: + for name, value in properties.items(): + if isinstance(value, Node): + # Reuse the node, so translatable and context still will be + # set when converting nodes. See also #509153 + prop = value + else: + prop = self._dom.createElement('property') + prop.appendChild(self._dom.createTextNode(value)) + + prop.setAttribute('name', str(name)) + obj.appendChild(prop) + self.objects[obj_id] = obj + return obj + + def _create_root_object(self, obj_class, template, properties=None): + obj = self._create_object(obj_class, None, template, properties) + self.root_objects.append(obj) + return obj + + def _parse(self): + glade_iface = self._dom.getElementsByTagName("glade-interface") + assert glade_iface, ("Badly formed XML, there is " + "no tag.") + # Rename glade-interface to interface + glade_iface[0].tagName = 'interface' + self._interface = glade_iface[0] + + # Remove glade-interface doc type + for node in self._dom.childNodes: + if node.nodeType == Node.DOCUMENT_TYPE_NODE: + if node.name == 'glade-interface': + self._dom.removeChild(node) + + # Strip unsupported tags + for tag in ['requires', 'requires-version']: + for child in self._dom.getElementsByTagName(tag): + child.parentNode.removeChild(child) + + if self.root: + self._strip_root(self.root) + + # Rename widget to object + objects = self._dom.getElementsByTagName("widget") + for node in objects: + node.tagName = "object" + + for node in objects: + self._convert(node.getAttribute("class"), node) + if self._get_object(node.getAttribute('id')) is not None: + print "WARNING: duplicate id \"" + node.getAttribute('id') + "\"" + self.objects[node.getAttribute('id')] = node + + # Convert Gazpachos UI tag + for node in self._dom.getElementsByTagName("ui"): + self._convert_ui(node) + + # Convert accessibility tag + for node in self._dom.getElementsByTagName("accessibility"): + self._convert_accessibility(node) + + # Output the newly created root objects and sort them + # by attribute id + # FIXME: Use sorted(self.root_objects, + # key=lambda n: n.getAttribute('id'), + # reverse=True): + # when we can depend on python 2.4 or higher + root_objects = self.root_objects[:] + root_objects.sort(lambda a, b: cmp(b.getAttribute('id'), + a.getAttribute('id'))) + for obj in root_objects: + self._interface.childNodes.insert(0, obj) + + def _convert(self, klass, node): + if klass == 'GtkNotebook': + self._packing_prop_to_child_attr(node, "type", "tab") + elif klass in ['GtkExpander', 'GtkFrame']: + self._packing_prop_to_child_attr( + node, "type", "label_item", "label") + elif klass == "GtkMenuBar": + self._convert_menu(node) + elif klass == "GtkMenu": + # Only convert toplevel popups + if node.parentNode == self._interface: + self._convert_menu(node, popup=True) + elif klass in WINDOWS and self.skip_windows: + self._remove_window(node) + self._default_widget_converter(node) + + def _default_widget_converter(self, node): + klass = node.getAttribute("class") + for prop in get_property_nodes(node): + prop_name = prop.getAttribute("name") + if prop_name == "sizegroup": + self._convert_sizegroup(node, prop) + elif prop_name == "tooltip" and klass != "GtkAction": + prop.setAttribute("name", "tooltip-text") + elif prop_name in ["response_id", 'response-id']: + # It does not make sense to convert responses when + # we're not going to output dialogs + if self.skip_windows: + continue + object_id = node.getAttribute('id') + response = prop.childNodes[0].data + self._convert_dialog_response(node, object_id, response) + prop.parentNode.removeChild(prop) + elif prop_name == "adjustment": + self._convert_adjustment(prop) + elif prop_name == "items" and klass in ['GtkComboBox', + 'GtkComboBoxEntry']: + self._convert_combobox_items(node, prop) + elif prop_name == "text" and klass == 'GtkTextView': + self._convert_textview_text(prop) + + def _remove_window(self, node): + object_node = get_object_node(get_child_nodes(node)[0]) + parent = node.parentNode + parent.removeChild(node) + parent.appendChild(object_node) + + def _convert_menu(self, node, popup=False): + if node.hasAttribute('constructor'): + return + + uimgr = self._create_root_object('GtkUIManager', + template='uimanager') + + if popup: + name = 'popup' + else: + name = 'menubar' + + menu = self._dom.createElement(name) + menu.setAttribute('name', node.getAttribute('id')) + node.setAttribute('constructor', uimgr.getAttribute('id')) + + for child in get_child_nodes(node): + obj_node = get_object_node(child) + item = self._convert_menuitem(uimgr, obj_node) + menu.appendChild(item) + child.removeChild(obj_node) + child.parentNode.removeChild(child) + + ui = self._dom.createElement('ui') + uimgr.appendChild(ui) + + ui.appendChild(menu) + + def _convert_menuitem(self, uimgr, obj_node): + children = get_child_nodes(obj_node) + name = 'menuitem' + if children: + child_node = children[0] + menu_node = get_object_node(child_node) + # Can be GtkImage, which will take care of later. + if menu_node.getAttribute('class') == 'GtkMenu': + name = 'menu' + + object_class = obj_node.getAttribute('class') + if object_class in ['GtkMenuItem', + 'GtkImageMenuItem', + 'GtkCheckMenuItem', + 'GtkRadioMenuItem']: + menu = self._dom.createElement(name) + elif object_class == 'GtkSeparatorMenuItem': + return self._dom.createElement('separator') + else: + raise NotImplementedError(object_class) + + menu.setAttribute('action', obj_node.getAttribute('id')) + self._add_action_from_menuitem(uimgr, obj_node) + if children: + for child in get_child_nodes(menu_node): + obj_node = get_object_node(child) + item = self._convert_menuitem(uimgr, obj_node) + menu.appendChild(item) + child.removeChild(obj_node) + child.parentNode.removeChild(child) + return menu + + def _menuitem_to_action(self, node, properties): + copy_properties(node, ['label', 'tooltip'], properties) + + def _togglemenuitem_to_action(self, node, properties): + self._menuitem_to_action(node, properties) + copy_properties(node, ['active'], properties) + + def _radiomenuitem_to_action(self, node, properties): + self._togglemenuitem_to_action(node, properties) + copy_properties(node, ['group'], properties) + + def _add_action_from_menuitem(self, uimgr, node): + properties = {} + object_class = node.getAttribute('class') + object_id = node.getAttribute('id') + if object_class == 'GtkMenuItem': + name = 'GtkAction' + self._menuitem_to_action(node, properties) + elif object_class == 'GtkCheckMenuItem': + name = 'GtkToggleAction' + self._togglemenuitem_to_action(node, properties) + elif object_class == 'GtkRadioMenuItem': + name = 'GtkRadioAction' + self._radiomenuitem_to_action(node, properties) + elif object_class == 'GtkImageMenuItem': + name = 'GtkAction' + children = get_child_nodes(node) + if (children and + children[0].getAttribute('internal-child') == 'image'): + image = get_object_node(children[0]) + child = get_property_node(image, 'stock') + if child is not None: + properties['stock_id'] = child + self._menuitem_to_action(node, properties) + elif object_class == 'GtkSeparatorMenuItem': + return + else: + raise NotImplementedError(object_class) + + if get_property(node, 'use_stock') == 'True': + if 'label' in properties: + properties['stock_id'] = properties['label'] + del properties['label'] + + properties['name'] = object_id + action = self._create_object(name, + object_id, + properties=properties) + for signal in get_signal_nodes(node): + signal_name = signal.getAttribute('name') + if signal_name in ['activate', 'toggled']: + action.appendChild(signal) + else: + print 'Unhandled signal %s::%s' % (node.getAttribute('class'), + signal_name) + + if not uimgr.childNodes: + child = self._dom.createElement('child') + uimgr.appendChild(child) + + group = self._create_object('GtkActionGroup', None, + template='actiongroup') + child.appendChild(group) + else: + group = uimgr.childNodes[0].childNodes[0] + + child = self._dom.createElement('child') + group.appendChild(child) + child.appendChild(action) + + for accelerator in get_accelerator_nodes(node): + signal_name = accelerator.getAttribute('signal') + if signal_name != 'activate': + print 'Unhandled accelerator signal for %s::%s' % ( + node.getAttribute('class'), signal_name) + continue + accelerator.removeAttribute('signal') + child.appendChild(accelerator) + + def _convert_sizegroup(self, node, prop): + # This is Gazpacho only + node.removeChild(prop) + obj = self._get_object(prop.childNodes[0].data) + if obj is None: + widgets = self._get_objects_by_attr("class", "GtkSizeGroup") + if widgets: + obj = widgets[-1] + else: + obj = self._create_root_object('GtkSizeGroup', + template='sizegroup') + + widgets = obj.getElementsByTagName("widgets") + if widgets: + assert len(widgets) == 1 + widgets = widgets[0] + else: + widgets = self._dom.createElement("widgets") + obj.appendChild(widgets) + + member = self._dom.createElement("widget") + member.setAttribute("name", node.getAttribute("id")) + widgets.appendChild(member) + + def _convert_dialog_response(self, node, object_name, response): + # 1) Get parent dialog node + while True: + # If we can't find the parent dialog, give up + if node == self._dom: + return + + if (node.tagName == 'object' and + node.getAttribute('class') in DIALOGS): + dialog = node + break + node = node.parentNode + assert node + + # 2) Get dialogs action-widgets tag, create if not found + for child in dialog.childNodes: + if child.nodeType != Node.ELEMENT_NODE: + continue + if child.tagName == 'action-widgets': + actions = child + break + else: + actions = self._dom.createElement("action-widgets") + dialog.appendChild(actions) + + # 3) Add action-widget tag for the response + action = self._dom.createElement("action-widget") + action.setAttribute("response", response) + action.appendChild(self._dom.createTextNode(object_name)) + actions.appendChild(action) + + def _convert_adjustment(self, prop): + properties = {} + if prop.childNodes: + data = prop.childNodes[0].data + value, lower, upper, step, page, page_size = data.split(' ') + properties.update(value=value, + lower=lower, + upper=upper, + step_increment=step, + page_increment=page, + page_size=page_size) + else: + prop.appendChild(self._dom.createTextNode("")) + + adj = self._create_root_object("GtkAdjustment", + template='adjustment', + properties=properties) + prop.childNodes[0].data = adj.getAttribute('id') + + def _convert_combobox_items(self, node, prop): + parent = prop.parentNode + if not prop.childNodes: + parent.removeChild(prop) + return + + translatable_attr = prop.attributes.get('translatable') + translatable = translatable_attr is not None and translatable_attr.value == 'yes' + has_context_attr = prop.attributes.get('context') + has_context = has_context_attr is not None and has_context_attr.value == 'yes' + comments_attr = prop.attributes.get('comments') + comments = comments_attr is not None and comments_attr.value or None + + value = prop.childNodes[0].data + model = self._create_root_object("GtkListStore", + template="model") + + columns = self._dom.createElement('columns') + model.appendChild(columns) + + column = self._dom.createElement('column') + column.setAttribute('type', 'gchararray') + columns.appendChild(column) + + data = self._dom.createElement('data') + model.appendChild(data) + + if value.endswith('\n'): + value = value[:-1] + for item in value.split('\n'): + row = self._dom.createElement('row') + data.appendChild(row) + + col = self._dom.createElement('col') + col.setAttribute('id', '0') + if translatable: + col.setAttribute('translatable', 'yes') + if has_context: + splitting = item.split('|', 1) + if len(splitting) == 2: + context, item = splitting + col.setAttribute('context', context) + if comments is not None: + col.setAttribute('comments', comments) + col.appendChild(self._dom.createTextNode(item)) + row.appendChild(col) + + model_prop = self._dom.createElement('property') + model_prop.setAttribute('name', 'model') + model_prop.appendChild( + self._dom.createTextNode(model.getAttribute('id'))) + parent.appendChild(model_prop) + + parent.removeChild(prop) + + child = self._dom.createElement('child') + node.appendChild(child) + cell_renderer = self._create_object('GtkCellRendererText', None, + template='renderer') + child.appendChild(cell_renderer) + + attributes = self._dom.createElement('attributes') + child.appendChild(attributes) + + attribute = self._dom.createElement('attribute') + attributes.appendChild(attribute) + attribute.setAttribute('name', 'text') + attribute.appendChild(self._dom.createTextNode('0')) + + def _convert_textview_text(self, prop): + if not prop.childNodes: + prop.parentNode.removeChild(prop) + return + + data = prop.childNodes[0].data + if prop.hasAttribute('translatable'): + prop.removeAttribute('translatable') + tbuffer = self._create_root_object("GtkTextBuffer", + template='textbuffer', + properties=dict(text=data)) + prop.childNodes[0].data = tbuffer.getAttribute('id') + prop.setAttribute('name', 'buffer') + + def _packing_prop_to_child_attr(self, node, prop_name, prop_val, + attr_val=None): + for child in get_child_nodes(node): + packing_props = [p for p in child.childNodes if p.nodeName == "packing"] + if not packing_props: + continue + assert len(packing_props) == 1 + packing_prop = packing_props[0] + properties = packing_prop.getElementsByTagName("property") + for prop in properties: + if (prop.getAttribute("name") != prop_name or + prop.childNodes[0].data != prop_val): + continue + packing_prop.removeChild(prop) + child.setAttribute(prop_name, attr_val or prop_val) + if len(properties) == 1: + child.removeChild(packing_prop) + + def _convert_ui(self, node): + cdata = node.childNodes[0] + data = cdata.toxml().strip() + if not data.startswith(""): + return + data = data[9:-3] + child = minidom.parseString(data).childNodes[0] + nodes = child.childNodes[:] + for child_node in nodes: + node.appendChild(child_node) + node.removeChild(cdata) + if not node.hasAttribute("id"): + return + + # Updating references made by widgets + parent_id = node.parentNode.getAttribute("id") + for widget in self._get_objects_by_attr("constructor", + node.getAttribute("id")): + widget.getAttributeNode("constructor").value = parent_id + node.removeAttribute("id") + + def _convert_accessibility(self, node): + objectNode = node.parentNode + parent_id = objectNode.getAttribute("id") + + properties = {} + for node in node.childNodes: + if node.nodeName == 'atkproperty': + node.tagName = 'property' + properties[node.getAttribute('name')] = node + node.parentNode.removeChild(node) + elif node.nodeName == 'atkrelation': + node.tagName = 'relation' + relation_type = node.getAttribute('type') + relation_type = relation_type.replace('_', '-') + node.setAttribute('type', relation_type) + elif node.nodeName == 'atkaction': + node.tagName = 'action' + + if properties: + child = self._dom.createElement('child') + child.setAttribute("internal-child", "accessible") + + atkobject = self._create_object( + "AtkObject", None, + template='a11y-%s' % (parent_id,), + properties=properties) + child.appendChild(atkobject) + objectNode.appendChild(child) + + def _strip_root(self, root_name): + for widget in self._dom.getElementsByTagName("widget"): + if widget.getAttribute('id') == root_name: + break + else: + raise SystemExit("Could not find an object called `%s'" % ( + root_name)) + + for child in self._interface.childNodes[:]: + if child.nodeType != Node.ELEMENT_NODE: + continue + child.parentNode.removeChild(child) + + self._interface.appendChild(widget) + + +def _indent(output): + if not subprocess: + return output + + for directory in os.environ['PATH'].split(os.pathsep): + filename = os.path.join(directory, 'xmllint') + if os.path.exists(filename): + break + else: + return output + + s = subprocess.Popen([filename, '--format', '-'], + stdin=subprocess.PIPE, + stdout=subprocess.PIPE) + s.stdin.write(output) + s.stdin.close() + return s.stdout.read() + +def usage(): + print __doc__ + +def main(args): + try: + opts, args = getopt.getopt(args[1:], "hwr:", + ["help", "skip-windows", "root="]) + except getopt.GetoptError: + usage() + return 2 + + if len(args) != 2: + usage() + return 2 + + input_filename, output_filename = args + + skip_windows = False + split = False + root = None + for o, a in opts: + if o in ("-h", "--help"): + usage() + sys.exit() + elif o in ("-r", "--root"): + root = a + elif o in ("-w", "--skip-windows"): + skip_windows = True + + conv = GtkBuilderConverter(skip_windows=skip_windows, + root=root) + conv.parse_file(input_filename) + + xml = _indent(conv.to_xml()) + if output_filename == "-": + print xml + else: + open(output_filename, 'w').write(xml) + print "Wrote", output_filename + + return 0 + +if __name__ == "__main__": + sys.exit(main(sys.argv)) diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-demo.exe b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-demo.exe new file mode 100644 index 00000000..338c7794 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-demo.exe 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 new file mode 100644 index 00000000..9bb7f12a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-query-immodules-2.0.exe 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 new file mode 100644 index 00000000..02082fd1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-update-icon-cache.exe.manifest new file mode 100644 index 00000000..61d5f98c --- /dev/null +++ b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/gtk-update-icon-cache.exe.manifest @@ -0,0 +1,17 @@ + + + + + + + + + + + + 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 new file mode 100644 index 00000000..79f539fc Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libasprintf-0.dll 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 new file mode 100644 index 00000000..3f31aad4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libatk-1.0-0.dll 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 new file mode 100644 index 00000000..3ea384ad Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-2.dll 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 new file mode 100644 index 00000000..5ba0a2ac Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-gobject-2.dll 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 new file mode 100644 index 00000000..8c1177c7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libcairo-script-interpreter-2.dll 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 new file mode 100644 index 00000000..0ed318fe Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libexpat-1.dll 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 new file mode 100644 index 00000000..98b13e37 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libfontconfig-1.dll 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 new file mode 100644 index 00000000..4c88d70b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libfreetype-6.dll 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 new file mode 100644 index 00000000..4a020a7f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgailutil-18.dll 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 new file mode 100644 index 00000000..795e6653 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgdk_pixbuf-2.0-0.dll new file mode 100644 index 00000000..8b4226f6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgdk_pixbuf-2.0-0.dll differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgio-2.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgio-2.0-0.dll new file mode 100644 index 00000000..9191f7aa Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgio-2.0-0.dll 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 new file mode 100644 index 00000000..cde4d254 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libglib-2.0-0.dll 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 new file mode 100644 index 00000000..956bebf8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgmodule-2.0-0.dll 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 new file mode 100644 index 00000000..c47b6689 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgobject-2.0-0.dll 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 new file mode 100644 index 00000000..8dfe4630 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgthread-2.0-0.dll differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgtk-win32-2.0-0.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgtk-win32-2.0-0.dll new file mode 100644 index 00000000..a5f2996f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libgtk-win32-2.0-0.dll 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 new file mode 100644 index 00000000..de0ef304 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libintl-8.dll 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 new file mode 100644 index 00000000..2959a512 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpango-1.0-0.dll 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 new file mode 100644 index 00000000..1c4b97e8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangocairo-1.0-0.dll 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 new file mode 100644 index 00000000..8802231e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangoft2-1.0-0.dll 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 new file mode 100644 index 00000000..448d523e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpangowin32-1.0-0.dll differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpng14-14.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpng14-14.dll new file mode 100644 index 00000000..3a02aba0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/libpng14-14.dll 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 new file mode 100644 index 00000000..0f443827 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/pango-querymodules.exe differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/zlib1.dll b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/zlib1.dll new file mode 100644 index 00000000..bb4441cd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/bin/zlib1.dll differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-runtime.ash.nsi b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-runtime.ts.nsi similarity index 82% rename from gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-runtime.ash.nsi rename to gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-runtime.ts.nsi index dbfb9506..fa89098e 100644 --- a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-runtime.ash.nsi +++ b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/gtk-runtime.ts.nsi @@ -11,11 +11,11 @@ ; should be installable side by side with this package. -!define GTK_VERSION "2.24.10" +!define GTK_VERSION "2.22.1" !define GTK_BIN_VERSION "2.10.0" -!define PRODUCT_VERSION "${GTK_VERSION}-2012-10-10-ash" -!define PRODUCT_NAME "GTK2-Runtime" -!define PRODUCT_PUBLISHER "Alexander Shaduri" +!define PRODUCT_VERSION "${GTK_VERSION}-2014-02-01-ts-win64" +!define PRODUCT_NAME "GTK2-Runtime Win64" +!define PRODUCT_PUBLISHER "Tom Schoonjans" !define PRODUCT_WEB_SITE "http://gtk-win.sourceforge.net" !define INSTALLER_OUTPUT_FILE "gtk2-runtime-${PRODUCT_VERSION}.exe" @@ -31,6 +31,8 @@ !include nsi_env_var_update.nsh ; EnvVar* functions !include "FileFunc.nsh" ; GetOptions +!include "x64.nsh" +!include "LogicLib.nsh" ; --------------- General Settings @@ -53,7 +55,7 @@ OutFile "${INSTALLER_OUTPUT_FILE}" ; The Default Installation Directory -InstallDir "$PROGRAMFILES\${PRODUCT_NAME}" +InstallDir "$PROGRAMFILES64\${PRODUCT_NAME}" ;InstallDir "$WINDIR" ; Detect the old installation InstallDirRegKey HKLM "SOFTWARE\${PRODUCT_NAME}" "" @@ -128,7 +130,6 @@ var install_option_setpath ; set PATH: yes (default), no var install_option_dllpath ; bin (default), lib, root var install_option_sideeffects ; yes (default), no. no = don't write to registry, PATH or start menu. var install_option_translations ; install translations: yes, no (default) -var install_option_compatdlls ; install compatibility dlls: yes, no (default) var install_option_removeold ; uninstall the old version first (if present): yes (default), no. var LIB_INSTDIR @@ -217,7 +218,6 @@ InstType "Recommended" ; 1 InstType "Full" ; 2 -var SEC_COMPATDLLS_INSTALLED var SEC_TRANSLATIONS_INSTALLED @@ -231,29 +231,29 @@ SectionIn 1 2 RO ; NOTE: If you add or remove any of these, ; be sure to do the same in the uninstall section. - File freetype6.dll ; freetype is needed for ft2 pango backend - File intl.dll ; gettext, needed by all i18n libs - File libatk-1.0-0.dll ; atk - File libcairo-2.dll ; cairo, needed by gtk - File libcairo-gobject-2.dll ; cairo. Doesn't seem to be required, but since we're distributing cairo... - File libcairo-script-interpreter-2.dll ; cairo. Doesn't seem to be required, but since we're distributing cairo... - File libexpat-1.dll ; fontconfig needs this - File libfontconfig-1.dll ; fontconfig is needed for ft2 pango backend - File libgailutil-18.dll ; from gtk - File libgdk_pixbuf-2.0-0.dll ; from gtk - File libgdk-win32-2.0-0.dll ; from gtk - File libgio-2.0-0.dll ; from glib - File libglib-2.0-0.dll ; glib - File libgmodule-2.0-0.dll ; from glib - File libgobject-2.0-0.dll ; from glib - File libgthread-2.0-0.dll ; from glib - File libgtk-win32-2.0-0.dll ; gtk - File libpango-1.0-0.dll ; pango, needed by gtk - File libpangocairo-1.0-0.dll ; pango, needed by gtk - File libpangoft2-1.0-0.dll ; pango, needed by gtk - File libpangowin32-1.0-0.dll ; pango, needed by gtk - File libpng14-14.dll ; for gdk_pixbuf loader. - File zlib1.dll ; png and many others need this + File bin\libfreetype-6.dll ; freetype is needed for ft2 pango backend + File bin\libintl-8.dll ; gettext, needed by all i18n libs + File bin\libatk-1.0-0.dll ; atk + File bin\libcairo-2.dll ; cairo, needed by gtk + File bin\libcairo-gobject-2.dll ; cairo. Doesn't seem to be required, but since we're distributing cairo... + File bin\libcairo-script-interpreter-2.dll ; cairo. Doesn't seem to be required, but since we're distributing cairo... + File bin\libexpat-1.dll ; fontconfig needs this + File bin\libfontconfig-1.dll ; fontconfig is needed for ft2 pango backend + File bin\libgailutil-18.dll ; from gtk + File bin\libgdk_pixbuf-2.0-0.dll ; from gtk + File bin\libgdk-win32-2.0-0.dll ; from gtk + File bin\libgio-2.0-0.dll ; from glib + File bin\libglib-2.0-0.dll ; glib + File bin\libgmodule-2.0-0.dll ; from glib + File bin\libgobject-2.0-0.dll ; from glib + File bin\libgthread-2.0-0.dll ; from glib + File bin\libgtk-win32-2.0-0.dll ; gtk + File bin\libpango-1.0-0.dll ; pango, needed by gtk + File bin\libpangocairo-1.0-0.dll ; pango, needed by gtk + File bin\libpangoft2-1.0-0.dll ; pango, needed by gtk + File bin\libpangowin32-1.0-0.dll ; pango, needed by gtk + File bin\libpng14-14.dll ; for gdk_pixbuf loader. + File bin\zlib1.dll ; png and many others need this ; We install this into the same place as the DLLs to avoid any PATH manipulation. @@ -261,8 +261,8 @@ SectionIn 1 2 RO File bin\fc-cache.exe File bin\fc-list.exe File bin\gdk-pixbuf-query-loaders.exe ; from gdk_pixbuf - File bin\gspawn-win32-helper.exe - File bin\gspawn-win32-helper-console.exe + File bin\gspawn-win64-helper.exe + File bin\gspawn-win64-helper-console.exe File bin\gtk-query-immodules-2.0.exe File bin\gtk-update-icon-cache.exe File bin\gtk-update-icon-cache.exe.manifest @@ -330,44 +330,6 @@ SectionEnd ; end of gtk section -Section "Compatibility DLLs" SecCompatDlls -SectionIn 2 - SetShellVarContext all ; use all user variables as opposed to current user - StrCpy $SEC_COMPATDLLS_INSTALLED "1" - SetOverwrite On - - SetOutPath "$LIB_INSTDIR" - - ; NOTE: If you add or remove any of these, - ; be sure to do the same in the uninstall section. - - ; Jernej's installer contains these files in addition to the above: - ; File charset.dll ; from iconv package, for tools? - ; File iconv.exe - ; File libpng12.dll - ; File libxml2.dll - ; File xmlparse.dll ; for old? fontconfig - ; File xmltok.dll ; for old? fontconfig - - ; obsolete libs - not needed by gtk or any of its deps - ; File libimage.dll ; from libtiff-deps package, for tools? - ; File librle3.dll ; dep of libjpg tools? - - ; for compatibility only - File jpeg62.dll ; used to be in the runtime - File libjpeg-7.dll ; used to be in the runtime. also libtiff needs this. - File libtiff3.dll ; used to be in the runtime - File libtiff-3.dll ; used to be in the runtime - File libpng12.dll ; used to be in the runtime - File libpng12-0.dll ; used to be in the runtime - ; iconv was needed by intl (?) and glib, but they don't need it anymore - ; (as of glib 2.12.5). It's also used by libxml2, and packages - ; (e.g. pidgin) expect it to be in gtk installer because it used - ; to be with glib. we use mini (but compatible) version here. - File iconv.dll ; compatibility (see above) - -SectionEnd - Section "Translations" SecTranslations @@ -390,8 +352,7 @@ SectionEnd ; Section descriptions !insertmacro MUI_FUNCTION_DESCRIPTION_BEGIN - !insertmacro MUI_DESCRIPTION_TEXT ${SecGTK} "GTK+ Runtime Libraries" - !insertmacro MUI_DESCRIPTION_TEXT ${SecCompatDlls} "DLLs for compatibility with older or incorrectly packaged programs" + !insertmacro MUI_DESCRIPTION_TEXT ${SecGTK} "GTK+ 64-bit Runtime Libraries" !insertmacro MUI_DESCRIPTION_TEXT ${SecTranslations} "Additional translations (some are incomplete)" !insertmacro MUI_FUNCTION_DESCRIPTION_END @@ -401,17 +362,23 @@ SectionEnd ; Executed on installer run Function .onInit SetShellVarContext all ; use all user variables as opposed to current user + ${IfNot} ${RunningX64} + MessageBox MB_OK|MB_ICONEXCLAMATION "This installation requires a 64-bit Windows system" /SD IDOK + Abort + ${EndIf} + + SetRegView 64 + + !insertmacro INSTALLOPTIONS_EXTRACT "nsi_pathpage.ini" - StrCpy $SEC_COMPATDLLS_INSTALLED "0" ; set to 1 in appropriate section StrCpy $SEC_TRANSLATIONS_INSTALLED "0" ; set to 1 in appropriate section ${GetOptions} "$CMDLINE" "/setpath=" $install_option_setpath ${GetOptions} "$CMDLINE" "/dllpath=" $install_option_dllpath ${GetOptions} "$CMDLINE" "/sideeffects=" $install_option_sideeffects ${GetOptions} "$CMDLINE" "/translations=" $install_option_translations - ${GetOptions} "$CMDLINE" "/compatdlls=" $install_option_compatdlls ${GetOptions} "$CMDLINE" "/removeold=" $install_option_removeold ; Debug stuff @@ -430,15 +397,6 @@ Function .onInit init_sideeffects_exit: - ; enable compat dlls if requested through command line - StrCmp $install_option_compatdlls "yes" "" no_compatdlls - push $R0 - SectionGetFlags ${SecCompatDlls} $R0 - IntOp $R0 $R0 | ${SF_SELECTED} - SectionSetFlags ${SecCompatDlls} $R0 - pop $R0 - no_compatdlls: - ; enable translations if requested through command line StrCmp $install_option_translations "yes" "" no_translations push $R0 @@ -506,7 +464,6 @@ Section -post WriteRegStr HKLM "SOFTWARE\${PRODUCT_NAME}" "DllDirName" "$DLL_DIR_NAME" ; lib, bin, or "" WriteRegStr HKLM "SOFTWARE\${PRODUCT_NAME}" "UsingSystemPath" $ADD_TO_PATH - WriteRegStr HKLM "SOFTWARE\${PRODUCT_NAME}" "CompatDllsInstalled" $SEC_COMPATDLLS_INSTALLED WriteRegStr HKLM "SOFTWARE\${PRODUCT_NAME}" "TranslationsInstalled" $SEC_TRANSLATIONS_INSTALLED ; compat with installer from http://gimp-win.sourceforge.net/ @@ -556,7 +513,6 @@ var uninstall_option_sideeffects ; yes (default), no. Use if it was installed w ; These are used only if /sideffects=no : var uninstall_option_dllpath ; uninstall dlls from: bin (default), lib, root. var uninstall_option_translations ; uninstall translations: yes, no (default) -var uninstall_option_compatdlls ; uninstall compatibility dlls: yes, no (default) Function un.onInit @@ -564,7 +520,6 @@ Function un.onInit ${GetOptions} "$CMDLINE" "/sideeffects=" $uninstall_option_sideeffects ${GetOptions} "$CMDLINE" "/dllpath=" $uninstall_option_dllpath ${GetOptions} "$CMDLINE" "/translations=" $uninstall_option_translations - ${GetOptions} "$CMDLINE" "/compatdlls=" $uninstall_option_compatdlls FunctionEnd @@ -594,16 +549,16 @@ Function un.DeleteDlls Delete $LIB_INSTDIR\fc-cache.exe Delete $LIB_INSTDIR\fc-list.exe Delete $LIB_INSTDIR\gdk-pixbuf-query-loaders.exe - Delete $LIB_INSTDIR\gspawn-win32-helper.exe - Delete $LIB_INSTDIR\gspawn-win32-helper-console.exe + Delete $LIB_INSTDIR\gspawn-win64-helper.exe + Delete $LIB_INSTDIR\gspawn-win64-helper-console.exe Delete $LIB_INSTDIR\gtk-query-immodules-2.0.exe Delete $LIB_INSTDIR\gtk-update-icon-cache.exe Delete $LIB_INSTDIR\gtk-update-icon-cache.exe.manifest Delete $LIB_INSTDIR\pango-querymodules.exe ; dlls - Delete $LIB_INSTDIR\freetype6.dll ; freetype is needed for ft2 pango backend - Delete $LIB_INSTDIR\intl.dll ; gettext, needed by all i18n libs + Delete $LIB_INSTDIR\libfreetype-6.dll ; freetype is needed for ft2 pango backend + Delete $LIB_INSTDIR\libintl-8.dll ; gettext, needed by all i18n libs Delete $LIB_INSTDIR\libatk-1.0-0.dll ; atk Delete $LIB_INSTDIR\libcairo-2.dll ; cairo, needed by gtk Delete $LIB_INSTDIR\libcairo-gobject-2.dll ; cairo. Doesn't seem to be required, but since we're distributing cairo... @@ -626,15 +581,6 @@ Function un.DeleteDlls Delete $LIB_INSTDIR\libpng14-14.dll ; for gdk_pixbuf loader. Delete $LIB_INSTDIR\zlib1.dll ; png and many others need this - StrCmp $SEC_COMPATDLLS_INSTALLED "1" "" un_nocompatdlls - Delete $LIB_INSTDIR\jpeg62.dll ; used to be in the runtime - Delete $LIB_INSTDIR\libjpeg-7.dll ; used to be in the runtime. also libtiff needs this. - Delete $LIB_INSTDIR\libtiff3.dll ; used to be in the runtime - Delete $LIB_INSTDIR\libtiff-3.dll ; used to be in the runtime - Delete $LIB_INSTDIR\libpng12.dll ; used to be in the runtime - Delete $LIB_INSTDIR\libpng12-0.dll ; used to be in the runtime - Delete $LIB_INSTDIR\iconv.dll ; compatibility - un_nocompatdlls: FunctionEnd @@ -659,7 +605,6 @@ Section Uninstall ReadRegStr $LIB_INSTDIR HKLM "SOFTWARE\${PRODUCT_NAME}" "DllPath" ReadRegStr $DLL_DIR_NAME HKLM "SOFTWARE\${PRODUCT_NAME}" "DllDirName" ReadRegStr $ADD_TO_PATH HKLM "SOFTWARE\${PRODUCT_NAME}" "UsingSystemPath" - ReadRegStr $SEC_COMPATDLLS_INSTALLED HKLM "SOFTWARE\${PRODUCT_NAME}" "CompatDllsInstalled" ReadRegStr $SEC_TRANSLATIONS_INSTALLED HKLM "SOFTWARE\${PRODUCT_NAME}" "TranslationsInstalled" DeleteRegKey HKLM "SOFTWARE\GTK\2.0" ; dropline, etc... @@ -693,10 +638,6 @@ Section Uninstall uninst_no_sideeffects: - Strcpy $SEC_COMPATDLLS_INSTALLED "0" - StrCmp $uninstall_option_compatdlls "yes" "" nodelete_compatdlls - Strcpy $SEC_COMPATDLLS_INSTALLED "1" - nodelete_compatdlls: Strcpy $SEC_TRANSLATIONS_INSTALLED "0" StrCmp $uninstall_option_translations "yes" "" nodelete_translations @@ -946,4 +887,4 @@ FunctionEnd -; eof \ No newline at end of file +; eof diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache new file mode 100644 index 00000000..fc821885 --- /dev/null +++ b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache @@ -0,0 +1,13 @@ +# Note: After adding a new separate gdk-pixbuf loader (for instance the svg one) +# run gdk-pixbuf-query-loaders.exe redirecting its output into this file. + +# Note that the LoaderDir folder below does not name a folder that is +# expected to exist. It was just a temporary directory used at build time. + +# GdkPixbuf Image Loader Modules file +# Automatically generated file, do not edit +# Created by gdk-pixbuf-query-loaders.exe from gdk-pixbuf-2.22.1 +# +# LoaderDir = c:\devel\target\bc8822b8b54ff8fc65f69cf77a13dc59/lib/gdk-pixbuf-2.0/2.10.0/loaders +# + 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 new file mode 100644 index 00000000..11d692a9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/2.10.0/engines/libpixmap.dll 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 new file mode 100644 index 00000000..3687ba45 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/2.10.0/engines/libwimp.dll 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 new file mode 100644 index 00000000..7c9e6d5c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/lib/gtk-2.0/modules/libgail.dll differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..88984875 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..22a883d4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..1c78575f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..87980518 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..026aa40a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/af/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..3bf823f0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..69444603 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..dd3731b9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..98ed3fa6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/am/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..31eff199 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..fd4abf90 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..60f6d99b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ang/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..bb223b64 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..b676ee8d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..5117818e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..96bff2d1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..dc9ce49c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ar/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..421bc935 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..580baf46 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..e8deeaf7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..e503d945 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..94a1df03 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/as/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..04c6fbed Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..4c7b009e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..3e7c4a26 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..2f2b583d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..91813fad Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ast/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..0f7cc1de Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..386106ca Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..bea2ad9a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..de259e7f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..d4c0e90a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..bf30cd36 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..be32dada Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/az_IR/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..9c17027c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..e227653f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..d6167a7a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..dc8a0c40 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..0817eaf8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..af583c0a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..5417adbe Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..055c117f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..ba31b120 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..6cf2387a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..eaa57b88 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/be@latin/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..73ff7c7b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..2f25c599 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..f3ca7f77 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..b658a820 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..159c18c9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..50af841b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bg/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..1b27512b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..20924869 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..e8c14fa8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..86b56628 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..975a1ca2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..ee425cdf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..5333208c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..5c1980bc Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..2ee17ea5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..a791ff43 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bn_IN/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..a9a7cbff Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..d22816d5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..0ae50a75 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/br/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..7d5e33f0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..623cc531 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..4081e807 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..56ed4dfd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..aec8fadc Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/bs/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..f7b468aa Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..ddc58970 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..291bfd8a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..e7879d4a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..8bcbf9a8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..34afefbb Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..137479c5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..a9124105 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..b0552903 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..56af4387 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..d98cae35 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..fcbb8f29 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..94b13e0c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..a0b686ca Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/crh/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..b410749d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..bbfc7c71 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..8c23854f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..07dae1d2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..2a13a3cc Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..d2c0ee04 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cs/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..e51ecee7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..30e2aba4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..2c9fe670 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..c51fa1eb Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..9abb8399 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/cy/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..36dc8701 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..afbae3d0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..dab37f26 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..5aa9a015 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..e1b76271 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..878e3fae Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/da/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..0ce43d68 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/dos2unix.mo new file mode 100644 index 00000000..20de52a3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/dos2unix.mo 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 new file mode 100644 index 00000000..42967277 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..b0a6128d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..e63e17f0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..52ec1270 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..c688efc0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/de/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..e58487dd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..11eec744 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..c5a413cf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..3a5ddba8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..712e6fbb Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/dz/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..ab280d77 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..d7b3e6ed Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..f549df77 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..8940266c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..c434226e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..907f4f2e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/el/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..8cf1ed82 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..c305149c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@shaw/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@shaw/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..9cf8d5d9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@shaw/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..cd0403f7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en@shaw/LC_MESSAGES/glib20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..367547fd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..1fce0793 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..acef68db Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..8ce63ddd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..daa77935 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_CA/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..65409c87 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..a6ec3240 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..0a920aba Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..780cdaf3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..834f95c2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/en_GB/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..7b38a0fb Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/dos2unix.mo new file mode 100644 index 00000000..81e7a98b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/dos2unix.mo 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 new file mode 100644 index 00000000..7cc143ef Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..10bc3caf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..eac5cc34 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..bdde337b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..4ca75e10 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eo/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..28adf2f0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/dos2unix.mo new file mode 100644 index 00000000..38547121 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/dos2unix.mo 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 new file mode 100644 index 00000000..8151f6e5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..f5521846 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..8ecd4d48 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..d8b6212f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..4d75bd70 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/es/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..6ce4832c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..02fa0ee7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..523dad00 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..0a8ab0b6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..78726df8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..24268799 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/et/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..eee229eb Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..702db05d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..e13b1beb Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..91b4c0da Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..7db9dc44 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/eu/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..77597fff Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..41dcec93 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..c08b9ce4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..9efaa006 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..963d8d7a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fa/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..30790df0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..b5566437 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..7563b17e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..2a4fc816 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..26fbd810 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..f5cee5c3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fi/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..45efdab5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..c1b7a7d9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..3c8e653f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..b6710ae4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..9144b9e4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..953269e9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/fr/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..51846531 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..65574c5e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..7643c1a0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..87db050f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..134a2db8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..c1870c2e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ga/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..98613262 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..b4b8c88a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..d63c0a95 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..b71245b2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..adf31d26 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..2471acbc Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gl/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..356fe622 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..67258a0d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..b6fd27d3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..ffd42631 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..5552f5d3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/gu/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..56b0be20 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..99ca4453 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..da2c2465 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..392db1ca Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..2e49b085 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/he/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..cb9ef436 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..d7b4efff Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..8bd88110 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..e0a2730a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..6426153d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hi/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..002cc8ee Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..f1666e4b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..cd5584b5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..93e8235a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..1d2eafd3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hr/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..e56f5660 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..cc2bc9bd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..6c695d4f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..ae9f91ea Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..ce5a831d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hu/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..5c3dfc58 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..bb2ef290 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..c65ab119 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..e67907c3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..ae4822c9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/hy/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..290ed328 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..b68a4c0c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..f49db78d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ia/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..c3eadac7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..720ee24b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..0acd1d93 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..3d57f2bb Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..2b12a3e8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..537b3d7c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/id/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..50c7be37 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..5421fe68 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..e174f1b3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/io/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..cda2ccc7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..7d55c95f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..afb97a8d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..d43c4024 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..8474687b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/is/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..16d4113d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..5f5077c6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..5d6a6a41 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..c99511f7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..48fd3fd3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..64acc6cb Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/it/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..d580d759 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..a1f35a47 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..c9c4ccb9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..e8f60328 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..7f8a96f6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..753073b7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ja/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..5f54a09d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..c87bcb81 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..ab3f4fb7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..e87e7c86 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..be5200a0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ka/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..281f923a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..3de32a4f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kg/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..719aeec4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..c2dd3280 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..b82348d2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..c21069e5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kk/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..a155c2f1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..c5194474 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..0edf20c0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..81607a28 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..d91e3546 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/kn/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..ab10bba9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..c7e6b342 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..9323cac5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..4c16c070 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..2b360679 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..e8833e46 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ko/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..3d833386 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..9a88bcd7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..f9abe48f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..8c092c1b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..2644df6b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ku/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..d1ccdf7a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..82f113e5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lg/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..3ea670a6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..e9b6e70a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..cead3b17 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..c5587c53 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/li/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/locale.alias b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/locale.alias new file mode 100644 index 00000000..3170ff91 --- /dev/null +++ b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/locale.alias @@ -0,0 +1,77 @@ +# 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 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. +# +# 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. + +# The format of this file is the same as for the corresponding file of +# the X Window System, which normally can be found in +# /usr/lib/X11/locale/locale.alias +# A single line contains two fields: an alias and a substitution value. +# All entries are case independent. + +# Note: This file is obsolete and is kept around for the time being for +# backward compatibility. Nobody should rely on the names defined here. +# Locales should always be specified by their full name. + +# Packages using this file: gettext-runtime gettext-tools + +bokmal 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 +danish da_DK.ISO-8859-1 +dansk da_DK.ISO-8859-1 +deutsch de_DE.ISO-8859-1 +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 +french fr_FR.ISO-8859-1 +galego gl_ES.ISO-8859-1 +galician gl_ES.ISO-8859-1 +german de_DE.ISO-8859-1 +greek el_GR.ISO-8859-7 +hebrew he_IL.ISO-8859-8 +hrvatski hr_HR.ISO-8859-2 +hungarian hu_HU.ISO-8859-2 +icelandic is_IS.ISO-8859-1 +italian it_IT.ISO-8859-1 +japanese ja_JP.eucJP +japanese.euc ja_JP.eucJP +ja_JP ja_JP.eucJP +ja_JP.ujis ja_JP.eucJP +japanese.sjis ja_JP.SJIS +korean ko_KR.eucKR +korean.euc ko_KR.eucKR +ko_KR ko_KR.eucKR +lithuanian lt_LT.ISO-8859-13 +no_NO nb_NO.ISO-8859-1 +no_NO.ISO-8859-1 nb_NO.ISO-8859-1 +norwegian nb_NO.ISO-8859-1 +nynorsk nn_NO.ISO-8859-1 +polish pl_PL.ISO-8859-2 +portuguese pt_PT.ISO-8859-1 +romanian ro_RO.ISO-8859-2 +russian ru_RU.ISO-8859-5 +slovak sk_SK.ISO-8859-2 +slovene sl_SI.ISO-8859-2 +slovenian sl_SI.ISO-8859-2 +spanish es_ES.ISO-8859-1 +swedish sv_SE.ISO-8859-1 +thai th_TH.TIS-620 +turkish tr_TR.ISO-8859-9 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 new file mode 100644 index 00000000..97523f08 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..e8ebc6fd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..82022dc0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..d28eb173 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..8b6d9bb4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lt/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..156673a8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..8545b648 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..17303a58 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..9bbe5f63 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..98921747 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/lv/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..4ad2a7d4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..66f101aa Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..c5e9ba3d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..09c3dd83 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..6e6d58e4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mai/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..ee657785 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mg/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..9313f10b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..931a744a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..597d59c0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mi/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..58d44c1f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..022d1b18 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..88393f12 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..4196cc73 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..f93665ad Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mk/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..ecb45a1b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..f5aabffd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..e257e8d9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..24e06c73 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..3f300929 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ml/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..3ae2902f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..f64ac6da Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..3b46d7c0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..cf67dc21 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..965230e3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mn/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..cf847a21 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..9d2543d8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..ecf97863 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..1dd91a13 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..24f349bf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/mr/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..eb611d1d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..868538e0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..5ead96e7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..6d7975c0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..3b947c1d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ms/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..db90520e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..dc24676d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..ae28df4b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/my/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..4c199d02 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..2df52e4b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..19d5bb4a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..18dcdedf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..a5f01a0e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..36ced03b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nb/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..c144829b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..746ad4bf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..33231ff2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..575b738f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nds/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..7eec6be0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..76d9c072 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..33d76fa0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..b62a260b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..9c13ffa2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ne/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..70f025ba Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/atk10.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/dos2unix.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/dos2unix.mo new file mode 100644 index 00000000..551328da Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/dos2unix.mo 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 new file mode 100644 index 00000000..aa909752 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..678ad0d0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..889dd554 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..be4feb80 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..95314f67 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nl/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..1ae4d255 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..d310cdae Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..3c8538fa Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..9413acf1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..d6850d1b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..050f2d11 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nn/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..54528b7f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..16dc8289 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..93c50212 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/nso/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..9f96f9a6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/atk10.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..ecdfab4f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..94c1a706 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..3e4082a2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..a22dd7ee Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/oc/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..946aeda7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..05317fc1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..bb528184 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..e471b87a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..cd92354f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/or/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..9078ea97 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..da5382a2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..67a8a6a0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..3f701cbd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..4c1305c8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pa/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..4391243e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..fee587f5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..4e7ddff2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..f06a176d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..ace8048a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..ce4f53ed Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pl/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..00699859 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/atk10.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..1d8ff543 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..c2a347bf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..a5bee896 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..15ab388c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ps/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..793ca771 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..5e847f3e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..a1cb3cd3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..5cd8b890 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..370d7a4f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..40e31ae6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..f5ca83e8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..a306249c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..2c284c04 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..4944fca4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..f783b92a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..8e6ccd99 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/pt_BR/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..282b7332 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..de913f95 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..1982aaed Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gettext-runtime.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/glib20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/glib20.mo new file mode 100644 index 00000000..8cdd819f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..8c778f6f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..74f4ab5d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ro/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..d530842c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..e5339cf0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..e54088cc Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..f3719102 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..f867b87f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..80cf8084 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ru/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..fa7084ac Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..06628013 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..44e4ea3a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..da29057a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/rw/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..b1af0395 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/atk10.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..28332ccf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..14c9ce77 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..84ac30a5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..e0251fc4 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/si/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..f0a418f5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..580a50d8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..53fc95f9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..0d84520f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..624862df Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..6e72ec1e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sk/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..d3345d67 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..82543919 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..47935535 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..74dc3738 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..14d2f519 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..621b47dd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sl/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..4cdc4228 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..5f2f1dc5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..6ea2691d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..df611233 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..61c18b10 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sq/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..5cbd919c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..802b2cfb Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..06fab1a1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..d6541295 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..7a1021b9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..4e15aed6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..08f72e4a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..ac885c75 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..c1003d4b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..ab324f2c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..c266ce37 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@ije/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..51df952c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..5b6e1010 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..af588727 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..06241543 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..1a054b5c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sr@latin/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..9c8cdeb9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..ffd46406 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..88ba6843 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..873f313a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..727285bf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..fe7f7e30 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/sv/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..c8dd1b1a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..1a6d29b9 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..4be829b5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..66bb7e28 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..d0580dac Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ta/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..8cecbfbc Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..179dedfd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..028230b7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..c4097911 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..d81d8d1a Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/te/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..5813fe86 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..def34003 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..b50c0cd0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..a0e9c610 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gtk20-properties.mo 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 new file mode 100644 index 00000000..a963a8d1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/th/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..e6ecbcd5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/atk10.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..dd65791f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..8cd6d5cc Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..3c51c247 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tk/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..fb29fb42 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tl/LC_MESSAGES/glib20.mo 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 new file mode 100644 index 00000000..d7280ee8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..1f2355fa Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..54b91f35 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..9c1cd136 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..333848ea Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..f30797b5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tr/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..7d6854d8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/atk10.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..a468082c Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..e3b1031d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..68ff22d2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..c3d74a14 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/tt/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..e08607cd Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..e4a019ce Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gdk-pixbuf.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..5cd961ee Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..eb15dcc3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ug/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..7baf99ff Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..bd4edde0 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..c7990308 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..a84e20f2 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..f8e5a622 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..b024da93 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uk/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20-properties.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..298e1549 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..064561c8 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/ur/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..517f0c9d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..015dcb06 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..e1fe5179 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..daa2084b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..04ca82a1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..29572e4e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..61f4ff4f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..942e56a1 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..54c1c797 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..1eda5bb5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..3d282e96 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..613add1b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/vi/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..d1097dcc Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..c853300d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..fb35040d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..616e9ffe Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..2801f160 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/wa/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..e1b98749 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..e239c6cf Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..d0f5ba9f Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..0cb3d852 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..1f9cf128 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/xh/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/atk10.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/atk10.mo new file mode 100644 index 00000000..06e24eab Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..9326c076 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gdk-pixbuf.mo 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 new file mode 100644 index 00000000..bfcfc56d Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..1e30c7e7 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..eecaf212 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/yi/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..a6e36135 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..54f54d86 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..7ad6d7b3 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..36ed6e95 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..f1ed840e Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..7e0ce557 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_CN/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..f36ffa66 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/atk10.mo 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 new file mode 100644 index 00000000..6a7ace14 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..2eea2f88 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..96a72d52 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..1a03cff6 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..9c04d293 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_HK/LC_MESSAGES/gtk20.mo 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 new file mode 100644 index 00000000..d7e4247b Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gdk-pixbuf.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gdk-pixbuf.mo new file mode 100644 index 00000000..d9e2ccc5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo new file mode 100644 index 00000000..744a6882 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo 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 new file mode 100644 index 00000000..d1b59099 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-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/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo new file mode 100644 index 00000000..97b25bce Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20.mo b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20.mo new file mode 100644 index 00000000..a83b1af5 Binary files /dev/null and b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/locale/zh_TW/LC_MESSAGES/gtk20.mo differ diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Emacs/gtk-2.0-key/gtkrc b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Emacs/gtk-2.0-key/gtkrc new file mode 100644 index 00000000..199006fe --- /dev/null +++ b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Emacs/gtk-2.0-key/gtkrc @@ -0,0 +1,113 @@ +# 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, write to the +# Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. + + +# 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 "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 "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 "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 "gtk-emacs-menu" +{ + bind "n" { "move-current" (next) } + bind "p" { "move-current" (prev) } + bind "f" { "move-current" (child) } + bind "b" { "move-current" (parent) } +} + +class "GtkEntry" binding "gtk-emacs-text-entry" +class "GtkTextView" binding "gtk-emacs-text-entry" +class "GtkTextView" binding "gtk-emacs-text-view" +class "GtkTreeView" binding "gtk-emacs-tree-view" +class "GtkMenuShell" binding "gtk-emacs-menu" diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/MS-Windows/gtk-2.0/gtkrc b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/MS-Windows/gtk-2.0/gtkrc new file mode 100644 index 00000000..162265f7 --- /dev/null +++ b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/MS-Windows/gtk-2.0/gtkrc @@ -0,0 +1,66 @@ +gtk-icon-sizes = "gtk-menu=13,13:gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-dnd=32,32" +gtk-toolbar-icon-size = small-toolbar + +# disable images in buttons. i've only seen ugly delphi apps use this feature. +gtk-button-images = 0 + +# enable/disable images in menus. most "stock" microsoft apps don't use these, except sparingly. +# the office apps use them heavily, though. +gtk-menu-images = 1 + +# use the win32 button ordering instead of the GNOME HIG one, where applicable +gtk-alternative-button-order = 1 + +# use the win32 sort indicators direction, as in Explorer +gtk-alternative-sort-arrows = 1 + +# Windows users don't expect the PC Speaker beeping at them when they backspace in an empty textview and stuff like that +gtk-error-bell = 0 + +style "msw-default" +{ + GtkWidget::interior-focus = 1 + GtkOptionMenu::indicator-size = { 9, 5 } + GtkOptionMenu::indicator-spacing = { 7, 5, 2, 2 } + GtkSpinButton::shadow-type = in + + # Owen and I disagree that these should be themable + #GtkUIManager::add-tearoffs = 0 + #GtkComboBox::add-tearoffs = 0 + + GtkComboBox::appears-as-list = 1 + GtkComboBox::focus-on-click = 0 + + GOComboBox::add_tearoffs = 0 + + GtkTreeView::allow-rules = 0 + GtkTreeView::expander-size = 12 + + GtkExpander::expander-size = 12 + + GtkScrolledWindow::scrollbar_spacing = 1 + + GtkSeparatorMenuItem::horizontal-padding = 2 + + engine "wimp" + { + } +} +class "*" style "msw-default" + +binding "ms-windows-tree-view" +{ + bind "Right" { "expand-collapse-cursor-row" (1,1,0) } + bind "Left" { "expand-collapse-cursor-row" (1,0,0) } +} + +class "GtkTreeView" binding "ms-windows-tree-view" + +style "msw-combobox-thickness" = "msw-default" +{ + xthickness = 0 + ythickness = 0 +} + +widget_class "*TreeView*ComboBox*" style "msw-combobox-thickness" +widget_class "*ComboBox*GtkFrame*" style "msw-combobox-thickness" diff --git a/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Raleigh/gtk-2.0/gtkrc b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Raleigh/gtk-2.0/gtkrc new file mode 100644 index 00000000..c66bc131 --- /dev/null +++ b/gtk2-nsis-pack/trunk/gtk2-nsis-pack/share/themes/Raleigh/gtk-2.0/gtkrc @@ -0,0 +1,3 @@ +# +# This theme is the default theme if no other theme is selected. +#