diff --git a/Common/UI/PopupScreens.cpp b/Common/UI/PopupScreens.cpp index f4110d9d7d..1a294ac05c 100644 --- a/Common/UI/PopupScreens.cpp +++ b/Common/UI/PopupScreens.cpp @@ -166,6 +166,15 @@ PopupSliderChoice::PopupSliderChoice(int *value, int minValue, int maxValue, int OnClick.Handle(this, &PopupSliderChoice::HandleClick); } +void PopupSliderChoice::SetFormat(std::string_view fmt) { + fmt_ = fmt; + if (units_.empty()) { + if (startsWith(fmt_, "%d ")) { + units_ = fmt_.substr(3); + } + } +} + PopupSliderChoiceFloat::PopupSliderChoiceFloat(float *value, float minValue, float maxValue, float defaultValue, const std::string &text, ScreenManager *screenManager, const std::string &units, LayoutParams *layoutParams) : AbstractChoiceWithValueDisplay(text, layoutParams), value_(value), minValue_(minValue), maxValue_(maxValue), defaultValue_(defaultValue), step_(1.0f), units_(units), screenManager_(screenManager) { _dbg_assert_(maxValue > minValue); @@ -181,6 +190,15 @@ PopupSliderChoiceFloat::PopupSliderChoiceFloat(float *value, float minValue, flo OnClick.Handle(this, &PopupSliderChoiceFloat::HandleClick); } +void PopupSliderChoiceFloat::SetFormat(std::string_view fmt) { + fmt_ = fmt; + if (units_.empty()) { + if (startsWith(fmt_, "%f ")) { + units_ = fmt_.substr(3); + } + } +} + EventReturn PopupSliderChoice::HandleClick(EventParams &e) { restoreFocus_ = HasFocus(); diff --git a/Common/UI/PopupScreens.h b/Common/UI/PopupScreens.h index ee5a36272f..80167174f9 100644 --- a/Common/UI/PopupScreens.h +++ b/Common/UI/PopupScreens.h @@ -285,9 +285,7 @@ public: PopupSliderChoice(int *value, int minValue, int maxValue, int defaultValue, const std::string &text, ScreenManager *screenManager, const std::string &units = "", LayoutParams *layoutParams = 0); PopupSliderChoice(int *value, int minValue, int maxValue, int defaultValue, const std::string &text, int step, ScreenManager *screenManager, const std::string &units = "", LayoutParams *layoutParams = 0); - void SetFormat(const char *fmt) { - fmt_ = fmt; - } + void SetFormat(std::string_view fmt); void SetZeroLabel(const std::string &str) { zeroLabel_ = str; } @@ -322,9 +320,7 @@ public: PopupSliderChoiceFloat(float *value, float minValue, float maxValue, float defaultValue, const std::string &text, ScreenManager *screenManager, const std::string &units = "", LayoutParams *layoutParams = 0); PopupSliderChoiceFloat(float *value, float minValue, float maxValue, float defaultValue, const std::string &text, float step, ScreenManager *screenManager, const std::string &units = "", LayoutParams *layoutParams = 0); - void SetFormat(const char *fmt) { - fmt_ = fmt; - } + void SetFormat(std::string_view fmt); void SetZeroLabel(const std::string &str) { zeroLabel_ = str; } diff --git a/Core/Config.cpp b/Core/Config.cpp index 50ea0578d8..fdee6796d4 100644 --- a/Core/Config.cpp +++ b/Core/Config.cpp @@ -213,7 +213,7 @@ static const ConfigSetting generalSettings[] = { ConfigSetting("DisableHTTPS", &g_Config.bDisableHTTPS, false, CfgFlag::DONT_SAVE), ConfigSetting("AutoLoadSaveState", &g_Config.iAutoLoadSaveState, 0, CfgFlag::PER_GAME), ConfigSetting("EnableCheats", &g_Config.bEnableCheats, false, CfgFlag::PER_GAME | CfgFlag::REPORT), - ConfigSetting("CwCheatRefreshRate", &g_Config.iCwCheatRefreshRate, 77, CfgFlag::PER_GAME), + ConfigSetting("CwCheatRefreshRate", &g_Config.iCwCheatRefreshIntervalMs, 77, CfgFlag::PER_GAME), ConfigSetting("CwCheatScrollPosition", &g_Config.fCwCheatScrollPosition, 0.0f, CfgFlag::PER_GAME), ConfigSetting("GameListScrollPosition", &g_Config.fGameListScrollPosition, 0.0f, CfgFlag::DEFAULT), ConfigSetting("DebugOverlay", &g_Config.iDebugOverlay, 0, CfgFlag::DONT_SAVE), diff --git a/Core/Config.h b/Core/Config.h index c97c2f65da..06d7265364 100644 --- a/Core/Config.h +++ b/Core/Config.h @@ -237,7 +237,7 @@ public: int iAutoLoadSaveState; // 0 = off, 1 = oldest, 2 = newest, >2 = slot number + 3 bool bEnableCheats; bool bReloadCheats; - int iCwCheatRefreshRate; + int iCwCheatRefreshIntervalMs; float fCwCheatScrollPosition; float fGameListScrollPosition; int iBloomHack; //0 = off, 1 = safe, 2 = balanced, 3 = aggressive diff --git a/Core/CwCheat.cpp b/Core/CwCheat.cpp index baa9ec915a..a8731ba7a2 100644 --- a/Core/CwCheat.cpp +++ b/Core/CwCheat.cpp @@ -270,7 +270,7 @@ static void __CheatStart() { } static int GetRefreshMs() { - int refresh = g_Config.iCwCheatRefreshRate; + int refresh = g_Config.iCwCheatRefreshIntervalMs; if (!cheatsEnabled) refresh = 1000; diff --git a/UI/CwCheatScreen.cpp b/UI/CwCheatScreen.cpp index 0fe6eb0407..4b29880dc9 100644 --- a/UI/CwCheatScreen.cpp +++ b/UI/CwCheatScreen.cpp @@ -109,7 +109,8 @@ void CwCheatScreen::CreateViews() { leftColumn->Add(new Choice(cw->T("Edit Cheat File")))->OnClick.Handle(this, &CwCheatScreen::OnEditCheatFile); #endif leftColumn->Add(new Choice(di->T("Disable All")))->OnClick.Handle(this, &CwCheatScreen::OnDisableAll); - leftColumn->Add(new PopupSliderChoice(&g_Config.iCwCheatRefreshRate, 1, 1000, 77, cw->T("Refresh Rate"), 1, screenManager())); + leftColumn->Add(new PopupSliderChoice(&g_Config.iCwCheatRefreshIntervalMs, 1, 1000, 77, cw->T("Refresh Interval"), 1, screenManager()))->SetFormat(di->T("%d ms")); + rightScroll_ = new ScrollView(ORIENT_VERTICAL, new LinearLayoutParams(FILL_PARENT, FILL_PARENT, 0.5f)); rightScroll_->SetTag("CwCheats"); diff --git a/assets/lang/ar_AE.ini b/assets/lang/ar_AE.ini index e61f95cc89..89b1034142 100644 --- a/assets/lang/ar_AE.ini +++ b/assets/lang/ar_AE.ini @@ -183,7 +183,7 @@ Cheats = ‎الشفرات Edit Cheat File = ‎عدل ملف الشفرة Import Cheats = ‎إستورد من cheat.db Import from %s = ‎إستورد من %s -Refresh Rate = ‎معدل التحديث +Refresh interval = ‎معدل التحديث [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/az_AZ.ini b/assets/lang/az_AZ.ini index 9c1ccc8748..0d9738ad9d 100644 --- a/assets/lang/az_AZ.ini +++ b/assets/lang/az_AZ.ini @@ -175,7 +175,7 @@ Cheats = Cheats Edit Cheat File = Edit cheat file Import Cheats = Import from cheat.db Import from %s = Import from %s -Refresh Rate = Refresh rate +Refresh interval = Refresh interval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/bg_BG.ini b/assets/lang/bg_BG.ini index 956ab16d73..2457fc55f7 100644 --- a/assets/lang/bg_BG.ini +++ b/assets/lang/bg_BG.ini @@ -175,7 +175,7 @@ Cheats = Чийтове Edit Cheat File = Edit cheat file Import Cheats = Внеси от cheat.db Import from %s = Внеси от %s -Refresh Rate = Refresh rate +Refresh interval = Refresh interval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/ca_ES.ini b/assets/lang/ca_ES.ini index 59d833fc71..6c29fc0fb4 100644 --- a/assets/lang/ca_ES.ini +++ b/assets/lang/ca_ES.ini @@ -175,7 +175,7 @@ Cheats = Trucs Edit Cheat File = Editar el fitxer de trucs Import Cheats = Importar «cheat.db» Import from %s = Importar %s -Refresh Rate = Freqüència de refrescament +Refresh interval = Freqüència de refrescament [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/cz_CZ.ini b/assets/lang/cz_CZ.ini index e6e1ecf25d..4b87aaad27 100644 --- a/assets/lang/cz_CZ.ini +++ b/assets/lang/cz_CZ.ini @@ -175,7 +175,7 @@ Cheats = Cheaty Edit Cheat File = Upravit soubor s cheaty Import Cheats = Importovat z cheat.db Import from %s = Importovat z %s -Refresh Rate = Frekvence obnoveni +Refresh interval = Frekvence obnoveni [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/da_DK.ini b/assets/lang/da_DK.ini index b2f9a5aff1..4ba0a78da8 100644 --- a/assets/lang/da_DK.ini +++ b/assets/lang/da_DK.ini @@ -175,7 +175,7 @@ Cheats = Snyd Edit Cheat File = Editer snydefil Import Cheats = Import from cheat.db Import from %s = Importer fra %s -Refresh Rate = Opdateringsrate +Refresh interval = Opdateringsinterval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/de_DE.ini b/assets/lang/de_DE.ini index 0e651c1496..85801e91e6 100644 --- a/assets/lang/de_DE.ini +++ b/assets/lang/de_DE.ini @@ -175,7 +175,7 @@ Cheats = Cheats Edit Cheat File = Cheatdatei ändern Import Cheats = Cheats importieren (aus cheat.db) Import from %s = Import from %s -Refresh Rate = Wiederholfrequenz +Refresh interval = Wiederholfrequenz [DesktopUI] # Wenn ihre Sprache nicht gut mit dem normalen Font angezeigt wird, können sie dieses Font mit dem Font ändern. diff --git a/assets/lang/dr_ID.ini b/assets/lang/dr_ID.ini index 90aa777d8c..de6f1b8cf2 100644 --- a/assets/lang/dr_ID.ini +++ b/assets/lang/dr_ID.ini @@ -175,7 +175,7 @@ Cheats = Cheat Edit Cheat File = Edit cheat file Import Cheats = Patamanni cheat.db Import from %s = Patamanni %s -Refresh Rate = Refresh rate +Refresh interval = Refresh interval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/en_US.ini b/assets/lang/en_US.ini index dba9499614..2ae2ffb9e2 100644 --- a/assets/lang/en_US.ini +++ b/assets/lang/en_US.ini @@ -199,7 +199,7 @@ Cheats = Cheats Edit Cheat File = Edit cheat file Import Cheats = Import from cheat.db Import from %s = Import from %s -Refresh Rate = Refresh rate +Refresh interval = Refresh interval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/es_ES.ini b/assets/lang/es_ES.ini index 4004d07439..00d3ce6890 100644 --- a/assets/lang/es_ES.ini +++ b/assets/lang/es_ES.ini @@ -175,7 +175,7 @@ Cheats = Trucos Edit Cheat File = Editar archivo de trucos Import Cheats = Importar archivo cheat.db Import from %s = Importar de %s -Refresh Rate = Frecuencia de actualización +Refresh interval = Frecuencia de actualización [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/es_LA.ini b/assets/lang/es_LA.ini index d8da98a98c..462cfa1905 100644 --- a/assets/lang/es_LA.ini +++ b/assets/lang/es_LA.ini @@ -175,7 +175,7 @@ Cheats = trucos Edit Cheat File = Editar archivo de trucos Import Cheats = Importar archivo cheat.db Import from %s = Import from %s -Refresh Rate = Frecuencia de actualización +Refresh interval = Frecuencia de actualización [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/fa_IR.ini b/assets/lang/fa_IR.ini index d785ad87af..589c542d14 100644 --- a/assets/lang/fa_IR.ini +++ b/assets/lang/fa_IR.ini @@ -175,7 +175,7 @@ Cheats = ‎کد های تقلب Edit Cheat File = ‎ویرایش فایل کد ها Import Cheats = ‎cheat.db وارد کردن از Import from %s = Import from %s -Refresh Rate = بازیابی نرخ +Refresh interval = بازیابی نرخ [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/fi_FI.ini b/assets/lang/fi_FI.ini index f7fb735a1b..8703c5fa31 100644 --- a/assets/lang/fi_FI.ini +++ b/assets/lang/fi_FI.ini @@ -175,7 +175,7 @@ Cheats = Huijaukset Edit Cheat File = Muokkaa huijaus tiedostoa Import Cheats = Tuo huijauksia Import from %s = %s -Refresh Rate = Ruudunpäivitysnopeus +Refresh interval = Ruudunpäivitysnopeus [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/fr_FR.ini b/assets/lang/fr_FR.ini index fe011be4e1..b2f4210abc 100644 --- a/assets/lang/fr_FR.ini +++ b/assets/lang/fr_FR.ini @@ -175,7 +175,7 @@ Cheats = Codes de triche Edit Cheat File = Modifier le fichier de triche Import Cheats = Importer des codes de triche Import from %s = Importer de %s -Refresh Rate = Taux de rafraîchissement +Refresh interval = Taux de rafraîchissement [DesktopUI] # PPSSPP peut utiliser n'importe quelle police installée sur votre système. diff --git a/assets/lang/gl_ES.ini b/assets/lang/gl_ES.ini index c60ca4f205..19b02d5b0a 100644 --- a/assets/lang/gl_ES.ini +++ b/assets/lang/gl_ES.ini @@ -175,7 +175,7 @@ Cheats = Trucos Edit Cheat File = Editar arquivo de trucos Import Cheats = Importar cheat.db Import from %s = Importar %s -Refresh Rate = Frecuencia de actualización +Refresh interval = Frecuencia de actualización [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/gr_EL.ini b/assets/lang/gr_EL.ini index 6df498b541..990d9cde7d 100644 --- a/assets/lang/gr_EL.ini +++ b/assets/lang/gr_EL.ini @@ -175,7 +175,7 @@ Cheats = Κωδικοί Edit Cheat File = Επεξεργασία αρχείου κωδικών Import Cheats = Εισαγωγή από cheat.db Import from %s = Εισαγωγή από %s -Refresh Rate = Ρυθμός ανανέωσης +Refresh interval = Ρυθμός ανανέωσης [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/he_IL.ini b/assets/lang/he_IL.ini index 6e8c9193dd..d0a21af78e 100644 --- a/assets/lang/he_IL.ini +++ b/assets/lang/he_IL.ini @@ -175,7 +175,7 @@ Cheats = Cheats Edit Cheat File = Edit cheat file Import Cheats = Import from cheat.db Import from %s = Import from %s -Refresh Rate = Refresh rate +Refresh interval = Refresh interval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/he_IL_invert.ini b/assets/lang/he_IL_invert.ini index f3a7300955..f24d49dca3 100644 --- a/assets/lang/he_IL_invert.ini +++ b/assets/lang/he_IL_invert.ini @@ -175,7 +175,7 @@ Cheats = Cheats Edit Cheat File = Edit cheat file Import Cheats = Import from cheat.db Import from %s = Import from %s -Refresh Rate = Refresh rate +Refresh interval = Refresh interval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/hr_HR.ini b/assets/lang/hr_HR.ini index ddb138907c..4a100e74a7 100644 --- a/assets/lang/hr_HR.ini +++ b/assets/lang/hr_HR.ini @@ -175,7 +175,7 @@ Cheats = Šifre Edit Cheat File = Izmijeni cheat datoteku Import Cheats = Uvezi iz cheat.db Import from %s = Uvezi iz %s -Refresh Rate = Brzina osvježavanja +Refresh interval = Brzina osvježavanja [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/hu_HU.ini b/assets/lang/hu_HU.ini index af59583706..06b58c838a 100644 --- a/assets/lang/hu_HU.ini +++ b/assets/lang/hu_HU.ini @@ -175,7 +175,7 @@ Cheats = Csalások Edit Cheat File = Csalás fájl szerkesztése Import Cheats = Importálás cheat.db-ből Import from %s = Importálás %s-ből -Refresh Rate = Frissítési gyakoriság +Refresh interval = Frissítési gyakoriság [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/id_ID.ini b/assets/lang/id_ID.ini index 3b717426ec..1150ad5fa3 100644 --- a/assets/lang/id_ID.ini +++ b/assets/lang/id_ID.ini @@ -175,7 +175,7 @@ Cheats = Pengecoh Edit Cheat File = Edit berkas pengecoh Import Cheats = Impor dari cheat.db Import from %s = Impor dari %s -Refresh Rate = Perbarui penyegaran +Refresh interval = Perbarui penyegaran [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/it_IT.ini b/assets/lang/it_IT.ini index 91c5fef59a..4d68d93706 100644 --- a/assets/lang/it_IT.ini +++ b/assets/lang/it_IT.ini @@ -175,7 +175,7 @@ Cheats = Trucchi Edit Cheat File = Modifica file Trucchi Import Cheats = Importa da cheat.db Import from %s = Importa da %s -Refresh Rate = Frequenza di Aggiornamento +Refresh interval = Frequenza di Aggiornamento [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/ja_JP.ini b/assets/lang/ja_JP.ini index beea7562c3..f7dfd9dec2 100644 --- a/assets/lang/ja_JP.ini +++ b/assets/lang/ja_JP.ini @@ -175,7 +175,7 @@ Cheats = チート Edit Cheat File = チートファイルを編集する Import Cheats = cheat.dbからインポートする Import from %s = %sからインポートする -Refresh Rate = リフレッシュレート +Refresh interval = リフレッシュレート [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/jv_ID.ini b/assets/lang/jv_ID.ini index f8824a4ac2..ac56ac7f57 100644 --- a/assets/lang/jv_ID.ini +++ b/assets/lang/jv_ID.ini @@ -175,7 +175,7 @@ Cheats = Mbeling Edit Cheat File = Sunting berkas mbeling Import Cheats = Import from cheat.db Import from %s = Njokot soko %s -Refresh Rate = Restar rate +Refresh interval = Restar rate [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/ko_KR.ini b/assets/lang/ko_KR.ini index 7288c840e3..22a7cd2eb7 100644 --- a/assets/lang/ko_KR.ini +++ b/assets/lang/ko_KR.ini @@ -175,7 +175,7 @@ Cheats = 치트 Edit Cheat File = 치트 파일 수정 Import Cheats = cheat.db에서 가져오기 Import from %s = %s에서 가져오기 -Refresh Rate = 주사율 +Refresh interval = 주사율 [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/lo_LA.ini b/assets/lang/lo_LA.ini index 47b31fba14..d3bea8e015 100644 --- a/assets/lang/lo_LA.ini +++ b/assets/lang/lo_LA.ini @@ -175,7 +175,7 @@ Cheats = ການໃຊ້ສູດໂກງ Edit Cheat File = ປັບແຕ່ງໄຟລ໌ສູດໂກງ Import Cheats = Import from cheat.db Import from %s = ນຳເຂົ້າຈາກໄຟລ໌ສູດໂກງ %s -Refresh Rate = ອັດຕາການຟື້ນຟູ +Refresh interval = ອັດຕາການຟື້ນຟູ [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/lt-LT.ini b/assets/lang/lt-LT.ini index 5bf7c903c9..dae5ac1763 100644 --- a/assets/lang/lt-LT.ini +++ b/assets/lang/lt-LT.ini @@ -175,7 +175,7 @@ Cheats = Kodai Edit Cheat File = Redaguoti kodų failą Import Cheats = Importuoti iš cheat.db Import from %s = Importuoti iš %s -Refresh Rate = Atsinaujinimo dažnis +Refresh interval = Atsinaujinimo dažnis [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/ms_MY.ini b/assets/lang/ms_MY.ini index 4fc141d3fb..efc21d60c5 100644 --- a/assets/lang/ms_MY.ini +++ b/assets/lang/ms_MY.ini @@ -175,7 +175,7 @@ Cheats = Cheat Edit Cheat File = Ubah cheat file Import Cheats = Import dari cheat.db Import from %s = Import dari %s -Refresh Rate = Refresh rate +Refresh interval = Refresh interval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/nl_NL.ini b/assets/lang/nl_NL.ini index 14fabda7a1..fad7f6fab3 100644 --- a/assets/lang/nl_NL.ini +++ b/assets/lang/nl_NL.ini @@ -175,7 +175,7 @@ Cheats = Cheats Edit Cheat File = Cheatbestand bewerken Import Cheats = Importeren van cheat.db Import from %s = Importeren van %s -Refresh Rate = Vernieuwingsfrequentie +Refresh interval = Vernieuwingsfrequentie [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/no_NO.ini b/assets/lang/no_NO.ini index 0a9703bbc3..2ce42d9709 100644 --- a/assets/lang/no_NO.ini +++ b/assets/lang/no_NO.ini @@ -175,7 +175,7 @@ Cheats = Cheats Edit Cheat File = Edit cheat file Import Cheats = Import from cheat.db Import from %s = Import from %s -Refresh Rate = Refresh rate +Refresh interval = Refresh interval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/pl_PL.ini b/assets/lang/pl_PL.ini index d1a064001b..6501d5428f 100644 --- a/assets/lang/pl_PL.ini +++ b/assets/lang/pl_PL.ini @@ -175,7 +175,7 @@ Cheats = Kody Edit Cheat File = Edytuj plik kodów Import Cheats = Importuj z pliku cheat.db Import from %s = Importuj z pliku %s -Refresh Rate = Szybkość odświeżania +Refresh interval = Szybkość odświeżania [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/pt_BR.ini b/assets/lang/pt_BR.ini index bd1e8b9322..f0f7e96a48 100644 --- a/assets/lang/pt_BR.ini +++ b/assets/lang/pt_BR.ini @@ -199,7 +199,7 @@ Cheats = Trapaças Edit Cheat File = Editar arquivo de trapaças Import Cheats = Importar do cheat.db Import from %s = Importar do %s -Refresh Rate = Taxa de atualização +Refresh interval = Taxa de atualização [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/pt_PT.ini b/assets/lang/pt_PT.ini index 067eda1e58..f42f4ea9d7 100644 --- a/assets/lang/pt_PT.ini +++ b/assets/lang/pt_PT.ini @@ -199,7 +199,7 @@ Cheats = Cheats Edit Cheat File = Editar ficheiro de Cheats Import Cheats = Importar de cheat.db Import from %s = Importar de %s -Refresh Rate = Taxa de atualização +Refresh interval = Taxa de atualização [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/ro_RO.ini b/assets/lang/ro_RO.ini index eea33b4ac2..496ec799b0 100644 --- a/assets/lang/ro_RO.ini +++ b/assets/lang/ro_RO.ini @@ -176,7 +176,7 @@ Edit Cheat File = Editare fișier trișare Import Cheats = Importă din cheat.db #Import %s = Importă din %s Import from %s = Import from %s -Refresh Rate = Rată de împrospatare +Refresh interval = Rată de împrospatare [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/ru_RU.ini b/assets/lang/ru_RU.ini index 6dfd2666e8..bcf417751d 100644 --- a/assets/lang/ru_RU.ini +++ b/assets/lang/ru_RU.ini @@ -175,7 +175,7 @@ Cheats = Читы Edit Cheat File = Изменить файл чита Import Cheats = Импортировать из cheat.db Import from %s = Импортировать из %s -Refresh Rate = Частота обновления +Refresh interval = Частота обновления [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/sv_SE.ini b/assets/lang/sv_SE.ini index 91e31043fa..88601d4cda 100644 --- a/assets/lang/sv_SE.ini +++ b/assets/lang/sv_SE.ini @@ -175,7 +175,7 @@ Cheats = Fusk Edit Cheat File = Redigera fusk-fil Import Cheats = Importera från cheat.db Import from %s = Importera från %s -Refresh Rate = Uppdateringsfrekvens +Refresh interval = Uppdateringsintervall [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/tg_PH.ini b/assets/lang/tg_PH.ini index f3eda3a3ac..52e8020b8d 100644 --- a/assets/lang/tg_PH.ini +++ b/assets/lang/tg_PH.ini @@ -175,7 +175,7 @@ Cheats = Mga Daya Edit Cheat File = Edit Cheat File Import Cheats = Import from cheat.db Import from %s = Import ang mga daya mula sa %s -Refresh Rate = Refresh rate +Refresh interval = Refresh interval [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/th_TH.ini b/assets/lang/th_TH.ini index 5c2dc9ca50..af5514bf3f 100644 --- a/assets/lang/th_TH.ini +++ b/assets/lang/th_TH.ini @@ -175,7 +175,7 @@ Cheats = การใช้สูตรโกง Edit Cheat File = ปรับแต่งไฟล์สูตรโกง Import Cheats = นำเข้าจากไฟล์สูตรโกง Import from %s = นำเข้าจาก %s -Refresh Rate = อัตรารีเฟรช +Refresh interval = อัตรารีเฟรช [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/tr_TR.ini b/assets/lang/tr_TR.ini index 23201a3829..516e2ab5ca 100644 --- a/assets/lang/tr_TR.ini +++ b/assets/lang/tr_TR.ini @@ -175,7 +175,7 @@ Cheats = Hileler Edit Cheat File = Hile dosyasını düzenle Import Cheats = cheat.db'den hile al Import from %s = %s'den hile al -Refresh Rate = Yenileme Hızı +Refresh interval = Yenileme Hızı [DesktopUI] # EN: If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/uk_UA.ini b/assets/lang/uk_UA.ini index 9460c36206..88d613e894 100644 --- a/assets/lang/uk_UA.ini +++ b/assets/lang/uk_UA.ini @@ -175,7 +175,7 @@ Cheats = Чит-коди Edit Cheat File = Змінити файл чит-коду Import Cheats = Імпортувати з cheat.db Import from %s = Імпортувати з %s -Refresh Rate = Частота оновлення +Refresh interval = Частота оновлення [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/vi_VN.ini b/assets/lang/vi_VN.ini index fa68f55fe6..da9e911339 100644 --- a/assets/lang/vi_VN.ini +++ b/assets/lang/vi_VN.ini @@ -175,7 +175,7 @@ Cheats = Cheats Edit Cheat File = Sửa mục cheat Import Cheats = Nhập mã từ cheat.db Import from %s = Nhập mã từ %s -Refresh Rate = Tần số làm mới +Refresh interval = Tần số làm mới [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/zh_CN.ini b/assets/lang/zh_CN.ini index 3b7786d645..efa6173831 100644 --- a/assets/lang/zh_CN.ini +++ b/assets/lang/zh_CN.ini @@ -175,7 +175,7 @@ Cheats = 金手指 Edit Cheat File = 编辑金手指文件 Import Cheats = 从cheat.db导入 Import from %s = 从%s导入 -Refresh Rate = 刷新率 +Refresh interval = 刷新率 [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one. diff --git a/assets/lang/zh_TW.ini b/assets/lang/zh_TW.ini index 70a1c95bde..3a8741c1b3 100644 --- a/assets/lang/zh_TW.ini +++ b/assets/lang/zh_TW.ini @@ -175,7 +175,7 @@ Cheats = 密技 Edit Cheat File = 編輯密技檔案 Import Cheats = 從 cheat.db 匯入 Import from %s = 從 %s 匯入 -Refresh Rate = 重新整理速率 +Refresh interval = 重新整理速率 [DesktopUI] # If your language does not show well with the default font, you can use Font to specify a different one.