More files

master
Dennis Schwerdel 2018-02-24 13:55:24 +01:00
parent 8911c8af6d
commit ce3223b5ea
3 changed files with 1588 additions and 1 deletions

2
lang/Makefile Normal file
View File

@ -0,0 +1,2 @@
default:
(cd ../src; find . -name '*.rs') | xargs xgettext -D ../src --debug -L python -n -F -a -E --from-code UTF-8 -x ../lang/excluded.po -o default.pot

1584
lang/excluded.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -567,7 +567,8 @@ pub fn parse() -> Result<(log::Level, Arguments), ErrorCode> {
.help(tr!("Set the chunker algorithm and target chunk size"))
.default_value(DEFAULT_CHUNKER)
.validator(validate_chunker))
.arg(Arg::from_usage("-c --compression [COMPRESSION] 'Set the compression method and level'")
.arg(Arg::from_usage("-c --compression [COMPRESSION]")
.help(tr!("Set the compression method and level"))
.default_value(DEFAULT_COMPRESSION)
.validator(validate_compression))
.arg(Arg::from_usage("-e --encrypt")