| 100 | } |
| 101 | |
| 102 | void addNameWord (string &out, const string &word) |
| 103 | { |
| 104 | if (word.empty()) |
| 105 | return; |
| 106 | if (out.length() > 0) |
| 107 | out.append(" "); |
| 108 | out.append(Translation::capitalize(word)); |
| 109 | } |
| 110 | |
| 111 | void Translation::setNickname(df::language_name *name, std::string nick) |
| 112 | { |
no test coverage detected