fix typo issue

This commit is contained in:
tvision106 2023-11-20 10:13:15 -05:00
parent d6affef6d6
commit d0e3101800
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@
"Load the link" = "Load the link"; "Load the link" = "Load the link";
"Cancel" = "Cancel"; "Cancel" = "Cancel";
"An external link is tapped, do you wish to load the link?" = "An external link is tapped, do you wish to load the link?"; "An external link is tapped, do you wish to load the link?" = "An external link is tapped, do you wish to load the link?";
"loc-extenral-alert" = "An external link is tapped. \ "loc-external-alert" = "An external link is tapped. \
However, your current setting does not allow it to be loaded."; However, your current setting does not allow it to be loaded.";
"Open a zim file" = "Open a zim file"; "Open a zim file" = "Open a zim file";
"Unable to open file" = "Unable to open file"; "Unable to open file" = "Unable to open file";

View File

@ -53,7 +53,7 @@ struct ExternalLinkHandler: ViewModifier {
case .ask: case .ask:
Text("An external link is tapped, do you wish to load the link?".localized) Text("An external link is tapped, do you wish to load the link?".localized)
case .notLoading: case .notLoading:
Text("loc-extenral-alert".localized) Text("loc-external-alert".localized)
} }
} }
#if os(iOS) #if os(iOS)