mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
autoupdate: add missing space after comma
This commit is contained in:
parent
1279f04bbf
commit
baa875f516
1 changed files with 1 additions and 1 deletions
|
|
@ -496,7 +496,7 @@ internal class AutoUpdateManager : IServiceType
|
||||||
"AutoUpdateUpdatesAvailableContentPlural",
|
"AutoUpdateUpdatesAvailableContentPlural",
|
||||||
"There are {0} plugins that can be updated:"),
|
"There are {0} plugins that can be updated:"),
|
||||||
updatablePlugins.Count))
|
updatablePlugins.Count))
|
||||||
+ "\n\n" + string.Join(",", updatablePlugins.Select(x => x.InstalledPlugin.Manifest.Name));
|
+ "\n\n" + string.Join(", ", updatablePlugins.Select(x => x.InstalledPlugin.Manifest.Name));
|
||||||
|
|
||||||
public static string NotificationContentUpdatesAvailableMinimized(int numUpdates)
|
public static string NotificationContentUpdatesAvailableMinimized(int numUpdates)
|
||||||
=> numUpdates == 1 ?
|
=> numUpdates == 1 ?
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue