From 20aa4f09c2b50ad5a9d8f4ae95bfdae12217c9f0 Mon Sep 17 00:00:00 2001 From: Justin Mazzocchi <2831158+jzzocc@users.noreply.github.com> Date: Tue, 23 Mar 2021 11:09:20 -0700 Subject: [PATCH] Add rating l10n --- Localizations/de.lproj/Localizable.strings | 1 + Localizations/en.lproj/Localizable.strings | 2 +- Localizations/ja.lproj/Localizable.strings | 1 + Views/SwiftUI/AboutView.swift | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Localizations/de.lproj/Localizable.strings b/Localizations/de.lproj/Localizable.strings index fcd33d5..86eda78 100644 --- a/Localizations/de.lproj/Localizable.strings +++ b/Localizations/de.lproj/Localizable.strings @@ -4,6 +4,7 @@ "about.acknowledgments" = "Danksagungen"; "about.made-by-metabolist" = "Made by Metabolist"; "about.official-account" = "Offizieller Account"; +"about.rate-the-app" = "Die App bewerten"; "about.source-code-and-issue-tracker" = "Quellcode & Fehler Tracker"; "about.website" = "Webseite"; "accessibility.activate-link-%@" = "Link: %@"; diff --git a/Localizations/en.lproj/Localizable.strings b/Localizations/en.lproj/Localizable.strings index f2a7ea5..751d2d6 100644 --- a/Localizations/en.lproj/Localizable.strings +++ b/Localizations/en.lproj/Localizable.strings @@ -4,7 +4,7 @@ "about.acknowledgments" = "Acknowledgments"; "about.made-by-metabolist" = "Made by Metabolist"; "about.official-account" = "Official Account"; -"about.review-on-the-app-store" = "Review on the App Store"; +"about.rate-the-app" = "Rate the app"; "about.source-code-and-issue-tracker" = "Source Code & Issue Tracker"; "about.website" = "Website"; "accessibility.activate-link-%@" = "Link: %@"; diff --git a/Localizations/ja.lproj/Localizable.strings b/Localizations/ja.lproj/Localizable.strings index 6a68f41..fc5903d 100644 --- a/Localizations/ja.lproj/Localizable.strings +++ b/Localizations/ja.lproj/Localizable.strings @@ -4,6 +4,7 @@ "about.acknowledgments" = "謝辞"; "about.made-by-metabolist" = "Metabolistにより開発されました"; "about.official-account" = "公式アカウント"; +"about.rate-the-app" = "このアプリを評価"; "about.source-code-and-issue-tracker" = "ソースコードと課題追跡システム"; "about.website" = "ウェブサイト"; "accessibility.activate-link-%@" = "リンク: %@"; diff --git a/Views/SwiftUI/AboutView.swift b/Views/SwiftUI/AboutView.swift index 4fe3723..8631bed 100644 --- a/Views/SwiftUI/AboutView.swift +++ b/Views/SwiftUI/AboutView.swift @@ -43,7 +43,7 @@ struct AboutView: View { } Link(destination: Self.reviewURL) { Label { - Text("about.review-on-the-app-store").foregroundColor(.primary) + Text("about.rate-the-app").foregroundColor(.primary) } icon: { Image(systemName: "star") }