07070100000000000041FD0000000000000000000000015F607BB700000000000000000000000000000000000000000000000F00000000spacewalk-abrt    07070100000001000081B40000000000000000000000015F607BB70000006E000000000000000000000000000000000000001800000000spacewalk-abrt/Makefile   NAME := spacewalk-abrt

SPECFILE = $(NAME).spec
DO_TAR_GZ := git-tree-sha1

include ../../../rel-eng/Makefile
  07070100000002000081B40000000000000000000000015F607BB70000034A000000000000000000000000000000000000001F00000000spacewalk-abrt/Makefile.python    THIS_MAKEFILE := $(realpath $(lastword $(MAKEFILE_LIST)))
CURRENT_DIR := $(dir $(THIS_MAKEFILE))
include $(CURRENT_DIR)../../../rel-eng/Makefile.python

# Docker tests variables
DOCKER_CONTAINER_BASE = uyuni-master
DOCKER_REGISTRY       = registry.mgr.suse.de
DOCKER_RUN_EXPORT     = "PYTHONPATH=$PYTHONPATH"
DOCKER_VOLUMES        = -v "$(CURDIR)/../../../:/manager"

__pylint ::
	$(call update_pip_env)
	pylint --rcfile=pylintrc $(shell find -name '*.py') > reports/pylint.log || true

docker_pylint ::
	docker run --rm -e $(DOCKER_RUN_EXPORT) $(DOCKER_VOLUMES) $(DOCKER_REGISTRY)/$(DOCKER_CONTAINER_BASE)-pgsql /bin/sh -c "cd /manager/client/tools/spacewalk-abrt; make -f Makefile.python __pylint"

docker_shell ::
	docker run -t -i --rm -e $(DOCKER_RUN_EXPORT) $(DOCKER_VOLUMES) $(DOCKER_REGISTRY)/$(DOCKER_CONTAINER_BASE)-pgsql /bin/bash
  07070100000003000081B40000000000000000000000015F607BB70000035F000000000000000000000000000000000000002700000000spacewalk-abrt/Makefile.spacewalk-abrt    # Makefile.spacewalk-abrt

PREFIX		?=
MANPATH		?= /usr/share/man
SUBDIRS		= etc-conf man po src
VERSION         := $(shell echo `grep ^Version: spacewalk-abrt.spec | awk '{ print $$2 }'`)

ifndef PLATFORM
  PLATFORM=rpm
endif

export PREFIX
export MANPATH
export VERSION
export PLATFORM

all::

install:: all

clean::
	@rm -fv *~ .*~
	@rm -fv spacewalk-abrt*.tar.gz spacewalk-abrt*.tar.bz2
	@find . -name .\#\* -exec rm -fv {} \;
	@rm -fv *.rpm
	@rm -fv po/.intltool-merge-cache

descend-subdirs = @$(foreach d,$(SUBDIRS), $(MAKE) -C $(d) $@ || exit 1; )

all clean install :: $(SUBDIRS)
	$(descend-subdirs)

tardist: clean
	rm -Rfv /tmp/spacewalk-abrt-$(VERSION)
	cp -fapRdv . /tmp/spacewalk-abrt-$(VERSION)
	tar zcfv spacewalk-abrt-$(VERSION).tar.gz --exclude \.svn -C /tmp spacewalk-abrt-$(VERSION)

rpm: tardist
	rpmbuild -ta spacewalk-abrt-$(VERSION).tar.gz
 07070100000004000041FD0000000000000000000000015F607BB700000000000000000000000000000000000000000000001800000000spacewalk-abrt/etc-conf   07070100000005000081B40000000000000000000000015F607BB7000001EA000000000000000000000000000000000000002100000000spacewalk-abrt/etc-conf/Makefile  PREFIX          ?=

ABRT_DIR        = $(PREFIX)/etc/libreport/events.d
CAPS_DIR        = $(PREFIX)/etc/sysconfig/rhn/clientCaps.d
DIRS            = $(ABRT_DIR) $(CAPS_DIR)

INSTALL         = install -p --verbose
INSTALL_DIR     = $(INSTALL) -m 755 -d
INSTALL_DATA    = $(INSTALL) -m 644

all::

$(DIRS):
	@$(INSTALL_DIR) $@

install:: all $(DIRS)
	$(INSTALL_DATA) spacewalk.conf $(ABRT_DIR)
	$(INSTALL_DATA) abrt $(CAPS_DIR)

clean::
	@rm -fv *~ .*~
	@find . -name .\#\* -exec rm -fv {} \;
  07070100000006000081B40000000000000000000000015F607BB700000010000000000000000000000000000000000000001D00000000spacewalk-abrt/etc-conf/abrt  abrt.check(1)=1
07070100000007000081B40000000000000000000000015F607BB7000000EC000000000000000000000000000000000000002700000000spacewalk-abrt/etc-conf/spacewalk.conf    # To be run when a new software crash occurs
EVENT=notify
	/usr/bin/spacewalk-abrt --report $DUMP_DIR

# To be run when abrt detects duplicate of already existing crash
EVENT=notify-dup
	/usr/bin/spacewalk-abrt --update-count $DUMP_DIR
07070100000008000041FD0000000000000000000000015F607BB700000000000000000000000000000000000000000000001300000000spacewalk-abrt/man    07070100000009000081B40000000000000000000000015F607BB700000436000000000000000000000000000000000000001C00000000spacewalk-abrt/man/Makefile   INSTALL         = install --verbose
INSTALL_BIN     = $(INSTALL) -m 755
INSTALL_DIR     = $(INSTALL) -m 755 -d
INSTALL_DATA    = $(INSTALL) -m 644

all :

MANPATH	= /usr/share/man
MANDIR	= $(PREFIX)/$(MANPATH)
CAT	= 8
LANGDIR	=

DIRS	= $(addprefix $(MANDIR)/man,$(CAT))

newline	=
# handle install for a lang and catman
define install_lang_catman
@if [ -n "$(wildcard $(lang)/*.$(catman))" ] ; then \
    $(INSTALL_DIR) $(MANDIR)/$(lang)/man$(catman) ; \
    $(INSTALL_DATA) $(lang)/*.$(catman) $(MANDIR)/$(lang)/man$(catman) ; \
fi
$(newline)
endef

# handle install for a lang
define install_lang
$(foreach catman, $(CAT), $(install_lang_catman) )
$(newline)
endef

# default man pages
define install_default
$(foreach catman, $(CAT),
    @if [ -n "$(wildcard en/*.$(catman))" ] ; then \
        $(INSTALL_DATA) en/*.$(catman) $(MANDIR)/man$(catman) ; \
    fi
    $(newline) )
endef

# Some of this is wicked make
install: $(DIRS)
	$(install_default)
	$(foreach lang, $(LANGDIR), $(install_lang) )

$(DIRS) :
	$(INSTALL_DIR) $@

clean :
	@find . -name \*~ -exec rm -fv {} \;
  0707010000000A000041FD0000000000000000000000015F607BB700000000000000000000000000000000000000000000001600000000spacewalk-abrt/man/en 0707010000000B000081B40000000000000000000000015F607BB700000B0F000000000000000000000000000000000000002700000000spacewalk-abrt/man/en/spacewalk-abrt.8    .\" Copyright 2013 Red Hat, Inc.
.\"
.\" This man page is free documentation; you can redistribute it and/or modify
.\" it under the terms of the GNU General Public License as published by
.\" the Free Software Foundation; version 2 of the License.
.\"
.\" 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 man page; if not, write to the Free Software
.\" Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
.\"
.TH "SPACEWALK-ABRT" "8" "2013 February 12" "Linux" "Red Hat, Inc."
.SH NAME

spacewalk-abrt \- Utility for reporting software crashes to Spacewalk
and Red Hat Satellite.

.SH SYNOPSIS

spacewalk-abrt [\fIoptions\fP] command

.SH DESCRIPTION

.PP
\fBspacewalk-abrt\fP is a client program that reports a software crash
that occurred on a client system to Spacewalk or Red Hat Satellite.
The program operates on top of a problem directory created by \fBABRT\fP
daemon. Ordinarilly, this program is executed automatically by \fBabrtd\fP
when a software crash occurs.

.SH COMMANDS

.IP "\fB--report=PROBLEM_DIRECTORY\fP"
Report the software crash captured in the specified problem directory.
.br
.IP "\fB--update-count=PROBLEM_DIRECTORY\fP"
Update crash count for the specified problem directory.
.br
.IP "\fB--sync\fP"
Synchronize all problem directories found on the client with server.
.br


.SH OPTIONS

.IP "\fB-v, --verbose\fP"
Increase the debugging output.
.br
.IP "\fB--proxy=PROXY\fP"
Specify an http proxy to use.
.br
.IP "\fB--proxyUser=PROXYUSER\fP"
Specify a username to use for an authenticated proxy. This option must be used
in conjunction with \fBproxyPassword\fP.
.br
.IP "\fB--proxyPassword=PROXYPASSWORD\fP"
Specify a password to use for an authenticated proxy. This option must be used
in conjunction with \fBproxyUser\fP.
.br
.IP "\fB--version\fP"
Show the program's version number and exit.
.br
.IP "\fB-h, --help\fP"
Show a help message and exit.

.SH FILES

.IP \fI/etc/libreport/events.d/spacewalk.conf\fP
This configuration file instructs abrt to execute spacewalk-abrt utility when
a software crash occurs.
.br
.IP \fI/etc/abrt/abrt.conf\fP
Basic configuration for \fBABRT\fP.

.SH "SEE ALSO"

.PP
\fBabrtd\fP(8), \fBabrt.conf\fP(5).

.SH AUTHORS
.PP
.PP
This manual page was written by Milan Zazrivec <mzazrivec@redhat.com>.

.SH "BUGS"
.PP
Report bugs to <http://bugzilla.redhat.com>.

.SH COPYRIGHT

.PP
Copyright \(co 2013 Red Hat, Inc.

.PP
This is free software; see the source for copying conditions.  There is
NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 0707010000000C000041FD0000000000000000000000015F607BB700000000000000000000000000000000000000000000001200000000spacewalk-abrt/po 0707010000000D000081B40000000000000000000000015F607BB7000005F4000000000000000000000000000000000000001B00000000spacewalk-abrt/po/Makefile    TOP	= ..
SUBDIR	= locale
localedir = /usr/share/locale

NLSPACKAGE	= spacewalk-abrt
POTFILE		= $(NLSPACKAGE).pot

INSTALL         = /usr/bin/install -c --verbose
INSTALL_BIN     = $(INSTALL) -m 755
INSTALL_DATA    = $(INSTALL) -m 644
INSTALL_DIR     = $(INSTALL) -m 755 -d

MSGMERGE	= msgmerge -v
XGETTEXT	= xgettext --default-domain=$(NLSPACKAGE) --from-code utf-8 \
		  --add-comments --language=Python
MSGFMT		= msgfmt --statistics --verbose

POFILES		= $(wildcard *.po)
MOFILES		= $(patsubst %.po,%.mo,$(POFILES))
SRCFILES = \
        $(wildcard ../src/spacewalk_abrt/*.py) \
        ../src/bin/spacewalk-abrt \
        $(wildcard ../src/actions/*.py)

all:: $(MOFILES)

$(POTFILE): $(SRCFILES)
	@$(XGETTEXT) --keyword=_ --keyword=N_ $(SRCFILES)
	@if cmp -s $(NLSPACKAGE).po $(POTFILE); then \
	    rm -f $(NLSPACKAGE).po; \
	else \
	    mv -f $(NLSPACKAGE).po $(POTFILE); \
	fi

update-po: Makefile $(POTFILE) refresh-po

refresh-po: Makefile
	for cat in $(POFILES); do \
		lang=`basename $$cat .po`; \
		if $(MSGMERGE) $$lang.po $(POTFILE) > $$lang.pot ; then \
			mv -f $$lang.pot $$lang.po ; \
			echo "$(MSGMERGE) of $$lang succeeded" ; \
		else \
			echo "$(MSGMERGE) of $$lang failed" ; \
			rm -f $$lang.pot ; \
		fi \
	done

clean ::
	@rm -fv *mo *~ .depend

install :: $(MOFILES)
	@for n in $(wildcard *.mo); do \
	    l=`basename $$n .mo`; \
	    d="$(PREFIX)$(localedir)/$$l/LC_MESSAGES" ; \
	    $(INSTALL_DIR) $$d ; \
	    $(INSTALL_DATA) $$n $$d/$(NLSPACKAGE).mo ; \
	done

%.mo: %.po
	$(MSGFMT) -o $@ $<
0707010000000E000081B40000000000000000000000015F607BB700001245000000000000000000000000000000000000001F00000000spacewalk-abrt/po/Makefile.old    # Makefile for program source directory in GNU NLS utilities package.
# Copyright (C) 1995-1997, 2000, 2001 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
#
# This file file be copied and used freely without restrictions.  It can
# be used in projects which are not available under the GNU Public License
# but which still want to provide support for the GNU gettext functionality.
# Please note that the actual code is *not* freely available.
#
#  Modified by Yukihiro Nakai <ynakai@redhat.com> to use pygettext.py
#  Modified by Yukihiro Nakai <ynakai@redhat.com> to use libglade-xgettext
#

PACKAGE = $(shell awk '/Name:/ { print $$2 }' ../spacewalk-abrt.spec)
VERSION = $(shell awk '/Version:/ { print $$2 }' ../spacewalk-abrt.spec)

# These two variables depend on the location of this directory.
subdir = po
top_builddir = ..

SHELL = /bin/sh


srcdir = .
top_srcdir = ..

PREFIX ?=
prefix = /usr
exec_prefix = $(PREFIX)${prefix}
datadir = $(PREFIX)${prefix}/share
localedir = $(datadir)/locale
gettextsrcdir = $(datadir)/gettext/po

INSTALL = /usr/bin/install -c
INSTALL_DATA = ${INSTALL} -m 644

GMSGFMT = /usr/bin/msgfmt
MSGFMT = /usr/bin/msgfmt
MSGMERGE = /usr/bin/intltool-update -x --gettext-package=$(PACKAGE) --dist

INCLUDES = -I.. -I$(top_srcdir)/intl

POFILES = $(shell ls *.po)
GMOFILES = $(patsubst %.po,%.gmo,$(POFILES))
DISTFILES = POTFILES.in $(PACKAGE).pot $(POFILES) $(GMOFILES)

POTFILES = \
	$(wildcard ../src/spacewalk_abrt/*.py) \
	$(wildcard ../src/bin/*) \
	$(wildcard ../src/actions/*.py)

CATALOGS = $(GMOFILES)

.SUFFIXES:
.SUFFIXES: .po .pox .gmo .mo

.po.pox:
	$(MAKE) $(PACKAGE).pot
	$(MSGMERGE) $< $(srcdir)/$(PACKAGE).pot -o $*.pox

.po.mo:
	$(MSGFMT) -o $@ $<

.po.gmo:
	file=$(srcdir)/`echo $* | sed 's,.*/,,'`.gmo \
	  && rm -f $$file && $(GMSGFMT) --statistics -o $$file $<


all: all-yes

all-yes: $(CATALOGS)
all-no:

# Note: Target 'all' must not depend on target '$(srcdir)/$(PACKAGE).pot',
# otherwise packages like GCC can not be built if only parts of the source
# have been downloaded.

POTFILES.in:
	echo "[encoding: UTF-8]" > $@
	for file in $(POTFILES); do \
	  echo "$${file#../}" ; \
	done >> $@

$(srcdir)/$(PACKAGE).pot: $(POTFILES) POTFILES.in
	/usr/bin/intltool-update --gettext-package=$(PACKAGE) --pot

install: install-exec install-data
install-exec:
install-data: install-data-yes
install-data-no: all
install-data-yes: all
	mkdir -p $(DESTDIR)$(datadir)
	@catalogs='$(CATALOGS)'; \
	for cat in $$catalogs; do \
	  cat=`basename $$cat`; \
	  lang=`echo $$cat | sed 's/\.gmo$$//'`; \
	  dir=$(localedir)/$$lang/LC_MESSAGES; \
	  mkdir -p $(DESTDIR)$$dir; \
	  if test -r $$cat; then \
	    $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
	    echo "installing $$cat as $(DESTDIR)$$dir/$(PACKAGE).mo"; \
	  else \
	    $(INSTALL_DATA) $(srcdir)/$$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
	    echo "installing $(srcdir)/$$cat as" \
		 "$(DESTDIR)$$dir/$(PACKAGE).mo"; \
	  fi; \
	done

# Define this as empty until I found a useful application.
installcheck:

uninstall:
	catalogs='$(CATALOGS)'; \
	for cat in $$catalogs; do \
	  cat=`basename $$cat`; \
	  lang=`echo $$cat | sed 's/\.gmo$$//'`; \
	  rm -f $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(PACKAGE).mo; \
	done

check: all

dvi info tags TAGS ID:

mostlyclean:
	rm -f core core.* *.pox $(PACKAGE).po *.new.po POTFILES.in
	rm -fr *.o

clean: mostlyclean
	rm -f *.gmo

distclean: clean
	rm -f POTFILES *.mo

maintainer-clean: distclean
	@echo "This command is intended for maintainers to use;"
	@echo "it deletes files that may require special tools to rebuild."
	rm -f $(GMOFILES)

distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
dist distdir:
	$(MAKE) update-po
	@$(MAKE) dist2
# This is a separate target because 'update-po' must be executed before.
dist2: $(DISTFILES)
	dists="$(DISTFILES)"; \
	for file in $$dists; do \
	  if test -f $$file; then dir=.; else dir=$(srcdir); fi; \
	  cp -p $$dir/$$file $(distdir); \
	done

update-po: Makefile POTFILES.in $(PACKAGE).pot
	$(MAKE) $(PACKAGE).pot
	if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; fi; \
	cd $(srcdir); \
	catalogs='$(GMOFILES)'; \
	for cat in $$catalogs; do \
	  cat=`basename $$cat`; \
	  lang=`echo $$cat | sed 's/\.gmo$$//'`; \
	  echo "$$lang:"; \
	  cp $$lang.po $$lang.old.po; \
	  if $(MSGMERGE) $$lang; then \
	    rm -f $$lang.old.po ; \
	  else \
	    echo "msgmerge for $$cat failed!"; \
	    mv $$lang.old.po $$lang.po ; \
	  fi; \
	done
	$(MAKE) update-gmo

update-gmo: Makefile $(GMOFILES)
	@:

Makefile:

# Tell versions [3.59,3.63) of GNU make not to export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
   0707010000000F000081B40000000000000000000000015F607BB700000339000000000000000000000000000000000000001900000000spacewalk-abrt/po/aln.po  #: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000010000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/ar.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ar\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000011000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/as.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: as\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000012000081B40000000000000000000000015F607BB7000003CB000000000000000000000000000000000000001900000000spacewalk-abrt/po/ast.po  #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ast\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
 07070100000013000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/bg.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: bg\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000014000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/bn.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: bn\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000015000081B40000000000000000000000015F607BB700000339000000000000000000000000000000000000001B00000000spacewalk-abrt/po/bn_BD.po    #: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000016000081B40000000000000000000000015F607BB7000003CD000000000000000000000000000000000000001B00000000spacewalk-abrt/po/bn_IN.po    #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: bn_IN\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000017000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/bs.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: bs\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000018000081B40000000000000000000000015F607BB7000007DD000000000000000000000000000000000000001800000000spacewalk-abrt/po/ca.po   # Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>, 2015. #zanata
# Jiri Dostal <jdostal@redhat.com>, 2018. #zanata
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"PO-Revision-Date: 2020-05-14 22:19+0000\n"
"Last-Translator: David Medina <medipas@gmail.com>\n"
"Language-Team: Catalan <https://l10n.opensuse.org/projects/uyuni/spacewalk-"
"abrt/ca/>\n"
"Language: ca\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"
"X-Generator: Weblate 3.6.1\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr "Puja el contingut del directori del problema especificat"

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""
"Actualitza el comptador de les fallides per al directori del problema "
"especificat"

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr "Sincronitza els directoris dels problemes que falten"

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""
"Error: el directori del problema que es va especificar [%s] no existeix.\n"

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""
"No es va especificar cap ordre. Utilitzeu --help per a més informació sobre "
"l'ús."

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""
"Es va especificar més d'una ordre. Utilitzeu --help per a més informació "
"sobre l'ús."

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
"Sembla que aquest sistema no està registrat, useu \"rhn_register\" abans "
"d’usar aquesta ordre."
   07070100000019000081B40000000000000000000000015F607BB700000744000000000000000000000000000000000000001800000000spacewalk-abrt/po/cs.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"PO-Revision-Date: 2020-08-26 12:39+0000\n"
"Last-Translator: Aleš Kastner <alkas@volny.cz>\n"
"Language-Team: Czech <https://l10n.opensuse.org/projects/uyuni/spacewalk-"
"abrt/cs/>\n"
"Language: cs\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"
"X-Generator: Weblate 3.6.1\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr "Nahrát obsah zadaného problémového adresáře"

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr "Aktualizovat počet havárií pro uvedený problémový adresář"

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr "Synchronizovat chybějící problémové adresáře"

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr "Chyba: zadaný problémový adresář {%s} neexistuje.\n"

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""
"Nebyl zadán žádný příkaz. Více informací o používání získáte použitím --help."

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""
"Byl zadán více než jeden příkaz. Více informací o používání získáte použitím "
"--help."

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
"Tento systém patrně není registrován; před tímto příkazem použijte "
"`rhn_register`."
0707010000001A000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/cy.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: cy\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000001B000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/da.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: da\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000001C000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/de.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: de\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000001D000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/el.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: el\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000001E000081B40000000000000000000000015F607BB7000003CD000000000000000000000000000000000000001B00000000spacewalk-abrt/po/en_GB.po    #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: en_GB\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   0707010000001F000081B40000000000000000000000015F607BB700000752000000000000000000000000000000000000001800000000spacewalk-abrt/po/es.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"PO-Revision-Date: 2020-07-28 15:30+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fitoschido@gmail.com>\n"
"Language-Team: Spanish <https://l10n.opensuse.org/projects/uyuni/spacewalk-"
"abrt/es/>\n"
"Language: es\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.6.1\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr "Cargar contenido del directorio de problemas especificado"

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""
"Actualizar recuento de cierres inesperados para el directorio de problemas "
"especificado"

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr "Sincronizar directorios de problemas faltantes"

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr "Error: el directorio de problemas especificado [%s] no existe.\n"

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""
"No se ha especificado ninguna orden. Use --help para más información sobre "
"el uso."

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""
"Se ha especificado más de una orden. Use --help para más información sobre "
"el uso."

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
"No parece que se haya registrado este sistema. Use «rhn_register» antes de "
"utilizar este orden."
  07070100000020000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/et.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: et\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000021000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/eu.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: eu\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000022000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/fa.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: fa\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000023000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/fi.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: fi\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000024000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/fr.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: fr\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000025000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/gu.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: gu\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000026000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/he.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: he\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000027000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/hi.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: hi\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000028000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/hr.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: hr\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000029000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/hu.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: hu\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000002A000081B40000000000000000000000015F607BB700000339000000000000000000000000000000000000001800000000spacewalk-abrt/po/hy.po   #: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   0707010000002B000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/id.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: id\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000002C000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/is.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: is\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000002D000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/it.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: it\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000002E000081B40000000000000000000000015F607BB70000082E000000000000000000000000000000000000001800000000spacewalk-abrt/po/ja.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"PO-Revision-Date: 2020-08-27 13:02+0000\n"
"Last-Translator: Yasuhiko Kamata <belphegor@belbel.or.jp>\n"
"Language-Team: Japanese <https://l10n.opensuse.org/projects/uyuni/spacewalk-"
"abrt/ja/>\n"
"Language: ja\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.6.1\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr "指定した不具合ディレクトリの内容をアップロードする"

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr "指定した不具合ディレクトリでのクラッシュ回数を更新する"

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr "存在しない不具合ディレクトリを同期する"

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr "エラー: 指定した不具合ディレクトリ [%s] は存在していません。\n"

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""
"コマンドが指定されていません。使用方法の詳細を表示するには、 --help オプショ"
"ンをお使いください。"

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""
"複数のコマンドが指定されています。使用方法の詳細を表示するには、 --help オプ"
"ションをお使いください。"

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
"このシステムは登録されていないものと思われます。このコマンドを実行する前に、 "
"`rhn_register` コマンドをお使いください。"
  0707010000002F000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/ka.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ka\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000030000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/kn.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: kn\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000031000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/ko.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ko\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000032000081B40000000000000000000000015F607BB700000339000000000000000000000000000000000000001800000000spacewalk-abrt/po/ku.po   #: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000033000081B40000000000000000000000015F607BB700000339000000000000000000000000000000000000001800000000spacewalk-abrt/po/lo.po   #: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000034000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/lt.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: lt\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000035000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/lv.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: lv\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000036000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/mk.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: mk\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000037000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/ml.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ml\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000038000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/mr.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: mr\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000039000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/ms.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ms\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000003A000081B40000000000000000000000015F607BB700000339000000000000000000000000000000000000001800000000spacewalk-abrt/po/my.po   #: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   0707010000003B000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/nb.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: nb\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000003C000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/nl.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: nl\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000003D000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/nn.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: nn\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000003E000081B40000000000000000000000015F607BB700000339000000000000000000000000000000000000001800000000spacewalk-abrt/po/no.po   #: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   0707010000003F000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/or.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: or\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000040000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/pa.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: pa\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000041000081B40000000000000000000000015F607BB70000075D000000000000000000000000000000000000001800000000spacewalk-abrt/po/pl.po   # Piotr Drąg <piotrdrag@gmail.com>, 2015. #zanata
# Piotr Drąg <piotrdrag@gmail.com>, 2018. #zanata
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"PO-Revision-Date: 2018-03-16 04:51+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2)\n"
"X-Generator: Zanata 4.6.2\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr "Wysyła zawartość podanego katalogu problemu"

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr "Aktualizuje liczbę awarii podanego katalogu problemu"

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr "Synchronizuje brakujące katalogi problemów"

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr "Błąd: podany katalog problemu [%s] nie istnieje.\n"

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr "Nie podano polecenia. Opcja --help wyświetli więcej informacji."

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""
"Podano więcej niż jedno polecenie. Opcja --help wyświetli więcej informacji."

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
"Ten system nie jest zarejestrowany, proszę wykonać „rhn_register” przed "
"użyciem tego polecenia."
   07070100000042000081B40000000000000000000000015F607BB70000059D000000000000000000000000000000000000001800000000spacewalk-abrt/po/pt.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"PO-Revision-Date: 2020-08-17 13:26+0000\n"
"Last-Translator: Ricardo Mateus <rmateus@suse.com>\n"
"Language-Team: Portuguese <https://l10n.opensuse.org/projects/uyuni/"
"spacewalk-abrt/pt/>\n"
"Language: pt\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.6.1\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr "Carregar conteúdo de directoria especifica do problema"

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr "Carregar contagem de erros de directoria especifica do problema"

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000043000081B40000000000000000000000015F607BB70000074D000000000000000000000000000000000000001B00000000spacewalk-abrt/po/pt_BR.po    #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"PO-Revision-Date: 2020-07-28 15:29+0000\n"
"Last-Translator: Leonardo Teodoro <leonardosilvateodoro@hotmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://l10n.opensuse.org/projects/uyuni/"
"spacewalk-abrt/pt_BR/>\n"
"Language: pt_BR\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 3.6.1\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr "Carregar conteúdo do diretório de problemas especificado"

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""
"Atualizar contagem de falhas para o diretório de problemas especificado"

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr "Sincronizar diretórios de problemas ausentes"

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr "Erro: o diretório de problemas especificado [%s] não existe.\n"

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""
"Nenhum comando especificado. Use --help para obter mais informações sobre o "
"uso."

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""
"Mais de um comando especificado. Use --help para obter mais informações "
"sobre o uso."

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
"Este sistema não parece estar registrado, use `rhn_register` antes de usar "
"este comando."
   07070100000044000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/ro.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ro\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000045000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/ru.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ru\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000046000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/si.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: si\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000047000081B40000000000000000000000015F607BB700000746000000000000000000000000000000000000001800000000spacewalk-abrt/po/sk.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"PO-Revision-Date: 2020-05-11 07:59+0000\n"
"Last-Translator: Ferdinand Galko <galko.ferdinand@gmail.com>\n"
"Language-Team: Slovak <https://l10n.opensuse.org/projects/uyuni/spacewalk-"
"abrt/sk/>\n"
"Language: sk\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"
"X-Generator: Weblate 3.6.1\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr "Nahrať obsah určeného poblémového adresára"

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr "Aktualizovať počet zlyhaní pre určený problémový adresár"

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr "Synchronizovať chýbajúce problémové adresáre"

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr "Chyba: určený problémový adresár [%s] neexistuje.\n"

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""
"Nie je zadaný žiadny príkaz. Použite --help pre viac informácií o použití."

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""
"Bol zadaný viac ako jeden príkaz. Použite --help pre viac informácií o "
"použití."

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
"Zdá sa, že tento systém nie je zaregistrovaný, použite `rhn_register` pred "
"použitím tohto príkazu."
  07070100000048000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/sl.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: sl\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000049000081B40000000000000000000000015F607BB700000580000000000000000000000000000000000000002500000000spacewalk-abrt/po/spacewalk-abrt.pot  # 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: 2020-08-18 13:47+0200\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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
0707010000004A000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/sq.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: sq\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000004B000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/sr.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: sr\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000004C000081B40000000000000000000000015F607BB7000003CF000000000000000000000000000000000000001D00000000spacewalk-abrt/po/sr@Latn.po  #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: sr@Latn\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
 0707010000004D000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/sv.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: sv\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000004E000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/ta.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ta\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  0707010000004F000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/te.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: te\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000050000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/tg.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: tg\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000051000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/tr.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: tr\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000052000081B40000000000000000000000015F607BB70000096B000000000000000000000000000000000000001800000000spacewalk-abrt/po/uk.po   # Yuri Chornoivan <yurchor@ukr.net>, 2015. #zanata
# Yuri Chornoivan <yurchor@ukr.net>, 2018. #zanata
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"PO-Revision-Date: 2018-03-16 12:47+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Ukrainian\n"
"Language: uk\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"
"X-Generator: Zanata 4.6.2\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr "Вивантажити дані до вказаного каталогу проблем"

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr "Оновити дані щодо кількості аварій для вказаного каталогу проблем"

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr "Синхронізувати пропущені каталоги проблем"

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr "Помилка: вказаного каталогу проблем [%s] не існує.\n"

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""
"Не вказано команди. Скористайтеся параметром --help, щоб дізнатися більше "
"про користування програмою."

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""
"Вказано декілька команд. Скористайтеся параметром --help, щоб дізнатися "
"більше про користування програмою."

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
"Здається, цю систему не зареєстровано. Скористайтеся командою "
"«rhn_register», перш ніж віддавати цю команду."
 07070100000053000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/ur.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: ur\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000054000081B40000000000000000000000015F607BB7000003CA000000000000000000000000000000000000001800000000spacewalk-abrt/po/vi.po   #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: vi\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
  07070100000055000081B40000000000000000000000015F607BB700000339000000000000000000000000000000000000002200000000spacewalk-abrt/po/zh_CN.GB2312.po #: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000056000081B40000000000000000000000015F607BB7000003CD000000000000000000000000000000000000001B00000000spacewalk-abrt/po/zh_CN.po    #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: zh_CN\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000057000081B40000000000000000000000015F607BB700000339000000000000000000000000000000000000002000000000spacewalk-abrt/po/zh_TW.Big5.po   #: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000058000081B40000000000000000000000015F607BB7000003CD000000000000000000000000000000000000001B00000000spacewalk-abrt/po/zh_TW.po    #
msgid ""
msgstr ""
"Project-Id-Version: Spacewalk\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-18 13:47+0200\n"
"Language: zh_TW\n"

#: ../src/bin/spacewalk-abrt:39
msgid "Upload content of the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:41
msgid "Update crash count for the specified problem directory"
msgstr ""

#: ../src/bin/spacewalk-abrt:43
msgid "Synchronize missing problem directories"
msgstr ""

#: ../src/bin/spacewalk-abrt:48
#, python-format
msgid "Error: specified problem directory [%s] does not exist.\n"
msgstr ""

#: ../src/bin/spacewalk-abrt:53
msgid "No command specified. Use --help for more information on the usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:62
msgid ""
"More than one command specified. Use --help for more information on the "
"usage."
msgstr ""

#: ../src/bin/spacewalk-abrt:65
msgid ""
"This system does not seem to be registered, use `rhn_register` before using "
"this command."
msgstr ""
   07070100000059000081B40000000000000000000000015F607BB70000139C000000000000000000000000000000000000001800000000spacewalk-abrt/pylintrc   # spacewalk abrt package pylint configuration

[MASTER]

# Profiled execution.
profile=no

# Pickle collected data for later comparisons.
persistent=no


[MESSAGES CONTROL]

# Disable the message(s) with the given id(s).


disable=I0011,
	C0302,
	C0111,
	R0801,
	R0902,
	R0903,
	R0904,
	R0912,
	R0913,
	R0914,
	R0915,
	R0921,
	R0922,
	W0142,
	W0403,
	W0603,
	C1001,
	W0121,
	useless-else-on-loop,
	bad-whitespace,
	unpacking-non-sequence,
	superfluous-parens,
	cyclic-import,
	redefined-variable-type,
	no-else-return,

        # Uyuni disabled
	E0203,
	E0611,
	E1101,
	E1102

# list of disabled messages:
#I0011: 62: Locally disabling R0201
#C0302:  1: Too many lines in module (2425)
#C0111:  1: Missing docstring
#R0902: 19:RequestedChannels: Too many instance attributes (9/7)
#R0903:  Too few public methods
#R0904: 26:Transport: Too many public methods (22/20)
#R0912:171:set_slots_from_cert: Too many branches (59/20)
#R0913:101:GETServer.__init__: Too many arguments (11/10)
#R0914:171:set_slots_from_cert: Too many local variables (38/20)
#R0915:171:set_slots_from_cert: Too many statements (169/50)
#W0142:228:MPM_Package.write: Used * or ** magic
#W0403: 28: Relative import 'rhnLog', should be 'backend.common.rhnLog'
#W0603: 72:initLOG: Using the global statement
# for pylint-1.0 we also disable
#C1001: 46, 0: Old-style class defined. (old-style-class)
#W0121: 33,16: Use raise ErrorClass(args) instead of raise ErrorClass, args. (old-raise-syntax)
#W:243, 8: Else clause on loop without a break statement (useless-else-on-loop)
# pylint-1.1 checks
#C:334, 0: No space allowed after bracket (bad-whitespace)
#W:162, 8: Attempting to unpack a non-sequence defined at line 6 of (unpacking-non-sequence)
#C: 37, 0: Unnecessary parens after 'not' keyword (superfluous-parens)
#C:301, 0: Unnecessary parens after 'if' keyword (superfluous-parens)

[REPORTS]

# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html
output-format=parseable

# Include message's id in output
include-ids=yes

# Tells whether to display a full report or only the messages
reports=yes

# Template used to display messages. This is a python new-style format string
# used to format the message information. See doc for all details
msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}"

[VARIABLES]

# A regular expression matching names used for dummy variables (i.e. not used).
dummy-variables-rgx=_|dummy


[BASIC]

# Regular expression which should only match correct module names
#module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
module-rgx=([a-zA-Z_][a-zA-Z0-9_]+)$

# Regular expression which should only match correct module level names
const-rgx=(([a-zA-Z_][a-zA-Z0-9_]*)|(__.*__))$

# Regular expression which should only match correct class names
class-rgx=[a-zA-Z_][a-zA-Z0-9_]+$

# Regular expression which should only match correct function names
function-rgx=[a-z_][a-zA-Z0-9_]{,42}$

# Regular expression which should only match correct method names
method-rgx=[a-z_][a-zA-Z0-9_]{,42}$

# Regular expression which should only match correct instance attribute names
attr-rgx=[a-z_][a-zA-Z0-9_]{,30}$

# Regular expression which should only match correct argument names
argument-rgx=[a-z_][a-zA-Z0-9_]{,30}$

# Regular expression which should only match correct variable names
variable-rgx=[a-z_][a-zA-Z0-9_]{,30}$

# Regular expression which should only match correct list comprehension /
# generator expression variable names
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$

# Regular expression which should only match correct class sttribute names
class-attribute-rgx=([A-Za-z_][A-Za-z0-9_]{2,42}|(__.*__))$

# Good variable names which should always be accepted, separated by a comma
good-names=i,j,k,ex,Run,_

# Bad variable names which should always be refused, separated by a comma
bad-names=foo,bar,baz,toto,tutu,tata

# List of builtins function names that should not be used, separated by a comma
bad-functions=apply,input


[DESIGN]

# Maximum number of arguments for function / method
max-args=10

# Maximum number of locals for function / method body
max-locals=20

# Maximum number of return / yield for function / method body
max-returns=6

# Maximum number of branch for function / method body
max-branchs=20

# Maximum number of statements in function / method body
max-statements=50

# Maximum number of parents for a class (see R0901).
max-parents=7

# Maximum number of attributes for a class (see R0902).
max-attributes=7

# Minimum number of public methods for a class (see R0903).
min-public-methods=1

# Maximum number of public methods for a class (see R0904).
max-public-methods=20


[CLASSES]


[FORMAT]

# Maximum number of characters on a single line.
max-line-length=120

# Maximum number of lines in a module
max-module-lines=1000

# String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
# tab).
indent-string='    '


[MISCELLANEOUS]

# List of note tags to take in consideration, separated by a comma.
notes=
0707010000005A000081B40000000000000000000000015F607BB700000030000000000000000000000000000000000000002800000000spacewalk-abrt/spacewalk-abrt-rpmlintrc   addFilter("suse-filelist-forbidden-sysconfig")

0707010000005B000081B40000000000000000000000015F607BB700000FD6000000000000000000000000000000000000002600000000spacewalk-abrt/spacewalk-abrt.changes -------------------------------------------------------------------
Tue Sep 15 10:27:55 CEST 2020 - jgonzalez@suse.com

- version 4.1.2-1
- Remove duplicated languages and update translation strings

-------------------------------------------------------------------
Wed Nov 27 16:44:09 CET 2019 - jgonzalez@suse.com

- version 4.1.1-1
- Bump version to 4.1.0 (bsc#1154940)

-------------------------------------------------------------------
Wed May 15 15:06:42 CEST 2019 - jgonzalez@suse.com

- version 4.0.5-1
- SPEC cleanup

-------------------------------------------------------------------
Mon Apr 22 12:06:29 CEST 2019 - jgonzalez@suse.com

- version 4.0.4-1
- add makefile and configuration for pylint

-------------------------------------------------------------------
Mon Dec 17 14:33:33 CET 2018 - jgonzalez@suse.com

- version 4.0.3-1
- Sync changes from Spacewalk
- Regenerating .po and .pot files for spacewalk-abrt
- Updating .po translations from Zanata

-------------------------------------------------------------------
Fri Oct 26 10:04:31 CEST 2018 - jgonzalez@suse.com

- version 4.0.2-1
- 1623111 - use base64.encodebytes if possible
- Add Uyuni URL to package

-------------------------------------------------------------------
Fri Aug 10 15:11:42 CEST 2018 - jgonzalez@suse.com

- version 4.0.1-1
- Bump version to 4.0.0 (bsc#1104034)
- Fix copyright for the package specfile (bsc#1103696)

-------------------------------------------------------------------
Mon Mar 26 08:43:58 CEST 2018 - jgonzalez@suse.com

- version 2.8.5.1-1
- Sync with upstream (bsc#1083294)
- Build python2 packages on SUSE systems
- Updating .po translations from Zanata

-------------------------------------------------------------------
Mon Mar 05 08:43:41 CET 2018 - jgonzalez@suse.com

- version 2.8.4.2-1
- remove empty clean section from spec (bsc#1083294)

-------------------------------------------------------------------
Wed Feb 28 09:16:49 CET 2018 - jgonzalez@suse.com

- version 2.8.4.1-1
- Sync with upstream

-------------------------------------------------------------------
Wed Jan 17 10:24:02 CET 2018 - jgonzalez@suse.com

- version 2.8.2.1-1
- fix filelist
- use standard rpmbuild bytecompile
- modules are now in standard sitelib path
- install files into python_sitelib/python3_sitelib
- split spacewalk-abrt into python2/python3 specific packages
- Bumping package versions for 2.8.
- update copyright year
- Updating .po translations from Zanata

-------------------------------------------------------------------
Mon Mar 06 16:42:10 CET 2017 - mc@suse.de

- version 2.7.1.2-1
- Updated links to github in spec files

-------------------------------------------------------------------
Tue Feb 07 17:52:17 CET 2017 - michele.bologna@suse.com

- version 2.7.1.1-1
- Align with upstream versioning

-------------------------------------------------------------------
Wed Jan 11 15:47:17 CET 2017 - michele.bologna@suse.com

- version 2.7.0.1-1
- Version 2.7

-------------------------------------------------------------------
Mon Mar 21 16:42:27 CET 2016 - mc@suse.de

- version 2.5.2.2-1
- fix file permissions (bsc#970550)

-------------------------------------------------------------------
Wed Mar 09 10:54:38 CET 2016 - mc@suse.de

- version 2.5.2.1-1
- fixing warning
- do not evaluate Makefile
- update translations

-------------------------------------------------------------------
Mon Nov 30 11:06:37 CET 2015 - mc@suse.de

- version 2.5.1.1-1
- python is not part of basic Fedora installation anymore

-------------------------------------------------------------------
Wed Oct 07 16:02:00 CEST 2015 - mc@suse.de

- version 2.5.0.1-1
- support translations in spacewalk-abrt

-------------------------------------------------------------------
Tue Dec 10 15:21:57 CET 2013 - mc@suse.de

- version 2.1.4.1-1
- make post script success even if abrtd is not running
- switch to 2.1

-------------------------------------------------------------------
Thu Apr 11 14:53:42 CEST 2013 - mc@suse.de

- initial release

  0707010000005C000081B40000000000000000000000015F607BB700000E48000000000000000000000000000000000000002300000000spacewalk-abrt/spacewalk-abrt.spec    #
# spec file for package spacewalk-abrt
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2008-2018 Red Hat, Inc.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via https://bugs.opensuse.org/
#


%if 0%{?fedora} || 0%{?rhel} >= 8
%global build_py3   1
%global default_py3 1
%endif

%if ( 0%{?fedora} && 0%{?fedora} < 28 ) || ( 0%{?rhel} && 0%{?rhel} < 8 ) || 0%{?suse_version}
%global build_py2   1
%endif

%define pythonX %{?default_py3: python3}%{!?default_py3: python2}

Name:           spacewalk-abrt
Version:        4.1.2
Release:        1%{?dist}
Summary:        ABRT plug-in for rhn-check
License:        GPL-2.0-only
Group:          Applications/System

Url:            https://github.com/uyuni-project/uyuni
Source0:        https://github.com/spacewalkproject/spacewalk/archive/%{name}-%{version}.tar.gz
Source1:        %{name}-rpmlintrc
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildArch:      noarch
BuildRequires:  gettext
BuildRequires:  python-devel
Requires:       %{pythonX}-%{name} = %{version}-%{release}
Requires:       abrt
Requires:       abrt-cli

%description
spacewalk-abrt - rhn-check plug-in for collecting information about crashes handled by ABRT.

%if 0%{?build_py2}
%package -n python2-%{name}
Summary:        ABRT plug-in for rhn-check
Group:          Applications/System
BuildRequires:  python
Requires:       python2-rhn-check
Requires:       python2-rhn-client-tools

%description -n python2-%{name}
Python 2 specific files for %{name}.
%endif

%if 0%{?build_py3}
%package -n python3-%{name}
Summary:        ABRT plug-in for rhn-check
Group:          Applications/System
BuildRequires:  python3-rpm-macros
Requires:       python3-rhn-check
Requires:       python3-rhn-client-tools

%description -n python3-%{name}
Python 3 specific files for %{name}.
%endif

%prep
%setup -q

%build
make -f Makefile.spacewalk-abrt

%install
%if 0%{?build_py2}
make -f Makefile.spacewalk-abrt install PREFIX=$RPM_BUILD_ROOT \
                PYTHON_PATH=%{python_sitelib} PYTHON_VERSION=%{python_version}
%endif
%if 0%{?build_py3}
sed -i 's|#!/usr/bin/python|#!/usr/bin/python3|' src/bin/spacewalk-abrt
make -f Makefile.spacewalk-abrt install PREFIX=$RPM_BUILD_ROOT \
                PYTHON_PATH=%{python3_sitelib} PYTHON_VERSION=%{python3_version}
%endif

%define default_suffix %{?default_py3:-%{python3_version}}%{!?default_py3:-%{python_version}}
ln -s spacewalk-abrt%{default_suffix} $RPM_BUILD_ROOT%{_bindir}/spacewalk-abrt

%find_lang %{name}

%post
service abrtd restart ||:

%files -f %{name}.lang
%defattr(-,root,root)
%dir /etc/sysconfig/rhn/
%dir /etc/sysconfig/rhn/clientCaps.d
%dir /etc/libreport
%dir /etc/libreport/events.d
%config  /etc/sysconfig/rhn/clientCaps.d/abrt
%config  /etc/libreport/events.d/spacewalk.conf
%{_bindir}/spacewalk-abrt
%{_mandir}/man8/*

%if 0%{?build_py2}
%files -n python2-%{name}
%{_bindir}/spacewalk-abrt-%{python_version}
%{python_sitelib}/spacewalk_abrt/
%endif

%if 0%{?build_py3}
%files -n python3-%{name}
%{_bindir}/spacewalk-abrt-%{python3_version}
%{python3_sitelib}/spacewalk_abrt/
%endif

%changelog
0707010000005D000041FD0000000000000000000000015F607BB700000000000000000000000000000000000000000000001300000000spacewalk-abrt/src    0707010000005E000081B40000000000000000000000015F607BB700000141000000000000000000000000000000000000001C00000000spacewalk-abrt/src/Makefile   PREFIX ?=
VERSION ?=

SUBDIRS         = bin spacewalk_abrt

export PREFIX
export VERSION
export PLATFORM

all::

install:: all

clean::
	@rm -fv *~ .*~
	@find . -name .\#\* -exec rm -fv {} \;

descend-subdirs = @$(foreach d,$(SUBDIRS), $(MAKE) -C $(d) $@ || exit 1; )

all clean install :: $(SUBDIRS)
	$(descend-subdirs)
   0707010000005F000041FD0000000000000000000000015F607BB700000000000000000000000000000000000000000000001700000000spacewalk-abrt/src/bin    07070100000060000081B40000000000000000000000015F607BB700000172000000000000000000000000000000000000002000000000spacewalk-abrt/src/bin/Makefile   BIN_DIR         := $(PREFIX)/usr/bin
DIRS            = $(BIN_DIR)

INSTALL         := install -p --verbose
INSTALL_DIR     = $(INSTALL) -m 755 -d
INSTALL_BIN     := $(INSTALL) -m 755

$(DIRS):
	@$(INSTALL_DIR) $@

all:
	echo "Nothing to do"

install:: all $(DIRS)
	$(INSTALL_BIN) spacewalk-abrt $(BIN_DIR)/spacewalk-abrt-$(PYTHON_VERSION)

clean::
	@rm -fv *.pyc *~ .*~
  07070100000061000081FD0000000000000000000000015F607BB700000B8A000000000000000000000000000000000000002600000000spacewalk-abrt/src/bin/spacewalk-abrt #!/usr/bin/python
#
# Copyright (c) 2013--2016 Red Hat, Inc.
#
# This software is licensed to you under the GNU General Public License,
# version 2 (GPLv2). There is NO WARRANTY for this software, express or
# implied, including the implied warranties of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
# along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
#
# Red Hat trademarks are not licensed under GPLv2. No permission is
# granted to use or replicate Red Hat trademarks that are incorporated
# in this software or its documentation.
#

import os
import sys

import gettext
t = gettext.translation('spacewalk-abrt', fallback=True)

if sys.version_info[0] == 3:
    _ = t.gettext
else:
    _ = t.ugettext

from optparse import OptionGroup
from up2date_client import rhncli
from up2date_client import up2dateAuth
import spacewalk_abrt.abrt

class AbrtCli(rhncli.RhnCli):
    def __init__(self):
        super(AbrtCli, self).__init__()

        group = OptionGroup(self.optparser, "Commands", "Specify one of the commands below")
        group.add_option("--report", action="store",
            help=_("Upload content of the specified problem directory")),
        group.add_option("--update-count", action="store",
            help=_("Update crash count for the specified problem directory")),
        group.add_option("--sync", action="store_true",
            help=_("Synchronize missing problem directories")),
        self.optparser.add_option_group(group)

    def check_problem_dir(self, path):
        if not os.path.exists(path):
            sys.stderr.write(rhncli.utf8_encode(_("Error: specified problem directory [%s] does not exist.\n" % path)))
            sys.exit(1)

    def main(self):
        if not (self.options.report or self.options.update_count or self.options.sync):
            print(_("No command specified. Use --help for more information on the usage."))
            sys.exit(1)

        commands = 0
        for command in [self.options.report, self.options.update_count, self.options.sync]:
            if command:
                commands += 1

        if commands > 1:
            print(_("More than one command specified. Use --help for more information on the usage."))

        if not up2dateAuth.getSystemId():
            print(_("This system does not seem to be registered, use `rhn_register` before using this command."))
            sys.exit(0)

        if self.options.report:
            self.check_problem_dir(self.options.report)
            spacewalk_abrt.abrt.report(self.options.report)

        if self.options.update_count:
            self.check_problem_dir(self.options.update_count)
            spacewalk_abrt.abrt.update_count(self.options.update_count)

        if self.options.sync:
            spacewalk_abrt.abrt.sync()

        sys.exit(0)


if __name__ == '__main__':
    cli = AbrtCli()
    cli.run()
  07070100000062000041FD0000000000000000000000015F607BB700000000000000000000000000000000000000000000002200000000spacewalk-abrt/src/spacewalk_abrt 07070100000063000081B40000000000000000000000015F607BB7000001B3000000000000000000000000000000000000002B00000000spacewalk-abrt/src/spacewalk_abrt/Makefile    FILES		:= abrt
PYFILES 	:= $(addsuffix .py, $(FILES))
INITFILE	:= __init__.py
OBJECTS		:= $(PYFILES)

PYTHON_DIR	:= $(PREFIX)$(PYTHON_PATH)

INSTALL         := install -p --verbose
INSTALL_DIR     := $(INSTALL) -m 755 -d
INSTALL_DATA    = $(INSTALL) -m 644

all:: $(OBJECTS)

install:: all
	$(INSTALL_DIR) $(PYTHON_DIR)/spacewalk_abrt
	$(INSTALL_DATA) $(PYFILES) $(INITFILE) $(PYTHON_DIR)/spacewalk_abrt

clean::
	@rm -fv *.pyc *~ .*~
 07070100000064000081B40000000000000000000000015F607BB700000271000000000000000000000000000000000000002E00000000spacewalk-abrt/src/spacewalk_abrt/__init__.py #!/usr/bin/python
#
# Copyright (c) 2013 Red Hat, Inc.
#
# This software is licensed to you under the GNU General Public License,
# version 2 (GPLv2). There is NO WARRANTY for this software, express or
# implied, including the implied warranties of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
# along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
#
# Red Hat trademarks are not licensed under GPLv2. No permission is
# granted to use or replicate Red Hat trademarks that are incorporated
# in this software or its documentation.
#
   07070100000065000081B40000000000000000000000015F607BB7000015EF000000000000000000000000000000000000002A00000000spacewalk-abrt/src/spacewalk_abrt/abrt.py #!/usr/bin/python
#
# Copyright (c) 2013--2017 Red Hat, Inc.
#
# This software is licensed to you under the GNU General Public License,
# version 2 (GPLv2). There is NO WARRANTY for this software, express or
# implied, including the implied warranties of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2
# along with this software; if not, see
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
#
# Red Hat trademarks are not licensed under GPLv2. No permission is
# granted to use or replicate Red Hat trademarks that are incorporated
# in this software or its documentation.
#

import base64
import os
import sys
import errno
from rhn.i18n import bstr

import gettext
t = gettext.translation('spacewalk-abrt', fallback=True)
_ = t.ugettext

from up2date_client import config
from up2date_client import up2dateAuth
from up2date_client import rhnserver
from up2date_client import up2dateLog

encodestring = base64.encodestring
if hasattr(base64, 'encodebytes'):
    encodestring = base64.encodebytes

def _readline(filepath):
    firstline = None
    try:
        f = open(filepath, 'r')
        firstline = f.readline().strip()
        f.close()
    except IOError:
        e = sys.exc_info()[1]
        if e.errno == errno.ENOENT:
            pass
        else:
            raise
    return firstline


def _get_abrt_dir():
    abrt_dir = '/var/tmp/abrt'
    for directory in ['/var/tmp/abrt', '/var/spool/abrt']:
        if os.path.exists(directory) and os.path.isdir(directory):
            abrt_dir = directory

    cf = config.ConfigFile('/etc/abrt/abrt.conf')
    return cf['DumpLocation'] or abrt_dir


def report(problem_dir):
    problem_dir = os.path.normpath(os.path.abspath(problem_dir))
    basename = os.path.basename(problem_dir)
    log = up2dateLog.initLog()
    if not (os.path.exists(problem_dir) and os.path.isdir(problem_dir)):
        log.log_me("The specified path [%s] is not a valid directory." % problem_dir)
        return -1

    crash_items = ['analyzer', 'cmdline', 'reason']
    if os.path.exists(os.path.join(problem_dir, 'vmcore')):
        crash_items = ['analyzer', 'vmcore-dmesg.txt']

    for item in crash_items:
        item_path = os.path.join(problem_dir, item)
        if not os.path.exists(item_path):
            log.log_me("Crash directory [%s] is incomplete or invalid" % problem_dir)
            return -1

    server = rhnserver.RhnServer()
    if not server.capabilities.hasCapability('abrt'):
        return -1

    systemid = up2dateAuth.getSystemId()

    # Package information
    pkg_data = {}
    for item in ['package', 'pkg_name', 'pkg_epoch', 'pkg_version', 'pkg_release', 'pkg_arch']:
        pkg_item_path = os.path.join(problem_dir, item)
        if os.path.exists(pkg_item_path):
            filecontent = _readline(pkg_item_path)

            if filecontent:
                pkg_data[item] = filecontent

    # Crash information
    crash_data = {'crash': basename, 'path': problem_dir}
    # Crash count
    crash_count = _readline(os.path.join(problem_dir, 'count'))
    if crash_count:
        crash_data['count'] = crash_count

    # Create record about the crash
    r = server.abrt.create_crash(systemid, crash_data, pkg_data)

    if (r < 0):  # Error creating new crash report
        log.log_me("Error creating new crash report.")
        return -1

    # Upload every particular file in the problem directory to the server
    for i in os.listdir(problem_dir):
        path = os.path.join(problem_dir, i)
        if not os.path.isfile(path):
            continue

        filesize = os.stat(path).st_size

        crash_file_data = {'filename': os.path.basename(i),
                           'path': path,
                           'filesize': filesize,
                           'filecontent': encodestring(bstr("")),
                           'content-encoding': 'base64'}
        if server.abrt.is_crashfile_upload_enabled(systemid) and filesize <= server.abrt.get_crashfile_uploadlimit(systemid):
            f = open(path, 'r')
            try:
                crash_file_data['filecontent'] = encodestring(bstr(f.read()))
            finally:
                f.close()

        server.abrt.upload_crash_file(systemid, basename, crash_file_data)

    return 1


def update_count(problem_dir):
    problem_dir = os.path.normpath(os.path.abspath(problem_dir))
    basename = os.path.basename(problem_dir)
    log = up2dateLog.initLog()
    if not (os.path.exists(problem_dir) and os.path.isdir(problem_dir)):
        log.log_me("The specified path [%s] is not a valid directory." % problem_dir)
        return -1

    server = rhnserver.RhnServer()
    if not server.capabilities.hasCapability('abrt'):
        return -1

    systemid = up2dateAuth.getSystemId()
    crash_count_path = os.path.join(problem_dir, 'count')
    if not (os.path.exists(crash_count_path) and os.path.isfile(crash_count_path)):
        log.log_me("The problem directory [%s] does not contain any crash count information." % problem_dir)
        return 0

    crash_count = _readline(crash_count_path)
    server.abrt.update_crash_count(systemid, basename, crash_count)

    return 1


def sync():
    abrt_dir = os.path.normpath(_get_abrt_dir())
    if not (os.path.exists(abrt_dir) and os.path.isdir(abrt_dir)):
        log.log_me("The specified path [%s] is not a valid directory." % abrt_dir)
        return -1

    for i in os.listdir(abrt_dir):
        problem_dir = os.path.join(abrt_dir, i)
        if not os.path.isdir(problem_dir):
            continue

        report(problem_dir)

    return 1
 07070100000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000B00000000TRAILER!!!                                                                                                                                                                                                                                                                                                                                                                        