From b53c1d11e4e32dd7d2d4902f07fa378c1abb95b1 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Mon, 13 Jan 2025 21:58:10 +0100 Subject: [PATCH] rename close to direct pairs --- MareSynchronos/UI/CharaDataHubUi.Functions.cs | 2 +- MareSynchronos/UI/CharaDataHubUi.McdOnline.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MareSynchronos/UI/CharaDataHubUi.Functions.cs b/MareSynchronos/UI/CharaDataHubUi.Functions.cs index e2841c0..7c9cf41 100644 --- a/MareSynchronos/UI/CharaDataHubUi.Functions.cs +++ b/MareSynchronos/UI/CharaDataHubUi.Functions.cs @@ -11,7 +11,7 @@ internal sealed partial class CharaDataHubUi private static string GetAccessTypeString(AccessTypeDto dto) => dto switch { AccessTypeDto.AllPairs => "All Pairs", - AccessTypeDto.ClosePairs => "Close Pairs", + AccessTypeDto.ClosePairs => "Direct Pairs", AccessTypeDto.Individuals => "Specified", AccessTypeDto.Public => "Everyone" }; diff --git a/MareSynchronos/UI/CharaDataHubUi.McdOnline.cs b/MareSynchronos/UI/CharaDataHubUi.McdOnline.cs index 3b84299..cb20e27 100644 --- a/MareSynchronos/UI/CharaDataHubUi.McdOnline.cs +++ b/MareSynchronos/UI/CharaDataHubUi.McdOnline.cs @@ -124,11 +124,11 @@ internal sealed partial class CharaDataHubUi } _uiSharedService.DrawHelpText("You can control who has access to your character data based on the access restrictions." + UiSharedService.TooltipSeparator + "Specified: Only people and syncshells you directly specify in 'Specific Individuals / Syncshells' can access this character data" + Environment.NewLine - + "Close Pairs: Only people you have directly paired can access this character data" + Environment.NewLine + + "Direct Pairs: Only people you have directly paired can access this character data" + Environment.NewLine + "All Pairs: All people you have paired can access this character data" + Environment.NewLine + "Everyone: Everyone can access this character data" + UiSharedService.TooltipSeparator + "Note: To access your character data the person in question requires to have the code. Exceptions for 'Shared' data, see 'Sharing' below." + Environment.NewLine - + "Note: For 'Close' and 'All Pairs' the pause state plays a role. Paused people will not be able to access your character data." + Environment.NewLine + + "Note: For 'Direct' and 'All Pairs' the pause state plays a role. Paused people will not be able to access your character data." + Environment.NewLine + "Note: Directly specified Individuals or Syncshells in the 'Specific Individuals / Syncshells' list will be able to access your character data regardless of pause or pair state."); DrawSpecific(updateDto);