diff --git a/Basic-Car-Maintenance/Shared/Localizable.xcstrings b/Basic-Car-Maintenance/Shared/Localizable.xcstrings index 9928949d..8c428f67 100644 --- a/Basic-Car-Maintenance/Shared/Localizable.xcstrings +++ b/Basic-Car-Maintenance/Shared/Localizable.xcstrings @@ -76,7 +76,7 @@ } }, "^[%lld contributions](inflect: true)" : { - + "comment" : "the number of contributions by a contributor" }, "🦄 Mikaela Caron - Maintainer" : { "comment" : "Link to maintainer Github account.", diff --git a/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsProfileView.swift b/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsProfileView.swift index 0e4da5d4..d2ae0aac 100644 --- a/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsProfileView.swift +++ b/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsProfileView.swift @@ -47,7 +47,10 @@ struct ContributorsProfileView: View { VStack(alignment: .leading) { Text(contributor.login).bold() - Text("^[\(contributor.contributions) contributions](inflect: true)") + Text( + "^[\(contributor.contributions) contributions](inflect: true)", + comment: "the number of contributions by a contributor" + ) .foregroundStyle(.secondary) } }