| 804 | |
| 805 | |
| 806 | Localization *Localization::Get |
| 807 | ( |
| 808 | ) |
| 809 | { |
| 810 | if ( m_instance != NULL ) |
| 811 | { |
| 812 | return m_instance; |
| 813 | } |
| 814 | m_instance = new Localization(); |
| 815 | ReadXML(); |
| 816 | Options::Get()->GetOptionAsString( "Language", &m_selectedLang ); |
| 817 | return m_instance; |
| 818 | } |
nothing calls this directly
no test coverage detected