Skip to content

Commit 82f4d07

Browse files
committed
Update AbstractPackagesPage.xaml.cs
1 parent f5b16e9 commit 82f4d07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/UniGetUI/Pages/SoftwarePages/AbstractPackagesPage.xaml.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ protected void ShowDetailsForPackage(IPackage? package, TEL_InstallReferral refe
889889
{
890890
DialogHelper.ShowDismissableBalloon(
891891
CoreTools.Translate("Something went wrong"),
892-
CoreTools.Translate("{0} is a local package and does not have available details", package.Name)
892+
CoreTools.Translate("\"{0}\" is a local package and does not have available details", package.Name)
893893
);
894894
return;
895895
}
@@ -927,7 +927,7 @@ protected async void ShowInstallationOptionsForPackage(IPackage? package)
927927
{
928928
DialogHelper.ShowDismissableBalloon(
929929
CoreTools.Translate("Something went wrong"),
930-
CoreTools.Translate("{0} a local package and is not compatible with this feature", package.Name)
930+
CoreTools.Translate("\"{0}\" is a local package and is not compatible with this feature", package.Name)
931931
);
932932
return;
933933
}
@@ -1286,7 +1286,7 @@ private void ContextMenuButton_Tapped(object sender, TappedRoutedEventArgs e)
12861286
_lastContextMenuButtonTapped = el;
12871287
}
12881288

1289-
private bool? _pageIsWide;
1289+
private bool? _pageIsWide;
12901290
private void ABSTRACT_PAGE_SizeChanged(object sender, SizeChangedEventArgs e)
12911291
{
12921292
if(ActualWidth < 700)

0 commit comments

Comments
 (0)