intro.c 746 B

1234567891011121314151617181920212223
  1. #include <grass/gis.h>
  2. #include <grass/glocale.h>
  3. #include "watershed.h"
  4. int intro(void)
  5. {
  6. G_message(_("%s provides a text-based user-interface to the %s program."),
  7. G_program_name(), NON_NAME);
  8. G_message(_("%s also allows the user to prepare a report of map layers for each"),
  9. G_program_name());
  10. G_message(_("watershed basin determined in %s.\n"), NON_NAME);
  11. G_message(_("%s will help the user determine which options to use for the"),
  12. G_program_name());
  13. G_message(_("%s program. %s will then ask for map layers that will be"),
  14. NON_NAME, G_program_name());
  15. G_message(_("divided by basin. %s will then run %s and create the report."),
  16. G_program_name(), NON_NAME);
  17. return (0);
  18. }