FullscreenUI: Mark %d ms for translation (#3196)
This commit is contained in:
parent
e3b0050ca1
commit
fea00d0149
|
@ -4873,7 +4873,7 @@ void FullscreenUI::DrawAudioSettingsPage()
|
|||
&AudioStream::GetStretchModeName, &AudioStream::GetStretchModeDisplayName, AudioStretchMode::Count);
|
||||
DrawIntRangeSetting(bsi, FSUI_CSTR("Buffer Size"),
|
||||
FSUI_CSTR("Determines the amount of audio buffered before being pulled by the host API."),
|
||||
"Audio", "BufferMS", AudioStreamParameters::DEFAULT_BUFFER_MS, 10, 500, "%d ms");
|
||||
"Audio", "BufferMS", AudioStreamParameters::DEFAULT_BUFFER_MS, 10, 500, FSUI_CSTR("%d ms"));
|
||||
|
||||
const u32 output_latency =
|
||||
GetEffectiveUIntSetting(bsi, "Audio", "OutputLatencyMS", AudioStreamParameters::DEFAULT_OUTPUT_LATENCY_MS);
|
||||
|
@ -4892,7 +4892,7 @@ void FullscreenUI::DrawAudioSettingsPage()
|
|||
bsi, FSUI_CSTR("Output Latency"),
|
||||
FSUI_CSTR("Determines how much latency there is between the audio being picked up by the host API, and "
|
||||
"played through speakers."),
|
||||
"Audio", "OutputLatencyMS", AudioStreamParameters::DEFAULT_OUTPUT_LATENCY_MS, 1, 500, "%d ms");
|
||||
"Audio", "OutputLatencyMS", AudioStreamParameters::DEFAULT_OUTPUT_LATENCY_MS, 1, 500, FSUI_CSTR("%d ms"));
|
||||
}
|
||||
|
||||
EndMenuButtons();
|
||||
|
@ -7651,5 +7651,6 @@ TRANSLATE_NOOP("FullscreenUI", "{} Frames");
|
|||
TRANSLATE_NOOP("FullscreenUI", "{} deleted.");
|
||||
TRANSLATE_NOOP("FullscreenUI", "{} does not exist.");
|
||||
TRANSLATE_NOOP("FullscreenUI", "{} is not a valid disc image.");
|
||||
TRANSLATE_NOOP("FullscreenUI", "%d ms");
|
||||
// TRANSLATION-STRING-AREA-END
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue