(file *os.File, str string)
| 91 | } |
| 92 | |
| 93 | func writeString(file *os.File, str string) { |
| 94 | _, err := file.WriteString(str) |
| 95 | if err != nil { |
| 96 | log.Fatal(err) |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | func localisedTitle(tr *i18n.TranslationSet, str string) string { |
| 101 | contextTitleMap := map[string]string{ |
no test coverage detected