Rename System tab to Options. Suggested by deejam.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40936 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -235,8 +235,8 @@ LocaleWindow::LocaleWindow()
|
|||||||
.Add(fFormatView)
|
.Add(fFormatView)
|
||||||
.SetInsets(spacing, spacing, spacing, spacing));
|
.SetInsets(spacing, spacing, spacing, spacing));
|
||||||
|
|
||||||
BView* systemTab = new BView(B_TRANSLATE("System"), B_WILL_DRAW);
|
BView* optionsTab = new BView(B_TRANSLATE("Options"), B_WILL_DRAW);
|
||||||
systemTab->SetLayout(new BGroupLayout(B_VERTICAL, 0));
|
optionsTab->SetLayout(new BGroupLayout(B_VERTICAL, 0));
|
||||||
|
|
||||||
fFilesystemTranslationCheckbox = new BCheckBox("filesystemTranslation",
|
fFilesystemTranslationCheckbox = new BCheckBox("filesystemTranslation",
|
||||||
B_TRANSLATE("Translate application and folder names in Deskbar and Tracker."),
|
B_TRANSLATE("Translate application and folder names in Deskbar and Tracker."),
|
||||||
@@ -245,14 +245,14 @@ LocaleWindow::LocaleWindow()
|
|||||||
fFilesystemTranslationCheckbox->SetValue(
|
fFilesystemTranslationCheckbox->SetValue(
|
||||||
BLocaleRoster::Default()->IsFilesystemTranslationPreferred());
|
BLocaleRoster::Default()->IsFilesystemTranslationPreferred());
|
||||||
|
|
||||||
systemTab->AddChild(BLayoutBuilder::Group<>(B_VERTICAL, spacing)
|
optionsTab->AddChild(BLayoutBuilder::Group<>(B_VERTICAL, spacing)
|
||||||
.Add(fFilesystemTranslationCheckbox)
|
.Add(fFilesystemTranslationCheckbox)
|
||||||
.AddGlue()
|
.AddGlue()
|
||||||
.SetInsets(spacing, spacing, spacing, spacing));
|
.SetInsets(spacing, spacing, spacing, spacing));
|
||||||
|
|
||||||
tabView->AddTab(languageTab);
|
tabView->AddTab(languageTab);
|
||||||
tabView->AddTab(countryTab);
|
tabView->AddTab(countryTab);
|
||||||
tabView->AddTab(systemTab);
|
tabView->AddTab(optionsTab);
|
||||||
|
|
||||||
BButton* button
|
BButton* button
|
||||||
= new BButton(B_TRANSLATE("Defaults"), new BMessage(kMsgDefaults));
|
= new BButton(B_TRANSLATE("Defaults"), new BMessage(kMsgDefaults));
|
||||||
|
|||||||
Reference in New Issue
Block a user