Use Extra Large and Extra Extra Large for text size settings language. Fix #2638.

This commit is contained in:
Brent Simmons
2020-12-18 19:36:55 -08:00
parent 5e05da7bbb
commit cbf8927ca3
2 changed files with 52 additions and 52 deletions

View File

@@ -41,9 +41,9 @@ enum ArticleTextSize: Int, CaseIterable, Identifiable {
case .large:
return NSLocalizedString("Large", comment: "Large")
case .xlarge:
return NSLocalizedString("X-Large", comment: "X-Large")
return NSLocalizedString("Extra Large", comment: "X-Large")
case .xxlarge:
return NSLocalizedString("XX-Large", comment: "XX-Large")
return NSLocalizedString("Extra Extra Large", comment: "XX-Large")
}
}