From a501b72e40062c9e606a787657582d1859c35d35 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 6 Jul 2007 19:35:32 -0400 Subject: Make paragraph text in scripts single strings It is much easier for translators to deal with paragraphs as strings rather than by lines. Take all usage and version information and convert it to this format. Signed-off-by: Dan McGee --- scripts/makepkg.sh.in | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'scripts/makepkg.sh.in') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 8be44c65..30e6b711 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -961,12 +961,11 @@ usage() { } version() { - printf "$(gettext "makepkg (pacman) %s")\n" "$myver" - echo "$(gettext "Copyright (C) 2002-2007 Judd Vinet .")" - echo - echo "$(gettext "This is free software; see the source for copying conditions.")" - echo "$(gettext "There is NO WARRANTY, to the extent permitted by law.")" - echo + printf "makepkg (pacman) %s\n" "$myver" + printf "$(gettext "\ +Copyright (C) 2002-2007 Judd Vinet .\n\n\ +This is free software; see the source for copying conditions.\n\ +There is NO WARRANTY, to the extent permitted by law.\n")" } ARGLIST=$@ @@ -1006,8 +1005,6 @@ if [ -z "$SRCROOT" ]; then SRCROOT=$ABSROOT fi - - # Parse Command Line Options. OPT_SHORT="bcCdefFghiLmop:rRsSV" OPT_LONG="asroot,builddeps,clean,cleancache,nodeps,noextract,force,geninteg,help,install,log" -- cgit v1.2.3-54-g00ecf