rstconv.1 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .TH rstconv 1 "10 Jan 2000" "Free Pascal" "Free Pascal resource string converter tool"
  2. .SH NAME
  3. rstconv \- The Free Pascal resource string converter tool.
  4. .SH SYNOPSIS
  5. .B rstconv [options] -o outfile
  6. .SH DESCRIPTION
  7. .B rstconv
  8. reads a resource string file (
  9. .I .rst
  10. ) that was produced by the Free Pascal compiler and outputs a file that can
  11. be used by an internationalization tool
  12. (currently only GNU
  13. .I gettext
  14. is supported) for internationalizing your application.
  15. .SH USAGE
  16. .B rstconv
  17. has one required option:
  18. .BI \-o " outfile"
  19. to specify the output file name. If no input file is specified, then
  20. standard input is assumed.
  21. .SH OPTIONS
  22. .TP
  23. .BI -f " format"
  24. Specify the output file format. Currently only the following format is
  25. supported:
  26. .RS
  27. .TP
  28. .I po
  29. emit a
  30. .I .po
  31. file for use with GNU
  32. .I gettext
  33. , which converts it to a .mo file, that can be read with the
  34. .I gettext
  35. unit.
  36. .RE
  37. .TP
  38. .B "-h (or --help)"
  39. outputs a short help message.
  40. .TP
  41. .BI \-i " infile"
  42. Specifies the input file name. If omitted, then standard input is assumed.
  43. .TP
  44. .BI \-o " outfile"
  45. (Required) specify the output file name.
  46. .SH SEE ALSO
  47. .IP
  48. .BR gettext (1)
  49. .BR ppc386 (1)