Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Feb 9, 2025
1 parent ff20df8 commit f17496a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JL.Windows/GUI/PopupWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private void Init()
if (configManager.ShowMiningModeReminder)
{
TextBlockMiningModeReminder.Text = string.Create(CultureInfo.InvariantCulture,
$"Click on the ➕ button to mine,\nor press {configManager.ClosePopupKeyGesture.ToFormattedString()} or click on the main window to exit.");
$"Click the ➕ button to mine,\nor press {configManager.ClosePopupKeyGesture.ToFormattedString()} or click on the main window to exit.");
TextBlockMiningModeReminder.ToolTip = "This message can be hidden by disabling Preferences->Popup->Show mining mode reminder";
TextBlockMiningModeReminder.Cursor = Cursors.Help;
}
Expand Down Expand Up @@ -764,7 +764,7 @@ private StackPanel PrepareResultStackPanel(LookupResult result, int index, int r
{
string alternativeSpellingsText = showAOrthographyInfo && result.JmdictLookupResult?.AlternativeSpellingsOrthographyInfoList is not null
? LookupResultUtils.ElementWithOrthographyInfoToTextWithParentheses(result.AlternativeSpellings, result.JmdictLookupResult.AlternativeSpellingsOrthographyInfoList)
: $"({string.Join('、', result.AlternativeSpellings)})";
: $"[{string.Join('、', result.AlternativeSpellings)}]";

if (MiningMode)
{
Expand Down

0 comments on commit f17496a

Please sign in to comment.