diff --git a/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift b/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift index b312afc4f..3cf567b8b 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListCard.swift @@ -44,7 +44,7 @@ struct HighlightsListCard: View { ) Button( action: { showShareView = true }, - label: { Label("Export", systemImage: "square.and.arrow.up") } + label: { Label(LocalText.exportGeneric, systemImage: "square.and.arrow.up") } ) Button( action: onDeleteHighlight, diff --git a/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListView.swift b/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListView.swift index aa52abd77..29d6160d8 100644 --- a/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListView.swift +++ b/apple/OmnivoreKit/Sources/App/Views/Highlights/HighlightsListView.swift @@ -98,7 +98,7 @@ struct HighlightsListView: View { content: { Button( action: { showShareView = true }, - label: { Label("Export", systemImage: "square.and.arrow.up") } + label: { Label(LocalText.exportGeneric, systemImage: "square.and.arrow.up") } ) }, label: { diff --git a/apple/OmnivoreKit/Sources/Views/LocalText.swift b/apple/OmnivoreKit/Sources/Views/LocalText.swift index 74c72257b..bf86b37bc 100644 --- a/apple/OmnivoreKit/Sources/Views/LocalText.swift +++ b/apple/OmnivoreKit/Sources/Views/LocalText.swift @@ -172,6 +172,7 @@ public enum LocalText { public static let logoutGeneric = localText(key: "logoutGeneric") public static let doneGeneric = localText(key: "doneGeneric") public static let cancelGeneric = localText(key: "cancelGeneric") + public static let exportGeneric = localText(key: "exportGeneric") public static let inboxGeneric = localText(key: "inboxGeneric") public static let readLaterGeneric = localText(key: "readLaterGeneric") public static let newslettersGeneric = localText(key: "newslettersGeneric") diff --git a/apple/OmnivoreKit/Sources/Views/Resources/en.lproj/Localizable.strings b/apple/OmnivoreKit/Sources/Views/Resources/en.lproj/Localizable.strings index 78d009711..bdf14959d 100644 --- a/apple/OmnivoreKit/Sources/Views/Resources/en.lproj/Localizable.strings +++ b/apple/OmnivoreKit/Sources/Views/Resources/en.lproj/Localizable.strings @@ -176,6 +176,7 @@ "logoutGeneric" = "Logout"; "doneGeneric" = "Done"; "cancelGeneric" = "Cancel"; +"exportGeneric" = "Export"; "inboxGeneric" = "Inbox"; "readLaterGeneric" = "Read Later"; "newslettersGeneric" = "Newsletters"; diff --git a/apple/OmnivoreKit/Sources/Views/Resources/zh-Hans.lproj/Localizable.strings b/apple/OmnivoreKit/Sources/Views/Resources/zh-Hans.lproj/Localizable.strings index b17cc8af2..21997d684 100644 --- a/apple/OmnivoreKit/Sources/Views/Resources/zh-Hans.lproj/Localizable.strings +++ b/apple/OmnivoreKit/Sources/Views/Resources/zh-Hans.lproj/Localizable.strings @@ -176,6 +176,7 @@ "logoutGeneric" = "退出登录"; "doneGeneric" = "完成"; "cancelGeneric" = "取消"; +"exportGeneric" = "导出" "inboxGeneric" = "收集箱"; "readLaterGeneric" = "稍后阅读"; "newslettersGeneric" = "新闻稿件";