gextractwinicons-0.3.1/0000755000175000017500000000000011461060474015005 5ustar muflonemuflonegextractwinicons-0.3.1/po/0000755000175000017500000000000011461060474015423 5ustar muflonemuflonegextractwinicons-0.3.1/man/0000755000175000017500000000000011461060474015560 5ustar muflonemuflonegextractwinicons-0.3.1/doc/0000755000175000017500000000000011461060474015552 5ustar muflonemuflonegextractwinicons-0.3.1/data/0000755000175000017500000000000011461060474015716 5ustar muflonemuflonegextractwinicons-0.3.1/po/en_US/0000755000175000017500000000000011461060474016434 5ustar muflonemuflonegextractwinicons-0.3.1/po/fr/0000755000175000017500000000000011461060474016032 5ustar muflonemuflonegextractwinicons-0.3.1/po/it/0000755000175000017500000000000011461060474016037 5ustar muflonemuflonegextractwinicons-0.3.1/po/en_US/LC_MESSAGES/0000755000175000017500000000000011461060474020221 5ustar muflonemuflonegextractwinicons-0.3.1/po/fr/LC_MESSAGES/0000755000175000017500000000000011461060474017617 5ustar muflonemuflonegextractwinicons-0.3.1/po/it/LC_MESSAGES/0000755000175000017500000000000011461060474017624 5ustar muflonemuflonegextractwinicons-0.3.1/setup.py0000744000175000017500000000551711461057724016534 0ustar muflonemuflone#!/usr/bin/env python ## # Project: gExtractWinIcons # Extract cursors and icons from MS Windows compatible resource files. # Author: Fabio Castelli # Copyright: 2009-2010 Fabio Castelli # License: GPL-2+ # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU 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. # # On Debian GNU/Linux systems, the full text of the GNU General Public License # can be found in the file /usr/share/common-licenses/GPL-2. ## from distutils.core import setup from distutils.command.install_data import install_data from distutils.dep_util import newer from distutils.log import info import glob import os import sys class InstallData(install_data): def run (self): self.data_files.extend (self._compile_po_files()) install_data.run(self) def _compile_po_files(self): data_files = [] # Don't install language files on win32 if sys.platform == 'win32': return data_files PO_DIR = 'po' for po in glob.glob(os.path.join(PO_DIR,'*.po')): lang = os.path.basename(po[:-3]) mo = os.path.join('build', 'mo', lang, 'gextractwinicons.mo') directory = os.path.dirname(mo) if not os.path.exists(directory): info('creating %s' % directory) os.makedirs(directory) if newer(po, mo): # True if mo doesn't exist cmd = 'msgfmt -o %s %s' % (mo, po) info('compiling %s -> %s' % (po, mo)) if os.system(cmd) != 0: raise SystemExit('Error while running msgfmt') dest = os.path.dirname(os.path.join('share', 'locale', lang, 'LC_MESSAGES', 'gextractwinicons.mo')) data_files.append((dest, [mo])) return data_files setup(name='gExtractWinIcons', version='0.3.1', description='Extract cursors and icons from MS Windows compatible resource files', author='Fabio Castelli', author_email='muflone@vbsimple.net', url='http://code.google.com/p/gextractwinicons/', license='GPL v2', scripts=['gextractwinicons'], data_files=[ ('share/applications', ['data/gextractwinicons.desktop']), ('share/man/man1', ['man/gextractwinicons.1']), ('share/doc/gextractwinicons', ['doc/README', 'doc/changelog', 'doc/translators']), ('share/gextractwinicons/data', ['data/gextractwinicons.glade', 'data/gextractwinicons.svg']), ], cmdclass={'install_data': InstallData} ) gextractwinicons-0.3.1/gextractwinicons0000744000175000017500000004211311461057163020326 0ustar muflonemuflone#!/usr/bin/python # -*- coding: utf-8 -*- ## # Project: gExtractWinIcons # Extract cursors and icons from MS Windows compatible resource files. # Author: Fabio Castelli # Copyright: 2009-2010 Fabio Castelli # License: GPL-2+ # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU 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. # # On Debian GNU/Linux systems, the full text of the GNU General Public License # can be found in the file /usr/share/common-licenses/GPL-2. ## import gtk import gtk.glade import pygtk import subprocess import tempfile import os import sys import shutil import gettext from gettext import gettext as _ from optparse import OptionParser __file_path__ = os.path.dirname(os.path.abspath(__file__)) APP_NAME = 'gextractwinicons' APP_TITLE = 'gExtractWinIcons' APP_VERSION = '0.3.1' PATHS = { 'locale': [ '%s/po' % __file_path__, '%s/share/locale' % sys.prefix], 'data': [ '%s/data' % __file_path__, '%s/share/%s/data' % (sys.prefix, APP_NAME)], 'doc': [ '%s/doc' % __file_path__, '%s/share/doc/%s' % (sys.prefix, APP_NAME)] } def getPath(key, append = ''): "Returns the correct path for the specified key" for path in PATHS[key]: if os.path.isdir(path): if append: return os.path.join(path, append) else: return path APP_LOGO = getPath('data', '%s.svg' % APP_NAME) def readTextFile(filename): "Read a text file and return its content" try: f = open(filename, 'r') text = f.read() f.close() except: text = '' return text def updateTotals(): "Update totals on the label" lblTotals.set_label(strTotalsTemplate % (intTotalResources, intSelectedResources)) def refreshTotals(): "Write totals and update buttons" updateTotals() set_enabled(btnSelectAll, intTotalResources>0) set_enabled(btnDeselectAll, intTotalResources>0) set_enabled(btnSelectPNG, intTotalResources>0) set_enabled(btnSaveResources, intTotalResources>0) def extractResource(line): "Extract resource from wrestool output" resName = '' resType = '' resLang = '' # Split line in fields for column in line.split(): if column[:7] == '--type=': resType = column[7:] elif column[:7] == '--name=': resName = column[7:].replace('\'', '') elif column[:11] == '--language=': resLang = column[11:] return (resName, resType, resLang) def extractSubResource(line): "Extract sub resource from icotool output" resName = '' resType = '' resWidth = '' resHeight = '' resDepth = '' # Split line in fields for column in line.split(): if column[:8] == '--index=': resName = column[8:] elif column[:8] == '--width=': resWidth = column[8:] elif column[:9] == '--height=': resHeight = column[9:] elif column[:12] == '--bit-depth=': resDepth = column[12:] elif column[:6] == '--icon': resType = _('icon') elif column[:8] == '--cursor': resType = _('cursor') return (resName, resType, resWidth, resHeight, resDepth) def addFilter(name, patterns=None, mimetypes=None): "Returns a filter with patterns and mimetypes for gtkFileChoosers" filter = gtk.FileFilter() filter.set_name(name) if patterns: for pattern in patterns: filter.add_pattern(pattern) if mimetypes: for mimetype in mimetypes: filter.add_mime_type(mimetype) return filter def createColumns(): "Add new columns to the treeview" newCell = gtk.CellRendererPixbuf() newCell.set_property('xalign', 1.00) newColumn = gtk.TreeViewColumn(_('Preview'), newCell, pixbuf=9) newColumn.set_resizable(True) tvwResources.append_column(newColumn) newCell = gtk.CellRendererText() newColumn = gtk.TreeViewColumn(_('Type'), newCell, text=2) newColumn.set_resizable(True) tvwResources.append_column(newColumn) newCell = gtk.CellRendererText() newColumn = gtk.TreeViewColumn(_('Name'), newCell, text=3) newColumn.set_resizable(True) newColumn.set_expand(True) tvwResources.append_column(newColumn) newCell = gtk.CellRendererText() newCell.set_property('xalign', 0.50) newColumn = gtk.TreeViewColumn(_('Width'), newCell, text=5) newColumn.set_resizable(True) tvwResources.append_column(newColumn) newCell = gtk.CellRendererText() newCell.set_property('xalign', 0.50) newColumn = gtk.TreeViewColumn(_('Height'), newCell, text=6) newColumn.set_resizable(True) tvwResources.append_column(newColumn) newCell = gtk.CellRendererText() newCell.set_property('xalign', 0.50) newColumn = gtk.TreeViewColumn(_('Bits'), newCell, text=7) newColumn.set_resizable(True) tvwResources.append_column(newColumn) newCell = gtk.CellRendererText() newCell.set_property('xalign', 1.00) newColumn = gtk.TreeViewColumn(_('Size'), newCell, text=8) newColumn.set_resizable(True) tvwResources.append_column(newColumn) newCell = gtk.CellRendererToggle() newColumn = gtk.TreeViewColumn(_('Extract'), newCell, active=0) newColumn.set_resizable(False) newColumn.set_expand(False) newCell.set_property('activatable', True) newCell.connect('toggled', on_selected_toggle) tvwResources.append_column(newColumn) def on_winMain_delete_event(widget, data=None): "Close the main Window and gtk main loop" gtk.main_quit() return 0 def on_btnRefresh_clicked(widget, data=None): "Extract resources from the selected filename" global isLoading global intTotalResources global intSelectedResources btnFilePath.set_sensitive(isLoading) if not isLoading: # Start loading btnRefresh.set_label('gtk-stop') isLoading = True else: # Abort loading btnRefresh.set_label('gtk-refresh') isLoading = False return resourcesType = {'12': _('cursors'), '14': _('icons')} intTotalResources = 0 intSelectedResources = 0 # Freeze updates and disconnect model to load faster tvwResources.freeze_child_notify() tvwResources.set_model(None) # Hide save button and show progressbar btnSaveResources.hide() progLoading.show() progLoading.set_fraction(0.0) # Remove previous files in temporary dir for f in os.listdir(tempdir): os.remove(os.path.join(tempdir, f)) # Extract resources list from executable proc = subprocess.Popen(['wrestool', '--list', btnFilePath.get_filename()], stdout=subprocess.PIPE, stderr=subprocess.PIPE) stdout, stderr = proc.communicate() if stderr and options.verbose: print 'wrestool --list error: %s' % stderr # Remove weird characters stdout = stdout.replace('[', '') stdout = stdout.replace(']', '') stdout = stdout.split('\n') resCount = len(stdout) resItem = 0 # Clear model and add new resources modelResources.clear() for line in stdout: if not isLoading: break resName, resType, resLang = extractResource(line) # Only cursors and icon groups are well supported by wrestool if resType in ('12', '14'): # Extract icon to temporary filename (filename_type_name_lang.ico) tmpFile = os.path.join(tempdir, '%s_%s_%s_%s.%s' % ( os.path.basename(btnFilePath.get_filename()), resType, resName, resLang, resType == '12' and 'cur' or 'ico' )) proc = subprocess.Popen(['wrestool', '-x', '-t', resType, '-n', resName, '-L', resLang, '-o', tmpFile, btnFilePath.get_filename()], stderr=subprocess.PIPE) proc.communicate() if stderr and options.verbose: print 'wrestool -x error: %s' % stderr # Check if the resource was extracted successfully (cannot be sure) if os.path.isfile(tmpFile): # Add main resource to the treeview iter = modelResources.append(None, [ True, int(resType), resourcesType[resType], resName, resLang, None, None, None, str(os.path.getsize(tmpFile)), None ]) intTotalResources += 1 intSelectedResources += 1 # Extract resources list from group resources proc = subprocess.Popen(['icotool', '--list', tmpFile], stdout=subprocess.PIPE, stderr=subprocess.PIPE) stdout, stderr = proc.communicate() if stderr and options.verbose: print 'icotool --list error: %s' % stderr # Split line in fields for line in stdout.split('\n'): if not isLoading: break subResource = extractSubResource(line) if subResource[0]: # Extract subresources to temporary filename (name_index_WxHxD.png) tmpFile2 = os.path.join(tempdir, '%s_%s_%sx%sx%s.png' % ( tmpFile[:-4], subResource[0], subResource[2], subResource[3], subResource[4])) proc = subprocess.Popen(['icotool', '-x', '-i', subResource[0], '-w', subResource[2], '-h', subResource[3], '-b', subResource[4], '-o', tmpFile2, tmpFile], stderr=subprocess.PIPE) proc.communicate() if stderr and options.verbose: print 'icotool -x error: %s' % stderr # Check if the resource was extracted successfully (cannot be sure) if os.path.isfile(tmpFile2): # Add sub-resource to treeview modelResources.append(iter, [ True, -1, subResource[1], subResource[0], None, subResource[2], subResource[3], subResource[4], str(os.path.getsize(tmpFile2)), gtk.gdk.pixbuf_new_from_file(tmpFile2) ]) intTotalResources += 1 intSelectedResources += 1 # Update progressbar resItem += 1 progLoading.set_fraction(float(resItem) / resCount) while gtk.events_pending(): gtk.main_iteration() # Hide progressbar and update treeview progLoading.hide() btnSaveResources.show() btnFilePath.set_sensitive(True) tvwResources.set_model(modelResources) tvwResources.thaw_child_notify() tvwResources.expand_all() refreshTotals() # End of loading isLoading = False btnRefresh.set_label('gtk-refresh') def on_btnSaveResources_clicked(widget, data=None): "Save selected resources" # Iter the first level for iter in modelResources: tmpFile = os.path.join(tempdir, '%s_%s_%s_%s.%s' % ( os.path.basename(btnFilePath.get_filename()), iter[1], iter[3], iter[4], iter[1] == 12 and 'cur' or 'ico' )) if iter[0]: # Copy ico/cur file shutil.copy(tmpFile, btnDestination.get_filename()) # Iter the children for iter in iter.iterchildren(): if iter[0]: # Copy png subicon shutil.copy(os.path.join(tempdir, '%s_%s_%sx%sx%s.png' % ( tmpFile[:-4], iter[3], iter[5], iter[6], iter[7])), btnDestination.get_filename()) diag = gtk.MessageDialog(None, gtk.DIALOG_MODAL, gtk.MESSAGE_INFO, gtk.BUTTONS_OK, _('Extraction completed.')) diag.set_icon_from_file(APP_LOGO) diag.run() diag.destroy() def on_selected_toggle(renderer, path, data=None): "Select or deselect an item" global intSelectedResources modelResources[path][0] = not modelResources[path][0] intSelectedResources += modelResources[path][0] and 1 or -1 updateTotals() def on_btnSelect_clicked(widget, data=None): "Select or deselect items" global intSelectedResources intSelectedResources = 0 for iter in modelResources: # Iter the first level if widget is btnSelectAll: iter[0] = True intSelectedResources += 1 elif widget is btnDeselectAll or widget is btnSelectPNG: iter[0] = False # Iter the children for iter in iter.iterchildren(): if (widget is btnSelectAll) or (widget is btnSelectPNG): iter[0] = True intSelectedResources += 1 elif widget is btnDeselectAll: iter[0] = False updateTotals() def on_btnFilePath_file_set(widget, data=None): "Activates or deactivates Refresh button if file was set" global intTotalResources global intSelectedResources if btnFilePath.get_filename(): set_enabled(btnRefresh, bool(btnFilePath.get_filename())) modelResources.clear() intTotalResources = 0 intSelectedResources = 0 refreshTotals() on_btnRefresh_clicked(None) def on_btnInfo_clicked(widget, data=None): "Shows the about dialog" about = gtk.AboutDialog() about.set_program_name(APP_TITLE) about.set_version(APP_VERSION) about.set_comments(_('A GTK utility to extract cursors, icons and png image ' 'previews from MS Windows resource files (like .exe, .dll, .ocx, .cpl).')) about.set_icon_from_file(APP_LOGO) about.set_logo(gtk.gdk.pixbuf_new_from_file(APP_LOGO)) about.set_copyright('Copyright 2009 Fabio Castelli') about.set_translator_credits(readTextFile(getPath('doc','translators'))) about.set_license(readTextFile(getPath('doc','copyright'))) about.set_website_label('gExtractWinIcons') gtk.about_dialog_set_url_hook(lambda url, data=None: url) about.set_website('http://code.google.com/p/gextractwinicons/') about.set_authors([ 'Fabio Castelli ', 'http://www.ubuntutrucchi.it' ]) about.run() about.destroy() def on_btnFilePath_update_preview(widget, data=None): "Select first filter if it's not selected (bug?)" if not btnFilePath.get_filter(): btnFilePath.set_filter(btnFilePath.list_filters()[0]) # Command line options and arguments parser = OptionParser(usage='usage: %prog [options]') parser.add_option('-v', '--verbose', action='store_true', help='show error messages from wrestool and icotool') parser.add_option('-d', '--destination', help='set destination folder') parser.add_option('-f', '--filename', help='set resources filename') parser.add_option('-r', '--refresh', action='store_true', help='automatically refresh resources list if -f specified') (options, args) = parser.parse_args() if options.refresh and not options.filename: parser.error("option -r requires filename specified with -f") # Signals handler signals = { 'on_winMain_delete_event': on_winMain_delete_event, 'on_btnRefresh_clicked': on_btnRefresh_clicked, 'on_btnSaveResources_clicked': on_btnSaveResources_clicked, 'on_btnSelect_clicked': on_btnSelect_clicked, 'on_btnFilePath_file_set': on_btnFilePath_file_set, 'on_btnInfo_clicked': on_btnInfo_clicked, 'on_btnFilePath_update_preview': on_btnFilePath_update_preview } # Load domain for translation for module in (gettext, gtk.glade): module.bindtextdomain(APP_NAME, getPath('locale')) module.textdomain(APP_NAME) # Load interfaces gladeFile = gtk.glade.XML(fname=getPath('data', '%s.glade' % APP_NAME), domain=APP_NAME) gladeFile.signal_autoconnect(signals) gw = gladeFile.get_widget winMain = gw('winMain') winMain.set_default_size(600, 400) winMain.set_icon_from_file(APP_LOGO) btnFilePath = gw('btnFilePath') btnDestination = gw('btnDestination') progLoading = gw('progLoading') btnRefresh = gw('btnRefresh') btnSaveResources = gw('btnSaveResources') btnSelectAll = gw('btnSelectAll') btnDeselectAll = gw('btnDeselectAll') btnSelectPNG = gw('btnSelectPNG') tvwResources = gw('tvwResources') lblTotals = gw('lblTotals') # Adapt height of littler widgets to the biggers progLoading.set_size_request(-1, btnSaveResources.size_request()[1]) btnRefresh.set_size_request( btnRefresh.size_request()[0]+20, btnRefresh.size_request()[1] ) btnDestination.set_size_request(-1, btnRefresh.size_request()[1]) # Add filters for select file button btnFilePath.add_filter(addFilter(_('MS Windows compatible files'), ['*.exe', '*.dll', '*.cpl', '*.ocx', '*.scr'], None)) btnFilePath.add_filter(addFilter(_('All files'), ['*'], None)) # Init variables strTotalsTemplate = _('%d resources found (%d resources selected)') intTotalResources = 0 intSelectedResources = 0 isLoading = False # Set model for treeview modelResources = gtk.TreeStore( bool, # Selected int, # Type str, # Type name str, # Name str, # Language str, # Width (cannot use int for missing values in first level) str, # Height str, # Color depth str, # Size gtk.gdk.Pixbuf # Preview ) createColumns() tvwResources.set_model(modelResources) set_enabled = lambda widget, status: widget.set_property('sensitive', status) # Create temporary directory for icons tempdir = tempfile.mkdtemp(prefix='%s-' % APP_NAME) # Set filename if --filename was specified (and the file is accepted) if options.filename and btnFilePath.select_filename(options.filename): set_enabled(btnRefresh, True) # Set destination folder if --destination was specified else set user's home btnDestination.set_filename( not options.destination and os.path.expandvars('$HOME') or options.destination) # Show main window and start program winMain.show() # Automatically refresh list if --refresh was specified if options.refresh: while gtk.events_pending(): gtk.main_iteration() on_btnFilePath_file_set(btnFilePath) gtk.main() # Clear temporary files and dir for f in os.listdir(tempdir): os.remove(os.path.join(tempdir, f)) os.rmdir(tempdir) gextractwinicons-0.3.1/po/genpot.sh0000744000175000017500000000043711320135267017255 0ustar muflonemuflone#!/bin/bash intltool-extract --type=gettext/glade ../data/gextractwinicons.glade if [ -f gextractwinicons.pot ] then rm gextractwinicons.pot fi xgettext --language=Python --keyword=_ --keyword=N_ --output gextractwinicons.pot ../data/*.glade.h ../gextractwinicons rm ../data/*.glade.h gextractwinicons-0.3.1/po/i18n-3.sh0000755000175000017500000000033611245054665016710 0ustar muflonemuflone#!/bin/bash for file in *.po; do ( filemo=$(basename $file .po) if [ -d $filemo ]; then rm -r $filemo fi mkdir -p $filemo/LC_MESSAGES msgfmt --output-file=$filemo/LC_MESSAGES/gextractwinicons.mo $file ) done gextractwinicons-0.3.1/po/ru.po0000644000175000017500000000645411336030054016412 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Russian translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: HsH \n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "Найденные ресурсы:" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "Отменить выбор" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "Каталог назначения:" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "Открыть файл:" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "Выберите файл для просмотра доступных ресурсов" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "Выбрать всё" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "Выбрать только PNG" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "Выбрать каталог назначения" #: ../gextractwinicons:117 msgid "icon" msgstr "значок" #: ../gextractwinicons:119 msgid "cursor" msgstr "курсор" #: ../gextractwinicons:139 msgid "Preview" msgstr "Просмотр" #: ../gextractwinicons:144 msgid "Type" msgstr "Тип" #: ../gextractwinicons:149 msgid "Name" msgstr "Имя" #: ../gextractwinicons:156 msgid "Width" msgstr "Ширина" #: ../gextractwinicons:162 msgid "Height" msgstr "Высота" #: ../gextractwinicons:168 msgid "Bits" msgstr "Бит" #: ../gextractwinicons:174 msgid "Size" msgstr "Размер" #: ../gextractwinicons:179 msgid "Extract" msgstr "Извлечь" #: ../gextractwinicons:206 msgid "cursors" msgstr "Курсоры" #: ../gextractwinicons:206 msgid "icons" msgstr "Значки" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "Извлечение завершеною" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" "Утилита для извлечения курсоров, значков и PNG-изображений из файлов " "ресурсов MS Windows (*.exe, *.dll, *.ocx, *.cpl)." #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "Файлы ресурсов MS Windows" #: ../gextractwinicons:454 msgid "All files" msgstr "Все файлы" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "%d ресурсов найдено (%d ресурсов выбрано)" gextractwinicons-0.3.1/po/es.po0000644000175000017500000000576111461056243016402 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Spanish translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fitoschido \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "Recursos disponibles:" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "Deseleccionar todos" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "Carpeta Destino:" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "Archivo a abrir:" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "Por favor, seleccione un archivo para listar los recursos disponibles" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "Seleccionar todo" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "Seleccionar sólo PNGs" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "Seleccione una ruta dónde salvar" #: ../gextractwinicons:117 msgid "icon" msgstr "icono" #: ../gextractwinicons:119 msgid "cursor" msgstr "cursor" #: ../gextractwinicons:139 msgid "Preview" msgstr "Previsualización" #: ../gextractwinicons:144 msgid "Type" msgstr "Tipo" #: ../gextractwinicons:149 msgid "Name" msgstr "Nombre" #: ../gextractwinicons:156 msgid "Width" msgstr "Ancho" #: ../gextractwinicons:162 msgid "Height" msgstr "Altura" #: ../gextractwinicons:168 msgid "Bits" msgstr "Bits" #: ../gextractwinicons:174 msgid "Size" msgstr "Tamaño" #: ../gextractwinicons:179 msgid "Extract" msgstr "Extrae" #: ../gextractwinicons:206 msgid "cursors" msgstr "cursores" #: ../gextractwinicons:206 msgid "icons" msgstr "iconos" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "Extracción terminada." #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "Una utilidad GTK para extraer cursores, iconos e imágenes PNG de" "archivos de recursos de Windows (como .exe, .dll, .ocx, cpl)." #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "Archivos compatibles con MS Windows" #: ../gextractwinicons:454 msgid "All files" msgstr "Todo los archivos" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "%d Recursos encontrados (%d recursos seleccionados)" gextractwinicons-0.3.1/po/it.po0000644000175000017500000000574611322711757016416 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Italian translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-01-03 16:44+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "Risorse disponibili:" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "Deseleziona tutto" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "Cartella di destinazione:" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "File da aprire:" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "Scegliere un file per elencare le risorse disponibili" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "Seleziona tutto" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "Seleziona solo PNG" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "Seleziona il percorso per il salvataggio" #: ../gextractwinicons:117 msgid "icon" msgstr "icona" #: ../gextractwinicons:119 msgid "cursor" msgstr "cursore" #: ../gextractwinicons:139 msgid "Preview" msgstr "Anteprima" #: ../gextractwinicons:144 msgid "Type" msgstr "Tipo" #: ../gextractwinicons:149 msgid "Name" msgstr "Nome" #: ../gextractwinicons:156 msgid "Width" msgstr "Larghezza" #: ../gextractwinicons:162 msgid "Height" msgstr "Altezza" #: ../gextractwinicons:168 msgid "Bits" msgstr "Bit" #: ../gextractwinicons:174 msgid "Size" msgstr "Dimensione" #: ../gextractwinicons:179 msgid "Extract" msgstr "Estrarre" #: ../gextractwinicons:206 msgid "cursors" msgstr "cursori" #: ../gextractwinicons:206 msgid "icons" msgstr "icone" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "Estrazione completata." #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "Un'utilità GTK per estrarre cursori, icone e anteprime delle immagini " "png dai files di risorse per MS Windows (come .exe, .dll, .ocx, .cpl)." #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "Files compatibili MS Windows" #: ../gextractwinicons:454 msgid "All files" msgstr "Tutti i files" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "%d risorse trovate (%d risorse selezionate)" gextractwinicons-0.3.1/po/gextractwinicons.pot0000644000175000017500000000464311322711753021550 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # X translation for gextractwinicons package. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/fr.po0000644000175000017500000000604211322711750016370 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # French translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-01-03 16:44+0100\n" "Last-Translator: Emmanuel \n" "Language-Team: French\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "Ressources disponibles : " #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "Tous désélectionner" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "Dossier de destination:" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "Fichier à ouvrir :" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "Sélectionner un fichier pour lister les ressources disponibles" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "Tous sélectionner" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "Sélectionner que PNG" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "Sélectionner le parcours pour l'enregistrement" #: ../gextractwinicons:117 msgid "icon" msgstr "icône" #: ../gextractwinicons:119 msgid "cursor" msgstr "pointeur" #: ../gextractwinicons:139 msgid "Preview" msgstr "Aperçu" #: ../gextractwinicons:144 msgid "Type" msgstr "Type" #: ../gextractwinicons:149 msgid "Name" msgstr "Nom" #: ../gextractwinicons:156 msgid "Width" msgstr "Largeur" #: ../gextractwinicons:162 msgid "Height" msgstr "Hauteur" #: ../gextractwinicons:168 msgid "Bits" msgstr "Bits" #: ../gextractwinicons:174 msgid "Size" msgstr "Dimension" #: ../gextractwinicons:179 msgid "Extract" msgstr "Extraire" #: ../gextractwinicons:206 msgid "cursors" msgstr "pointeurs" #: ../gextractwinicons:206 msgid "icons" msgstr "icônes" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "Extraction terminée." #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "Un outil GTK pour extraire pointeurs, icônes et aperçus des images " "png des fichiers de ressources pour MS Windows (comme .exe, .dll, .ocx, .cpl)." #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "Fichiers compatibles avec MS Windows" #: ../gextractwinicons:454 msgid "All files" msgstr "Tous les fichiers" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "%d ressources trouvées (%d ressources sélectionnées)" gextractwinicons-0.3.1/po/de.po0000644000175000017500000000471211335546754016371 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # German translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: German\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/en_US.po0000644000175000017500000000563311322711745017003 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # English translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-01-03 16:44+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: English\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ASCII\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "Available resources:" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "Deselect all" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "Destination folder:" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "File to open:" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "Please select a file to list the available resources" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "Select all" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "Select only PNGs" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "Select path for saving" #: ../gextractwinicons:117 msgid "icon" msgstr "icon" #: ../gextractwinicons:119 msgid "cursor" msgstr "cursor" #: ../gextractwinicons:139 msgid "Preview" msgstr "Preview" #: ../gextractwinicons:144 msgid "Type" msgstr "Type" #: ../gextractwinicons:149 msgid "Name" msgstr "Name" #: ../gextractwinicons:156 msgid "Width" msgstr "Width" #: ../gextractwinicons:162 msgid "Height" msgstr "Height" #: ../gextractwinicons:168 msgid "Bits" msgstr "Bits" #: ../gextractwinicons:174 msgid "Size" msgstr "Size" #: ../gextractwinicons:179 msgid "Extract" msgstr "Extract" #: ../gextractwinicons:206 msgid "cursors" msgstr "cursors" #: ../gextractwinicons:206 msgid "icons" msgstr "icons" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "Extraction completed." #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "MS Windows compatible files" #: ../gextractwinicons:454 msgid "All files" msgstr "All files" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "%d resources found (%d resources selected)" gextractwinicons-0.3.1/po/sk.po0000644000175000017500000000474511335546731016417 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Slovak translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Slovak\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/ja.po0000644000175000017500000000470711335546714016373 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Japanese translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Japanese\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/bg.po0000644000175000017500000000464111335546763016372 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Bulgarian translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Bulgarian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/cs.po0000644000175000017500000000474311335546761016410 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Czech translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/da.po0000644000175000017500000000471211335546757016370 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Danish translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/he.po0000644000175000017500000000471211335546744016374 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Hebrew translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Hebrew\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/nl.po0000644000175000017500000000471011335546716016406 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Dutch translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/pl.po0000644000175000017500000000500711335546721016404 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Polish translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/pt.po0000644000175000017500000000472211335546724016422 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Portoguese translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/tr.po0000644000175000017500000000470511335546734016426 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Turkish translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/zh_CN.po0000644000175000017500000000465211335546737017006 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Chinese translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Chinese (simplified)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/hu.po0000644000175000017500000000472011335546742016411 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Hungarian translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/po/i18n-2.sh0000755000175000017500000000252611335546407016712 0ustar muflonemuflone#!/bin/bash msginit --input=gextractwinicons.pot --output-file=en_US.po --locale=en_US msginit --input=gextractwinicons.pot --output-file=it.po --locale=it_IT msginit --input=gextractwinicons.pot --output-file=fr.po --locale=fr_FR read msginit --input=gextractwinicons.pot --output-file=es.po --locale=es_ES msginit --input=gextractwinicons.pot --output-file=ru.po --locale=ru_RU msginit --input=gextractwinicons.pot --output-file=ar.po --locale=ar msginit --input=gextractwinicons.pot --output-file=bg.po --locale=bg msginit --input=gextractwinicons.pot --output-file=cs.po --locale=cs msginit --input=gextractwinicons.pot --output-file=da.po --locale=da msginit --input=gextractwinicons.pot --output-file=de.po --locale=de_DE msginit --input=gextractwinicons.pot --output-file=he.po --locale=he msginit --input=gextractwinicons.pot --output-file=hu.po --locale=hu msginit --input=gextractwinicons.pot --output-file=ja.po --locale=ja msginit --input=gextractwinicons.pot --output-file=nl.po --locale=nl_NL msginit --input=gextractwinicons.pot --output-file=pl.po --locale=pl msginit --input=gextractwinicons.pot --output-file=pt.po --locale=pt_PT msginit --input=gextractwinicons.pot --output-file=sk.po --locale=sk msginit --input=gextractwinicons.pot --output-file=tr.po --locale=tr msginit --input=gextractwinicons.pot --output-file=zh_CN.po --locale=zh_CN read gextractwinicons-0.3.1/po/ar.po0000644000175000017500000000463311335546704016400 0ustar muflonemuflone# gExtractWinIcons - Extract cursors and icons from MS Windows compatible # resource files. # Copyright (C) 2009-2010 Fabio Castelli # This file is distributed under the GPL v2 license (see copyright file). # Fabio Castelli , 2009-2010. # Arabic translation for gextractwinicons package. # msgid "" msgstr "" "Project-Id-Version: gextractwinicons 0.3\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-01-03 16:41+0100\n" "PO-Revision-Date: 2010-02-13 17:01+0100\n" "Last-Translator: Fabio Castelli \n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: ../data/gextractwinicons.glade.h:1 msgid "Available resources:" msgstr "" #: ../data/gextractwinicons.glade.h:2 msgid "Deselect all" msgstr "" #: ../data/gextractwinicons.glade.h:3 msgid "Destination folder:" msgstr "" #: ../data/gextractwinicons.glade.h:4 msgid "File to open:" msgstr "" #: ../data/gextractwinicons.glade.h:5 msgid "Please select a file to list the available resources" msgstr "" #: ../data/gextractwinicons.glade.h:6 msgid "Select all" msgstr "" #: ../data/gextractwinicons.glade.h:7 msgid "Select only PNGs" msgstr "" #: ../data/gextractwinicons.glade.h:8 msgid "Select path for saving" msgstr "" #: ../gextractwinicons:117 msgid "icon" msgstr "" #: ../gextractwinicons:119 msgid "cursor" msgstr "" #: ../gextractwinicons:139 msgid "Preview" msgstr "" #: ../gextractwinicons:144 msgid "Type" msgstr "" #: ../gextractwinicons:149 msgid "Name" msgstr "" #: ../gextractwinicons:156 msgid "Width" msgstr "" #: ../gextractwinicons:162 msgid "Height" msgstr "" #: ../gextractwinicons:168 msgid "Bits" msgstr "" #: ../gextractwinicons:174 msgid "Size" msgstr "" #: ../gextractwinicons:179 msgid "Extract" msgstr "" #: ../gextractwinicons:206 msgid "cursors" msgstr "" #: ../gextractwinicons:206 msgid "icons" msgstr "" #: ../gextractwinicons:327 msgid "Extraction completed." msgstr "" #: ../gextractwinicons:375 msgid "" "A GTK utility to extract cursors, icons and png image previews from MS " "Windows resource files (like .exe, .dll, .ocx, .cpl)." msgstr "" #: ../gextractwinicons:452 msgid "MS Windows compatible files" msgstr "" #: ../gextractwinicons:454 msgid "All files" msgstr "" #: ../gextractwinicons:456 #, python-format msgid "%d resources found (%d resources selected)" msgstr "" gextractwinicons-0.3.1/man/gextractwinicons.10000644000175000017500000000261011322711676021237 0ustar muflonemuflone.\" $Id: gextractwinicons.1 0.3 2010-01-11 22:05 muflone $ .\" .\" Copyright (c) 2009-2010 Fabio Castelli .TH GEXTRACTWINICONS "1" "January 3, 2010" .SH NAME .B gExtractWinIcons \- Extract cursors and icons from MS Windows compatible resource files .SH SYNOPSIS .B gextractwinicons \-h .br .B gextractwinicons [options] .SH DESCRIPTION .PP .B gExtractWinIcons is a GTK+ utility to extract cursors, icons and png images from MS Windows compatible resource files (.exe, .dll, .ocx, .cpl and many others). .PP To extract icons or cursors just to select a MS Windows compatible resource file and the contained resources will be shown. Select a destination directory where to save the selected resources, simply check the items to extract and press the save button to save them in the specified path. .SH "OPTIONS" This program follow the usual GNU command line syntax, with long options starting with two dashes (`\-'). A summary of options is included below. .TP .B \-h, \-\-help Show summary of options .TP .B \-d, \-\-destination Set destination folder for extracted resources .TP .B \-f, \-\-filename Set resources filename from which to extract the resources .TP .B \-r, \-\-refresh Automatically refresh the resources list if \-f (\-\-filename) was specified .SH AUTHORS .B gExtractWinIcons was written by Fabio Castelli . .SH HOMEPAGE http://code.google.com/p/gextractwinicons/ gextractwinicons-0.3.1/doc/copyright0000644000175000017500000004321611322711465017512 0ustar muflonemufloneCopyright 2009-2010 Fabio Castelli License: GPL-2+ GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU 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 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. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. gextractwinicons-0.3.1/doc/README0000644000175000017500000000143311322711502016422 0ustar muflonemuflonegExtractWinIcons - Extract cursors and icons from MS Windows compatible resource files. Copyright 2009-2010 Fabio Castelli License: GPL-2+ (please see the copyright file) Description: gExtractWinIcons is a tool to extract icons and cursors from MS Windows resource files (.exe, .dll, .ocx, .cpl and many others). It runs on GNU/Linux with GTK+ interface. Requirements: Python >= 2.5 (python) GTK libraries (libgtk2.0) Glade libraries (libglade2-0) SVG support library (librsvg2-2) Python GTK bindings (python-gtk2) Python Glade2 bindings (python-glade2) IcoUtils package (icoutils) Please report any bugs in gExtractWinIcons to the author: Fabio Castelli Homepage: Official project: http://code.google.com/p/gextractwinicons/ gextractwinicons-0.3.1/doc/changelog0000644000175000017500000000160411461057625017431 0ustar muflonemuflonegextractwinicons 0.3.1 * Fixed spanish translation (thanks to Federico Caiazza and Fitoschido) * Disabled file chooser during the scan to prevent file changes * Fixed defect on cursors extraction (Debian bug #600015) -- Fabio Castelli Sun, 24 Oct 2010 18:32:13 +0200 gextractwinicons 0.3 * Added french translation (thanks to Emmanuel) * Added manpage * Added commandline options * Minor code modifications -- Fabio Castelli Sun, 03 Jan 2010 16:55:30 +0100 gextractwinicons 0.2 * Fixed minor translation issues * Added filters for file opening dialog * Auto-refresh on file opening * Fixed missing librsvg2-common dependency -- Fabio Castelli Fri, 29 Aug 2009 03:46:00 +0100 gextractwinicons 0.1 * Initial release -- Fabio Castelli Fri, 28 Aug 2009 14:00:00 +0100 gextractwinicons-0.3.1/doc/translators0000644000175000017500000000047311461057700020053 0ustar muflonemufloneEnglish: Fabio Castelli Italian: Fabio Castelli French: Emmanuel Spanish: pepeleproso Federico Caiazza Fitoschido Russian: HsH gextractwinicons-0.3.1/data/gextractwinicons.svg0000644000175000017500000005431111245076527022044 0ustar muflonemuflone image/svg+xml Muflone Document Print print document hardcopy gextractwinicons-0.3.1/data/gextractwinicons.glade0000644000175000017500000002441511246104006022304 0ustar muflonemuflone gExtractWinIcons True 7 vertical 5 True 2 3 3 3 True 0 File to open: GTK_FILL True 1 2 gtk-refresh True False True True True 2 3 GTK_FILL GTK_FILL True 0 Destination folder: 1 2 GTK_FILL True select-folder Select path for saving 1 3 1 2 False 0 True 0 <b>Available resources:</b> True False 1 True True automatic automatic etched-out True True 2 True 3 True Select all True False True True 0 Deselect all True False True True 1 Select only PNGs True False True True 2 False 3 True Please select a file to list the available resources False 4 True 4 True True 0.40000000000000002 40 0 100 1 0 0 0 gtk-save True False True True True True True 1 True True True True gtk-about False 2 False 5 gextractwinicons-0.3.1/data/gextractwinicons.desktop0000644000175000017500000000055011320116553022676 0ustar muflonemuflone[Desktop Entry] Version=1.0 Name=gExtractWinIcons Comment=Extract cursors and icons from MS Windows compatible resource files Type=Application Comment[it_IT]=Estrae cursori e icone dai files di risorsa compatibili con MS Windows Exec=/usr/bin/gextractwinicons Icon=/usr/share/gextractwinicons/data/gextractwinicons.svg Terminal=false Categories=Graphics;GTK; gextractwinicons-0.3.1/po/en_US/LC_MESSAGES/gextractwinicons.mo0000644000175000017500000000363711320136521024151 0ustar muflonemuflone%P*Q||  $1EM cqx4   (-3*|   4: BM^uz     %d resources found (%d resources selected)Available resources:A GTK utility to extract cursors, icons and png image previews from MS Windows resource files (like .exe, .dll, .ocx, .cpl).All filesBitsDeselect allDestination folder:ExtractExtraction completed.File to open:HeightMS Windows compatible filesNamePlease select a file to list the available resourcesPreviewSelect allSelect only PNGsSelect path for savingSizeTypeWidthcursorcursorsiconiconsProject-Id-Version: gextractwinicons 0.3 Report-Msgid-Bugs-To: Fabio Castelli POT-Creation-Date: 2010-01-03 16:41+0100 PO-Revision-Date: 2010-01-03 16:44+0100 Last-Translator: Fabio Castelli Language-Team: English MIME-Version: 1.0 Content-Type: text/plain; charset=ASCII Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %d resources found (%d resources selected)Available resources:A GTK utility to extract cursors, icons and png image previews from MS Windows resource files (like .exe, .dll, .ocx, .cpl).All filesBitsDeselect allDestination folder:ExtractExtraction completed.File to open:HeightMS Windows compatible filesNamePlease select a file to list the available resourcesPreviewSelect allSelect only PNGsSelect path for savingSizeTypeWidthcursorcursorsiconiconsgextractwinicons-0.3.1/po/fr/LC_MESSAGES/gextractwinicons.mo0000644000175000017500000000405211320136521023537 0ustar muflonemuflone%P*Q||  $1EM cqx4   (-37  $'L?P/  "     %d resources found (%d resources selected)Available resources:A GTK utility to extract cursors, icons and png image previews from MS Windows resource files (like .exe, .dll, .ocx, .cpl).All filesBitsDeselect allDestination folder:ExtractExtraction completed.File to open:HeightMS Windows compatible filesNamePlease select a file to list the available resourcesPreviewSelect allSelect only PNGsSelect path for savingSizeTypeWidthcursorcursorsiconiconsProject-Id-Version: gextractwinicons 0.3 Report-Msgid-Bugs-To: Fabio Castelli POT-Creation-Date: 2010-01-03 16:41+0100 PO-Revision-Date: 2010-01-03 16:44+0100 Last-Translator: Emmanuel Language-Team: French MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); %d ressources trouvées (%d ressources sélectionnées)Ressources disponibles : Un outil GTK pour extraire pointeurs, icônes et aperçus des images png des fichiers de ressources pour MS Windows (comme .exe, .dll, .ocx, .cpl).Tous les fichiersBitsTous désélectionnerDossier de destination:ExtraireExtraction terminée.Fichier à ouvrir :HauteurFichiers compatibles avec MS WindowsNomSélectionner un fichier pour lister les ressources disponiblesAperçuTous sélectionnerSélectionner que PNGSélectionner le parcours pour l'enregistrementDimensionTypeLargeurpointeurpointeursicôneicônesgextractwinicons-0.3.1/po/it/LC_MESSAGES/gextractwinicons.mo0000644000175000017500000000375511320136521023555 0ustar muflonemuflone%P*Q||  $1EM cqx4   (-3+  &5+ ak{(       %d resources found (%d resources selected)Available resources:A GTK utility to extract cursors, icons and png image previews from MS Windows resource files (like .exe, .dll, .ocx, .cpl).All filesBitsDeselect allDestination folder:ExtractExtraction completed.File to open:HeightMS Windows compatible filesNamePlease select a file to list the available resourcesPreviewSelect allSelect only PNGsSelect path for savingSizeTypeWidthcursorcursorsiconiconsProject-Id-Version: gextractwinicons 0.3 Report-Msgid-Bugs-To: Fabio Castelli POT-Creation-Date: 2010-01-03 16:41+0100 PO-Revision-Date: 2010-01-03 16:44+0100 Last-Translator: Fabio Castelli Language-Team: Italian MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %d risorse trovate (%d risorse selezionate)Risorse disponibili:Un'utilità GTK per estrarre cursori, icone e anteprime delle immagini png dai files di risorse per MS Windows (come .exe, .dll, .ocx, .cpl).Tutti i filesBitDeseleziona tuttoCartella di destinazione:EstrarreEstrazione completata.File da aprire:AltezzaFiles compatibili MS WindowsNomeScegliere un file per elencare le risorse disponibiliAnteprimaSeleziona tuttoSeleziona solo PNGSeleziona il percorso per il salvataggioDimensioneTipoLarghezzacursorecursoriiconaicone