Skip to content

Commit

Permalink
Merge pull request #661 from Sjoerd1993/Minor-string-changes
Browse files Browse the repository at this point in the history
Minor string changes
  • Loading branch information
cmkohnen authored Dec 23, 2023
2 parents b4bd466 + 8e349b9 commit ec88eff
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
18 changes: 9 additions & 9 deletions data/ui/figure_settings.blp
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ template $GraphsFigureSettingsWindow : Adw.Window {
spacing: 6;
Adw.PreferencesGroup {
Adw.EntryRow min_left {
title: _("Minimum Left-Hand Y-Axis");
title: _("Minimum Left Axis");
}
}
Adw.PreferencesGroup {
Adw.EntryRow max_left {
title: _("Maximum Left-Hand Y-Axis");
title: _("Maximum Left Axis");
}
}
}
Expand All @@ -83,12 +83,12 @@ template $GraphsFigureSettingsWindow : Adw.Window {
spacing: 6;
Adw.PreferencesGroup {
Adw.EntryRow min_bottom {
title: _("Minimum Bottom X-Axis");
title: _("Minimum Bottom Axis");
}
}
Adw.PreferencesGroup {
Adw.EntryRow max_bottom {
title: _("Maximum Bottom X-Axis");
title: _("Maximum Bottom Axis");
}
}
}
Expand All @@ -98,12 +98,12 @@ template $GraphsFigureSettingsWindow : Adw.Window {
spacing: 6;
Adw.PreferencesGroup {
Adw.EntryRow min_right {
title: _("Minimum Right-Hand Y-Axis");
title: _("Minimum Right Axis");
}
}
Adw.PreferencesGroup {
Adw.EntryRow max_right {
title: _("Maximum Right-Hand Y-Axis");
title: _("Maximum Right Axis");
}
}
}
Expand All @@ -113,12 +113,12 @@ template $GraphsFigureSettingsWindow : Adw.Window {
orientation: horizontal;
Adw.PreferencesGroup {
Adw.EntryRow min_top {
title: _("Minimum Top X-Axis");
title: _("Minimum Top Axis");
}
}
Adw.PreferencesGroup {
Adw.EntryRow max_top {
title: _("Maximum Top Y-Axis");
title: _("Maximum Top Axis");
}
}
}
Expand Down Expand Up @@ -166,7 +166,7 @@ template $GraphsFigureSettingsWindow : Adw.Window {
title: _("Legend Position");
model: StringList{
strings [
_("Best"), _("Upper right"), _("Upper left"), _("Lower left"),
_("Auto"), _("Upper right"), _("Upper left"), _("Lower left"),
_("Lower right"), _("Center left"), _("Center right"),
_("Lower center"), _("Upper center"), _("Center"),
]
Expand Down
4 changes: 2 additions & 2 deletions data/ui/style_editor.blp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ template $GraphsStyleEditor : Adw.NavigationPage {

Adw.ActionRow {
title: _("Title Size");
subtitle: _("Title size in relation to text Size");
subtitle: _("Title size in relation to text size");

Scale titlesize {
draw-value: true;
Expand All @@ -63,7 +63,7 @@ template $GraphsStyleEditor : Adw.NavigationPage {
}
Adw.ActionRow {
title: _("Label Size");
subtitle: _("Label size in relation to text Size");
subtitle: _("Label size in relation to text size");

Scale labelsize {
draw-value: true;
Expand Down
8 changes: 4 additions & 4 deletions data/ui/window.blp
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ menu view_menu {
}
section {
submenu {
label: _("Top X Scale");
label: _("Top Scale");
hidden-when: "action-disabled";
action: "app.change-top-scale";
target: "0";
Expand Down Expand Up @@ -696,7 +696,7 @@ menu view_menu {
}
}
submenu {
label: _("Bottom X Scale");
label: _("Bottom Scale");
hidden-when: "action-disabled";
action: "app.change-bottom-scale";
target: "0";
Expand Down Expand Up @@ -728,7 +728,7 @@ menu view_menu {
}
}
submenu {
label: _("Left Y Scale");
label: _("Left Scale");
hidden-when: "action-disabled";
action: "app.change-left-scale";
target: "0";
Expand Down Expand Up @@ -759,7 +759,7 @@ menu view_menu {
}
}
submenu {
label: _("Right Y Scale");
label: _("Right Scale");
hidden-when: "action-disabled";
action: "app.change-right-scale";
target: "0";
Expand Down

0 comments on commit ec88eff

Please sign in to comment.