You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Modified editor strings to be translatable in the future
This commit is contained in:
@@ -328,7 +328,7 @@ void SampleEditor::_update_sample() {
|
||||
return; //bye or unsupported
|
||||
|
||||
generate_preview_texture(sample,peakdisplay);
|
||||
info_label->set_text("Length: "+itos(sample->get_length())+" frames ("+String::num(sample->get_length()/(float)sample->get_mix_rate(),2)+" s), "+(sample->get_format()==Sample::FORMAT_PCM16?"16 Bits, ":"8 bits, ")+(sample->is_stereo()?"Stereo.":"Mono."));
|
||||
info_label->set_text(TTR("Length: ")+itos(sample->get_length())+" frames ("+String::num(sample->get_length()/(float)sample->get_mix_rate(),2)+" s), "+(sample->get_format()==Sample::FORMAT_PCM16?"16 Bits, ":"8 bits, ")+(sample->is_stereo()?"Stereo.":"Mono."));
|
||||
|
||||
library->add_sample("default",sample);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user