Merge pull request #3398 from FernetMenta/network
[vuplus_xbmc] / xbmc / LangInfo.cpp
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #include "LangInfo.h"
22 #include "Application.h"
23 #include "FileItem.h"
24 #include "Util.h"
25 #include "filesystem/Directory.h"
26 #include "guilib/GUIFontManager.h"
27 #include "guilib/LocalizeStrings.h"
28 #include "pvr/PVRManager.h"
29 #include "settings/AdvancedSettings.h"
30 #include "settings/Setting.h"
31 #include "settings/Settings.h"
32 #include "utils/CharsetConverter.h"
33 #include "utils/log.h"
34 #include "utils/LangCodeExpander.h"
35 #include "utils/StringUtils.h"
36 #include "utils/Weather.h"
37 #include "utils/XBMCTinyXML.h"
38
39 using namespace std;
40 using namespace PVR;
41
42 #define TEMP_UNIT_STRINGS 20027
43
44 #define SPEED_UNIT_STRINGS 20200
45
46 CLangInfo::CRegion::CRegion(const CRegion& region)
47 {
48   m_strName=region.m_strName;
49   m_forceUnicodeFont=region.m_forceUnicodeFont;
50   m_strGuiCharSet=region.m_strGuiCharSet;
51   m_strSubtitleCharSet=region.m_strSubtitleCharSet;
52   m_strDVDMenuLanguage=region.m_strDVDMenuLanguage;
53   m_strDVDAudioLanguage=region.m_strDVDAudioLanguage;
54   m_strDVDSubtitleLanguage=region.m_strDVDSubtitleLanguage;
55   m_strLangLocaleName = region.m_strLangLocaleName;
56   m_strLangLocaleCodeTwoChar = region.m_strLangLocaleCodeTwoChar;
57   m_strRegionLocaleName = region.m_strRegionLocaleName;
58
59   m_strDateFormatShort=region.m_strDateFormatShort;
60   m_strDateFormatLong=region.m_strDateFormatLong;
61   m_strTimeFormat=region.m_strTimeFormat;
62   m_strMeridiemSymbols[MERIDIEM_SYMBOL_PM]=region.m_strMeridiemSymbols[MERIDIEM_SYMBOL_PM];
63   m_strMeridiemSymbols[MERIDIEM_SYMBOL_AM]=region.m_strMeridiemSymbols[MERIDIEM_SYMBOL_AM];
64   m_strTimeFormat=region.m_strTimeFormat;
65   m_tempUnit=region.m_tempUnit;
66   m_speedUnit=region.m_speedUnit;
67   m_strTimeZone = region.m_strTimeZone;
68 }
69
70 CLangInfo::CRegion::CRegion()
71 {
72   SetDefaults();
73 }
74
75 CLangInfo::CRegion::~CRegion()
76 {
77
78 }
79
80 void CLangInfo::CRegion::SetDefaults()
81 {
82   m_strName="N/A";
83   m_forceUnicodeFont=false;
84   m_strGuiCharSet="CP1252";
85   m_strSubtitleCharSet="CP1252";
86   m_strDVDMenuLanguage="en";
87   m_strDVDAudioLanguage="en";
88   m_strDVDSubtitleLanguage="en";
89   m_strLangLocaleName = "English";
90   m_strLangLocaleCodeTwoChar = "en";
91
92   m_strDateFormatShort="DD/MM/YYYY";
93   m_strDateFormatLong="DDDD, D MMMM YYYY";
94   m_strTimeFormat="HH:mm:ss";
95   m_tempUnit=TEMP_UNIT_CELSIUS;
96   m_speedUnit=SPEED_UNIT_KMH;
97   m_strTimeZone.clear();
98 }
99
100 void CLangInfo::CRegion::SetTempUnit(const CStdString& strUnit)
101 {
102   if (strUnit.Equals("F"))
103     m_tempUnit=TEMP_UNIT_FAHRENHEIT;
104   else if (strUnit.Equals("K"))
105     m_tempUnit=TEMP_UNIT_KELVIN;
106   else if (strUnit.Equals("C"))
107     m_tempUnit=TEMP_UNIT_CELSIUS;
108   else if (strUnit.Equals("Re"))
109     m_tempUnit=TEMP_UNIT_REAUMUR;
110   else if (strUnit.Equals("Ra"))
111     m_tempUnit=TEMP_UNIT_RANKINE;
112   else if (strUnit.Equals("Ro"))
113     m_tempUnit=TEMP_UNIT_ROMER;
114   else if (strUnit.Equals("De"))
115     m_tempUnit=TEMP_UNIT_DELISLE;
116   else if (strUnit.Equals("N"))
117     m_tempUnit=TEMP_UNIT_NEWTON;
118 }
119
120 void CLangInfo::CRegion::SetSpeedUnit(const CStdString& strUnit)
121 {
122   if (strUnit.Equals("kmh"))
123     m_speedUnit=SPEED_UNIT_KMH;
124   else if (strUnit.Equals("mpmin"))
125     m_speedUnit=SPEED_UNIT_MPMIN;
126   else if (strUnit.Equals("mps"))
127     m_speedUnit=SPEED_UNIT_MPS;
128   else if (strUnit.Equals("fth"))
129     m_speedUnit=SPEED_UNIT_FTH;
130   else if (strUnit.Equals("ftm"))
131     m_speedUnit=SPEED_UNIT_FTMIN;
132   else if (strUnit.Equals("fts"))
133     m_speedUnit=SPEED_UNIT_FTS;
134   else if (strUnit.Equals("mph"))
135     m_speedUnit=SPEED_UNIT_MPH;
136   else if (strUnit.Equals("kts"))
137     m_speedUnit=SPEED_UNIT_KTS;
138   else if (strUnit.Equals("beaufort"))
139     m_speedUnit=SPEED_UNIT_BEAUFORT;
140   else if (strUnit.Equals("inchs"))
141     m_speedUnit=SPEED_UNIT_INCHPS;
142   else if (strUnit.Equals("yards"))
143     m_speedUnit=SPEED_UNIT_YARDPS;
144   else if (strUnit.Equals("fpf"))
145     m_speedUnit=SPEED_UNIT_FPF;
146 }
147
148 void CLangInfo::CRegion::SetTimeZone(const CStdString& strTimeZone)
149 {
150   m_strTimeZone = strTimeZone;
151 }
152
153 // set the locale associated with this region global. This affects string
154 // sorting & transformations
155 void CLangInfo::CRegion::SetGlobalLocale()
156 {
157   CStdString strLocale;
158   if (m_strRegionLocaleName.length() > 0)
159   {
160     strLocale = m_strLangLocaleName + "_" + m_strRegionLocaleName;
161 #ifdef TARGET_POSIX
162     strLocale += ".UTF-8";
163 #endif
164   }
165
166   CLog::Log(LOGDEBUG, "trying to set locale to %s", strLocale.c_str());
167
168   // We need to set the locale to only change the collate. Otherwise,
169   // decimal separator is changed depending of the current language
170   // (ie. "," in French or Dutch instead of "."). This breaks atof() and
171   // others similar functions.
172 #if defined(TARGET_FREEBSD) || defined(TARGET_DARWIN_OSX)
173   // on FreeBSD and darwin libstdc++ is compiled with "generic" locale support
174   if (setlocale(LC_COLLATE, strLocale.c_str()) == NULL
175   || setlocale(LC_CTYPE, strLocale.c_str()) == NULL)
176   {
177     strLocale = "C";
178     setlocale(LC_COLLATE, strLocale.c_str());
179     setlocale(LC_CTYPE, strLocale.c_str());
180   }
181 #else
182   locale current_locale = locale::classic(); // C-Locale
183   try
184   {
185     locale lcl = locale(strLocale);
186     strLocale = lcl.name();
187     current_locale = current_locale.combine< collate<wchar_t> >(lcl);
188     current_locale = current_locale.combine< ctype<wchar_t> >(lcl);
189
190     assert(use_facet< numpunct<char> >(current_locale).decimal_point() == '.');
191
192   } catch(...) {
193     current_locale = locale::classic();
194     strLocale = "C";
195   }
196
197   locale::global(current_locale);
198 #endif
199   g_charsetConverter.resetSystemCharset();
200   CLog::Log(LOGINFO, "global locale set to %s", strLocale.c_str());
201 }
202
203 CLangInfo::CLangInfo()
204 {
205   SetDefaults();
206 }
207
208 CLangInfo::~CLangInfo()
209 {
210 }
211
212 void CLangInfo::OnSettingChanged(const CSetting *setting)
213 {
214   if (setting == NULL)
215     return;
216
217   const std::string &settingId = setting->GetId();
218   if (settingId == "locale.audiolanguage")
219     SetAudioLanguage(((CSettingString*)setting)->GetValue());
220   else if (settingId == "locale.subtitlelanguage")
221     SetSubtitleLanguage(((CSettingString*)setting)->GetValue());
222   else if (settingId == "locale.language")
223   {
224     if (!SetLanguage(((CSettingString*)setting)->GetValue()))
225       ((CSettingString*)CSettings::Get().GetSetting("locale.language"))->Reset();
226   }
227   else if (settingId == "locale.country")
228   {
229     g_langInfo.SetCurrentRegion(((CSettingString*)setting)->GetValue());
230     g_weatherManager.Refresh(); // need to reset our weather, as temperatures need re-translating.
231   }
232 }
233
234 bool CLangInfo::Load(const CStdString& strFileName)
235 {
236   SetDefaults();
237
238   CXBMCTinyXML xmlDoc;
239   if (!xmlDoc.LoadFile(strFileName))
240   {
241     CLog::Log(LOGERROR, "unable to load %s: %s at line %d", strFileName.c_str(), xmlDoc.ErrorDesc(), xmlDoc.ErrorRow());
242     return false;
243   }
244
245   TiXmlElement* pRootElement = xmlDoc.RootElement();
246   CStdString strValue = pRootElement->Value();
247   if (strValue != CStdString("language"))
248   {
249     CLog::Log(LOGERROR, "%s Doesn't contain <language>", strFileName.c_str());
250     return false;
251   }
252
253   if (pRootElement->Attribute("locale"))
254     m_defaultRegion.m_strLangLocaleName = pRootElement->Attribute("locale");
255
256 #ifdef TARGET_WINDOWS
257   // Windows need 3 chars isolang code
258   if (m_defaultRegion.m_strLangLocaleName.length() == 2)
259   {
260     if (! g_LangCodeExpander.ConvertTwoToThreeCharCode(m_defaultRegion.m_strLangLocaleName, m_defaultRegion.m_strLangLocaleName, true))
261       m_defaultRegion.m_strLangLocaleName = "";
262   }
263
264   if (!g_LangCodeExpander.ConvertWindowsToGeneralCharCode(m_defaultRegion.m_strLangLocaleName, m_languageCodeGeneral))
265     m_languageCodeGeneral = "";
266 #else
267   if (m_defaultRegion.m_strLangLocaleName.length() != 3)
268   {
269     if (!g_LangCodeExpander.ConvertToThreeCharCode(m_languageCodeGeneral, m_defaultRegion.m_strLangLocaleName))
270       m_languageCodeGeneral = "";
271   }
272   else
273     m_languageCodeGeneral = m_defaultRegion.m_strLangLocaleName;
274 #endif
275
276   CStdString tmp;
277   if (g_LangCodeExpander.ConvertToTwoCharCode(tmp, m_defaultRegion.m_strLangLocaleName))
278     m_defaultRegion.m_strLangLocaleCodeTwoChar = tmp;
279
280   const TiXmlNode *pCharSets = pRootElement->FirstChild("charsets");
281   if (pCharSets && !pCharSets->NoChildren())
282   {
283     const TiXmlNode *pGui = pCharSets->FirstChild("gui");
284     if (pGui && !pGui->NoChildren())
285     {
286       CStdString strForceUnicodeFont = ((TiXmlElement*) pGui)->Attribute("unicodefont");
287
288       if (strForceUnicodeFont.Equals("true"))
289         m_defaultRegion.m_forceUnicodeFont=true;
290
291       m_defaultRegion.m_strGuiCharSet=pGui->FirstChild()->Value();
292     }
293
294     const TiXmlNode *pSubtitle = pCharSets->FirstChild("subtitle");
295     if (pSubtitle && !pSubtitle->NoChildren())
296       m_defaultRegion.m_strSubtitleCharSet=pSubtitle->FirstChild()->Value();
297   }
298
299   const TiXmlNode *pDVD = pRootElement->FirstChild("dvd");
300   if (pDVD && !pDVD->NoChildren())
301   {
302     const TiXmlNode *pMenu = pDVD->FirstChild("menu");
303     if (pMenu && !pMenu->NoChildren())
304       m_defaultRegion.m_strDVDMenuLanguage=pMenu->FirstChild()->Value();
305
306     const TiXmlNode *pAudio = pDVD->FirstChild("audio");
307     if (pAudio && !pAudio->NoChildren())
308       m_defaultRegion.m_strDVDAudioLanguage=pAudio->FirstChild()->Value();
309
310     const TiXmlNode *pSubtitle = pDVD->FirstChild("subtitle");
311     if (pSubtitle && !pSubtitle->NoChildren())
312       m_defaultRegion.m_strDVDSubtitleLanguage=pSubtitle->FirstChild()->Value();
313   }
314
315   const TiXmlNode *pRegions = pRootElement->FirstChild("regions");
316   if (pRegions && !pRegions->NoChildren())
317   {
318     const TiXmlElement *pRegion=pRegions->FirstChildElement("region");
319     while (pRegion)
320     {
321       CRegion region(m_defaultRegion);
322       region.m_strName=pRegion->Attribute("name");
323       if (region.m_strName.IsEmpty())
324         region.m_strName="N/A";
325
326       if (pRegion->Attribute("locale"))
327         region.m_strRegionLocaleName = pRegion->Attribute("locale");
328
329 #ifdef TARGET_WINDOWS
330       // Windows need 3 chars regions code
331       if (region.m_strRegionLocaleName.length() == 2)
332       {
333         if (! g_LangCodeExpander.ConvertLinuxToWindowsRegionCodes(region.m_strRegionLocaleName, region.m_strRegionLocaleName))
334           region.m_strRegionLocaleName = "";
335       }
336 #endif
337
338       const TiXmlNode *pDateLong=pRegion->FirstChild("datelong");
339       if (pDateLong && !pDateLong->NoChildren())
340         region.m_strDateFormatLong=pDateLong->FirstChild()->Value();
341
342       const TiXmlNode *pDateShort=pRegion->FirstChild("dateshort");
343       if (pDateShort && !pDateShort->NoChildren())
344         region.m_strDateFormatShort=pDateShort->FirstChild()->Value();
345
346       const TiXmlElement *pTime=pRegion->FirstChildElement("time");
347       if (pTime && !pTime->NoChildren())
348       {
349         region.m_strTimeFormat=pTime->FirstChild()->Value();
350         region.m_strMeridiemSymbols[MERIDIEM_SYMBOL_AM]=pTime->Attribute("symbolAM");
351         region.m_strMeridiemSymbols[MERIDIEM_SYMBOL_PM]=pTime->Attribute("symbolPM");
352       }
353
354       const TiXmlNode *pTempUnit=pRegion->FirstChild("tempunit");
355       if (pTempUnit && !pTempUnit->NoChildren())
356         region.SetTempUnit(pTempUnit->FirstChild()->Value());
357
358       const TiXmlNode *pSpeedUnit=pRegion->FirstChild("speedunit");
359       if (pSpeedUnit && !pSpeedUnit->NoChildren())
360         region.SetSpeedUnit(pSpeedUnit->FirstChild()->Value());
361
362       const TiXmlNode *pTimeZone=pRegion->FirstChild("timezone");
363       if (pTimeZone && !pTimeZone->NoChildren())
364         region.SetTimeZone(pTimeZone->FirstChild()->Value());
365
366       m_regions.insert(PAIR_REGIONS(region.m_strName, region));
367
368       pRegion=pRegion->NextSiblingElement("region");
369     }
370
371     const CStdString& strName=CSettings::Get().GetString("locale.country");
372     SetCurrentRegion(strName);
373   }
374   g_charsetConverter.reinitCharsetsFromSettings();
375
376   LoadTokens(pRootElement->FirstChild("sorttokens"),g_advancedSettings.m_vecTokens);
377
378   return true;
379 }
380
381 void CLangInfo::LoadTokens(const TiXmlNode* pTokens, vector<CStdString>& vecTokens)
382 {
383   if (pTokens && !pTokens->NoChildren())
384   {
385     const TiXmlElement *pToken = pTokens->FirstChildElement("token");
386     while (pToken)
387     {
388       CStdString strSep= " ._";
389       if (pToken->Attribute("separators"))
390         strSep = pToken->Attribute("separators");
391       if (pToken->FirstChild() && pToken->FirstChild()->Value())
392       {
393         if (strSep.IsEmpty())
394           vecTokens.push_back(pToken->FirstChild()->Value());
395         else
396           for (unsigned int i=0;i<strSep.size();++i)
397             vecTokens.push_back(CStdString(pToken->FirstChild()->Value())+strSep[i]);
398       }
399       pToken = pToken->NextSiblingElement();
400     }
401   }
402 }
403
404 void CLangInfo::SetDefaults()
405 {
406   m_regions.clear();
407
408   //Reset default region
409   m_defaultRegion.SetDefaults();
410
411   // Set the default region, we may be unable to load langinfo.xml
412   m_currentRegion=&m_defaultRegion;
413   
414   m_languageCodeGeneral = "eng";
415 }
416
417 CStdString CLangInfo::GetGuiCharSet() const
418 {
419   CStdString strCharSet;
420   strCharSet=CSettings::Get().GetString("locale.charset");
421   if (strCharSet=="DEFAULT")
422     strCharSet=m_currentRegion->m_strGuiCharSet;
423
424   return strCharSet;
425 }
426
427 CStdString CLangInfo::GetSubtitleCharSet() const
428 {
429   CStdString strCharSet=CSettings::Get().GetString("subtitles.charset");
430   if (strCharSet=="DEFAULT")
431     strCharSet=m_currentRegion->m_strSubtitleCharSet;
432
433   return strCharSet;
434 }
435
436 bool CLangInfo::SetLanguage(const std::string &strLanguage)
437 {
438   string strLangInfoPath = StringUtils::Format("special://xbmc/language/%s/langinfo.xml", strLanguage.c_str());
439   if (!g_langInfo.Load(strLangInfoPath))
440     return false;
441
442   if (ForceUnicodeFont() && !g_fontManager.IsFontSetUnicode())
443   {
444     CLog::Log(LOGINFO, "Language needs a ttf font, loading first ttf font available");
445     CStdString strFontSet;
446     if (!g_fontManager.GetFirstFontSetUnicode(strFontSet))
447       CLog::Log(LOGERROR, "No ttf font found but needed: %s", strFontSet.c_str());
448   }
449
450   if (!g_localizeStrings.Load("special://xbmc/language/", strLanguage))
451     return false;
452
453   // also tell our weather and skin to reload as these are localized
454   g_weatherManager.Refresh();
455   g_PVRManager.LocalizationChanged();
456   g_application.ReloadSkin();
457
458   return true;
459 }
460
461 // three char language code (not win32 specific)
462 const CStdString& CLangInfo::GetAudioLanguage() const
463 {
464   if (!m_audioLanguage.empty())
465     return m_audioLanguage;
466
467   return m_languageCodeGeneral;
468 }
469
470 void CLangInfo::SetAudioLanguage(const std::string& language)
471 {
472   if (language.empty() || StringUtils::EqualsNoCase(language, "default") || !g_LangCodeExpander.ConvertToThreeCharCode(m_audioLanguage, language))
473     m_audioLanguage.clear();
474 }
475
476 // three char language code (not win32 specific)
477 const CStdString& CLangInfo::GetSubtitleLanguage() const
478 {
479   if (!m_subtitleLanguage.empty())
480     return m_subtitleLanguage;
481
482   return m_languageCodeGeneral;
483 }
484
485 void CLangInfo::SetSubtitleLanguage(const std::string& language)
486 {
487   if (language.empty() || StringUtils::EqualsNoCase(language, "default") || !g_LangCodeExpander.ConvertToThreeCharCode(m_subtitleLanguage, language))
488     m_subtitleLanguage.clear();
489 }
490
491 // two character codes as defined in ISO639
492 const std::string CLangInfo::GetDVDMenuLanguage() const
493 {
494   CStdString code;
495   if (!g_LangCodeExpander.ConvertToTwoCharCode(code, m_currentRegion->m_strLangLocaleName))
496     code = m_currentRegion->m_strDVDMenuLanguage;
497   
498   return code;
499 }
500
501 // two character codes as defined in ISO639
502 const std::string CLangInfo::GetDVDAudioLanguage() const
503 {
504   CStdString code;
505   if (!g_LangCodeExpander.ConvertToTwoCharCode(code, m_audioLanguage))
506     code = m_currentRegion->m_strDVDAudioLanguage;
507   
508   return code;
509 }
510
511 // two character codes as defined in ISO639
512 const std::string CLangInfo::GetDVDSubtitleLanguage() const
513 {
514   CStdString code;
515   if (!g_LangCodeExpander.ConvertToTwoCharCode(code, m_subtitleLanguage))
516     code = m_currentRegion->m_strDVDSubtitleLanguage;
517   
518   return code;
519 }
520
521 const std::string CLangInfo::GetLanguageLocale(bool twochar /* = false */) const
522 {
523   if (twochar)
524     return m_currentRegion->m_strLangLocaleCodeTwoChar;
525
526   return m_currentRegion->m_strLangLocaleName;
527 }
528
529 const CStdString& CLangInfo::GetRegionLocale() const
530 {
531   return m_currentRegion->m_strRegionLocaleName;
532 }
533
534 // Returns the format string for the date of the current language
535 const CStdString& CLangInfo::GetDateFormat(bool bLongDate/*=false*/) const
536 {
537   if (bLongDate)
538     return m_currentRegion->m_strDateFormatLong;
539   else
540     return m_currentRegion->m_strDateFormatShort;
541 }
542
543 // Returns the format string for the time of the current language
544 const CStdString& CLangInfo::GetTimeFormat() const
545 {
546   return m_currentRegion->m_strTimeFormat;
547 }
548
549 const CStdString& CLangInfo::GetTimeZone() const
550 {
551   return m_currentRegion->m_strTimeZone;
552 }
553
554 // Returns the AM/PM symbol of the current language
555 const CStdString& CLangInfo::GetMeridiemSymbol(MERIDIEM_SYMBOL symbol) const
556 {
557   return m_currentRegion->m_strMeridiemSymbols[symbol];
558 }
559
560 // Fills the array with the region names available for this language
561 void CLangInfo::GetRegionNames(CStdStringArray& array)
562 {
563   for (ITMAPREGIONS it=m_regions.begin(); it!=m_regions.end(); ++it)
564   {
565     CStdString strName=it->first;
566     if (strName=="N/A")
567       strName=g_localizeStrings.Get(416);
568     array.push_back(strName);
569   }
570 }
571
572 // Set the current region by its name, names from GetRegionNames() are valid.
573 // If the region is not found the first available region is set.
574 void CLangInfo::SetCurrentRegion(const CStdString& strName)
575 {
576   ITMAPREGIONS it=m_regions.find(strName);
577   if (it!=m_regions.end())
578     m_currentRegion=&it->second;
579   else if (!m_regions.empty())
580     m_currentRegion=&m_regions.begin()->second;
581   else
582     m_currentRegion=&m_defaultRegion;
583
584   m_currentRegion->SetGlobalLocale();
585 }
586
587 // Returns the current region set for this language
588 const CStdString& CLangInfo::GetCurrentRegion() const
589 {
590   return m_currentRegion->m_strName;
591 }
592
593 CLangInfo::TEMP_UNIT CLangInfo::GetTempUnit() const
594 {
595   return m_currentRegion->m_tempUnit;
596 }
597
598 // Returns the temperature unit string for the current language
599 const CStdString& CLangInfo::GetTempUnitString() const
600 {
601   return g_localizeStrings.Get(TEMP_UNIT_STRINGS+m_currentRegion->m_tempUnit);
602 }
603
604 CLangInfo::SPEED_UNIT CLangInfo::GetSpeedUnit() const
605 {
606   return m_currentRegion->m_speedUnit;
607 }
608
609 // Returns the speed unit string for the current language
610 const CStdString& CLangInfo::GetSpeedUnitString() const
611 {
612   return g_localizeStrings.Get(SPEED_UNIT_STRINGS+m_currentRegion->m_speedUnit);
613 }
614
615 void CLangInfo::SettingOptionsLanguagesFiller(const CSetting *setting, std::vector< std::pair<std::string, std::string> > &list, std::string &current)
616 {
617   //find languages...
618   CFileItemList items;
619   XFILE::CDirectory::GetDirectory("special://xbmc/language/", items);
620
621   vector<string> vecLanguage;
622   for (int i = 0; i < items.Size(); ++i)
623   {
624     CFileItemPtr pItem = items[i];
625     if (pItem->m_bIsFolder)
626     {
627       if (StringUtils::EqualsNoCase(pItem->GetLabel(), ".svn") ||
628           StringUtils::EqualsNoCase(pItem->GetLabel(), "fonts") ||
629           StringUtils::EqualsNoCase(pItem->GetLabel(), "media"))
630         continue;
631
632       vecLanguage.push_back(pItem->GetLabel());
633     }
634   }
635
636   sort(vecLanguage.begin(), vecLanguage.end(), sortstringbyname());
637
638   for (unsigned int i = 0; i < vecLanguage.size(); ++i)
639     list.push_back(make_pair(vecLanguage[i], vecLanguage[i]));
640 }
641
642 void CLangInfo::SettingOptionsStreamLanguagesFiller(const CSetting *setting, std::vector< std::pair<std::string, std::string> > &list, std::string &current)
643 {
644   list.push_back(make_pair(g_localizeStrings.Get(308), "original"));
645   list.push_back(make_pair(g_localizeStrings.Get(309), "default"));
646
647   // get a list of language names
648   vector<string> languages = g_LangCodeExpander.GetLanguageNames();
649   sort(languages.begin(), languages.end(), sortstringbyname());
650   for (std::vector<std::string>::const_iterator language = languages.begin(); language != languages.end(); ++language)
651     list.push_back(make_pair(*language, *language));
652 }
653
654 void CLangInfo::SettingOptionsRegionsFiller(const CSetting *setting, std::vector< std::pair<std::string, std::string> > &list, std::string &current)
655 {
656   CStdStringArray regions;
657   g_langInfo.GetRegionNames(regions);
658   sort(regions.begin(), regions.end(), sortstringbyname());
659
660   bool match = false;
661   for (unsigned int i = 0; i < regions.size(); ++i)
662   {
663     CStdString region = regions[i];
664     list.push_back(make_pair(region, region));
665
666     if (!match && region.Equals(((CSettingString*)setting)->GetValue().c_str()))
667     {
668       match = true;
669       current = region;
670     }
671   }
672
673   if (!match && regions.size() > 0)
674     current = regions[0];
675 }