gwakeonlan-0.5.1/0000755000175000017500000000000011456613640012741 5ustar fibia9fibia9gwakeonlan-0.5.1/data/0000755000175000017500000000000011456621237013653 5ustar fibia9fibia9gwakeonlan-0.5.1/po/0000755000175000017500000000000011456621237013360 5ustar fibia9fibia9gwakeonlan-0.5.1/man/0000755000175000017500000000000011456621237013515 5ustar fibia9fibia9gwakeonlan-0.5.1/doc/0000755000175000017500000000000011456621237013507 5ustar fibia9fibia9gwakeonlan-0.5.1/gwakeonlan0000755000175000017500000004061711456573177015037 0ustar fibia9fibia9#!/usr/bin/env python # -*- coding: utf-8 -*- ## # Project: gWakeOnLan - Wake up your machines using Wake on LAN. # 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 pygtk import ConfigParser import os.path import sys import time import struct import socket import gettext import locale from optparse import OptionParser from gettext import gettext as _ __file_path__ = os.path.dirname(os.path.abspath(__file__)) CONFIG_FILE = '~/.gwakeonlan' APP_NAME = 'gwakeonlan' APP_TITLE = 'gWakeOnLan' APP_VERSION = '0.5.1' COL_SELECTED, COL_MACHINE, COL_ADDRESS, COL_REQTYPE, COL_DESTINATION, COL_PORTNR = range(6) SECTION_MAINWIN = 'main window' SECTION_HOSTS = 'hosts' ARP_CACHE_FILENAME = '/proc/net/arp' VERBOSE_LEVEL_QUIET, VERBOSE_LEVEL_NORMAL, VERBOSE_LEVEL_MAX = range(3) PATHS = { 'locale': [ '%s/po' % __file_path__, '%s/share/locale' % sys.prefix], 'ui': [ '%s/data' % __file_path__, '%s/share/%s' % (sys.prefix, APP_NAME)], 'gfx': [ '%s/data' % __file_path__, '%s/share/%s' % (sys.prefix, APP_NAME)], 'doc': [ '%s/doc' % __file_path__, '%s/share/doc/%s' % (sys.prefix, APP_NAME)] } def __searchPath(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 = __searchPath('gfx', '%s.svg' % APP_NAME) def logText(text, verbose_level=VERBOSE_LEVEL_NORMAL): "Print a text with current date and time based on verbose level" if verbose_level <= options.verbose_level: print '[%s] %s' % (time.strftime('%Y/%m/%d %H:%M:%S'), text) 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 showMachineDialog(action_add, machine, mac, destination, portnr): "Show the machine dialog with the indicated values, run, then hide" dlgMachine.set_title(action_add and _('Add machine') or _('Edit machine')) txtMachineName.set_text(machine) txtMACAddress.set_text(mac) txtHostAddress.set_text(destination) spinPortNumber.set_value(portnr) # Select local or internet radio button if destination == '255.255.255.255': radioRequestLocal.set_active(True) else: radioRequestInternet.set_active(True) txtMachineName.grab_focus() response = 0 # Hide errors label lblError.set_property('visible', False) # Repeat until there're no more errors or dialog is closed while not response: response = dlgMachine.run() mac = txtMACAddress.get_text() # Replace separator characters for c in (':-= '): mac = mac.replace(c, '') if response == gtk.RESPONSE_OK: # Check values for valid response err_msg = '' if not txtMachineName.get_text(): err_msg = _('Missing machine name') elif not (len(mac) == 12 and all(c in '1234567890ABCDEF' for c in mac.upper())): err_msg = _('Invalid MAC address') elif radioRequestInternet.get_active() and not txtHostAddress.get_text(): err_msg = _('Invalid destination host') # There was an error, don't close the dialog if err_msg: lblError.set_property('visible', True) lblError.set_markup('%s' % err_msg) # Don't close the dialog if there's some error response = 0 # Replace MAC address without separators txtMACAddress.set_text(mac) # If local request set the broadcast mask if radioRequestLocal.get_active(): txtHostAddress.set_text('255.255.255.255') dlgMachine.hide() return response def formatMAC(mac): "Return the mac address formatted with colon" return ':'.join([mac[i:i+2] for i in xrange(0, len(mac), 2)]).upper() def get_request_type(host): "Return the request type for the specified host" return host == '255.255.255.255' and _('Local') or _('Internet') def saveConfig(): "Save configuration for window and machines" config = ConfigParser.RawConfigParser() # Allow saving in case sensitive (useful for machine names) config.optionxform = str # Main window settings section config.add_section(SECTION_MAINWIN) # Window position position = winMain.get_position() config.set(SECTION_MAINWIN, 'left', position[0]) config.set(SECTION_MAINWIN, 'top', position[1]) # Window size size = winMain.get_size() config.set(SECTION_MAINWIN, 'width', size[0]) config.set(SECTION_MAINWIN, 'height', size[1]) # Hosts section config.add_section(SECTION_HOSTS) for machine in modelMachines: config.set(SECTION_HOSTS, machine[COL_MACHINE], '%s\\%s\\%d' % ( machine[COL_ADDRESS].replace(':', ''), machine[COL_DESTINATION], machine[COL_PORTNR]) ) # Save changes filename = open(os.path.expanduser(CONFIG_FILE), mode='w') config.write(filename) filename.close() def loadConfig(): "Load configuration for window and machines" config = ConfigParser.RawConfigParser() # Allow loading in case sensitive config.optionxform = str if os.path.exists(os.path.expanduser(CONFIG_FILE)): config.read(os.path.expanduser(CONFIG_FILE)) # Main window settings if config.has_section(SECTION_MAINWIN): # Move window to saved position if config.has_option(SECTION_MAINWIN, 'left'): position_left = config.getint(SECTION_MAINWIN, 'left') if config.has_option(SECTION_MAINWIN, 'top'): position_top = config.getint(SECTION_MAINWIN, 'top') winMain.move(position_left, position_top) # Set size to saved size if config.has_option(SECTION_MAINWIN, 'width'): position_width = config.getint(SECTION_MAINWIN, 'width') if config.has_option(SECTION_MAINWIN, 'height'): position_height = config.getint(SECTION_MAINWIN, 'height') #winMain.resize(position_width, position_height) winMain.set_default_size(position_width, position_height) # Hosts settings if config.has_section(SECTION_HOSTS): for machine in config.items(SECTION_HOSTS): machine = ('%s\\%s\\255.255.255.255\\9' % machine).split('\\', 4) modelMachines.append([ False, machine[0], formatMAC(machine[1]), get_request_type(machine[2]), machine[2], int(machine[3]) ]) def wake_on_lan(macaddress, destination, portnr): "Turn on remote machine using WOL." logText('turning on: %s through %s using port number %d' % ( macaddress, destination, portnr)) # Magic packet (6 times FF + 16 times MAC address) packet = 'FF' * 6 + macaddress.replace(':', '') * 16 data = [] for i in xrange(0, len(packet), 2): data.append(struct.pack('B', int(packet[i:i+2], 16))) # Send magic packet to the destination logText('sending packet %s [%d/%d]\n' % ( packet, len(packet), len(data))) sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1) if destination == '255.255.255.255': destination = '' sock.sendto(''.join(data), (destination, portnr)) def on_winMain_delete_event(widget, data=None): "Save configuration then close the windows and gtk main loop" saveConfig() dlgMachine.destroy() gtk.main_quit() return 0 def on_btnWake_clicked(widget, data=None): "Awake the selected machines" for machine in modelMachines: if machine[COL_SELECTED]: wake_on_lan( machine[COL_ADDRESS], machine[COL_DESTINATION], machine[COL_PORTNR] ) def on_btnAdd_clicked(widget, data=None): "Add a new empty machine" addMachine('', '', '255.255.255.255', 9) def on_btnEdit_clicked(widget, data=None): "Edit the selected machine" selected = tvwMachines.get_selection().get_selected()[1] if selected: iter = modelMachines[selected] if showMachineDialog( False, iter[COL_MACHINE], iter[COL_ADDRESS], iter[COL_DESTINATION], iter[COL_PORTNR] ) == gtk.RESPONSE_OK: # Edit information iter[COL_MACHINE] = txtMachineName.get_text() iter[COL_ADDRESS] = formatMAC(txtMACAddress.get_text()) iter[COL_REQTYPE] = get_request_type(txtHostAddress.get_text()) iter[COL_DESTINATION] = txtHostAddress.get_text() iter[COL_PORTNR] = spinPortNumber.get_value_as_int() def on_btnDelete_clicked(widget, data=None): "Delete the selected machine" selected = tvwMachines.get_selection().get_selected()[1] if selected: # Ask confirm to delete the selected machine dialog = gtk.MessageDialog(parent=None, flags=gtk.DIALOG_MODAL, type=gtk.MESSAGE_QUESTION, buttons=gtk.BUTTONS_YES_NO, message_format=_('Are you sure you want to remove the selected machine?') ) dialog.set_title(_('Delete machine')) dialog.set_default_response(gtk.RESPONSE_NO) dialog.set_icon_from_file(APP_LOGO) if dialog.run() == gtk.RESPONSE_YES: # Response was yes modelMachines.remove(selected) dialog.destroy() def on_btnAbout_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 awake turned off computers through ' 'the Wake on LAN feature.')) about.set_icon_from_file(APP_LOGO) about.set_logo(gtk.gdk.pixbuf_new_from_file(APP_LOGO)) about.set_copyright('Copyright 2009-2010 Fabio Castelli') about.set_translator_credits(readTextFile(__searchPath('doc','translators'))) about.set_license(readTextFile(__searchPath('doc','copyright'))) about.set_website_label(APP_TITLE) gtk.about_dialog_set_url_hook(lambda url, data=None: url) about.set_website('http://code.google.com/p/gwakeonlan/') about.set_authors(['Fabio Castelli ', 'http://www.ubuntutrucchi.it']) about.run() about.destroy() def on_cellSelected_toggled(renderer, path, data=None): "Select or deselect an item" modelMachines[path][COL_SELECTED] = not modelMachines[path][COL_SELECTED] def on_radioRequest_toggled(widget, data=None): "Activates the host and port number only for internet request type" active = radioRequestInternet.get_active() lblHostAddress.set_sensitive(active) txtHostAddress.set_sensitive(active) def addMachine(machine, mac, destination, portnr): "Show the dialog to add a machine with specified arguments" if showMachineDialog(True, machine, mac, destination, portnr) == gtk.RESPONSE_OK: modelMachines.append([ False, txtMachineName.get_text(), formatMAC(txtMACAddress.get_text()), get_request_type(txtHostAddress.get_text()), txtHostAddress.get_text(), spinPortNumber.get_value_as_int() ]) def on_btnAdd_show_menu(widget, data=None): "Detect machines from the arp cache" # Remove previous detected addresses for item in menuDetected.get_children(): menuDetected.remove(item) detected_addresses.clear() # Read ARP cache file if os.path.isfile(ARP_CACHE_FILENAME): try: arpf = open(ARP_CACHE_FILENAME, 'r') # Skip first and last line for line in arpf.readlines()[1:]: if line: # Add IP address logText('arp line:\n%s' % line, VERBOSE_LEVEL_MAX) menu_item = gtk.MenuItem(line[:17].rstrip()) menu_item.show() menu_item.connect('activate', on_menuitemMachineDetected_activate) detected_ip = line[:17].rstrip() detected_mac = line[41:58] logText('discovered %s with address %s' % ( detected_ip, detected_mac)) detected_addresses[detected_ip] = (menu_item, detected_mac) menuDetected.append(menu_item) arpf.close() except: logText('unable to read from %s' % ARP_CACHE_FILENAME) # If no machines are detected add a disabled caption if not menuDetected.get_children(): menu_item = gtk.MenuItem(_('No machines detected')) menu_item.set_sensitive(False) menu_item.show() menuDetected.append(menu_item) def on_menuitemMachineDetected_activate(widget, data=None): "Add a detected machine from the arp cache" ip_address = widget.get_children()[0].get_label() mac_address = detected_addresses[ip_address][1].upper() addMachine(ip_address, mac_address, '255.255.255.255', 9) def fixColumns(): "Fix column properties not supported by Glade 3.6.3" # Column titles were not marked as translatable so they got excluded from # intltool-extract # Moreover glade 3.6.3 has no support for sort_column_id column = gw('columnSelected') column.set_title('') column.set_sort_column_id(COL_SELECTED) column = gw('columnMachine') column.set_title(_('Machine name')) column.set_sort_column_id(COL_MACHINE) column = gw('columnMacAddress') column.set_title(_('MAC address')) column.set_sort_column_id(COL_ADDRESS) column = gw('columnRequestType') column.set_title(_('Request type')) column.set_sort_column_id(COL_REQTYPE) column = gw('columnDestination') column.set_title(_('Destination')) column.set_sort_column_id(COL_DESTINATION) column = gw('columnPortNr') column.set_title(_('Port NR')) column.set_sort_column_id(COL_PORTNR) # Doesn't work at all, neither in glade interface, maybe a bug? # cell = gw('columnPortNr').get_cell_renderers()[0] # cell.set_property('xalign', 0.50) # print gw('columnPortNr').get_cell_renderers()[0].get_property('xalign') # # Command line options and arguments parser = OptionParser(usage='usage: %prog [options]') parser.set_defaults(verbose_level=VERBOSE_LEVEL_NORMAL) parser.add_option('-v', '--verbose', dest='verbose_level', action='store_const', const=VERBOSE_LEVEL_MAX, help='show error and information messages') parser.add_option('-q', '--quiet', dest='verbose_level', action='store_const', const=VERBOSE_LEVEL_QUIET, help='hide error and information messages') (options, args) = parser.parse_args() # Signals handlers signals = { 'on_winMain_delete_event': on_winMain_delete_event, 'on_btnWake_clicked': on_btnWake_clicked, 'on_btnAdd_clicked': on_btnAdd_clicked, 'on_btnEdit_clicked': on_btnEdit_clicked, 'on_btnDelete_clicked': on_btnDelete_clicked, 'on_btnAdd_show_menu': on_btnAdd_show_menu, 'on_menuitemMachineDetected_activate': on_menuitemMachineDetected_activate, 'on_btnAbout_clicked': on_btnAbout_clicked, 'on_radioRequest_toggled': on_radioRequest_toggled, 'on_cellSelected_toggled': on_cellSelected_toggled } # Load domain for translation for module in (gettext, locale): module.bindtextdomain(APP_NAME, __searchPath('locale')) module.textdomain(APP_NAME) # Load interfaces builder = gtk.Builder() builder.set_translation_domain(APP_NAME) builder.add_from_file(__searchPath('ui', '%s.glade' % APP_NAME)) builder.connect_signals(signals) gw = builder.get_object # Main window winMain = gw('winMain') winMain.set_icon_from_file(APP_LOGO) tvwMachines = gw('tvwMachines') btnAdd = gw('btnAdd') menuDetected = gtk.Menu() btnAdd.set_menu(menuDetected) detected_addresses = {} modelMachines = gw('modelMachines') # Machine dialog dlgMachine = gw('dlgMachine') dlgMachine.set_icon_from_file(APP_LOGO) txtMachineName = gw('txtMachineName') txtMACAddress = gw('txtMACAddress') lblHostAddress = gw('lblHostAddress') txtHostAddress = gw('txtHostAddress') lblPortNumber = gw('lblPortNumber') spinPortNumber = gw('spinPortNumber') radioRequestLocal = gw('radioRequestLocal') radioRequestInternet = gw('radioRequestInternet') lblError = gw('lblError') dlgMachine.set_default_response(-5) txtMachineName.set_activates_default(True) txtMACAddress.set_activates_default(True) spinPortNumber.set_activates_default(True) txtHostAddress.set_activates_default(True) # Load configuration fixColumns() loadConfig() tvwMachines.set_model(modelMachines) # Auto-resize columns to the content tvwMachines.realize() tvwMachines.columns_autosize() modelMachines.set_sort_column_id(COL_MACHINE, gtk.SORT_ASCENDING) winMain.show() gtk.main() gwakeonlan-0.5.1/setup.py0000755000175000017500000000530411456573166014470 0ustar fibia9fibia9#!/usr/bin/env python ## # Project: gWakeOnLan - Wake up your machines using Wake on LAN. # 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, 'gwakeonlan.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', 'gwakeonlan.mo')) data_files.append((dest, [mo])) return data_files setup(name='gWakeOnLan', version='0.5.1', description='Wake up your machines using Wake on LAN.', author='Fabio Castelli', author_email='muflone@vbsimple.net', url='http://code.google.com/p/gwakeonlan/', license='GPL v2', scripts=['gwakeonlan'], data_files=[ ('share/applications', ['data/gwakeonlan.desktop']), ('share/man/man1', ['man/gwakeonlan.1']), ('share/doc/gwakeonlan', ['doc/README', 'doc/changelog', 'doc/translators']), ('share/gwakeonlan', ['data/gwakeonlan.glade', 'data/gwakeonlan.svg']), ], cmdclass={'install_data': InstallData} ) gwakeonlan-0.5.1/data/gwakeonlan.glade0000644000175000017500000006202511337775776017024 0ustar fibia9fibia9 gWakeOnLan 400 250 True vertical True True Turn On True Turn On True gtk-execute False True True False True True Add machine Add machine True gtk-add False True True Edit machine Edit machine True gtk-edit False True True Delete machine Delete machine True gtk-remove False True True False True True About About True gtk-about False True False 0 True True 3 automatic automatic in True True modelMachines True 0 True Machine name True True 1 MAC address True 3 2 Request type True 3 True Destination True True 4 Port NR True 0.5 5 1 True True 9 False True mouse normal False True vertical 2 True vertical 6 True <big><b>Insert the machine name and its MAC address</b></big> True 0 True 7 True 0.10000000149011612 72 computer False 4 0 True 6 3 8 7 True 0 _Machine name: True txtMachineName GTK_FILL True 0 MAC _Address: True txtMACAddress 1 2 GTK_FILL True True 30 1 3 True True 17 1 3 1 2 True 0 Request type: 3 4 GTK_FILL True False True 128 1 3 4 5 True False 0 _Destination host: True txtHostAddress 4 5 GTK_FILL True 0 _UDP port number: True spinPortNumber 2 3 GTK_FILL True True 5 adjustment1 True 1 3 2 3 _Local (broadcast) True True False True True True 1 2 3 4 _Internet True True False True True radioRequestLocal 2 3 3 4 True <b><span foreground="red">ERROR</span></b> True 3 5 6 1 1 1 True end gtk-cancel True True True True False False 0 gtk-ok True True True True True True False False 1 False end 0 btnCancel btnOk 90 1 65535 1 10 gwakeonlan-0.5.1/data/gwakeonlan.desktop0000644000175000017500000000073611337304351017373 0ustar fibia9fibia9[Desktop Entry] Version=1.0 Name=gWakeOnLan Comment=A GTK+ utility to awake turned off machine using the Wake On LAN feature. Type=Application Comment[it_IT]=Un'utilità GTK+ per risvegliare macchine spente usando il Wake On LAN. Comment[fr_FR]=Un outil GTK+ pour réveiller les ordinateurs éteints grâce à le Wake On LAN. Exec=/usr/bin/gwakeonlan Icon=/usr/share/gwakeonlan/gwakeonlan.svg Terminal=false Categories=Network;GTK; Name[it_IT]=gWakeOnLan Name[ft_FR]=gWakeOnLan gwakeonlan-0.5.1/data/gwakeonlan.svg0000644000175000017500000030332011337304351016514 0ustar fibia9fibia9 image/svg+xml gwakeonlan-0.5.1/po/de.po0000644000175000017500000000565011362350131014302 0ustar fibia9fibia9# gWakeOnLan - Wake up your machines using Wake on LAN. # 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 gwakeonlan package. # msgid "" msgstr "" "Project-Id-Version: gwakeonlan 0.5\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-02-20 13:27+0100\n" "PO-Revision-Date: 2010-04-04 04:47+0200\n" "Last-Translator: Martin Riemenschneider \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/gwakeonlan.glade.h:1 msgid "Insert the machine name and its MAC address" msgstr "Rechnername und die MAC-Adresse eingeben" #: ../data/gwakeonlan.glade.h:2 msgid "About" msgstr "Über" #: ../data/gwakeonlan.glade.h:3 ../gwakeonlan:90 msgid "Add machine" msgstr "Rechner hinzufügen" #: ../data/gwakeonlan.glade.h:4 ../gwakeonlan:277 msgid "Delete machine" msgstr "Rechner entfernen" #: ../data/gwakeonlan.glade.h:5 ../gwakeonlan:90 msgid "Edit machine" msgstr "Rechner bearbeiten" #: ../data/gwakeonlan.glade.h:6 msgid "MAC _Address:" msgstr "MAC _Adresse:" #: ../data/gwakeonlan.glade.h:7 msgid "Request type:" msgstr "Anfragetyp:" #: ../data/gwakeonlan.glade.h:8 msgid "Turn On" msgstr "Anschalten" #: ../data/gwakeonlan.glade.h:9 msgid "_Destination host:" msgstr "_Zielrechner:" #: ../data/gwakeonlan.glade.h:10 msgid "_Internet" msgstr "_Internet" #: ../data/gwakeonlan.glade.h:11 msgid "_Local (broadcast)" msgstr "_Lokal (Broadcast)" #: ../data/gwakeonlan.glade.h:12 msgid "_Machine name:" msgstr "_Rechnername:" #: ../data/gwakeonlan.glade.h:13 msgid "_UDP port number:" msgstr "_UDP Port:" #: ../gwakeonlan:115 msgid "Missing machine name" msgstr "Fehlender Rechnername" #: ../gwakeonlan:117 msgid "Invalid MAC address" msgstr "Ungültige MAC-Adresse" #: ../gwakeonlan:119 msgid "Invalid destination host" msgstr "Ungültiger Zielrechner" #: ../gwakeonlan:140 msgid "Local" msgstr "Lokal" #: ../gwakeonlan:140 msgid "Internet" msgstr "Internet" #: ../gwakeonlan:275 msgid "Are you sure you want to remove the selected machine?" msgstr "Möchten sie den ausgewählten Rechner wirklich entfernen?" #: ../gwakeonlan:290 msgid "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." msgstr "" "Ein GTK+ Tool, welches ausgeschaltete Rechner durch Wake on LAN (WOL) " "anschalten kann." #: ../gwakeonlan:357 msgid "No machines detected" msgstr "Keine Rechner gefunden" #: ../gwakeonlan:378 msgid "Machine name" msgstr "Rechnername" #: ../gwakeonlan:382 msgid "MAC address" msgstr "MAC-Adresse" #: ../gwakeonlan:386 msgid "Request type" msgstr "Anfrage-Typ" #: ../gwakeonlan:390 msgid "Destination" msgstr "Ziel" #: ../gwakeonlan:394 msgid "Port NR" msgstr "Port" gwakeonlan-0.5.1/po/en_US.po0000644000175000017500000000563211337752727014746 0ustar fibia9fibia9# gWakeOnLan - Wake up your machines using Wake on LAN. # 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 gwakeonlan package. # msgid "" msgstr "" "Project-Id-Version: gwakeonlan 0.5\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-02-20 13:27+0100\n" "PO-Revision-Date: 2010-02-20 13:27+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/gwakeonlan.glade.h:1 msgid "Insert the machine name and its MAC address" msgstr "Insert the machine name and its MAC address" #: ../data/gwakeonlan.glade.h:2 msgid "About" msgstr "About" #: ../data/gwakeonlan.glade.h:3 ../gwakeonlan:90 msgid "Add machine" msgstr "Add machine" #: ../data/gwakeonlan.glade.h:4 ../gwakeonlan:277 msgid "Delete machine" msgstr "Delete machine" #: ../data/gwakeonlan.glade.h:5 ../gwakeonlan:90 msgid "Edit machine" msgstr "Edit machine" #: ../data/gwakeonlan.glade.h:6 msgid "MAC _Address:" msgstr "MAC _Address:" #: ../data/gwakeonlan.glade.h:7 msgid "Request type:" msgstr "Request type:" #: ../data/gwakeonlan.glade.h:8 msgid "Turn On" msgstr "Turn On" #: ../data/gwakeonlan.glade.h:9 msgid "_Destination host:" msgstr "_Destination host:" #: ../data/gwakeonlan.glade.h:10 msgid "_Internet" msgstr "_Internet" #: ../data/gwakeonlan.glade.h:11 msgid "_Local (broadcast)" msgstr "_Local (broadcast)" #: ../data/gwakeonlan.glade.h:12 msgid "_Machine name:" msgstr "_Machine name:" #: ../data/gwakeonlan.glade.h:13 msgid "_UDP port number:" msgstr "_UDP port number:" #: ../gwakeonlan:115 msgid "Missing machine name" msgstr "Missing machine name" #: ../gwakeonlan:117 msgid "Invalid MAC address" msgstr "Invalid MAC address" #: ../gwakeonlan:119 msgid "Invalid destination host" msgstr "Invalid destination host" #: ../gwakeonlan:140 msgid "Local" msgstr "Local" #: ../gwakeonlan:140 msgid "Internet" msgstr "Internet" #: ../gwakeonlan:275 msgid "Are you sure you want to remove the selected machine?" msgstr "Are you sure you want to remove the selected machine?" #: ../gwakeonlan:290 msgid "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." msgstr "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." #: ../gwakeonlan:357 msgid "No machines detected" msgstr "No machines detected" #: ../gwakeonlan:378 msgid "Machine name" msgstr "Machine name" #: ../gwakeonlan:382 msgid "MAC address" msgstr "MAC address" #: ../gwakeonlan:386 msgid "Request type" msgstr "Request type" #: ../gwakeonlan:390 msgid "Destination" msgstr "Destination" #: ../gwakeonlan:394 msgid "Port NR" msgstr "Port NR" gwakeonlan-0.5.1/po/it.po0000644000175000017500000000576311337753377014360 0ustar fibia9fibia9# gWakeOnLan - Wake up your machines using Wake on LAN. # 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 gwakeonlan package. # msgid "" msgstr "" "Project-Id-Version: gwakeonlan 0.5\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-02-20 13:27+0100\n" "PO-Revision-Date: 2010-02-20 13:27+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/gwakeonlan.glade.h:1 msgid "Insert the machine name and its MAC address" msgstr "Inserisci il nome della macchina e il suo indirizzo MAC" #: ../data/gwakeonlan.glade.h:2 msgid "About" msgstr "Informazioni" #: ../data/gwakeonlan.glade.h:3 ../gwakeonlan:90 msgid "Add machine" msgstr "Aggiungi" #: ../data/gwakeonlan.glade.h:4 ../gwakeonlan:277 msgid "Delete machine" msgstr "Elimina" #: ../data/gwakeonlan.glade.h:5 ../gwakeonlan:90 msgid "Edit machine" msgstr "Modifica" #: ../data/gwakeonlan.glade.h:6 msgid "MAC _Address:" msgstr "Indirizzo M_AC:" #: ../data/gwakeonlan.glade.h:7 msgid "Request type:" msgstr "Tipo di richiesta:" #: ../data/gwakeonlan.glade.h:8 msgid "Turn On" msgstr "Accendi" #: ../data/gwakeonlan.glade.h:9 msgid "_Destination host:" msgstr "Sistema di _destinazione:" #: ../data/gwakeonlan.glade.h:10 msgid "_Internet" msgstr "_Internet" #: ../data/gwakeonlan.glade.h:11 msgid "_Local (broadcast)" msgstr "_Locale (broadcast)" #: ../data/gwakeonlan.glade.h:12 msgid "_Machine name:" msgstr "Nome della _macchina:" #: ../data/gwakeonlan.glade.h:13 msgid "_UDP port number:" msgstr "Numero di porta _UDP:" #: ../gwakeonlan:115 msgid "Missing machine name" msgstr "Nome della macchina mancante" #: ../gwakeonlan:117 msgid "Invalid MAC address" msgstr "Indirizzo MAC non valido" #: ../gwakeonlan:119 msgid "Invalid destination host" msgstr "Sistema di destinazione non valido" #: ../gwakeonlan:140 msgid "Local" msgstr "Locale" #: ../gwakeonlan:140 msgid "Internet" msgstr "Internet" #: ../gwakeonlan:275 msgid "Are you sure you want to remove the selected machine?" msgstr "Sicuro di voler eliminare la macchina selezionata?" #: ../gwakeonlan:290 msgid "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." msgstr "" "Un'utilità GTK+ per risvegliare computer spenti attraverso la caratteristica " "Wake On LAN." #: ../gwakeonlan:357 msgid "No machines detected" msgstr "Nessuna macchina rilevata" #: ../gwakeonlan:378 msgid "Machine name" msgstr "Nome della macchina" #: ../gwakeonlan:382 msgid "MAC address" msgstr "Indirizzo MAC" #: ../gwakeonlan:386 msgid "Request type" msgstr "Tipo di richiesta" #: ../gwakeonlan:390 msgid "Destination" msgstr "Destinazione" #: ../gwakeonlan:394 msgid "Port NR" msgstr "NR porta" gwakeonlan-0.5.1/po/es.po0000644000175000017500000000575611364626746014354 0ustar fibia9fibia9# gWakeOnLan - Wake up your machines using Wake on LAN. # 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 gwakeonlan package. # msgid "" msgstr "" "Project-Id-Version: gwakeonlan 0.5\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-02-20 13:27+0100\n" "PO-Revision-Date: 2010-04-20 21:59+0100\n" "Last-Translator: Luca Della Ghezza Insert the machine name and its MAC address" msgstr "Introduzca el nombre del equipo y su dirección MAC" #: ../data/gwakeonlan.glade.h:2 msgid "About" msgstr "Acerca de" #: ../data/gwakeonlan.glade.h:3 ../gwakeonlan:90 msgid "Add machine" msgstr "Añadir equipo" #: ../data/gwakeonlan.glade.h:4 ../gwakeonlan:277 msgid "Delete machine" msgstr "Eliminar equipo" #: ../data/gwakeonlan.glade.h:5 ../gwakeonlan:90 msgid "Edit machine" msgstr "Editar equipo" #: ../data/gwakeonlan.glade.h:6 msgid "MAC _Address:" msgstr "Dirección M_AC:" #: ../data/gwakeonlan.glade.h:7 msgid "Request type:" msgstr "Tipo de solicitud:" #: ../data/gwakeonlan.glade.h:8 msgid "Turn On" msgstr "Encender" #: ../data/gwakeonlan.glade.h:9 msgid "_Destination host:" msgstr "Equipo _destinatario:" #: ../data/gwakeonlan.glade.h:10 msgid "_Internet" msgstr "_Internet" #: ../data/gwakeonlan.glade.h:11 msgid "_Local (broadcast)" msgstr "_Local (Broadcast)" #: ../data/gwakeonlan.glade.h:12 msgid "_Machine name:" msgstr "_Nombre del equipo:" #: ../data/gwakeonlan.glade.h:13 msgid "_UDP port number:" msgstr "Número de puerto _UDP:" #: ../gwakeonlan:115 msgid "Missing machine name" msgstr "Falta el nombre de la máquina" #: ../gwakeonlan:117 msgid "Invalid MAC address" msgstr "Direccion MAC no valida" #: ../gwakeonlan:119 msgid "Invalid destination host" msgstr "Equipo destinatario invalido" #: ../gwakeonlan:140 msgid "Local" msgstr "Local" #: ../gwakeonlan:140 msgid "Internet" msgstr "Internet" #: ../gwakeonlan:275 msgid "Are you sure you want to remove the selected machine?" msgstr "¿Está seguro que desea eliminar el equipo seleccionado?" #: ../gwakeonlan:290 msgid "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." msgstr "" "Una aplicación GTK+ para encender equipos apagados a través de Wake on LAN." #: ../gwakeonlan:357 msgid "No machines detected" msgstr "Ninguna máquina detectada" #: ../gwakeonlan:378 msgid "Machine name" msgstr "Nombre del equipo" #: ../gwakeonlan:382 msgid "MAC address" msgstr "Dirección MAC" #: ../gwakeonlan:386 msgid "Request type" msgstr "Tipo de solicitud" #: ../gwakeonlan:390 msgid "Destination" msgstr "Destino" #: ../gwakeonlan:394 msgid "Port NR" msgstr "Puerto numero" gwakeonlan-0.5.1/po/fr.po0000644000175000017500000000573611337753140014337 0ustar fibia9fibia9# gWakeOnLan - Wake up your machines using Wake on LAN. # 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 gwakeonlan package. # msgid "" msgstr "" "Project-Id-Version: gwakeonlan 0.5\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-02-20 13:27+0100\n" "PO-Revision-Date: 2010-02-20 13:27+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/gwakeonlan.glade.h:1 msgid "Insert the machine name and its MAC address" msgstr "Insérer le nom de la machine et son adresse MAC" #: ../data/gwakeonlan.glade.h:2 msgid "About" msgstr "À propos" #: ../data/gwakeonlan.glade.h:3 ../gwakeonlan:90 msgid "Add machine" msgstr "Ajouter" #: ../data/gwakeonlan.glade.h:4 ../gwakeonlan:277 msgid "Delete machine" msgstr "Effacer" #: ../data/gwakeonlan.glade.h:5 ../gwakeonlan:90 msgid "Edit machine" msgstr "Éditer" #: ../data/gwakeonlan.glade.h:6 msgid "MAC _Address:" msgstr "_Adresse MAC:" #: ../data/gwakeonlan.glade.h:7 msgid "Request type:" msgstr "Type de requête:" #: ../data/gwakeonlan.glade.h:8 msgid "Turn On" msgstr "Allumer" #: ../data/gwakeonlan.glade.h:9 msgid "_Destination host:" msgstr "Hôte de _destination:" #: ../data/gwakeonlan.glade.h:10 msgid "_Internet" msgstr "_Internet" #: ../data/gwakeonlan.glade.h:11 msgid "_Local (broadcast)" msgstr "_Local (diffusion)" #: ../data/gwakeonlan.glade.h:12 msgid "_Machine name:" msgstr "Nom de la _machine:" #: ../data/gwakeonlan.glade.h:13 msgid "_UDP port number:" msgstr "Numéro porte _UDP:" #: ../gwakeonlan:115 msgid "Missing machine name" msgstr "Nom de la machine manquant" #: ../gwakeonlan:117 msgid "Invalid MAC address" msgstr "Adresse MAC pas valide" #: ../gwakeonlan:119 msgid "Invalid destination host" msgstr "Hôte de destination pas valide" #: ../gwakeonlan:140 msgid "Local" msgstr "Local" #: ../gwakeonlan:140 msgid "Internet" msgstr "Internet" #: ../gwakeonlan:275 msgid "Are you sure you want to remove the selected machine?" msgstr "Êtes-vous sûr de vouloir supprimer la machine sélectionnée?" #: ../gwakeonlan:290 msgid "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." msgstr "" "Un outil GTK+ pour réveiller les ordinateurs éteints grâce à la " "caractéristique Wake On LAN." #: ../gwakeonlan:357 msgid "No machines detected" msgstr "Aucune machine détectée" #: ../gwakeonlan:378 msgid "Machine name" msgstr "Nom de la machine" #: ../gwakeonlan:382 msgid "MAC address" msgstr "Adresse MAC" #: ../gwakeonlan:386 msgid "Request type" msgstr "Type de requête" #: ../gwakeonlan:390 msgid "Destination" msgstr "Destination" #: ../gwakeonlan:394 msgid "Port NR" msgstr "Porte NR" gwakeonlan-0.5.1/po/sk.po0000644000175000017500000000567211400257126014336 0ustar fibia9fibia9# gWakeOnLan - Wake up your machines using Wake on LAN. # 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 gwakeonlan package. # msgid "" msgstr "" "Project-Id-Version: gwakeonlan 0.5\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-02-20 13:27+0100\n" "PO-Revision-Date: 2010-02-20 13:27+0100\n" "Last-Translator: Jozef Riha \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/gwakeonlan.glade.h:1 msgid "Insert the machine name and its MAC address" msgstr "Zadajte názov stroja a jeho MAC adresu" #: ../data/gwakeonlan.glade.h:2 msgid "About" msgstr "O programe" #: ../data/gwakeonlan.glade.h:3 ../gwakeonlan:90 msgid "Add machine" msgstr "Pridať stroj" #: ../data/gwakeonlan.glade.h:4 ../gwakeonlan:277 msgid "Delete machine" msgstr "Vymazať stroj" #: ../data/gwakeonlan.glade.h:5 ../gwakeonlan:90 msgid "Edit machine" msgstr "Upraviť stroj" #: ../data/gwakeonlan.glade.h:6 msgid "MAC _Address:" msgstr "MAC _adresa:" #: ../data/gwakeonlan.glade.h:7 msgid "Request type:" msgstr "Typ požiadavky:" #: ../data/gwakeonlan.glade.h:8 msgid "Turn On" msgstr "Zapnúť" #: ../data/gwakeonlan.glade.h:9 msgid "_Destination host:" msgstr "_Cieľový hostiteľ:" #: ../data/gwakeonlan.glade.h:10 msgid "_Internet" msgstr "_Internet" #: ../data/gwakeonlan.glade.h:11 msgid "_Local (broadcast)" msgstr "_Miestna (broadcast)" #: ../data/gwakeonlan.glade.h:12 msgid "_Machine name:" msgstr "_Názov stroja:" #: ../data/gwakeonlan.glade.h:13 msgid "_UDP port number:" msgstr "Číslo _UDP portu:" #: ../gwakeonlan:115 msgid "Missing machine name" msgstr "Chýba názov stroja" #: ../gwakeonlan:117 msgid "Invalid MAC address" msgstr "Neplatná MAC adresa" #: ../gwakeonlan:119 msgid "Invalid destination host" msgstr "Neplatný cieľový hostiteľ" #: ../gwakeonlan:140 msgid "Local" msgstr "Miestna" #: ../gwakeonlan:140 msgid "Internet" msgstr "Internet" #: ../gwakeonlan:275 msgid "Are you sure you want to remove the selected machine?" msgstr "Naozaj chcete odstrániť vybraný stroj?" #: ../gwakeonlan:290 msgid "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." msgstr "" "GTK+ utilita na prebudenie vypnutých počítačov pomocou Wake on LAN." #: ../gwakeonlan:357 msgid "No machines detected" msgstr "Neboli zistené žiadne stroje" #: ../gwakeonlan:378 msgid "Machine name" msgstr "Názov stroja" #: ../gwakeonlan:382 msgid "MAC address" msgstr "MAC adresa" #: ../gwakeonlan:386 msgid "Request type" msgstr "Typ požiadavky" #: ../gwakeonlan:390 msgid "Destination" msgstr "Cieľ" #: ../gwakeonlan:394 msgid "Port NR" msgstr "Port NR" gwakeonlan-0.5.1/po/i18n-3.sh0000644000175000017500000000034511337304352014627 0ustar fibia9fibia9#!/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/gwakeonlan.mo $file ) done echo ok read gwakeonlan-0.5.1/po/i18n-2.sh0000644000175000017500000000302711337554153014634 0ustar fibia9fibia9#!/bin/bash msginit --no-translator --input=gwakeonlan.pot --output-file=en_US.po --locale=en_US msginit --no-translator --input=gwakeonlan.pot --output-file=it.po --locale=it_IT msginit --no-translator --input=gwakeonlan.pot --output-file=fr.po --locale=fr_FR msginit --no-translator --input=gwakeonlan.pot --output-file=es.po --locale=es_ES msginit --no-translator --input=gwakeonlan.pot --output-file=ru.po --locale=ru_RU msginit --no-translator --input=gwakeonlan.pot --output-file=ar.po --locale=ar msginit --no-translator --input=gwakeonlan.pot --output-file=bg.po --locale=bg msginit --no-translator --input=gwakeonlan.pot --output-file=cs.po --locale=cs msginit --no-translator --input=gwakeonlan.pot --output-file=da.po --locale=da msginit --no-translator --input=gwakeonlan.pot --output-file=de.po --locale=de_DE msginit --no-translator --input=gwakeonlan.pot --output-file=he.po --locale=he msginit --no-translator --input=gwakeonlan.pot --output-file=hu.po --locale=hu msginit --no-translator --input=gwakeonlan.pot --output-file=ja.po --locale=ja msginit --no-translator --input=gwakeonlan.pot --output-file=nl.po --locale=nl_NL msginit --no-translator --input=gwakeonlan.pot --output-file=pl.po --locale=pl msginit --no-translator --input=gwakeonlan.pot --output-file=pt.po --locale=pt_PT msginit --no-translator --input=gwakeonlan.pot --output-file=sk.po --locale=sk msginit --no-translator --input=gwakeonlan.pot --output-file=tr.po --locale=tr msginit --no-translator --input=gwakeonlan.pot --output-file=zh_CN.po --locale=zh_CN echo ok read gwakeonlan-0.5.1/po/gwakeonlan.pot0000644000175000017500000000460311337752511016233 0ustar fibia9fibia9# gWakeOnLan - Wake up your machines using Wake on LAN. # 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 gwakeonlan package. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: gwakeonlan 0.5\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-02-20 13:27+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/gwakeonlan.glade.h:1 msgid "Insert the machine name and its MAC address" msgstr "" #: ../data/gwakeonlan.glade.h:2 msgid "About" msgstr "" #: ../data/gwakeonlan.glade.h:3 ../gwakeonlan:90 msgid "Add machine" msgstr "" #: ../data/gwakeonlan.glade.h:4 ../gwakeonlan:277 msgid "Delete machine" msgstr "" #: ../data/gwakeonlan.glade.h:5 ../gwakeonlan:90 msgid "Edit machine" msgstr "" #: ../data/gwakeonlan.glade.h:6 msgid "MAC _Address:" msgstr "" #: ../data/gwakeonlan.glade.h:7 msgid "Request type:" msgstr "" #: ../data/gwakeonlan.glade.h:8 msgid "Turn On" msgstr "" #: ../data/gwakeonlan.glade.h:9 msgid "_Destination host:" msgstr "" #: ../data/gwakeonlan.glade.h:10 msgid "_Internet" msgstr "" #: ../data/gwakeonlan.glade.h:11 msgid "_Local (broadcast)" msgstr "" #: ../data/gwakeonlan.glade.h:12 msgid "_Machine name:" msgstr "" #: ../data/gwakeonlan.glade.h:13 msgid "_UDP port number:" msgstr "" #: ../gwakeonlan:115 msgid "Missing machine name" msgstr "" #: ../gwakeonlan:117 msgid "Invalid MAC address" msgstr "" #: ../gwakeonlan:119 msgid "Invalid destination host" msgstr "" #: ../gwakeonlan:140 msgid "Local" msgstr "" #: ../gwakeonlan:140 msgid "Internet" msgstr "" #: ../gwakeonlan:275 msgid "Are you sure you want to remove the selected machine?" msgstr "" #: ../gwakeonlan:290 msgid "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." msgstr "" #: ../gwakeonlan:357 msgid "No machines detected" msgstr "" #: ../gwakeonlan:378 msgid "Machine name" msgstr "" #: ../gwakeonlan:382 msgid "MAC address" msgstr "" #: ../gwakeonlan:386 msgid "Request type" msgstr "" #: ../gwakeonlan:390 msgid "Destination" msgstr "" #: ../gwakeonlan:394 msgid "Port NR" msgstr "" gwakeonlan-0.5.1/po/genpot.sh0000644000175000017500000000051711337752431015212 0ustar fibia9fibia9#!/bin/bash if [ -f ../data/*.glade.h ] then rm ../data/*.glade.h fi intltool-extract --type=gettext/glade ../data/gwakeonlan.glade if ! [ -f gwakeonlan.pot ] then touch gwakeonlan.pot fi xgettext --language=Python --keyword=_ --keyword=N_ --output gwakeonlan.pot ../data/*.glade.h ../gwakeonlan rm ../data/*.glade.h echo ok read gwakeonlan-0.5.1/po/nl.po0000644000175000017500000000570311456545776014353 0ustar fibia9fibia9# gWakeOnLan - Wake up your machines using Wake on LAN. # 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 gwakeonlan package. # msgid "" msgstr "" "Project-Id-Version: gwakeonlan 0.5\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-02-20 13:27+0100\n" "PO-Revision-Date: 2010-10-17 12:09+0200\n" "Last-Translator: Thomas De Rocker \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/gwakeonlan.glade.h:1 msgid "Insert the machine name and its MAC address" msgstr "Voeg de computernaam en zijn MAC-adres in" #: ../data/gwakeonlan.glade.h:2 msgid "About" msgstr "Over" #: ../data/gwakeonlan.glade.h:3 ../gwakeonlan:90 msgid "Add machine" msgstr "Toevoegen" #: ../data/gwakeonlan.glade.h:4 ../gwakeonlan:277 msgid "Delete machine" msgstr "Wissen" #: ../data/gwakeonlan.glade.h:5 ../gwakeonlan:90 msgid "Edit machine" msgstr "Bewerken" #: ../data/gwakeonlan.glade.h:6 msgid "MAC _Address:" msgstr "MAC-_adres:" #: ../data/gwakeonlan.glade.h:7 msgid "Request type:" msgstr "Type aanvraag:" #: ../data/gwakeonlan.glade.h:8 msgid "Turn On" msgstr "Aanzetten" #: ../data/gwakeonlan.glade.h:9 msgid "_Destination host:" msgstr "_Doelcomputer:" #: ../data/gwakeonlan.glade.h:10 msgid "_Internet" msgstr "_Internet" #: ../data/gwakeonlan.glade.h:11 msgid "_Local (broadcast)" msgstr "_Lokaal (uitzenden)" #: ../data/gwakeonlan.glade.h:12 msgid "_Machine name:" msgstr "_Computernaamnaam:" #: ../data/gwakeonlan.glade.h:13 msgid "_UDP port number:" msgstr "_UDP-poortnummer:" #: ../gwakeonlan:115 msgid "Missing machine name" msgstr "Ontbrekende computernaam" #: ../gwakeonlan:117 msgid "Invalid MAC address" msgstr "Ongeldig MAC-adres" #: ../gwakeonlan:119 msgid "Invalid destination host" msgstr "Ongeldige doelcomputer" #: ../gwakeonlan:140 msgid "Local" msgstr "Lokaal" #: ../gwakeonlan:140 msgid "Internet" msgstr "Internet" #: ../gwakeonlan:275 msgid "Are you sure you want to remove the selected machine?" msgstr "Bent u zeker dat u de geselecteerde computer wilt verwijderen?" #: ../gwakeonlan:290 msgid "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." msgstr "" "Een GTK+ toepassing om uitgeschakelde computers aan te zetten door middel van " "de Wake on LAN functie" #: ../gwakeonlan:357 msgid "No machines detected" msgstr "Geen computers gedetecteerd" #: ../gwakeonlan:378 msgid "Machine name" msgstr "Computernaam" #: ../gwakeonlan:382 msgid "MAC address" msgstr "MAC-adre" #: ../gwakeonlan:386 msgid "Request type" msgstr "Type aanvraag" #: ../gwakeonlan:390 msgid "Destination" msgstr "Bestemming" #: ../gwakeonlan:394 msgid "Port NR" msgstr "Poortnummer" gwakeonlan-0.5.1/po/ru.po0000644000175000017500000000642611337753653014364 0ustar fibia9fibia9# gWakeOnLan - Wake up your machines using Wake on LAN. # 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 gwakeonlan package. # msgid "" msgstr "" "Project-Id-Version: gwakeonlan 0.5\n" "Report-Msgid-Bugs-To: Fabio Castelli \n" "POT-Creation-Date: 2010-02-20 13:27+0100\n" "PO-Revision-Date: 2010-02-20 13:27+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/gwakeonlan.glade.h:1 msgid "Insert the machine name and its MAC address" msgstr "Введите имя и MAC адрес компьютера" #: ../data/gwakeonlan.glade.h:2 msgid "About" msgstr "Справка" #: ../data/gwakeonlan.glade.h:3 ../gwakeonlan:90 msgid "Add machine" msgstr "Добавить" #: ../data/gwakeonlan.glade.h:4 ../gwakeonlan:277 msgid "Delete machine" msgstr "Удалить" #: ../data/gwakeonlan.glade.h:5 ../gwakeonlan:90 msgid "Edit machine" msgstr "Редактировать" #: ../data/gwakeonlan.glade.h:6 msgid "MAC _Address:" msgstr "MAC _адрес:" #: ../data/gwakeonlan.glade.h:7 msgid "Request type:" msgstr "Тип запроса:" #: ../data/gwakeonlan.glade.h:8 msgid "Turn On" msgstr "Включить" #: ../data/gwakeonlan.glade.h:9 msgid "_Destination host:" msgstr "_Расположение компьютера:" #: ../data/gwakeonlan.glade.h:10 msgid "_Internet" msgstr "_Интернет" #: ../data/gwakeonlan.glade.h:11 msgid "_Local (broadcast)" msgstr "_Локальная сеть" #: ../data/gwakeonlan.glade.h:12 msgid "_Machine name:" msgstr "_Имя компьютера:" #: ../data/gwakeonlan.glade.h:13 msgid "_UDP port number:" msgstr "_Номер порта UDP:" #: ../gwakeonlan:115 msgid "Missing machine name" msgstr "Не задано имя компьютера" #: ../gwakeonlan:117 msgid "Invalid MAC address" msgstr "Неверный MAC адрес" #: ../gwakeonlan:119 msgid "Invalid destination host" msgstr "Неверное расположение" #: ../gwakeonlan:140 msgid "Local" msgstr "Сеть" #: ../gwakeonlan:140 msgid "Internet" msgstr "Интернет" #: ../gwakeonlan:275 msgid "Are you sure you want to remove the selected machine?" msgstr "Удалить выбранный компьютер из списка?" #: ../gwakeonlan:290 msgid "" "A GTK+ utility to awake turned off computers through the Wake on LAN feature." msgstr "" "Утилита для включения компьютера посредством функции \"Wake on Lan\"." #: ../gwakeonlan:357 msgid "No machines detected" msgstr "Компьютеры не найдены" #: ../gwakeonlan:378 msgid "Machine name" msgstr "Имя компьютера" #: ../gwakeonlan:382 msgid "MAC address" msgstr "MAC адрес" #: ../gwakeonlan:386 msgid "Request type" msgstr "Тип запроса" #: ../gwakeonlan:390 msgid "Destination" msgstr "Расположение" #: ../gwakeonlan:394 msgid "Port NR" msgstr "Порт" gwakeonlan-0.5.1/man/gwakeonlan.10000644000175000017500000000273411337757471015743 0ustar fibia9fibia9.\" $Id: gwakeonlan.1 0.4 2010-01-16 16:59 muflone $ .\" .\" Copyright (c) 2009-2010 Fabio Castelli .TH GWAKEONLAN "1" "January 16, 2010" .SH NAME .B gWakeOnLan \- Wake up your machines using Wake on LAN. .SH SYNOPSIS .B gwakeonlan [options] .SH DESCRIPTION .PP .B gWakeOnLan is a A GTK+ utility to awake turned off computers through the Wake on LAN feature. .PP The machines to turn on need to be shut off with the Wake on LAN magic packet enabled. Linux environments can enable this using: .PP ethtool \-s wol g .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 \-v, \-\-verbose Show all error and information messages .TP .B \-q, \-\-quiet Hide all error and information messages .SH FILES Hosts list will be kept under ~/.gwakeonlan .SH REPORTING BUGS Report bugs to http://code.google.com/p/gwakeonlan/issues/list .SH AUTHORS .B gWakeOnLan was written by Fabio Castelli .SH HOMEPAGE International project: http://code.google.com/p/gwakeonlan/ Italian project: http://ubuntrucchi.wordpress.com/progetti\-projects/gwakeonlan/ .SH COPYRIGHT Copyright © 2010 Fabio Castelli. License GPLv2+: GNU GPL version 2 or later . This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. gwakeonlan-0.5.1/doc/translators0000644000175000017500000000070711456546666016026 0ustar fibia9fibia9English: Fabio Castelli Italian: Fabio Castelli French: Emmanuel Spanish: Matias Bellone Luca Della Ghezza Russian: Сергей Богатов German: Martin Riemenschneider Slovak: Jozef Riha Dutch: Thomas De Rocker gwakeonlan-0.5.1/doc/README0000644000175000017500000000163111337776700014374 0ustar fibia9fibia9gWakeOnLan - Wake up your machines using Wake on LAN. Copyright 2009-2010 Fabio Castelli License: GPL-2+ (please see the copyright file) Description: gWakeOnLan is a GTK+ utility to awake turned off machines usign the Wake on LAN feature. It allows to turn on machines in the local network or throught Internet using a destination host and a specified UDP port number. The machines to turn on need to be shut off with the Wake on LAN magic packet enabled. Requirements: Python >= 2.4 Python bindings for GTK2 >= 2.12 rsvg library Personal configuration User's hosts list and window configuration will be kept under ~/.gwakeonlan Please report any bugs in gWakeOnLan to the author: Fabio Castelli Homepage: Official project: http://code.google.com/p/gwakeonlan/ Italian project : http://ubuntrucchi.wordpress.com/progetti-projects/gwakeonlan/ gwakeonlan-0.5.1/doc/copyright0000644000175000017500000004321611337304350015440 0ustar fibia9fibia9Copyright 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. gwakeonlan-0.5.1/doc/changelog0000644000175000017500000000424411456570622015366 0ustar fibia9fibia9gwakeonlan 0.5.1 * Added dutch translation by Thomas De Rocker -- Fabio Castelli Sun, 17 Oct 2010 12:24:25 +0200 * Added slovak translation by Jozef Riha -- Fabio Castelli Sat, 29 May 2010 20:37:14 +0100 * Added german translation by Martin Riemenschneider * Fixed spanish translation by Luca Della Ghezza -- Fabio Castelli Tue, 20 Apr 2010 22:03:44 +0100 gwakeonlan 0.5 * Added support for internet wake up. * Added UDP port number specification. * Set turn on button as important to force it to show the caption. * Added dialog title for add, edit and remove machines. * Added dialog confirm to delete an existing machine. * Added window size and position saving when close the app. * Added columns sorting on the treeview. * Added default sort order for machine names. * Added reading of ARP cache table for last used devices. * Moved from libglade to gtkbuilder. * Added verbose and client command line options. * Various code cleanup. -- Fabio Castelli Sat, 20 Feb 2010 14:15:21 +0100 gwakeonlan 0.4.1 * Added russian translation by Сергей Богатов . * Fixed typo in manpage. -- Fabio Castelli Sat, 13 Feb 2010 19:39:24 +0100 gwakeonlan 0.4 * Added spanish translation by Matias Bellone . * Added doc/translators for translators notice on about dialog. * Modified the manpage for further info about bugs reporting and copyright. * Bump copyright year -- Fabio Castelli Sat, 16 Jan 2010 17:00:40 +0100 gwakeonlan 0.3 * Added confirmation before delete an existing host. * Added french translation by Emmanuel . * Added setup.py for distutils support. -- Fabio Castelli Sun, 13 Dic 2009 21:38:10 +0100 gwakeonlan 0.2 * Fixed wake_on_lan function which missed the magic packet creation code. -- Fabio Castelli Fri, 12 Sep 2009 23:40:00 +0100 gwakeonlan 0.1 * Initial release -- Fabio Castelli Fri, 6 Sep 2009 00:19:00 +0100