start.rc 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Start
  3. *
  4. * Copyright 2003 Dan Kegel
  5. *
  6. * This library is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  19. */
  20. #include "resources.h"
  21. #pragma makedep po
  22. LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
  23. STRINGTABLE
  24. {
  25. STRING_USAGE, "Start a program, or open a document in the program normally used for files\n\
  26. with that suffix.\n\
  27. Usage:\n\
  28. start [options] program_filename [...]\n\
  29. start [options] document_filename\n\
  30. \n\
  31. Options:\n\
  32. \"title\" Specifies the title of the child windows.\n\
  33. /d directory Start the program in the specified directory.\n\
  34. /b Don't create a new console for the program.\n\
  35. /i Start the program with fresh environment variables.\n\
  36. /min Start the program minimized.\n\
  37. /max Start the program maximized.\n\
  38. /low Start the program in the idle priority class.\n\
  39. /normal Start the program in the normal priority class.\n\
  40. /high Start the program in the high priority class.\n\
  41. /realtime Start the program in the realtime priority class.\n\
  42. /abovenormal Start the program in the abovenormal priority class.\n\
  43. /belownormal Start the program in the belownormal priority class.\n\
  44. /node n Start the program on the specified NUMA node.\n\
  45. /affinity mask Start the program with the specified affinity mask.\n\
  46. /wait Wait for the started program to finish, then exit with its\n\
  47. exit code.\n\
  48. /unix Use a Unix filename and start the file like Windows\n\
  49. Explorer.\n\
  50. /exec Exec the specified file (for internal Wine usage).\n\
  51. /ProgIDOpen Open a document using the specified progID.\n\
  52. /? Display this help and exit.\n"
  53. STRING_EXECFAIL, "Application could not be started, or no application associated with the specified file.\nShellExecuteEx failed"
  54. STRING_UNIXFAIL "Could not translate the specified Unix filename to a DOS filename."
  55. }