Changed some strings
This commit is contained in:
@@ -338,14 +338,14 @@ public class SyncshellAdminUI : WindowMediatorSubscriberBase
|
|||||||
_pruneTestTask = _apiController.GroupPrune(new(GroupFullInfo.Group), _pruneDays, execute: false);
|
_pruneTestTask = _apiController.GroupPrune(new(GroupFullInfo.Group), _pruneDays, execute: false);
|
||||||
_pruneTask = null;
|
_pruneTask = null;
|
||||||
}
|
}
|
||||||
UiSharedService.AttachToolTip($"This will start the prune process for this Syncshell of inactive Lightless users that have not logged in in the past {_pruneDays} days."
|
UiSharedService.AttachToolTip($"This will start the prune process for this Syncshell of inactive Lightless users that have not logged in in the past {_pruneDays} day(s)."
|
||||||
+ Environment.NewLine + "You will be able to review the amount of inactive users before executing the prune."
|
+ Environment.NewLine + "You will be able to review the amount of inactive users before executing the prune."
|
||||||
+ UiSharedService.TooltipSeparator + "Note: this check excludes pinned users and moderators of this Syncshell.");
|
+ UiSharedService.TooltipSeparator + "Note: this check excludes pinned users and moderators of this Syncshell.");
|
||||||
ImGui.SameLine();
|
ImGui.SameLine();
|
||||||
ImGui.SetNextItemWidth(150);
|
ImGui.SetNextItemWidth(150);
|
||||||
_uiSharedService.DrawCombo("Day(s) of inactivity", [1, 3, 7, 14, 30, 90], (count) =>
|
_uiSharedService.DrawCombo("Day(s) of inactivity", [1, 3, 7, 14, 30, 90], (count) =>
|
||||||
{
|
{
|
||||||
return count + " days";
|
return count + " day(s)";
|
||||||
},
|
},
|
||||||
(selected) =>
|
(selected) =>
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user