| 58 | } |
| 59 | |
| 60 | wstr_t CIntloc::Get(int id, bool toCamelCase) |
| 61 | { |
| 62 | if (id < (int)m_Strings.size()) |
| 63 | { |
| 64 | if (toCamelCase) |
| 65 | { |
| 66 | return wstr_camel_case(m_Strings[id]); |
| 67 | } |
| 68 | return m_Strings[id]; |
| 69 | } |
| 70 | return {}; |
| 71 | } |
| 72 | |
| 73 | CIntloc *CIntlocManager::Intloc(int fileIndex, const astr_t &lang) |
| 74 | { |
no test coverage detected