Patch by Humdinger:

Changed strings to sentence case. The changes in StatusWindow and
FSUtils are missing because I have some unfinished work in progress
in those files. Will commit them separately. This is case-tracker.diff
from #5169.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35047 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2010-01-13 12:03:25 +00:00
parent fcc3e627e1
commit 82d8aaf85a
19 changed files with 172 additions and 172 deletions
+4 -4
View File
@@ -908,7 +908,7 @@ AttributeView::AttributeView(BRect rect, Model *model)
// Add the default menu item and set it to marked
BMenuItem *result;
result = new BMenuItem("Default Application", new BMessage(kSetPreferredApp));
result = new BMenuItem("Default application", new BMessage(kSetPreferredApp));
result->SetTarget(this);
fPreferredAppMenu->Menu()->AddItem(result);
result->SetMarked(true);
@@ -1767,7 +1767,7 @@ AttributeView::Draw(BRect)
// Link to/version
if (fModel->IsSymLink()) {
MovePenTo(BPoint(fDivider - (StringWidth("Link To:")), lineBase));
MovePenTo(BPoint(fDivider - (StringWidth("Link to:")), lineBase));
SetHighColor(kAttrTitleColor);
DrawString("Link To:");
MovePenTo(BPoint(fDivider + kDrawMargin, lineBase));
@@ -2020,7 +2020,7 @@ AttributeView::BuildContextMenu(BMenu *parent)
parent->AddItem(new BMenuItem("Open", new BMessage(kOpenSelection), 'O'));
if (!FSIsTrashDir(&entry)) {
parent->AddItem(new BMenuItem("Edit Name", new BMessage(kEditItem), 'E'));
parent->AddItem(new BMenuItem("Edit name", new BMessage(kEditItem), 'E'));
parent->AddSeparatorItem();
if (fModel->IsVolume()) {
BMenuItem *item;
@@ -2039,7 +2039,7 @@ AttributeView::BuildContextMenu(BMenu *parent)
BMenuItem *sizeItem = NULL;
if (model.IsDirectory() && !model.IsVolume() && !model.IsRoot()) {
parent->AddItem(sizeItem = new BMenuItem("Recalculate Folder Size",
parent->AddItem(sizeItem = new BMenuItem("Recalculate folder size",
new BMessage(kRecalculateSize)));
}