Corrections to strings in Screenshot app. See #3817.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30432 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Joachim Seemer
2009-04-26 16:52:33 +00:00
parent f7c48ade93
commit 05f5d7346e
2 changed files with 7 additions and 7 deletions
+4 -4
View File
@@ -80,7 +80,7 @@ Screenshot::ArgvReceived(int32 argc, char** argv)
_ShowHelp();
else if (strcmp(argv[i], "-b") == 0 || strcmp(argv[i], "--border") == 0)
includeBorder = true;
else if (strcmp(argv[i], "-m") == 0 || strcmp(argv[i], "--mouse") == 0)
else if (strcmp(argv[i], "-m") == 0 || strcmp(argv[i], "--mouse-pointer") == 0)
includeMouse = true;
else if (strcmp(argv[i], "-w") == 0 || strcmp(argv[i], "--window") == 0)
grabActiveWindow = true;
@@ -110,9 +110,9 @@ Screenshot::_ShowHelp() const
printf("Screenshot [OPTION]... Creates a bitmap of the current screen\n\n");
printf("OPTION\n");
printf(" -o, --options Show options window first\n");
printf(" -m, --mouse Have the mouse pointer in the screenshot\n");
printf(" -b, --border Include the window border with the screenshot\n");
printf(" -w, --window Use active window instead of the entire screen\n");
printf(" -m, --mouse-pointer Include the mouse pointer\n");
printf(" -b, --border Include the window border\n");
printf(" -w, --window Capture the active window instead of the entire screen\n");
printf(" -d, --delay=seconds Take screenshot after specified delay [in seconds]\n");
printf(" -s, --silent Saves the screenshot without showing the app window\n");
printf(" overrides --options, saves to home folder as png\n");
+3 -3
View File
@@ -243,9 +243,9 @@ ScreenshotWindow::_SetupFirstLayoutItem(BCardLayout* layout)
stringView->SetFont(be_bold_font);
stringView->SetExplicitMaxSize(BSize(B_SIZE_UNLIMITED, B_SIZE_UNSET));
fActiveWindow = new BRadioButton("Take active window",
fActiveWindow = new BRadioButton("Capture active window",
new BMessage(kScreenshotType));
fWholeDesktop = new BRadioButton("Take whole screen",
fWholeDesktop = new BRadioButton("Capture entire screen",
new BMessage(kScreenshotType));
fWholeDesktop->SetValue(B_CONTROL_ON);
@@ -263,7 +263,7 @@ ScreenshotWindow::_SetupFirstLayoutItem(BCardLayout* layout)
new BMessage(kIncludeBorder));
fWindowBorder->SetEnabled(false);
fShowMouse = new BCheckBox("Include mouse pointer in screenshot",
fShowMouse = new BCheckBox("Include mouse pointer",
new BMessage(kShowMouse));
fShowMouse->SetValue(fIncludeMouse);