@@ -194,7 +194,7 @@ OptionsView::OptionsView() : ui::Window(ui::Point(-1, -1), ui::Point(320, 340))
194194 newtonianGravity = addCheckbox (0 , " 뉴턴 중력 시뮬레이션 \b g버전 48 이상" , " \b g일정 성능 이하의 컴퓨터에서 성능 저하를 일으킬 수 있음" , [this ] {
195195 c->SetNewtonianGravity (newtonianGravity->GetChecked ());
196196 });
197- ambientHeatSimulation = addCheckbox (0 , " 복사열 시뮬레이션 \b g버전 50 이상" , " \b g활성화 시 일부 세이브와 충돌을 일으킬 수 있음" , [this ] {
197+ ambientHeatSimulation = addCheckbox (0 , " 환경 열 시뮬레이션 \b g버전 50 이상" , " \b g활성화 시 일부 세이브와 충돌을 일으킬 수 있음" , [this ] {
198198 c->SetAmbientHeatSimulation (ambientHeatSimulation->GetChecked ());
199199 });
200200 waterEqualisation = addCheckbox (0 , " 액체 높이 균등화 \b g버전 61 이상" , " \b g다량의 액체가 있을 시 성능 저하를 일으킬 수 있음" , [this ] {
@@ -209,22 +209,22 @@ OptionsView::OptionsView() : ui::Window(ui::Point(-1, -1), ui::Point(320, 340))
209209 }, [this ] {
210210 c->SetAirMode (airMode->GetOption ().second );
211211 });
212- std::tie (ambientAirTemp, ambientAirTempPreview) = addTextboxWithPreview (" 기본 복사열 온도" , true , [this ](String value, bool defocus) {
212+ std::tie (ambientAirTemp, ambientAirTempPreview) = addTextboxWithPreview (" 기본 환경 온도" , true , [this ](String value, bool defocus) {
213213 UpdateAirTemp (value, defocus);
214214 });
215- std::tie (edgePressure, edgePressurePreview) = addTextboxWithPreview (" Ambient air pressure " , true , [this ](String value, bool defocus) {
215+ std::tie (edgePressure, edgePressurePreview) = addTextboxWithPreview (" 기본 환경 기압 " , true , [this ](String value, bool defocus) {
216216 UpdateEdgePressure (value, defocus);
217217 });
218218 {
219- edgeVelocityChange = new ui::Button (ui::Point (Size.X -95 , currentY), ui::Point (80 , 16 ), " Change " );
219+ edgeVelocityChange = new ui::Button (ui::Point (Size.X -95 , currentY), ui::Point (80 , 16 ), " 변경 " );
220220 scrollPanel->AddChild (edgeVelocityChange);
221221 edgeVelocityChange->SetActionCallback ({ [this ] {
222- new DirectionSelector (ui::Point (-1 , -1 ), 0 .05f , 40 , edgeVelocityX, edgeVelocityY, " Ambient air velocity " , [this ](float x, float y) {
222+ new DirectionSelector (ui::Point (-1 , -1 ), 0 .05f , 40 , edgeVelocityX, edgeVelocityY, " 환경 유속 설정 " , [this ](float x, float y) {
223223 c->SetEdgeVelocityX (x);
224224 c->SetEdgeVelocityY (y);
225225 });
226226 } });
227- auto *label = new ui::Label (ui::Point (8 , currentY), ui::Point (Size.X -96 , 16 ), " Ambient air velocity " );
227+ auto *label = new ui::Label (ui::Point (8 , currentY), ui::Point (Size.X -96 , 16 ), " 기본 환경 기류 " );
228228 label->Appearance .HorizontalAlign = ui::Appearance::AlignLeft;
229229 label->Appearance .VerticalAlign = ui::Appearance::AlignMiddle;
230230 scrollPanel->AddChild (label);
0 commit comments