Show page tags

This commit is contained in:
Christoph Hagen
2025-01-05 10:38:20 +01:00
parent 5684196ef3
commit 93e642c3c9
5 changed files with 47 additions and 11 deletions

View File

@ -41,4 +41,11 @@ extension ContentLanguage {
case .german: return .english
}
}
var text: String {
switch self {
case .english: return "English"
case .german: return "German"
}
}
}