| 707 | } |
| 708 | |
| 709 | string const Localization::GetValueItemHelp |
| 710 | ( |
| 711 | uint8 ccID, |
| 712 | uint16 indexId, |
| 713 | int32 pos, |
| 714 | int32 itemIndex |
| 715 | ) const |
| 716 | { |
| 717 | uint64 key = GetValueKey(ccID, indexId, pos); |
| 718 | if (m_valueLocalizationMap.find(key) == m_valueLocalizationMap.end()) { |
| 719 | Log::Write( LogLevel_Warning, "Localization::GetValueItemHelp: No ValueLocalizationMap for CommandClass %xd, ValueID: %d (%d) ItemIndex %d", ccID, indexId, pos, itemIndex); |
| 720 | return ""; |
| 721 | } |
| 722 | return m_valueLocalizationMap[key]->GetItemHelp(m_selectedLang, itemIndex); |
| 723 | } |
| 724 | |
| 725 | bool Localization::SetValueItemHelp |
| 726 | ( |
no test coverage detected