Skip to content

Commit

Permalink
Settings: Adjust to sentence case (#10868)
Browse files Browse the repository at this point in the history
  • Loading branch information
gerhardol committed Apr 11, 2023
1 parent 10c727c commit bf2b22e
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public partial class BlameViewerSettingsPage : SettingsPageWithHeader
public BlameViewerSettingsPage()
{
InitializeComponent();
Text = "Blame Viewer";
Text = "Blame viewer";
InitializeComplete();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public partial class DiffViewerSettingsPage : SettingsPageWithHeader
public DiffViewerSettingsPage()
{
InitializeComponent();
Text = "Diff Viewer";
Text = "Diff viewer";
InitializeComplete();

chkShowDiffForAllParents.Text = TranslatedStrings.ShowDiffForAllParentsText;
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ partial class ScriptsSettingsPage
private class ScriptInfoProxy
{
private const string ScriptCategory = "Script";
private const string ScriptBehaviourCategory = "Script Behaviour";
private const string ScriptContextCategory = "Script Context";
private const string ScriptBehaviourCategory = "Script behaviour";
private const string ScriptContextCategory = "Script context";

// Needed for the ImageKeyConverter to work
[Browsable(false)]
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion GitUI/Translation/English.Plugins.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<file datatype="plaintext" original="AutoCompileSubModulesPlugin" source-language="en">
<body>
<trans-unit id="Description.Text">
<source>Auto compile SubModules</source>
<source>Auto compile submodules</source>
<target />
</trans-unit>
<trans-unit id="_doYouWantBuild.Text">
Expand Down
8 changes: 4 additions & 4 deletions GitUI/Translation/English.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ Click this info icon for more details.</source>
<file datatype="plaintext" original="BlameViewerSettingsPage" source-language="en">
<body>
<trans-unit id="$this.Text">
<source>Blame Viewer</source>
<source>Blame viewer</source>
<target />
</trans-unit>
<trans-unit id="cbDetectMoveAndCopyInAllFiles.Text">
Expand Down Expand Up @@ -1326,7 +1326,7 @@ Please make sure that Git for Windows is installed or set the correct command ma
<file datatype="plaintext" original="DiffViewerSettingsPage" source-language="en">
<body>
<trans-unit id="$this.Text">
<source>Diff Viewer</source>
<source>Diff viewer</source>
<target />
</trans-unit>
<trans-unit id="chkContScrollToNextFileOnlyWithAlt.Text">
Expand Down Expand Up @@ -7575,7 +7575,7 @@ Context menu for additional operations</source>
<target />
</trans-unit>
<trans-unit id="chkFollowRenamesInFileHistory.Text">
<source>Follow renames in file history (experimental)</source>
<source>Follow renames in file history</source>
<target />
</trans-unit>
<trans-unit id="chkFollowRenamesInFileHistoryExact.Text">
Expand Down Expand Up @@ -9673,7 +9673,7 @@ Current Branch:
<target />
</trans-unit>
<trans-unit id="gbCascadingMenu.Text">
<source>Cascaded Context Menu</source>
<source>Cascaded context menu</source>
<target />
</trans-unit>
<trans-unit id="gbExplorerIntegration.Text">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class AutoCompileSubModulesPlugin : GitPluginBase, IGitPluginForRepositor
public AutoCompileSubModulesPlugin() : base(true)
{
Id = new Guid("D4D1ACB7-0B6B-4A3C-B0DB-A25056A277D9");
Name = "Auto compile SubModules";
Name = "Auto compile submodules";
Translate();
Icon = Resources.IconAutoCompileSubmodules;
}
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 4.1.0.{build}
version: 4.2.0.{build}

branches:
except:
Expand Down

0 comments on commit bf2b22e

Please sign in to comment.