mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 00:11:14 +02:00
gui/scan_setup: use locale when displaying seconds
This commit is contained in:
@@ -609,7 +609,7 @@ int CScanSetup::showScanMenuFrontendSetup()
|
||||
|
||||
static std::string rotationSpeed2str(int i)
|
||||
{
|
||||
return to_string(i/10) + g_Locale->getText(LOCALE_UNIT_DECIMAL) + to_string(i%10) + "°/s";
|
||||
return to_string(i/10) + g_Locale->getText(LOCALE_UNIT_DECIMAL) + to_string(i%10) + "°/" + g_Locale->getText(LOCALE_UNIT_SHORT_SECOND);
|
||||
}
|
||||
|
||||
int CScanSetup::showFrontendSetup(int number)
|
||||
|
Reference in New Issue
Block a user