From e3b20b9d03f08b889474ef94aef11b31723fdf53 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Mon, 9 Jun 2014 20:10:19 +0200 Subject: Split long docstrings that were recently modified When the strings are changed again, translators will only need to re-translate the modified parts. See: https://fedorahosted.org/freeipa/ticket/3587 Reviewed-By: Martin Kosek --- ipalib/plugins/otptoken.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'ipalib/plugins/otptoken.py') diff --git a/ipalib/plugins/otptoken.py b/ipalib/plugins/otptoken.py index b264287c3..17644e0f1 100644 --- a/ipalib/plugins/otptoken.py +++ b/ipalib/plugins/otptoken.py @@ -30,23 +30,23 @@ import qrcode __doc__ = _(""" OTP Tokens - +""") + _(""" Manage OTP tokens. - +""") + _(""" IPA supports the use of OTP tokens for multi-factor authentication. This code enables the management of OTP tokens. - +""") + _(""" EXAMPLES: - +""") + _(""" Add a new token: ipa otptoken-add --type=totp --owner=jdoe --desc="My soft token" - +""") + _(""" Examine the token: ipa otptoken-show a93db710-a31a-4639-8647-f15b2c70b78a - +""") + _(""" Change the vendor: ipa otptoken-mod a93db710-a31a-4639-8647-f15b2c70b78a --vendor="Red Hat" - +""") + _(""" Delete a token: ipa otptoken-del a93db710-a31a-4639-8647-f15b2c70b78a """) -- cgit