diff --git a/Sources/PackAPrefPane/Resources/en.lproj/Localizable.strings b/Sources/PackAPrefPane/Resources/en.lproj/Localizable.strings index 0abc27e..7720241 100644 --- a/Sources/PackAPrefPane/Resources/en.lproj/Localizable.strings +++ b/Sources/PackAPrefPane/Resources/en.lproj/Localizable.strings @@ -40,3 +40,8 @@ /* No comment provided by engineer. */ "Terms of Service" = "Terms of Service"; +/* No comment provided by engineer. */ +"PackAPrefPane by W1W1-M" = "PackAPrefPane by W1W1-M" + +/* No comment provided by engineer. */ +"MIT license" = "MIT license" diff --git a/Sources/PackAPrefPane/Resources/fr.lproj/Localizable.strings b/Sources/PackAPrefPane/Resources/fr.lproj/Localizable.strings index 793c162..2948a52 100644 --- a/Sources/PackAPrefPane/Resources/fr.lproj/Localizable.strings +++ b/Sources/PackAPrefPane/Resources/fr.lproj/Localizable.strings @@ -17,7 +17,7 @@ "What's New" = "Nouveautés"; /* No comment provided by engineer. */ -"Release Notes v%@" = "Notes de version v%@"; +"Release Notes" = "Notes de version"; /* No comment provided by engineer. */ "FAQ" = "FAQ"; @@ -39,3 +39,9 @@ /* No comment provided by engineer. */ "Terms of Service" = "Conditions d'utilisation"; + +/* No comment provided by engineer. */ +"PackAPrefPane by W1W1-M" = "PackAPrefPane par W1W1-M" + +/* No comment provided by engineer. */ +"MIT license" = "Licence MIT" diff --git a/Sources/PackAPrefPane/Views/Help.swift b/Sources/PackAPrefPane/Views/Help.swift index 32721e1..ecbb463 100644 --- a/Sources/PackAPrefPane/Views/Help.swift +++ b/Sources/PackAPrefPane/Views/Help.swift @@ -76,11 +76,11 @@ struct WhatsNew: View { DisclosureGroup(NSLocalizedString("What's New", tableName: "Localizable", bundle: .module, value: "", comment: ""), isExpanded: $whatsNewExpanded) { VStack { HStack { - Text(NSLocalizedString("Release Notes v\(appVersion)", tableName: "Localizable", bundle: .module, value: "", comment: "")) - .font(.headline) - .underline() Spacer() - } + Text(NSLocalizedString("Release Notes", tableName: "Localizable", bundle: .module, value: "", comment: "")) + Text("v\(appVersion)") + Spacer() + }.font(.headline) Spacer() HStack { Text(NSLocalizedString(prefPaneData.changelogText, tableName: "Localizable", bundle: .main, value: "", comment: ""))