Ticket #3817: Screenshot-strings.diff

File Screenshot-strings.diff, 2.2 KB (added by humdinger, 15 years ago)

Small changes to strings in GUI

  • src/apps/screenshot/ScreenshotWindow.cpp

     
    166166                BMessenger target(this);
    167167                fOutputPathPanel = new BFilePanel(B_OPEN_PANEL, &target,
    168168                    NULL, B_DIRECTORY_NODE, false, NULL, new DirectoryRefFilter());
    169                 fOutputPathPanel->Window()->SetTitle("Choose directory");
     169                fOutputPathPanel->Window()->SetTitle("Choose folder");
    170170                fOutputPathPanel->SetButtonLabel(B_DEFAULT_BUTTON, "Select");
    171171            }
    172172            fOutputPathPanel->Show();
     
    243243
    244244    fActiveWindow = new BRadioButton("Take active window",
    245245         new BMessage(kScreenshotType));
    246     fWholeDesktop = new BRadioButton("Take whole Desktop",
     246    fWholeDesktop = new BRadioButton("Take whole screen",
    247247         new BMessage(kScreenshotType));
    248248    fWholeDesktop->SetValue(B_CONTROL_ON);
    249249
     
    261261        new BMessage(kIncludeBorder));
    262262    fWindowBorder->SetEnabled(false);
    263263
    264     fShowCursor = new BCheckBox("Include cursor in screenshot",
     264    fShowCursor = new BCheckBox("Include mouse pointer in screenshot",
    265265        new BMessage(kShowCursor));
    266266    fShowCursor->SetValue(fIncludeCursor);
    267267
     
    428428    BPath path;
    429429    find_directory(B_USER_DIRECTORY, &path);
    430430
    431     BString label("Home directory");
     431    BString label("Home folder");
    432432    _AddItemToPathMenu(path.Path(), label, 0, (path.Path() == lastSelectedPath));
    433433
    434434    path.Append("Desktop");
     
    438438    find_directory(B_BEOS_ETC_DIRECTORY, &path);
    439439    path.Append("artwork");
    440440
    441     label.SetTo("Artwork directory");
     441    label.SetTo("Artwork folder");
    442442    _AddItemToPathMenu(path.Path(), label, 2, (path.Path() == lastSelectedPath));
    443443
    444444    int32 i = 0;
     
    459459    }
    460460
    461461    fOutputPathMenu->AddItem(new BSeparatorItem());
    462     fOutputPathMenu->AddItem(new BMenuItem("Choose directory...",
     462    fOutputPathMenu->AddItem(new BMenuItem("Choose folder...",
    463463        new BMessage(kChooseLocation)));
    464464}
    465465
     
    731731
    732732    BPath homePath;
    733733    if (find_directory(B_USER_DIRECTORY, &homePath) != B_OK) {
    734         fprintf(stderr, "failed to find user home directory\n");
     734        fprintf(stderr, "failed to find user home folder\n");
    735735        return;
    736736    }
    737737