Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/GitExtensions.PluginManager/PluginSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal class PluginSettings : IEnumerable<ISetting>
/// <summary>
/// Gets a property holding if asking to close git extensions is required.
/// </summary>
public static BoolSetting CloseInstancesProperty { get; } = new BoolSetting("CloseInstances", "Close all instances of Git Extensions before starting PluginManager", false);
public static BoolSetting CloseInstancesProperty { get; } = new BoolSetting("CloseInstances", "Close all instances of Git Extensions before starting Plugin Manager", false);

private readonly ISettingsSource source;

Expand Down
6 changes: 3 additions & 3 deletions src/PackageManager.UI/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected override void OnStartup(StartupEventArgs e)

if (!Directory.Exists(Args.Path))
{
Navigator.Notify("Packages", "Missing argument '--path' - a target path to install packages to.", Navigator.MessageType.Error);
Navigator.Notify("Plugin Manager", "Missing argument '--path' - a target path to install packages to.", Navigator.MessageType.Error);
Shutdown();
return;
}
Expand Down Expand Up @@ -194,13 +194,13 @@ private void RunSelfUpdate(MainWindow wnd)
}
else
{
Navigator.Notify("Self Update Error", $"Unnable to find update package (version {Args.SelfUpdateVersion}) for PackageManager.", Navigator.MessageType.Error);
Navigator.Notify("Self Update Error", $"Unnable to find update package (version {Args.SelfUpdateVersion}) for Plugin Manager.", Navigator.MessageType.Error);
}
}
}
else
{
Navigator.Notify("Self Update Error", $"Unnable to find update package for PackageManager.", Navigator.MessageType.Error);
Navigator.Notify("Self Update Error", $"Unnable to find update package for Plugin Manager.", Navigator.MessageType.Error);
}

if (canUpdate)
Expand Down
2 changes: 1 addition & 1 deletion src/PackageManager.UI/Views/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
xmlns:converters="clr-namespace:PackageManager.Views.Converters"
xmlns:views="clr-namespace:PackageManager.Views"
mc:Ignorable="d" d:DataContext="{x:Static dd:ViewModelLocator.Main}"
Title="Packages" Height="600" Width="800" Icon="{StaticResource AppIcon}" WindowStartupLocation="CenterScreen">
Title="Plugin Manager" Height="600" Width="800" Icon="{StaticResource AppIcon}" WindowStartupLocation="CenterScreen">
<Window.Resources>
<converters:ValidUrlToTrueConverter x:Key="ValidUrlToTrueConverter" />
</Window.Resources>
Expand Down
2 changes: 1 addition & 1 deletion src/PackageManager.UI/Views/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private Task<bool> OnBeforeChange()
if (context.IsExecutable)
{
bool result = navigator.Confirm(
"PluginManager",
"Plugin Manager",
"Plugin Manager is going to write to files that are holded by other executables. " + Environment.NewLine +
"Do you want to kill all instances of these applications?"
);
Expand Down