Fix typos

This commit is contained in:
Denis Silakov 2014-11-06 16:39:03 +04:00
parent 8cd5c8580d
commit 2215a5437e
4 changed files with 224 additions and 205 deletions

7
abf.py
View file

@ -233,8 +233,11 @@ def parse_command_line():
'specified, it is assumed to be your default group. You can specify several projects to be built one after another. '
'You can also group projects with ":" to indicate that they can be built in parallel. For example, '
'"abf chain_build a b:c d" will build project "a", then (after "a" is built) will launch builds of "b" and "c" '
'in parallel and after both of these projects are built, the build of "d" will be initiated. '))
parser_chain_build.add_argument('-i', '--infile', action='store', help=_('File with project names. You can ommit project names in command line '
'in parallel and after both of these projects are built, the build of "d" will be initiated. '
'If automated publishing is set, then console client waits for every build to be published before starting the next build in the chain. '
'If automated container creation is set, then console client waits for container to be ready and when the next build is started, containers '
'from all previous builds are used as extra repositories.' ))
parser_chain_build.add_argument('-i', '--infile', action='store', help=_('File with project names. You can omit project names in command line '
'and provide a file with project names instead. The file will be read line by line. All projects specified at the same line '
'will be built in parallel; the next line will be processed only after all the build from the previous line are completed successfully. '
'Project name in a line can be separated by colon (":") or by space symbols.'))

View file

@ -69,7 +69,7 @@ __abf_rpmbuild()
__abf_build()
{
__abf_opts "--branch --build --tag --commit --target-platform --arch --repository --save-to-repository --auto-publish-status --auto-publish --update-type --skip-spec-check --auto-create-container --no-extra-tests --cached-chroot --save-chroot --testing"
__abf_opts "--branch --build-list --tag --commit --target-platform --arch --repository --save-to-repository --auto-publish-status --auto-publish --update-type --skip-spec-check --auto-create-container --no-extra-tests --cached-chroot --save-chroot --testing"
update_types="security bugfix enhancement recommended newpackage"
auto_publish_status="none default testing"
if [ ${prev} == -r ] || [ ${prev} == --repository ] ; then
@ -110,7 +110,7 @@ __abf_build()
__abf_chain_build()
{
__abf_opts "--branch --build --tag --infile --commit --target-platform --arch --repository --save-to-repository --auto-publish-status --auto-publish --skip-spec-check --auto-create-container --no-extra-tests --cached-chroot --testing"
__abf_opts "--branch --build-list --tag --infile --commit --target-platform --arch --repository --save-to-repository --auto-publish-status --auto-publish --skip-spec-check --auto-create-container --no-extra-tests --cached-chroot --testing"
auto_publish_status="none default testing"
if [ ${prev} == --auto-publish-status ] ; then

File diff suppressed because it is too large Load diff

View file

@ -580,7 +580,7 @@ msgstr ""
#: ../abf.py:240
msgid ""
"File with project names. You can ommit project names in command line and "
"File with project names. You can omit project names in command line and "
"provide a file with project names instead. The file will be read line by "
"line. All projects specified at the same line will be built in parallel; the "
"next line will be processed only after all the build from the previous line "