fixed localization and made minor bug fixes

This commit is contained in:
coolcoala
2025-07-11 21:13:05 +03:00
parent e1968891ac
commit 41f32231f0
8 changed files with 29 additions and 31 deletions

View File

@@ -248,9 +248,9 @@ export const ProxySelectors: React.FC = () => {
</span>
</TooltipTrigger>
<TooltipContent>
{sortType === 'default' && <p>{t("Default")}</p>}
{sortType === 'delay' && <p>{t("sort by ping")}</p>}
{sortType === 'name' && <p>{t("sort by name")}</p>}
{sortType === 'default' && <p>{t("Sort by default")}</p>}
{sortType === 'delay' && <p>{t("Sort by delay")}</p>}
{sortType === 'name' && <p>{t("Sort by name")}</p>}
</TooltipContent>
</Tooltip>