Migrate more strings to translation keys (#11498)

This commit is contained in:
Michael Telatynski 2023-08-31 11:22:10 +01:00 committed by GitHub
parent 9329b896b3
commit 6b3243b27b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
89 changed files with 1495 additions and 1491 deletions

View file

@ -74,7 +74,7 @@ const SecurityRecommendations: React.FC<Props> = ({ devices, currentDeviceId, go
onClick={() => goToFilteredList(DeviceSecurityVariation.Unverified)}
data-testid="unverified-devices-cta"
>
{_t("View all") + ` (${unverifiedDevicesCount})`}
{_t("action|view_all") + ` (${unverifiedDevicesCount})`}
</AccessibleButton>
</DeviceSecurityCard>
)}
@ -99,7 +99,7 @@ const SecurityRecommendations: React.FC<Props> = ({ devices, currentDeviceId, go
onClick={() => goToFilteredList(DeviceSecurityVariation.Inactive)}
data-testid="inactive-devices-cta"
>
{_t("View all") + ` (${inactiveDevicesCount})`}
{_t("action|view_all") + ` (${inactiveDevicesCount})`}
</AccessibleButton>
</DeviceSecurityCard>
</>