Skip to content

Commit 3d271c9

Browse files
authored
Merge pull request #38 from mast-eu/37-naming
consistent use of name "Plugin Manager"
2 parents 61805a8 + 22f54a1 commit 3d271c9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/GitExtensions.PluginManager/PluginSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ internal class PluginSettings : IEnumerable<ISetting>
1313
/// <summary>
1414
/// Gets a property holding if asking to close git extensions is required.
1515
/// </summary>
16-
public static BoolSetting CloseInstancesProperty { get; } = new BoolSetting("CloseInstances", "Close all instances of Git Extensions before starting PluginManager", false);
16+
public static BoolSetting CloseInstancesProperty { get; } = new BoolSetting("CloseInstances", "Close all instances of Git Extensions before starting Plugin Manager", false);
1717

1818
private readonly ISettingsSource source;
1919

src/PackageManager.UI/App.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected override void OnStartup(StartupEventArgs e)
5656

5757
if (!Directory.Exists(Args.Path))
5858
{
59-
Navigator.Notify("Packages", "Missing argument '--path' - a target path to install packages to.", Navigator.MessageType.Error);
59+
Navigator.Notify("Plugin Manager", "Missing argument '--path' - a target path to install packages to.", Navigator.MessageType.Error);
6060
Shutdown();
6161
return;
6262
}
@@ -194,13 +194,13 @@ private void RunSelfUpdate(MainWindow wnd)
194194
}
195195
else
196196
{
197-
Navigator.Notify("Self Update Error", $"Unnable to find update package (version {Args.SelfUpdateVersion}) for PackageManager.", Navigator.MessageType.Error);
197+
Navigator.Notify("Self Update Error", $"Unnable to find update package (version {Args.SelfUpdateVersion}) for Plugin Manager.", Navigator.MessageType.Error);
198198
}
199199
}
200200
}
201201
else
202202
{
203-
Navigator.Notify("Self Update Error", $"Unnable to find update package for PackageManager.", Navigator.MessageType.Error);
203+
Navigator.Notify("Self Update Error", $"Unnable to find update package for Plugin Manager.", Navigator.MessageType.Error);
204204
}
205205

206206
if (canUpdate)

src/PackageManager.UI/Views/MainWindow.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
xmlns:converters="clr-namespace:PackageManager.Views.Converters"
99
xmlns:views="clr-namespace:PackageManager.Views"
1010
mc:Ignorable="d" d:DataContext="{x:Static dd:ViewModelLocator.Main}"
11-
Title="Packages" Height="600" Width="800" Icon="{StaticResource AppIcon}" WindowStartupLocation="CenterScreen">
11+
Title="Plugin Manager" Height="600" Width="800" Icon="{StaticResource AppIcon}" WindowStartupLocation="CenterScreen">
1212
<Window.Resources>
1313
<converters:ValidUrlToTrueConverter x:Key="ValidUrlToTrueConverter" />
1414
</Window.Resources>

src/PackageManager.UI/Views/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private Task<bool> OnBeforeChange()
5252
if (context.IsExecutable)
5353
{
5454
bool result = navigator.Confirm(
55-
"PluginManager",
55+
"Plugin Manager",
5656
"Plugin Manager is going to write to files that are holded by other executables. " + Environment.NewLine +
5757
"Do you want to kill all instances of these applications?"
5858
);

0 commit comments

Comments
 (0)