Changeset 11786


Ignore:
Timestamp:
2006-05-09T14:58:16+12:00 (18 years ago)
Author:
kjdon
Message:

changed a few of the strings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/bin/script/downloadinfo.pl

    r11782 r11786  
    33###########################################################################
    44#
    5 # downloadinfo.pl --
     5# downloadinfo.pl -- prints out information about a download module
    66# A component of the Greenstone digital library software
    77# from the New Zealand Digital Library Project at the
    88# University of Waikato, New Zealand.
    99#
    10 # Copyright (C) 1999 New Zealand Digital Library Project
     10# Copyright (C) 2006 New Zealand Digital Library Project
    1111#
    1212# This program is free software; you can redistribute it and/or modify
     
    2626###########################################################################
    2727
    28 # This program will print info about a Download
    2928
    3029use strict;
     
    4140use download;
    4241use util;
    43 #use parsargv;
    4442use gsprintf;
    4543use printusage;
     
    4846my $arguments =
    4947    [ { 'name' => "collect",
    50     'desc' => "{pluginfo.collect}",
     48    'desc' => "{downloadinfo.collect}",
    5149    'type' => "string",
    5250    'reqd' => "no" },
     
    5452    'desc' => "{scripts.xml}",
    5553    'type' => "flag",
    56     'reqd' => "no" },
     54    'reqd' => "no"},
    5755      { 'name' => "listall",
    5856    'desc' => "{scripts.listall}",
     
    6967
    7068my $options = { 'name' => "downloadinfo.pl",
    71         'desc' => "{pluginfo.desc}",
     69        'desc' => "{downloadinfo.desc}",
    7270        'args' => $arguments };
    7371
     
    7977
    8078sub main {
    81     my $self = {};
    82     my $blnParseFailed = "false";
    8379   
    8480    my $collect = "";
     
    214210    }
    215211    else {
    216     gsprintf(STDERR, "\n{downloadinfo.passing_options}\n\n");
    217212    gsprintf(STDERR, "{downloadinfo.option_types}:\n\n");
    218213    gsprintf(STDERR, "{downloadinfo.specific_options}\n\n");
    219214    gsprintf(STDERR, "{downloadinfo.general_options}\n\n");
    220     gsprintf(STDERR, "$download {downloadinfo.info}:\n\n");
     215    gsprintf(STDERR, "$download {common.info}:\n\n");
    221216   
    222217    $downloadobj->print_txt_usage();
Note: See TracChangeset for help on using the changeset viewer.