| 191 | } |
| 192 | |
| 193 | void ValueLocalizationEntry::AddItemLabel |
| 194 | ( |
| 195 | string label, |
| 196 | int32 itemindex, |
| 197 | string lang |
| 198 | ) |
| 199 | { |
| 200 | if (lang.empty()) { |
| 201 | m_DefaultItemLabelText[itemindex] = label; |
| 202 | } else { |
| 203 | m_ItemLabelText[lang][itemindex] = label; |
| 204 | } |
| 205 | |
| 206 | } |
| 207 | string ValueLocalizationEntry::GetItemLabel |
| 208 | ( |
| 209 | string lang, |
no test coverage detected