| 640 | } |
| 641 | |
| 642 | string const Localization::GetValueHelp |
| 643 | ( |
| 644 | uint8 ccID, |
| 645 | uint16 indexId, |
| 646 | uint32 pos |
| 647 | ) |
| 648 | { |
| 649 | uint64 key = GetValueKey(ccID, indexId, pos); |
| 650 | if (m_valueLocalizationMap.find(key) == m_valueLocalizationMap.end()) { |
| 651 | Log::Write( LogLevel_Warning, "Localization::GetValueHelp: No Help for CommandClass %xd, ValueID: %d (%d)", ccID, indexId, pos); |
| 652 | return ""; |
| 653 | } |
| 654 | return m_valueLocalizationMap[key]->GetHelp(m_selectedLang); |
| 655 | } |
| 656 | |
| 657 | string const Localization::GetValueLabel |
| 658 | ( |