mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Better naming ? :s
This commit is contained in:
parent
9a4ba0bfe1
commit
c0234a75f5
2 changed files with 8 additions and 8 deletions
|
@ -103,9 +103,9 @@ user:
|
||||||
extra:
|
extra:
|
||||||
ask: ask_email
|
ask: ask_email
|
||||||
required: True
|
required: True
|
||||||
pattern: &pattern_email_without_plus
|
pattern: &pattern_email
|
||||||
- !!str ^[\w.-]+@([^\W_A-Z]+([-]*[^\W_A-Z]+)*\.)+([^\W\d_]{2,})$
|
- !!str ^[\w.-]+@([^\W_A-Z]+([-]*[^\W_A-Z]+)*\.)+([^\W\d_]{2,})$
|
||||||
- "pattern_email_without_plus"
|
- "pattern_email"
|
||||||
-p:
|
-p:
|
||||||
full: --password
|
full: --password
|
||||||
help: User password
|
help: User password
|
||||||
|
@ -164,7 +164,7 @@ user:
|
||||||
-m:
|
-m:
|
||||||
full: --mail
|
full: --mail
|
||||||
extra:
|
extra:
|
||||||
pattern: *pattern_email_without_plus
|
pattern: *pattern_email
|
||||||
-p:
|
-p:
|
||||||
full: --change-password
|
full: --change-password
|
||||||
help: New password to set
|
help: New password to set
|
||||||
|
@ -176,9 +176,9 @@ user:
|
||||||
nargs: "*"
|
nargs: "*"
|
||||||
metavar: MAIL
|
metavar: MAIL
|
||||||
extra:
|
extra:
|
||||||
pattern: &pattern_email
|
pattern: &pattern_email_forward
|
||||||
- !!str ^[\w\+.-]+@([^\W_A-Z]+([-]*[^\W_A-Z]+)*\.)+([^\W\d_]{2,})$
|
- !!str ^[\w\+.-]+@([^\W_A-Z]+([-]*[^\W_A-Z]+)*\.)+([^\W\d_]{2,})$
|
||||||
- "pattern_email"
|
- "pattern_email_forward"
|
||||||
--remove-mailforward:
|
--remove-mailforward:
|
||||||
help: Mailforward addresses to remove
|
help: Mailforward addresses to remove
|
||||||
nargs: "*"
|
nargs: "*"
|
||||||
|
@ -188,7 +188,7 @@ user:
|
||||||
nargs: "*"
|
nargs: "*"
|
||||||
metavar: MAIL
|
metavar: MAIL
|
||||||
extra:
|
extra:
|
||||||
pattern: *pattern_email_without_plus
|
pattern: *pattern_email
|
||||||
--remove-mailalias:
|
--remove-mailalias:
|
||||||
help: Mail aliases to remove
|
help: Mail aliases to remove
|
||||||
nargs: "*"
|
nargs: "*"
|
||||||
|
|
|
@ -468,8 +468,8 @@
|
||||||
"password_too_simple_4": "The password needs to be at least 12 characters long and contain a digit, upper, lower and special characters",
|
"password_too_simple_4": "The password needs to be at least 12 characters long and contain a digit, upper, lower and special characters",
|
||||||
"pattern_backup_archive_name": "Must be a valid filename with max 30 characters, alphanumeric and -_. characters only",
|
"pattern_backup_archive_name": "Must be a valid filename with max 30 characters, alphanumeric and -_. characters only",
|
||||||
"pattern_domain": "Must be a valid domain name (e.g. my-domain.org)",
|
"pattern_domain": "Must be a valid domain name (e.g. my-domain.org)",
|
||||||
"pattern_email": "Must be a valid e-mail address, '+' symbol accepted(e.g. someone+tag@example.com)",
|
"pattern_email_forward": "Must be a valid e-mail address, '+' symbol accepted (e.g. someone+tag@example.com)",
|
||||||
"pattern_email_without_plus": "Must be a valid e-mail address without '+' symbol (e.g. someone@example.com)",
|
"pattern_email": "Must be a valid e-mail address, without '+' symbol (e.g. someone@example.com)",
|
||||||
"pattern_firstname": "Must be a valid first name",
|
"pattern_firstname": "Must be a valid first name",
|
||||||
"pattern_lastname": "Must be a valid last name",
|
"pattern_lastname": "Must be a valid last name",
|
||||||
"pattern_mailbox_quota": "Must be a size with b/k/M/G/T suffix or 0 to not have a quota",
|
"pattern_mailbox_quota": "Must be a size with b/k/M/G/T suffix or 0 to not have a quota",
|
||||||
|
|
Loading…
Add table
Reference in a new issue