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:
@@ -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");
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user