Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: translations.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed Aug 15, 2023
1 parent a68c2fe commit 33313d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions RotationSolver/Localization/Strings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ internal partial class Strings

public string ConfigWindow_Param_HealDelay { get; set; } = "Set the range of random delay for healing people in second.";

public string ConfigWindow_Param_CountdownDelay { get; set; } = "Set the range of random delay for count down in the party.";
public string ConfigWindow_Param_CountdownDelay { get; set; } = "Set the random delay between which auto mode activation on countdown varies.";
public string ConfigWindow_Param_NotInCombatDelay { get; set; } = "Set the range of random delay for Not In Combat in second.";

public string ConfigWindow_Param_ClickingDelay { get; set; } = "Set the range of random delay for the interval of clicking actions.";
Expand Down Expand Up @@ -170,7 +170,7 @@ internal partial class Strings
public string ConfigWindow_Param_LessMPNoRaise { get; set; } = "Never raise player if MP is less than the set value";
public string ConfigWindow_Param_UseTinctures { get; set; } = "Use Tinctures";
public string ConfigWindow_Param_UseHealPotions { get; set; } = "Use Heal Potions";
public string ConfigWindow_Param_StartOnCountdown { get; set; } = "Auto turn smart on countdown";
public string ConfigWindow_Param_StartOnCountdown { get; set; } = "Auto mode activation delay on countdown start";

public string ConfigWindow_Param_StartOnAttackedBySomeone { get; set; } = "Automatically turn on manual mode and target enemy when being attacked";
public string ConfigWindow_Param_EsunaAll { get; set; } = "Esuna All Statuses.";
Expand Down Expand Up @@ -198,9 +198,9 @@ internal partial class Strings

public string ConfigWindow_Param_HealthTankRatio { get; set; } = "Heal tank first if its HP%% is lower than this.";

public string ConfigWindow_Param_DistanceForMoving { get; set; } = "If the distance between Melee or Tank to target is less than this, using moving ability as attack ability.";
public string ConfigWindow_Param_DistanceForMoving { get; set; } = "Use gapcloser as a damage ability if the distance to your target is less then this.";

public string ConfigWindow_Param_HealWhenNothingTodoBelow { get; set; } = "Healing the members with GCD if there is nothing to do in combat and their min HP% is lower than this.";
public string ConfigWindow_Param_HealWhenNothingTodoBelow { get; set; } = "Healing the members with GCD if there is nothing to do in combat and their min HP%% is lower than this.";

public string ConfigWindow_Param_HealthForDyingTank { get; set; } = "Set the HP%% for tank to use invincibility";

Expand Down
2 changes: 1 addition & 1 deletion RotationSolver/Updaters/MajorUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ private unsafe static void OpenChest()
}

if (!Service.Config.GetValue(PluginConfigBool.AutoCloseChestWindow)) return;
_closeWindowTime = DateTime.Now.AddSeconds(0.1);
_closeWindowTime = DateTime.Now.AddSeconds(0.5);
}

public static void Dispose()
Expand Down
2 changes: 1 addition & 1 deletion XIVPainter

0 comments on commit 33313d0

Please sign in to comment.