blob: 2578feb0e488eeff4e83344891fa6f6523270e8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package comic
import "strings"
// localizedBrandName returns the comic's subtitle/series name in the selected script.
func localizedBrandName(language, script string) string {
if strings.EqualFold(script, "Cyrillic") || strings.EqualFold(language, "Bulgarian") {
return "КомиксФордж Приключения"
}
return "ComicForge Adventures"
}
|