[jhbuild] Fixed some typos in strings. Fixes bug #685150
- From: Daniel Mustieles GarcÃa <dmustieles src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [jhbuild] Fixed some typos in strings. Fixes bug #685150
- Date: Mon, 29 Oct 2012 11:59:14 +0000 (UTC)
commit 35abffda9846950806b16b1abdea246d4381a65b
Author: Daniel Mustieles <daniel mustieles gmail com>
Date: Mon Oct 29 12:59:07 2012 +0100
Fixed some typos in strings. Fixes bug #685150
jhbuild/commands/__init__.py | 2 +-
jhbuild/commands/autobuild.py | 2 +-
jhbuild/commands/checkmodulesets.py | 2 +-
jhbuild/commands/sanitycheck.py | 2 +-
jhbuild/moduleset.py | 2 +-
jhbuild/utils/httpcache.py | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/jhbuild/commands/__init__.py b/jhbuild/commands/__init__.py
index 0ad9fd4..60621f7 100644
--- a/jhbuild/commands/__init__.py
+++ b/jhbuild/commands/__init__.py
@@ -146,7 +146,7 @@ def register_command(command_class):
# special help command, never run
class cmd_help(Command):
- doc = N_('Information about available jhbuild commands')
+ doc = N_('Information about available JHBuild commands')
name = 'help'
usage_args = ''
diff --git a/jhbuild/commands/autobuild.py b/jhbuild/commands/autobuild.py
index a770107..9ccd87e 100644
--- a/jhbuild/commands/autobuild.py
+++ b/jhbuild/commands/autobuild.py
@@ -68,7 +68,7 @@ class cmd_autobuild(Command):
config.verbose = True
if not config.autobuild_report_url:
- raise UsageError(_('report url for autobuild not specified'))
+ raise UsageError(_('report URL for autobuild not specified'))
module_set = jhbuild.moduleset.load(config)
module_list = module_set.get_module_list(args or config.modules,
diff --git a/jhbuild/commands/checkmodulesets.py b/jhbuild/commands/checkmodulesets.py
index 9f436da..216a386 100644
--- a/jhbuild/commands/checkmodulesets.py
+++ b/jhbuild/commands/checkmodulesets.py
@@ -27,7 +27,7 @@ import jhbuild.moduleset
from jhbuild.commands import Command, register_command
class cmd_checkmodulesets(Command):
- doc = N_('Check if modules in jhbuild have the correct definition')
+ doc = N_('Check if modules in JHBuild have the correct definition')
name = 'checkmodulesets'
def run(self, config, options, args, help=None):
diff --git a/jhbuild/commands/sanitycheck.py b/jhbuild/commands/sanitycheck.py
index f4a5d11..902e16a 100644
--- a/jhbuild/commands/sanitycheck.py
+++ b/jhbuild/commands/sanitycheck.py
@@ -113,7 +113,7 @@ class cmd_sanitycheck(Command):
try:
get_output(['perl', '-M%s' % perlmod, '-e', 'exit'])
except:
- uprint(_('Could not find the perl module %s') % perlmod)
+ uprint(_('Could not find the Perl module %s') % perlmod)
# check for cvs:
if not inpath('cvs', os.environ['PATH'].split(os.pathsep)):
diff --git a/jhbuild/moduleset.py b/jhbuild/moduleset.py
index ce69144..043b3d5 100644
--- a/jhbuild/moduleset.py
+++ b/jhbuild/moduleset.py
@@ -31,7 +31,7 @@ try:
import xml.dom.minidom
import xml.parsers.expat
except ImportError:
- raise FatalError(_('Python xml packages are required but could not be found'))
+ raise FatalError(_('Python XML packages are required but could not be found'))
from jhbuild import modtypes
from jhbuild.versioncontrol import get_repo_type
diff --git a/jhbuild/utils/httpcache.py b/jhbuild/utils/httpcache.py
index a349efc..c541d97 100644
--- a/jhbuild/utils/httpcache.py
+++ b/jhbuild/utils/httpcache.py
@@ -43,7 +43,7 @@ except ImportError:
try:
import xml.dom.minidom
except ImportError:
- raise SystemExit, _('Python xml packages are required but could not be found')
+ raise SystemExit, _('Python XML packages are required but could not be found')
def _parse_isotime(string):
if string[-1] != 'Z':
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]