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/rankmirrors.py.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'scripts/rankmirrors.py.in') diff --git a/scripts/rankmirrors.py.in b/scripts/rankmirrors.py.in index 2b284efe..b68bc548 100644 --- a/scripts/rankmirrors.py.in +++ b/scripts/rankmirrors.py.in @@ -3,8 +3,7 @@ # rankmirrors - read a list of mirrors from a file and rank them by speed # @configure_input@ # -# Original Idea copyright (c) 2006 R.G. -# Modified 2006 by Dan McGee +# Copyright (c) 2002-2007 by Judd Vinet # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -26,7 +25,10 @@ from optparse import OptionParser def createOptParser(): usage = "usage: %prog [options] MIRRORFILE | URL" - version = '%prog (pacman) @PACKAGE_VERSION@' + version = "%prog (pacman) @PACKAGE_VERSION@\n" \ + "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." description = "Ranks pacman mirrors by their connection and opening " \ "speed. Pacman mirror files are located in /etc/pacman.d/. It " \ "can also rank one mirror if the URL is provided." -- cgit v1.2.3-24-g4f1b