Options menu labels

This commit is contained in:
rytz 2016-01-18 10:08:47 -08:00
parent 8fd46d8a78
commit 4b4242a10b
6 changed files with 49 additions and 10 deletions

View file

@ -52,7 +52,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
private string cannotRestartWhileActive;
public ApplicationSettingsWidget()
: base("Application Settings".Localize())
: base("Application".Localize())
{
cannotRestartWhilePrintIsActiveMessage = "Oops! You cannot restart while a print is active.".Localize();
cannotRestartWhileActive = "Unable to restart".Localize();
@ -153,7 +153,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
buttonRow.Margin = new BorderDouble(0, 6);
string settingLabelBeggining = "Theme".Localize();
string settingLabelEnd = "Display Options".Localize();
string settingLabelEnd = "Display".Localize();
string settingLabelFull = String.Format("{0}/{1}", settingLabelBeggining, settingLabelEnd);
TextWidget settingLabel = new TextWidget(settingLabelFull);//"Theme/Display Options"
settingLabel.AutoExpandBoundsToText = true;
@ -196,7 +196,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
buttonRow.HAnchor = HAnchor.ParentLeftRight;
buttonRow.Margin = new BorderDouble(top: 4);
TextWidget settingsLabel = new TextWidget("Change Display Mode".Localize());
TextWidget settingsLabel = new TextWidget("Display Mode".Localize());
settingsLabel.AutoExpandBoundsToText = true;
settingsLabel.TextColor = ActiveTheme.Instance.PrimaryTextColor;
settingsLabel.VAnchor = VAnchor.ParentTop;
@ -343,7 +343,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
buttonRow.HAnchor = HAnchor.ParentLeftRight;
buttonRow.Margin = new BorderDouble(top: 4);
TextWidget settingsLabel = new TextWidget("Language Options".Localize());
TextWidget settingsLabel = new TextWidget("Language".Localize());
settingsLabel.AutoExpandBoundsToText = true;
settingsLabel.TextColor = ActiveTheme.Instance.PrimaryTextColor;
settingsLabel.VAnchor = VAnchor.ParentTop;

View file

@ -20,7 +20,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
private event EventHandler unregisterEvents;
public CalibrationSettingsWidget()
: base("Calibration Settings".Localize())
: base("Calibration".Localize())
{
printLevelingContainer = new DisableableWidget();
if (!ActiveSliceSettings.Instance.HasHardwareLeveling())

View file

@ -22,7 +22,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
public CloudSettingsWidget()
: base(LocalizedString.Get("Cloud Settings"))
: base(LocalizedString.Get("Cloud"))
{
mainContainer.AddChild(new HorizontalLine(separatorLineColor));
@ -130,7 +130,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
configureNotificationSettingsButton.VAnchor = VAnchor.ParentCenter;
configureNotificationSettingsButton.Click += new EventHandler(configureNotificationSettingsButton_Click);
notificationSettingsLabel = new TextWidget(LocalizedString.Get("Notification Settings"));
notificationSettingsLabel = new TextWidget(LocalizedString.Get("Notifications"));
notificationSettingsLabel.AutoExpandBoundsToText = true;
notificationSettingsLabel.TextColor = ActiveTheme.Instance.PrimaryTextColor;
notificationSettingsLabel.VAnchor = VAnchor.ParentCenter;

View file

@ -24,7 +24,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
private event EventHandler unregisterEvents;
public HardwareSettingsWidget()
: base("Hardware Settings".Localize())
: base("Hardware".Localize())
{
eePromControlsContainer = new DisableableWidget();
eePromControlsContainer.AddChild(GetEEPromControl());
@ -241,7 +241,7 @@ namespace MatterHackers.MatterControl.ConfigurationPage
buttonRow.HAnchor = HAnchor.ParentLeftRight;
buttonRow.Margin = new BorderDouble(0, 4);
TextWidget notificationSettingsLabel = new TextWidget("EEProm Settings".Localize());
TextWidget notificationSettingsLabel = new TextWidget("EEProm".Localize());
notificationSettingsLabel.AutoExpandBoundsToText = true;
notificationSettingsLabel.TextColor = ActiveTheme.Instance.PrimaryTextColor;
notificationSettingsLabel.VAnchor = VAnchor.ParentCenter;