~ubuntu-branches/ubuntu/precise/grass/precise

« back to all changes in this revision

Viewing changes to display/d.rast/main.c

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2011-04-13 17:08:41 UTC
  • mfrom: (8.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110413170841-ss1t9bic0d0uq0gz
Tags: 6.4.1-1
* New upstream version.
* Now build-dep on libjpeg-dev and current libreadline6-dev.
* Removed patch swig: obsolete.
* Policy bumped to 3.9.2, without changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
    module = G_define_module();
51
51
    module->keywords = _("display, raster");
52
 
    module->description =
53
 
        _("Displays and overlays raster map layers "
54
 
          "in the active display frame on the graphics monitor.");
55
 
 
 
52
    module->description = _("Displays user-specified raster map in the active "
 
53
                            "graphics frame.");
 
54
    
56
55
    /* set up command line */
57
56
    map = G_define_standard_option(G_OPT_R_MAP);
58
 
    map->description = _("Raster map to be displayed");
 
57
    map->description = _("Name of raster map to be displayed");
59
58
 
60
59
    catlist = G_define_option();
61
60
    catlist->key = "catlist";
82
81
    bg->gisprompt = GISPROMPT_COLOR;
83
82
    bg->required = NO;
84
83
    bg->description = _("Background color (for null)");
 
84
    bg->guisection = _("Null cells");
85
85
 
86
86
    flag_o = G_define_flag();
87
87
    flag_o->key = 'o';
88
88
    flag_o->description = _("Overlay (non-null values only)");
 
89
    flag_o->guisection = _("Null cells");
89
90
 
90
91
    flag_i = G_define_flag();
91
92
    flag_i->key = 'i';