Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • mika/sssd
  • guillem/debian-pkg-sssd
  • john.veitch/sssd
  • jgullberg/sssd
  • gioele/sssd
  • oktay454/sssd
  • sergiodj/sssd
  • 3v1n0/sssd
  • jfalk-guest/sssd
  • sathieu/sssd
  • dpward/sssd
  • sssd-team/sssd
  • ahasenack/sssd
  • jbicha/sssd
  • yrro-guest/sssd
15 results
Show changes
Commits on Source (94)
......@@ -241,7 +241,9 @@ if HAVE_CMOCKA
test-negcache \
test-authtok \
sss_nss_idmap-tests \
deskprofile_utils-tests \
dyndns-tests \
domain_resolution_order-tests \
fqnames-tests \
nestedgroups-tests \
test_sss_idmap \
......@@ -288,6 +290,7 @@ if HAVE_CMOCKA
krb5_common_test \
test_iobuf \
sss_certmap_test \
test_sssd_krb5_locator_plugin \
$(NULL)
......@@ -330,6 +333,7 @@ endif # HAVE_CMOCKA
check_PROGRAMS = \
stress-tests \
krb5-child-test \
test_ssh_client \
$(non_interactive_cmocka_based_tests) \
$(non_interactive_check_based_tests)
......@@ -970,11 +974,17 @@ libsss_cert_la_CFLAGS = \
$(AM_CFLAGS) \
$(SSS_CERT_CFLAGS) \
$(NULL)
# NOTE:
# There is a dependency between libsss_cert and libsss_child which should
# always be declared explicitly and if missing might cause issue in some
# environments (e.g. Gentoo or OpenSUSE build service), even if it is
# resolved otherwise while linking the binaries.
libsss_cert_la_LIBADD = \
$(SSS_CERT_LIBS) \
$(TALLOC_LIBS) \
$(TEVENT_LIBS) \
libsss_crypt.la \
libsss_child.la \
libsss_debug.la \
libsss_certmap.la \
$(NULL)
......@@ -1019,6 +1029,7 @@ libsss_util_la_SOURCES = \
src/sbus/sssd_dbus_utils.c \
src/util/util.c \
src/util/util_ext.c \
src/util/util_preauth.c \
src/util/memory.c \
src/util/safe-format-string.c \
src/util/server.c \
......@@ -1892,8 +1903,14 @@ check_LTLIBRARIES += \
$(NULL)
endif
# libdlopen_test_providers is a helper library to provide missing symbols for
# dlopen_tests. It is mainly used for the backend modules but is used as well
# to provide __wrap_sss_nss_make_request_timeout needed make make dlopen_tests
# pass for libsss_nss_idmap_tests.
libdlopen_test_providers_la_SOURCES = \
$(sssd_be_SOURCES)
$(sssd_be_SOURCES) \
src/tests/cmocka/wrap_sss_nss_make_request_timeout.c \
$(NULL)
libdlopen_test_providers_la_CFLAGS = \
$(AM_CFLAGS) \
$(CHECK_CFLAGS) \
......@@ -1921,6 +1938,7 @@ libsss_nss_idmap_tests_la_LDFLAGS = \
$(libsss_nss_idmap_la_LDFLAGS) \
-shared \
-rpath $(libdir) \
-Wl,-wrap,sss_nss_make_request_timeout \
-Wl,--version-script,$(srcdir)/src/sss_client/idmap/sss_nss_idmap.unit_tests
dist_noinst_DATA += src/sss_client/idmap/sss_nss_idmap.unit_tests
......@@ -2290,6 +2308,18 @@ krb5_child_test_LDADD = \
$(SSSD_INTERNAL_LTLIBS) \
libsss_test_common.la
test_ssh_client_SOURCES = \
src/tests/test_ssh_client.c \
$(NULL)
test_ssh_client_CFLAGS = \
$(AM_CFLAGS) \
-DSSH_CLIENT_DIR=\"$(abs_top_builddir)\" \
$(NULL)
test_ssh_client_LDADD = \
$(SSSD_INTERNAL_LTLIBS) \
$(SSSD_LIBS) \
$(NULL)
if BUILD_DBUS_TESTS
sbus_tests_SOURCES = \
......@@ -2585,6 +2615,17 @@ sss_nss_idmap_tests_LDADD = \
libsss_nss_idmap_tests.la \
$(NULL)
deskprofile_utils_tests_SOURCES = \
src/tests/cmocka/test_deskprofile_utils.c \
src/providers/ipa/ipa_deskprofile_rules_util.c \
src/providers/ipa/ipa_rules_common.c
deskprofile_utils_tests_CFLAGS = \
$(AM_CFLAGS)
deskprofile_utils_tests_LDADD = \
$(CMOCKA_LIBS) \
$(SSSD_INTERNAL_LTLIBS) \
libsss_test_common.la
EXTRA_dyndns_tests_DEPENDENCIES = \
$(ldblib_LTLIBRARIES)
dyndns_tests_SOURCES = \
......@@ -2606,6 +2647,16 @@ dyndns_tests_LDADD = \
$(SSSD_INTERNAL_LTLIBS) \
libsss_test_common.la
domain_resolution_order_tests_SOURCES = \
src/tests/cmocka/test_domain_resolution_order.c \
src/responder/common/cache_req/cache_req_domain.c
domain_resolution_order_tests_CFLAGS = \
$(AM_CFLAGS)
domain_resolution_order_tests_LDADD = \
$(CMOCKA_LIBS) \
$(SSSD_INTERNAL_LTLIBS) \
libsss_test_common.la
fqnames_tests_SOURCES = \
src/tests/cmocka/test_fqnames.c
fqnames_tests_CFLAGS = \
......@@ -3445,7 +3496,6 @@ test_iobuf_LDADD = \
$(SSSD_LIBS) \
$(NULL)
EXTRA_simple_access_tests_DEPENDENCIES = \
$(ldblib_LTLIBRARIES)
simple_access_tests_SOURCES = \
......@@ -3518,6 +3568,25 @@ sss_certmap_test_LDADD = \
libsss_certmap.la \
$(NULL)
test_sssd_krb5_locator_plugin_SOURCES = \
src/tests/cmocka/test_sssd_krb5_locator_plugin.c \
src/krb5_plugin/sssd_krb5_locator_plugin.c \
$(NULL)
test_sssd_krb5_locator_plugin_CFLAGS = \
$(AM_CFLAGS) \
$(POPT_CFLAGS) \
$(TALLOC_CFLAGS) \
$(KRB5_CFLAGS) \
-DTEST_PUBCONF_PATH=\"$(abs_builddir)/src/tests/cmocka/pubconf\" \
$(NULL)
test_sssd_krb5_locator_plugin_LDADD = \
$(CMOCKA_LIBS) \
$(POPT_LIBS) \
$(TALLOC_LIBS) \
$(KRB5_LIBS) \
libsss_test_common.la \
$(NULL)
if BUILD_KCM
test_kcm_json_SOURCES = \
src/tests/cmocka/test_kcm_json_marshalling.c \
......@@ -3635,6 +3704,7 @@ intgcheck-prepare:
$(INTGCHECK_CONFIGURE_FLAGS) \
CFLAGS="-O2 -g $$CFLAGS -DKCM_PEER_UID=$$(id -u)"; \
$(MAKE) $(AM_MAKEFLAGS) ; \
$(MAKE) $(AM_MAKEFLAGS) test_ssh_client; \
: Force single-thread install to workaround concurrency issues; \
$(MAKE) $(AM_MAKEFLAGS) -j1 install; \
: Remove .la files from LDB module directory to avoid loader warnings; \
......@@ -4635,6 +4705,7 @@ edit_cmd = $(SED) \
-e 's|@sbindir[@]|$(sbindir)|g' \
-e 's|@environment_file[@]|$(environment_file)|g' \
-e 's|@localstatedir[@]|$(localstatedir)|g' \
-e 's|@runstatedir[@]|$(runstatedir)|g' \
-e 's|@logpath[@]|$(logpath)|g' \
-e 's|@libexecdir[@]|$(libexecdir)|g' \
-e 's|@pipepath[@]|$(pipepath)|g' \
......
......@@ -107,12 +107,18 @@
%global with_python3_option --without-python3-bindings
%endif
%if (0%{?fedora} > 28 || 0%{?rhel} > 7)
%global with_python2_option --without-python2-bindings
%else
%global with_python2 1
%endif
%global enable_systemtap 1
%if (0%{?enable_systemtap} == 1)
%global enable_systemtap_opt --enable-systemtap
%endif
%if (0%{?fedora} || (0%{?rhel} >= 7 && 0%{rhel7_minor} >= 4))
%if (0%{?fedora} || 0%{?rhel} >= 7)
%global with_secrets 1
%else
%global with_secret_responder --without-secrets
......@@ -125,7 +131,7 @@
%global with_kcm_option --without-kcm
%endif
%if (0%{?fedora} >= 27 || (0%{?rhel} >= 7 && 0%{?rhel7_minor} > 4))
%if (0%{?fedora} >= 27 || 0%{?rhel} >= 7)
%global with_gdm_pam_extensions 1
%else
%global with_gdm_pam_extensions 0
......@@ -195,6 +201,10 @@ BuildRequires: dbus-devel
BuildRequires: dbus-libs
BuildRequires: openldap-devel
BuildRequires: pam-devel
%if (0%{?use_openssl} == 1)
BuildRequires: p11-kit-devel
BuildRequires: openssl-devel
%endif
BuildRequires: nss-devel
BuildRequires: nspr-devel
BuildRequires: pcre-devel
......@@ -203,7 +213,9 @@ BuildRequires: libxml2
BuildRequires: docbook-style-xsl
BuildRequires: krb5-devel
BuildRequires: c-ares-devel
%if (0%{?with_python2} == 1)
BuildRequires: python2-devel
%endif
%if (0%{?with_python3} == 1)
BuildRequires: python3-devel
%endif
......@@ -233,8 +245,6 @@ BuildRequires: nss_wrapper
# slots with are flagged as 'removable' softhsm version 2.1.0 or higher is
# needed.
%if (0%{?use_openssl} == 1)
BuildRequires: p11-kit-devel
BuildRequires: openssl-devel
BuildRequires: gnutls-utils
BuildRequires: softhsm >= 2.1.0
%endif
......@@ -372,6 +382,7 @@ Also provides several other administrative tools:
* sss_obfuscate for generating an obfuscated LDAP password
* sssctl -- an sssd status and control utility
%if (0%{?with_python2} == 1)
%package -n python2-sssdconfig
Summary: SSSD and IPA configuration file manipulation classes and functions
Group: Applications/System
......@@ -381,6 +392,7 @@ BuildArch: noarch
%description -n python2-sssdconfig
Provides python2 files for manipulation SSSD and IPA configuration files.
%endif
%if (0%{?with_python3} == 1)
%package -n python3-sssdconfig
......@@ -394,6 +406,7 @@ BuildArch: noarch
Provides python3 files for manipulation SSSD and IPA configuration files.
%endif
%if (0%{?with_python2} == 1)
%package -n python2-sss
Summary: Python2 bindings for sssd
Group: Development/Libraries
......@@ -408,6 +421,7 @@ SSSD when using id_provider = local in /etc/sssd/sssd.conf.
Also provides several other useful python2 bindings:
* function for retrieving list of groups user belongs to.
* class for obfuscation of passwords
%endif
%if (0%{?with_python3} == 1)
%package -n python3-sss
......@@ -426,6 +440,7 @@ Also provides several other useful python3 bindings:
* class for obfuscation of passwords
%endif
%if (0%{?with_python2} == 1)
%package -n python2-sss-murmur
Summary: Python2 bindings for murmur hash function
Group: Development/Libraries
......@@ -434,6 +449,7 @@ License: LGPLv3+
%description -n python2-sss-murmur
Provides python2 module for calculating the murmur hash version 3
%endif
%if (0%{?with_python3} == 1)
%package -n python3-sss-murmur
......@@ -570,6 +586,7 @@ Requires: libipa_hbac = %{version}-%{release}
%description -n libipa_hbac-devel
Utility library to validate FreeIPA HBAC rules for authorization requests
%if (0%{?with_python2} == 1)
%package -n python2-libipa_hbac
Summary: Python2 bindings for the FreeIPA HBAC Evaluator library
Group: Development/Libraries
......@@ -582,6 +599,7 @@ Obsoletes: libipa_hbac-python < 1.12.90
%description -n python2-libipa_hbac
The python2-libipa_hbac contains the bindings so that libipa_hbac can be
used by Python applications.
%endif
%if (0%{?with_python3} == 1)
%package -n python3-libipa_hbac
......@@ -615,6 +633,7 @@ Requires: libsss_nss_idmap = %{version}-%{release}
%description -n libsss_nss_idmap-devel
Utility library for SID and certificate based lookups
%if (0%{?with_python2} == 1)
%package -n python2-libsss_nss_idmap
Summary: Python2 bindings for libsss_nss_idmap
Group: Development/Libraries
......@@ -627,6 +646,7 @@ Obsoletes: libsss_nss_idmap-python < 1.12.90
%description -n python2-libsss_nss_idmap
The python2-libsss_nss_idmap contains the bindings so that libsss_nss_idmap can
be used by Python applications.
%endif
%if (0%{?with_python3} == 1)
%package -n python3-libsss_nss_idmap
......@@ -782,6 +802,7 @@ autoreconf -ivf
%{with_initscript} \
%{?with_syslog} \
%{?with_cifs_utils_plugin_option} \
%{?with_python2_option} \
%{?with_python3_option} \
%{?enable_polkit_rules_option} \
%{?enable_systemtap_opt} \
......@@ -832,10 +853,12 @@ rm -Rf ${RPM_BUILD_ROOT}/%{_docdir}/%{name}
# Older versions of rpmbuild can only handle one -f option
# So we need to append to the sssd*.lang file
%if (0%{?with_python2} == 1)
for file in `ls $RPM_BUILD_ROOT/%{python2_sitelib}/*.egg-info 2> /dev/null`
do
echo %{python2_sitelib}/`basename $file` >> python2_sssdconfig.lang
done
%endif
%if (0%{?with_python3} == 1)
for file in `ls $RPM_BUILD_ROOT/%{python3_sitelib}/*.egg-info 2> /dev/null`
......@@ -914,8 +937,10 @@ done
echo "sssd.lang:"
cat sssd.lang
%if (0%{?with_python2} == 1)
echo "python2_sssdconfig.lang:"
cat python2_sssdconfig.lang
%endif
%if (0%{?with_python3} == 1)
echo "python3_sssdconfig.lang:"
......@@ -960,8 +985,6 @@ done
%{_unitdir}/sssd-ssh.service
%{_unitdir}/sssd-sudo.socket
%{_unitdir}/sssd-sudo.service
%{_unitdir}/sssd-secrets.socket
%{_unitdir}/sssd-secrets.service
%else
%{_initrddir}/%{name}
%endif
......@@ -971,9 +994,6 @@ done
%{_libexecdir}/%{servicename}/sssd_nss
%{_libexecdir}/%{servicename}/sssd_pam
%{_libexecdir}/%{servicename}/sssd_autofs
%if (0%{?with_secrets} == 1)
%{_libexecdir}/%{servicename}/sssd_secrets
%endif
%{_libexecdir}/%{servicename}/sssd_ssh
%{_libexecdir}/%{servicename}/sssd_sudo
%{_libexecdir}/%{servicename}/p11_child
......@@ -1006,9 +1026,6 @@ done
%dir %{_localstatedir}/cache/krb5rcache
%attr(700,sssd,sssd) %dir %{dbpath}
%attr(755,sssd,sssd) %dir %{mcpath}
%if (0%{?with_secrets} == 1)
%attr(700,root,root) %dir %{secdbpath}
%endif
%attr(751,sssd,sssd) %dir %{deskprofilepath}
%ghost %attr(0644,sssd,sssd) %verify(not md5 size mtime) %{mcpath}/passwd
%ghost %attr(0644,sssd,sssd) %verify(not md5 size mtime) %{mcpath}/group
......@@ -1043,9 +1060,6 @@ done
%{_mandir}/man5/sssd-simple.5*
%{_mandir}/man5/sssd-sudo.5*
%{_mandir}/man5/sssd-session-recording.5*
%if (0%{?with_secrets} == 1)
%{_mandir}/man5/sssd-secrets.5*
%endif
%{_mandir}/man8/sssd.8*
%{_mandir}/man8/sss_cache.8*
%if (0%{?enable_systemtap} == 1)
......@@ -1192,10 +1206,12 @@ done
%{_mandir}/man8/sss_seed.8*
%{_mandir}/man8/sssctl.8*
%if (0%{?with_python2} == 1)
%files -n python2-sssdconfig -f python2_sssdconfig.lang
%defattr(-,root,root,-)
%dir %{python2_sitelib}/SSSDConfig
%{python2_sitelib}/SSSDConfig/*.py*
%endif
%if (0%{?with_python3} == 1)
%files -n python3-sssdconfig -f python3_sssdconfig.lang
......@@ -1206,9 +1222,11 @@ done
%{python3_sitelib}/SSSDConfig/__pycache__/*.py*
%endif
%if (0%{?with_python2} == 1)
%files -n python2-sss
%defattr(-,root,root,-)
%{python2_sitearch}/pysss.so
%endif
%if (0%{?with_python3} == 1)
%files -n python3-sss
......@@ -1216,9 +1234,11 @@ done
%{python3_sitearch}/pysss.so
%endif
%if (0%{?with_python2} == 1)
%files -n python2-sss-murmur
%defattr(-,root,root,-)
%{python2_sitearch}/pysss_murmur.so
%endif
%if (0%{?with_python3} == 1)
%files -n python3-sss-murmur
......@@ -1262,9 +1282,11 @@ done
%{_libdir}/libsss_nss_idmap.so
%{_libdir}/pkgconfig/sss_nss_idmap.pc
%if (0%{?with_python2} == 1)
%files -n python2-libsss_nss_idmap
%defattr(-,root,root,-)
%{python2_sitearch}/pysss_nss_idmap.so
%endif
%if (0%{?with_python3} == 1)
%files -n python3-libsss_nss_idmap
......@@ -1272,9 +1294,11 @@ done
%{python3_sitearch}/pysss_nss_idmap.so
%endif
%if (0%{?with_python2} == 1)
%files -n python2-libipa_hbac
%defattr(-,root,root,-)
%{python2_sitearch}/pyhbac.so
%endif
%if (0%{?with_python3} == 1)
%files -n python3-libipa_hbac
......@@ -1318,12 +1342,23 @@ done
%if (0%{?with_kcm} == 1)
%files kcm -f sssd_kcm.lang
%if (0%{?with_secrets} == 1)
%attr(700,root,root) %dir %{secdbpath}
%endif
%{_libexecdir}/%{servicename}/sssd_kcm
%if (0%{?with_secrets} == 1)
%{_libexecdir}/%{servicename}/sssd_secrets
%endif
%dir %{_datadir}/sssd-kcm
%{_datadir}/sssd-kcm/kcm_default_ccache
%{_unitdir}/sssd-kcm.socket
%{_unitdir}/sssd-kcm.service
%{_unitdir}/sssd-secrets.socket
%{_unitdir}/sssd-secrets.service
%{_mandir}/man8/sssd-kcm.8*
%if (0%{?with_secrets} == 1)
%{_mandir}/man5/sssd-secrets.5*
%endif
%endif
%pre common
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2014-12-14 11:44+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Bulgarian (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1559,7 +1559,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr ""
......@@ -1676,8 +1676,8 @@ msgstr "Текуща парола:"
msgid "Password expired. Change your password now."
msgstr "Паролата Ви е остаряла. Сменете я сега."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1685,8 +1685,8 @@ msgstr "Паролата Ви е остаряла. Сменете я сега."
msgid "The debug level to run with"
msgstr "Нивото на debug записи при работа"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1710,19 +1710,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2017-10-15 03:02+0000\n"
"Last-Translator: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1677,7 +1677,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Domini del proveïdor d'informació (obligatori)"
......@@ -1798,8 +1798,8 @@ msgstr "Contrasenya actual: "
msgid "Password expired. Change your password now."
msgstr "La contrasenya ha vençut. Canvieu ara la vostra contrasenya."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1807,8 +1807,8 @@ msgstr "La contrasenya ha vençut. Canvieu ara la vostra contrasenya."
msgid "The debug level to run with"
msgstr "El nivell de depuració amb què s'executa"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr "El domini SSSD a utilitzar"
......@@ -1832,19 +1832,23 @@ msgstr "No s'ha especificat l'usuari\n"
msgid "Error looking up public keys\n"
msgstr "S'ha produït un error en cercar les claus públiques\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr "El port a utilitzar per connectar-se a l'amfitrió"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr "Port no vàlid\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr "No s'ha especificat l'amfitrió\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr "El camí a l'ordre proxy ha de ser absolut\n"
......
......@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2014-12-14 11:45+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: German (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1641,7 +1641,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Domain des Informationsanbieters (obligatorisch)"
......@@ -1762,8 +1762,8 @@ msgstr "Aktuelles Passwort: "
msgid "Password expired. Change your password now."
msgstr "Passwort ist abgelaufen. Ändern Sie Ihr Passwort jetzt."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1771,8 +1771,8 @@ msgstr "Passwort ist abgelaufen. Ändern Sie Ihr Passwort jetzt."
msgid "The debug level to run with"
msgstr "Stufe, mit der die Fehlerdiagnose ausgeführt werden soll"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr "Die zu verwendende SSSD-Domain"
......@@ -1796,19 +1796,23 @@ msgstr "Benutzer nicht angegeben\n"
msgid "Error looking up public keys\n"
msgstr "Fehler beim Nachschlagen der öffentlichen Schlüssel\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr "Der Port, der für die Verbindung zum Host benutzt werden soll"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr "Ungültiger Port\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr "Rechner nicht angegeben\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr "Der Pfad zum Proxy-Befehl muss absolut sein\n"
......
......@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2018-06-01 03:11+0000\n"
"Last-Translator: Emilio Herrera <ehespinosa57@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1634,7 +1634,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Dominio del proveedor de información (obligatorio)"
......@@ -1752,8 +1752,8 @@ msgstr "Contraseña actual: "
msgid "Password expired. Change your password now."
msgstr "La contraseña ha expirado. Modifíquela en este preciso momento."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1761,8 +1761,8 @@ msgstr "La contraseña ha expirado. Modifíquela en este preciso momento."
msgid "The debug level to run with"
msgstr "Nivel de depuración en que se debe ejecutar"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr "El dominio SSSD a usar"
......@@ -1786,19 +1786,23 @@ msgstr "Usuario no especificado\n"
msgid "Error looking up public keys\n"
msgstr "Error buscando claves públicas\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr "El puerto a usar para conectar al host"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr "Host no especificado\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr "La ruta al comando proxy debe ser absoluta\n"
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2014-12-14 11:45+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1555,7 +1555,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr ""
......@@ -1672,8 +1672,8 @@ msgstr "Uneko pasahitza: "
msgid "Password expired. Change your password now."
msgstr "Pasahitza iraungita. Aldatu zure pasahitza orain."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1681,8 +1681,8 @@ msgstr "Pasahitza iraungita. Aldatu zure pasahitza orain."
msgid "The debug level to run with"
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1706,19 +1706,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr "Errorea gako publikoak bilatzean\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr "Ostalarira konektatzeko erabiliko den ataka"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2016-02-24 03:43+0000\n"
"Last-Translator: Jérôme Fenal <jfenal@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1661,7 +1661,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Domaine du fournisseur d'informations (obligatoire)"
......@@ -1785,8 +1785,8 @@ msgstr "Mot de passe actuel : "
msgid "Password expired. Change your password now."
msgstr "Mot de passe expiré. Changez votre mot de passe maintenant."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1794,8 +1794,8 @@ msgstr "Mot de passe expiré. Changez votre mot de passe maintenant."
msgid "The debug level to run with"
msgstr "Le niveau de débogage utilisé avec"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr "Le domaine SSSD à utiliser"
......@@ -1819,19 +1819,23 @@ msgstr "Utilisateur non spécifié\n"
msgid "Error looking up public keys\n"
msgstr "Erreur lors de la recherche des clés publiques\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr "Le port à utiliser pour se connecter à l'hôte"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr "Port invalide\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr "Hôte non spécifié\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr "Le chemin vers la commande de proxy doit être absolue\n"
......
......@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2014-12-14 11:45+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1557,7 +1557,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr ""
......@@ -1674,8 +1674,8 @@ msgstr "Jelenlegi jelszó:"
msgid "Password expired. Change your password now."
msgstr "A jelszava lejárt, változtass meg most."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1683,8 +1683,8 @@ msgstr "A jelszava lejárt, változtass meg most."
msgid "The debug level to run with"
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1708,19 +1708,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2014-12-14 11:46+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1554,7 +1554,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr ""
......@@ -1671,8 +1671,8 @@ msgstr "Kata sandi saat ini:"
msgid "Password expired. Change your password now."
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1680,8 +1680,8 @@ msgstr ""
msgid "The debug level to run with"
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1705,19 +1705,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2014-12-14 11:46+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1565,7 +1565,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Dominio del provider di informazioni (obbligatorio)"
......@@ -1682,8 +1682,8 @@ msgstr "Password corrente: "
msgid "Password expired. Change your password now."
msgstr "Password scaduta. Cambiare la password ora."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1691,8 +1691,8 @@ msgstr "Password scaduta. Cambiare la password ora."
msgid "The debug level to run with"
msgstr "Il livello di debug da utilizzare"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1716,19 +1716,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2016-08-18 08:06+0000\n"
"Last-Translator: Noriko Mizumoto <noriko@redhat.com>\n"
"Language-Team: Japanese (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1571,7 +1571,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "情報プロバイダーのドメイン (必須)"
......@@ -1688,8 +1688,8 @@ msgstr "現在のパスワード: "
msgid "Password expired. Change your password now."
msgstr "パスワードの期限が切れました。いますぐパスワードを変更してください。"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1697,8 +1697,8 @@ msgstr "パスワードの期限が切れました。いますぐパスワード
msgid "The debug level to run with"
msgstr "実行するデバッグレベル"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr "使用する SSSD ドメイン"
......@@ -1722,19 +1722,23 @@ msgstr "ユーザーが指定されていません\n"
msgid "Error looking up public keys\n"
msgstr "公開鍵の検索中にエラーが発生しました\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr "ホストへの接続に使用するポート"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr "無効なポート\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr "ホストが指定されていません\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr "プロキシーコマンドへのパスは絶対パスにする必要があります\n"
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2014-12-14 11:46+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/sssd/"
......@@ -1555,7 +1555,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr ""
......@@ -1672,8 +1672,8 @@ msgstr ""
msgid "Password expired. Change your password now."
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1681,8 +1681,8 @@ msgstr ""
msgid "The debug level to run with"
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1706,19 +1706,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2014-12-14 11:47+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Dutch (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1625,7 +1625,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Domein voor de informatie provider (verplicht)"
......@@ -1744,8 +1744,8 @@ msgstr "Huidig wachtwoord:"
msgid "Password expired. Change your password now."
msgstr "Wachtwoord verlopen. Verander nu uw wachtwoord."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1753,8 +1753,8 @@ msgstr "Wachtwoord verlopen. Verander nu uw wachtwoord."
msgid "The debug level to run with"
msgstr "Het debugniveau waarmee gestart wordt"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr "Hrt te gebruiken SSSD domein"
......@@ -1778,19 +1778,23 @@ msgstr "Gebruiker niet gespecificeerd\n"
msgid "Error looking up public keys\n"
msgstr "Fout bij het opzoeken van publieke sleutels\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr "De te gebruiken poort voor het verbinden met de host"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr "Ongeldige poort\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr "Host niet gespecificeerd\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr "Het pad naar het proxy commando moet absoluut zijn\n"
......
......@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2018-03-09 11:38+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1657,7 +1657,7 @@ msgstr "Żąda ujednolicenie nazwy naczelnika"
msgid "Use custom version of krb5_get_init_creds_password"
msgstr "Użycie niestandardowej wersji krb5_get_init_creds_password"
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Domena dostawcy informacji (wymagane)"
......@@ -1776,8 +1776,8 @@ msgstr "Bieżące hasło: "
msgid "Password expired. Change your password now."
msgstr "Hasło wygasło. Proszę je zmienić teraz."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1785,8 +1785,8 @@ msgstr "Hasło wygasło. Proszę je zmienić teraz."
msgid "The debug level to run with"
msgstr "Poziom debugowania, z jakim uruchomić"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr "Używana domena SSSD"
......@@ -1810,19 +1810,23 @@ msgstr "Nie podano użytkownika\n"
msgid "Error looking up public keys\n"
msgstr "Błąd podczas wyszukiwania kluczy publicznych\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr "Port do użycia do połączenia z komputerem"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr "Nieprawidłowy port\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr "Nie podano komputera\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr "Ścieżka do polecenia pośrednika musi być bezwzględna\n"
......
......@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2014-12-14 11:47+0000\n"
"Last-Translator: Copied by Zanata <copied-by-zanata@zanata.org>\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1565,7 +1565,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Domínio do fornecedor de informação (obrigatório)"
......@@ -1682,8 +1682,8 @@ msgstr "Senha actual: "
msgid "Password expired. Change your password now."
msgstr "A senha expirou. Altere a sua senha agora."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1691,8 +1691,8 @@ msgstr "A senha expirou. Altere a sua senha agora."
msgid "The debug level to run with"
msgstr "O nível de depuração a utilizar durante a execução"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1716,19 +1716,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2015-10-27 08:15+0000\n"
"Last-Translator: Marco Aurélio Krause <ouesten@me.com>\n"
"Language-Team: Portuguese (Brazil)\n"
......@@ -1549,7 +1549,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr ""
......@@ -1666,8 +1666,8 @@ msgstr ""
msgid "Password expired. Change your password now."
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1675,8 +1675,8 @@ msgstr ""
msgid "The debug level to run with"
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1700,19 +1700,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2016-02-23 10:04+0000\n"
"Last-Translator: Oleksii Levan <exlevan@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1583,7 +1583,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Домен поставщика информации (обязательный)"
......@@ -1702,8 +1702,8 @@ msgstr "Текущий пароль:"
msgid "Password expired. Change your password now."
msgstr "Срок действия пароля истёк. Необходимо сейчас изменить ваш пароль."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1711,8 +1711,8 @@ msgstr "Срок действия пароля истёк. Необходимо
msgid "The debug level to run with"
msgstr "Уровень отладки для запуска"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1736,19 +1736,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\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"
......@@ -1552,7 +1552,7 @@ msgstr ""
msgid "Use custom version of krb5_get_init_creds_password"
msgstr ""
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr ""
......@@ -1669,8 +1669,8 @@ msgstr ""
msgid "Password expired. Change your password now."
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1678,8 +1678,8 @@ msgstr ""
msgid "The debug level to run with"
msgstr ""
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr ""
......@@ -1703,19 +1703,23 @@ msgstr ""
msgid "Error looking up public keys\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr ""
......
......@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: sssd-devel@lists.fedorahosted.org\n"
"POT-Creation-Date: 2018-06-08 21:01+0200\n"
"POT-Creation-Date: 2018-08-12 13:03+0000\n"
"PO-Revision-Date: 2018-06-03 04:06+0000\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.se>\n"
"Language-Team: Swedish (http://www.transifex.com/projects/p/sssd/language/"
......@@ -1621,7 +1621,7 @@ msgstr "Begär kanonisering av huvudmannanamnet"
msgid "Use custom version of krb5_get_init_creds_password"
msgstr "Använd en anpassad version av krb5_get_init_creds_password"
#: src/providers/data_provider_be.c:555
#: src/providers/data_provider_be.c:556
msgid "Domain of the information provider (mandatory)"
msgstr "Domän för informationsleverantören (obligatoriskt)"
......@@ -1740,8 +1740,8 @@ msgstr "Nuvarande lösenord: "
msgid "Password expired. Change your password now."
msgstr "Lösenordet har gått ut. Ändra ditt lösenord nu."
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:40
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:203 src/tools/sss_useradd.c:48
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:41
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:204 src/tools/sss_useradd.c:48
#: src/tools/sss_groupadd.c:41 src/tools/sss_groupdel.c:44
#: src/tools/sss_groupmod.c:42 src/tools/sss_groupshow.c:668
#: src/tools/sss_userdel.c:134 src/tools/sss_usermod.c:47
......@@ -1749,8 +1749,8 @@ msgstr "Lösenordet har gått ut. Ändra ditt lösenord nu."
msgid "The debug level to run with"
msgstr "Felsökningsnivån att köra med"
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:42
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:207
#: src/sss_client/ssh/sss_ssh_authorizedkeys.c:43
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:208
msgid "The SSSD domain to use"
msgstr "SSSD-domäner att använda"
......@@ -1774,19 +1774,23 @@ msgstr "Ingen användare angiven\n"
msgid "Error looking up public keys\n"
msgstr "Fel vid uppslagning av publika nycklar\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:205
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:206
msgid "The port to use to connect to the host"
msgstr "Porten att använda för att ansluta till värden"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:249
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:210
msgid "Print the host ssh public keys"
msgstr ""
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:252
msgid "Invalid port\n"
msgstr "Felaktig port\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:254
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:257
msgid "Host not specified\n"
msgstr "Värden inte angiven\n"
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:260
#: src/sss_client/ssh/sss_ssh_knownhostsproxy.c:263
msgid "The path to the proxy command must be absolute\n"
msgstr "Sökvägen till proxy-kommandot måste vara absolut\n"
......