gettext inclusion & French translation

This commit is contained in:
Goffi 2010-09-27 13:09:42 +08:00
parent 554ab06336
commit 3929a9b6df
4 changed files with 382 additions and 35 deletions

177
fr.po Normal file
View File

@ -0,0 +1,177 @@
# Goffi's CoPier.
# Copyright (C) 2010 Jérôme Poisson
# This file is distributed under the same license as the gcp package.
# Jérôme Poisson (Goffi) <goffi@goffi.org>, 2010.
# Goffi <goffi@goffi.org>, 2010.
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 0.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-09-27 12:42+0800\n"
"PO-Revision-Date: 2010-09-27 13:01+0800\n"
"Last-Translator: Goffi <goffi@goffi.org>\n"
"Language-Team: French <goffi@goffi.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: gcp:43
msgid "Error during import"
msgstr "Erreur pendant l'import de bibliothèques"
#: gcp:44
msgid "Please check dependecies:"
msgstr "Merci de vérifier les dépendances"
#: gcp:50
msgid ""
"ProgressBar not available, please download it at http://pypi.python.org/pypi/"
"progressbar"
msgstr ""
"«ProgressBar» n'est pas disponible, merci de le télécharger à http://pypi."
"python.org/pypi/progressbar"
#: gcp:51
msgid ""
"Progress bar deactivated\n"
"--\n"
msgstr ""
"Barre de progression désactivée\n"
"--\n"
#: gcp:62
msgid ""
"This program comes with ABSOLUTELY NO WARRANTY;\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions.\n"
"---\n"
"\n"
"This software is an advanced file copier\n"
"Get the latest version at http://www.goffi.org\n"
msgstr ""
"This program comes with ABSOLUTELY NO WARRANTY;\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions.\n"
"---\n"
"\n"
"Ce logiciel est un copieur de fichiers avancé\n"
"Vous pouvez télécharger la dernière version à http://www.goffi.org\n"
#: gcp:82
msgid "Init DbusObject..."
msgstr "Initialisation de «DbusObject»"
#: gcp:102
msgid "INTERNAL ERROR: invalid arguments"
msgstr "ERREUR INTERNE: arguments invalides"
#: gcp:119
msgid "gcp launched"
msgstr "gcp lancé"
#: gcp:126
msgid "Init DBus..."
msgstr "Initialisation de Dbus..."
#: gcp:155
msgid "Can't read mounts table"
msgstr "Impossible de lire la table des montages"
#: gcp:162
#, python-format
msgid "Adding to copy list: %(path)s ==> %(dest_path)s (%(fs_type)s)"
msgstr "Ajout à la liste des copies: %(path)s ==> %(dest_path)s (%(fs_type)s)"
#: gcp:170 gcp:192
#, python-format
msgid "Can't copy %(path)s: %(exception)s"
msgstr "Impossible de copier %(path)s: %(exception)s"
#: gcp:179
#, python-format
msgid "Creating directory %s"
msgstr "Création du répertoire %s"
#: gcp:200
#, python-format
msgid "Invalid dest_path: %s"
msgstr "Chemin de destination invalide: %s"
#: gcp:205
#, python-format
msgid "The path given in arg doesn't exist or is not accessible: %s"
msgstr "Le chemin donné en argument n'existe pas ou n'est pas accessible: %s"
#: gcp:210
#, python-format
msgid "omitting directory \"%s\""
msgstr "Répertoire \"%s\" ignoré"
#: gcp:226
#, python-format
msgid "File [%s] already exists, skipping it !"
msgstr "Le fichier [%s] existe déjà, je le saute !"
#: gcp:233
#, python-format
msgid "COPYING %(source)s ==> %(dest)s"
msgstr "COPIE %(source)s ==> %(dest)s"
#: gcp:284
msgid "Progress: "
msgstr "Progression: "
#: gcp:315
msgid "copy directories recursively"
msgstr "copie les répertoire récursivement"
#: gcp:318
msgid "force overwriting of existing files"
msgstr "force le remplacement des fichiers déjà existants"
#: gcp:321
msgid "preserve the specified attributes"
msgstr "garde les attributs spécifiés"
#: gcp:324
msgid "don't fixe name encoding errors"
msgstr "Ne corrige pas les erreurs dans l'encodage des noms"
#: gcp:327
msgid "deactivate progress bar"
msgstr "désactive la barre de progression"
#: gcp:330
msgid "Show what is currently done"
msgstr "Affiche les opérations effectuées"
#: gcp:335
msgid "Progress bar is not available, deactivating"
msgstr "La barre de progression n'est pas disponible, désactivation"
#: gcp:345
msgid ""
"Invalide --preserve value\n"
"valid values are:"
msgstr ""
"La valeur de «--preserve» est invalide\n"
"Les valeurs valides sont:"
#: gcp:354
#, python-format
msgid "There is already one instance of %s running, pluging to it"
msgstr "Il y a déjà une instance de %s lancée, je m'y connecte"
#: gcp:360
msgid "Wrong number of arguments"
msgstr "Nombre d'arguments invalide"
#: gcp:362
#, python-format
msgid "adding args to gcp: %s"
msgstr "ajout des arguments à gcp: %s"
#: gcp:373
msgid "User interruption: good bye"
msgstr "Interruption par l'utilisateur: au revoir"

76
gcp
View File

@ -25,6 +25,10 @@ from logging import debug, info, error, warning
logging.basicConfig(level=logging.INFO, logging.basicConfig(level=logging.INFO,
format='%(message)s') format='%(message)s')
### ###
import gettext
gettext.install('gcp', "i18n", unicode=True)
import sys import sys
import os,os.path import os,os.path
from optparse import OptionParser #To be replaced by argparse ASAP from optparse import OptionParser #To be replaced by argparse ASAP
@ -36,33 +40,33 @@ try:
import dbus.service import dbus.service
import dbus.mainloop.glib import dbus.mainloop.glib
except ImportError,e: except ImportError,e:
error("Error during import") error(_("Error during import"))
error("Please check dependecies:",e) error(_("Please check dependecies:"),e)
exit(2) exit(2)
try: try:
from progressbar import ProgressBar, Percentage, Bar, ETA, FileTransferSpeed from progressbar import ProgressBar, Percentage, Bar, ETA, FileTransferSpeed
pbar_available=True pbar_available=True
except ImportError, e: except ImportError, e:
info ('ProgressBar not available, please download it at http://pypi.python.org/pypi/progressbar') info (_('ProgressBar not available, please download it at http://pypi.python.org/pypi/progressbar'))
info ('Progress bar deactivated\n--\n') info (_('Progress bar deactivated\n--\n'))
pbar_available=False pbar_available=False
NAME = "gcp (Goffi's copier)" NAME = "gcp (Goffi's copier)"
NAME_SHORT = "gcp" NAME_SHORT = "gcp"
VERSION = '0.1' VERSION = '0.1'
ABOUT = NAME+" v"+VERSION+""" (c) Jérôme Poisson (aka Goffi) 2010 ABOUT = NAME+u" v"+VERSION+u""" (c) Jérôme Poisson (aka Goffi) 2010
--- ---
"""+NAME+""" Copyright (C) 2010 Jérôme Poisson """+NAME+u""" Copyright (C) 2010 Jérôme Poisson
This program comes with ABSOLUTELY NO WARRANTY; """ + _(u"""This program comes with ABSOLUTELY NO WARRANTY;
This is free software, and you are welcome to redistribute it This is free software, and you are welcome to redistribute it
under certain conditions. under certain conditions.
--- ---
This software is an advanced file copier This software is an advanced file copier
Get the latest version at http://www.goffi.org Get the latest version at http://www.goffi.org
""" """)
const_DBUS_INTERFACE = "org.goffi.gcp" const_DBUS_INTERFACE = "org.goffi.gcp"
const_DBUS_PATH = "/org/goffi/gcp" const_DBUS_PATH = "/org/goffi/gcp"
@ -75,7 +79,7 @@ class DbusObject(dbus.service.Object):
def __init__(self, gcp, bus, path): def __init__(self, gcp, bus, path):
self._gcp = gcp self._gcp = gcp
dbus.service.Object.__init__(self, bus, path) dbus.service.Object.__init__(self, bus, path)
debug("Init DbusObject...") debug(_("Init DbusObject..."))
self.cb={} self.cb={}
@dbus.service.method(const_DBUS_INTERFACE, @dbus.service.method(const_DBUS_INTERFACE,
@ -95,7 +99,7 @@ class DbusObject(dbus.service.Object):
try: try:
args = pickle.loads(str(args)) args = pickle.loads(str(args))
except TypeError, pickle.UnpicklingError: except TypeError, pickle.UnpicklingError:
return (False, "INTERNAL ERROR: invalid arguments") return (False, _("INTERNAL ERROR: invalid arguments"))
return self._gcp.parseArguments(args, source_path) return self._gcp.parseArguments(args, source_path)
class GCP(): class GCP():
@ -112,14 +116,14 @@ class GCP():
except dbus.exceptions.DBusException,e: except dbus.exceptions.DBusException,e:
if e._dbus_error_name=='org.freedesktop.DBus.Error.ServiceUnknown': if e._dbus_error_name=='org.freedesktop.DBus.Error.ServiceUnknown':
self.launchDbusMainInstance() self.launchDbusMainInstance()
debug ("gcp launched") debug (_("gcp launched"))
self._main_instance = True self._main_instance = True
self.buffer_size = const_BUFF_SIZE self.buffer_size = const_BUFF_SIZE
else: else:
raise e raise e
def launchDbusMainInstance(self): def launchDbusMainInstance(self):
debug ("Init DBus...") debug (_("Init DBus..."))
session_bus = dbus.SessionBus() session_bus = dbus.SessionBus()
self.dbus_name = dbus.service.BusName(const_DBUS_INTERFACE, session_bus) self.dbus_name = dbus.service.BusName(const_DBUS_INTERFACE, session_bus)
self.dbus_object = DbusObject(self, session_bus, const_DBUS_PATH) self.dbus_object = DbusObject(self, session_bus, const_DBUS_PATH)
@ -148,20 +152,22 @@ class GCP():
fs_spec, fs_file, fs_vfstype, fs_mntops, fs_freq, fs_passno = line.split(' ') fs_spec, fs_file, fs_vfstype, fs_mntops, fs_freq, fs_passno = line.split(' ')
ret[fs_file] = fs_vfstype ret[fs_file] = fs_vfstype
except: except:
error ("Can't read mounts table") error (_("Can't read mounts table"))
return ret return ret
def __appendToList(self, path, dest_path, options): def __appendToList(self, path, dest_path, options):
"""Add a file to the copy list """Add a file to the copy list
@param path: absolute path of file @param path: absolute path of file
@param options: options as return by optparse""" @param options: options as return by optparse"""
debug ("Adding to copy list: %s ==> %s (%s)", path, dest_path, self.getFsType(dest_path)) debug (_("Adding to copy list: %(path)s ==> %(dest_path)s (%(fs_type)s)") % {"path":path,
"dest_path":dest_path,
"fs_type":self.getFsType(dest_path)} )
try: try:
self.bytes_total+=os.path.getsize(path) self.bytes_total+=os.path.getsize(path)
self.files_left+=1 self.files_left+=1
self.copy_list.insert(0,(path, dest_path, options)) self.copy_list.insert(0,(path, dest_path, options))
except OSError,e: except OSError,e:
error("Can't copy %(path)s: %(exception)s" % {'path':path, 'exception':e.strerror}) error(_("Can't copy %(path)s: %(exception)s") % {'path':path, 'exception':e.strerror})
def __appendDirToList(self, dirpath, dest_path, options): def __appendDirToList(self, dirpath, dest_path, options):
@ -170,7 +176,7 @@ class GCP():
@param options: options as return by optparse""" @param options: options as return by optparse"""
#We first check that the dest path exists, and create it if needed #We first check that the dest path exists, and create it if needed
if not os.path.exists(dest_path): if not os.path.exists(dest_path):
debug ("Creating directory %s" % dest_path) debug (_("Creating directory %s") % dest_path)
os.makedirs(dest_path) #TODO: check permissions os.makedirs(dest_path) #TODO: check permissions
#TODO: check that dest_path is an accessible dir, #TODO: check that dest_path is an accessible dir,
# and skip file/write error in log if needed # and skip file/write error in log if needed
@ -183,7 +189,7 @@ class GCP():
else: else:
self.__appendToList(filepath, dest_path, options) self.__appendToList(filepath, dest_path, options)
except OSError,e: except OSError,e:
error("Can't copy %(path)s: %(exception)s" % {'path':dirpath, 'exception':e.strerror}) error(_("Can't copy %(path)s: %(exception)s") % {'path':dirpath, 'exception':e.strerror})
def __checkArgs(self, options, source_path, args): def __checkArgs(self, options, source_path, args):
"""Check thats args are files, and add them to copy list""" """Check thats args are files, and add them to copy list"""
@ -191,17 +197,17 @@ class GCP():
try: try:
dest_path = os.path.normpath(os.path.join(os.path.expanduser(source_path), args.pop())) dest_path = os.path.normpath(os.path.join(os.path.expanduser(source_path), args.pop()))
except OSError,e: except OSError,e:
error ("Invalid dest_path: %s",e) error (_("Invalid dest_path: %s"),e)
for path in args: for path in args:
abspath = os.path.normpath(os.path.join(os.path.expanduser(source_path), path)) abspath = os.path.normpath(os.path.join(os.path.expanduser(source_path), path))
if not os.path.exists(abspath): if not os.path.exists(abspath):
warning("The path given in arg doesn't exist or is not accessible: %s",abspath) warning(_("The path given in arg doesn't exist or is not accessible: %s") % abspath)
else: else:
if os.path.isdir(abspath): if os.path.isdir(abspath):
full_dest_path = dest_path if os.path.isabs(path) else os.path.normpath(os.path.join(dest_path, path)) full_dest_path = dest_path if os.path.isabs(path) else os.path.normpath(os.path.join(dest_path, path))
if not options.recursive: if not options.recursive:
warning ('omitting directory "%s"' % abspath) warning (_('omitting directory "%s"') % abspath)
else: else:
self.__appendDirToList(abspath, full_dest_path, options) self.__appendDirToList(abspath, full_dest_path, options)
else: else:
@ -217,14 +223,14 @@ class GCP():
assert(filename) assert(filename)
dest_file = os.path.join(dest_path,filename) dest_file = os.path.join(dest_path,filename)
if os.path.exists(dest_file) and not options.force: if os.path.exists(dest_file) and not options.force:
warning ("File [%s] already exists, skipping it !" % dest_file) warning (_("File [%s] already exists, skipping it !") % dest_file)
return True return True
dest_fd = open(dest_file, 'wb') dest_fd = open(dest_file, 'wb')
gobject.io_add_watch(source_fd,gobject.IO_IN,self._copyFile, gobject.io_add_watch(source_fd,gobject.IO_IN,self._copyFile,
(dest_fd, options), priority=gobject.PRIORITY_HIGH) (dest_fd, options), priority=gobject.PRIORITY_HIGH)
if not self.progress: if not self.progress:
info("COPYING %(source)s ==> %(dest)s" % {"source":source_path,"dest":dest_file}) info(_("COPYING %(source)s ==> %(dest)s") % {"source":source_path,"dest":dest_file})
return True return True
else: else:
#Nothing left to copy, we quit #Nothing left to copy, we quit
@ -275,7 +281,7 @@ class GCP():
if self.pbar.maxval != self.bytes_total: if self.pbar.maxval != self.bytes_total:
self.pbar.maxval = self.bytes_total self.pbar.maxval = self.bytes_total
except AttributeError: except AttributeError:
self.pbar = ProgressBar(self.bytes_total,["Progress: ",Percentage()," ",Bar()," ",FileTransferSpeed()," ",ETA()]) self.pbar = ProgressBar(self.bytes_total,[_("Progress: "),Percentage()," ",Bar()," ",FileTransferSpeed()," ",ETA()])
self.pbar.start() self.pbar.start()
self.pbar.update(self.bytes_copied) self.pbar.update(self.bytes_copied)
@ -306,27 +312,27 @@ class GCP():
parser = OptionParser(usage=_usage,version=ABOUT) parser = OptionParser(usage=_usage,version=ABOUT)
parser.add_option("-r", "--recursive", action="store_true", default=False, parser.add_option("-r", "--recursive", action="store_true", default=False,
help="copy directories recursively") help=_("copy directories recursively"))
parser.add_option("-f", "--force", action="store_true", default=False, parser.add_option("-f", "--force", action="store_true", default=False,
help="force overwriting of existing files") help=_("force overwriting of existing files"))
parser.add_option("--preserve", action="store", default='mode,ownership,timestamps', parser.add_option("--preserve", action="store", default='mode,ownership,timestamps',
help="preserve the specified attributes") help=_("preserve the specified attributes"))
parser.add_option("--no-unicode-fix", action="store_true", default=False, parser.add_option("--no-unicode-fix", action="store_true", default=False,
help="don't fixe name encoding errors") #TODO help=_("don't fixe name encoding errors")) #TODO
parser.add_option("--no-progress", action="store_false", dest="progress", default=True, parser.add_option("--no-progress", action="store_false", dest="progress", default=True,
help="deactivate progress bar") help=_("deactivate progress bar"))
parser.add_option("-v", "--verbose", action="store_true", default=False, parser.add_option("-v", "--verbose", action="store_true", default=False,
help="Show what is currently done") help=_("Show what is currently done"))
(options, args) = parser.parse_args(full_args) (options, args) = parser.parse_args(full_args)
#options check #options check
if options.progress and not pbar_available: if options.progress and not pbar_available:
warning ("Progress bar is not available, deactivating") warning (_("Progress bar is not available, deactivating"))
options.progress = self.progress = False options.progress = self.progress = False
else: else:
self.progress = options.progress self.progress = options.progress
@ -336,7 +342,7 @@ class GCP():
preserve = set(options.preserve.split(',')) preserve = set(options.preserve.split(','))
if not preserve.issubset(const_PRESERVE): if not preserve.issubset(const_PRESERVE):
error ('Invalide --preserve value\nvalid values are:') error (_("Invalide --preserve value\nvalid values are:"))
for value in const_PRESERVE: for value in const_PRESERVE:
error('- %s' % value) error('- %s' % value)
exit(2) exit(2)
@ -345,15 +351,15 @@ class GCP():
#if there is an other instance of gcp, we send options to it #if there is an other instance of gcp, we send options to it
if not self._main_instance: if not self._main_instance:
info ("There is already one instance of %s running, pluging to it" % NAME_SHORT) info (_("There is already one instance of %s running, pluging to it") % NAME_SHORT)
#XXX: we have to serialize data as dbus only accept valid unicode, and filenames #XXX: we have to serialize data as dbus only accept valid unicode, and filenames
# can have invalid unicode. # can have invalid unicode.
return self.gcp_main.addArgs(os.getcwd(),pickle.dumps(full_args)) return self.gcp_main.addArgs(os.getcwd(),pickle.dumps(full_args))
else: else:
if len(args) < 2: if len(args) < 2:
_error_msg = "Wrong number of arguments" _error_msg = _("Wrong number of arguments")
return (False, _error_msg) return (False, _error_msg)
debug("adding args to gcp: %s",args) debug(_("adding args to gcp: %s"),args)
self.__checkArgs(options, source_path, args) self.__checkArgs(options, source_path, args)
gobject.idle_add(self.__copyNextFile) gobject.idle_add(self.__copyNextFile)
return (True,'') return (True,'')
@ -364,7 +370,7 @@ class GCP():
try: try:
self.loop.run() self.loop.run()
except KeyboardInterrupt: except KeyboardInterrupt:
info("User interruption: good bye") info(_("User interruption: good bye"))
if __name__ == "__main__": if __name__ == "__main__":

164
gcp.po Normal file
View File

@ -0,0 +1,164 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-09-27 13:03+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: gcp:43
msgid "Error during import"
msgstr ""
#: gcp:44
msgid "Please check dependecies:"
msgstr ""
#: gcp:50
msgid ""
"ProgressBar not available, please download it at http://pypi.python.org/pypi/"
"progressbar"
msgstr ""
#: gcp:51
msgid ""
"Progress bar deactivated\n"
"--\n"
msgstr ""
#: gcp:62
msgid ""
"This program comes with ABSOLUTELY NO WARRANTY;\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions.\n"
"---\n"
"\n"
"This software is an advanced file copier\n"
"Get the latest version at http://www.goffi.org\n"
msgstr ""
#: gcp:82
msgid "Init DbusObject..."
msgstr ""
#: gcp:102
msgid "INTERNAL ERROR: invalid arguments"
msgstr ""
#: gcp:119
msgid "gcp launched"
msgstr ""
#: gcp:126
msgid "Init DBus..."
msgstr ""
#: gcp:155
msgid "Can't read mounts table"
msgstr ""
#: gcp:162
#, python-format
msgid "Adding to copy list: %(path)s ==> %(dest_path)s (%(fs_type)s)"
msgstr ""
#: gcp:170 gcp:192
#, python-format
msgid "Can't copy %(path)s: %(exception)s"
msgstr ""
#: gcp:179
#, python-format
msgid "Creating directory %s"
msgstr ""
#: gcp:200
#, python-format
msgid "Invalid dest_path: %s"
msgstr ""
#: gcp:205
#, python-format
msgid "The path given in arg doesn't exist or is not accessible: %s"
msgstr ""
#: gcp:210
#, python-format
msgid "omitting directory \"%s\""
msgstr ""
#: gcp:226
#, python-format
msgid "File [%s] already exists, skipping it !"
msgstr ""
#: gcp:233
#, python-format
msgid "COPYING %(source)s ==> %(dest)s"
msgstr ""
#: gcp:284
msgid "Progress: "
msgstr ""
#: gcp:315
msgid "copy directories recursively"
msgstr ""
#: gcp:318
msgid "force overwriting of existing files"
msgstr ""
#: gcp:321
msgid "preserve the specified attributes"
msgstr ""
#: gcp:324
msgid "don't fixe name encoding errors"
msgstr ""
#: gcp:327
msgid "deactivate progress bar"
msgstr ""
#: gcp:330
msgid "Show what is currently done"
msgstr ""
#: gcp:335
msgid "Progress bar is not available, deactivating"
msgstr ""
#: gcp:345
msgid ""
"Invalide --preserve value\n"
"valid values are:"
msgstr ""
#: gcp:354
#, python-format
msgid "There is already one instance of %s running, pluging to it"
msgstr ""
#: gcp:360
msgid "Wrong number of arguments"
msgstr ""
#: gcp:362
#, python-format
msgid "adding args to gcp: %s"
msgstr ""
#: gcp:373
msgid "User interruption: good bye"
msgstr ""

BIN
i18n/fr/LC_MESSAGES/gcp.mo Normal file

Binary file not shown.