Skip to content

Commit

Permalink
[fix] 주행거리, 고속충전 자막 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lybell-art committed Aug 22, 2024
1 parent 18d9108 commit 5b79c9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import useMountDragEvent from "@main/hooks/useMountDragEvent.js";
import useA11yDrag from "@main/hooks/useA11yDrag.js";

const grabText = (x, y, km) =>
`점을 잡았습니다. 현재 좌표는 (${x}, ${y})이며, 거리는 ${km}km입니다. 방향키를 눌러 점의 위치를 조정하세요. 스페이스바를 눌러 점을 놓을 수 있습니다.`;
const moveText = (x, y, km) => `현재 좌표는 (${x}, ${y})이며, 거리는 ${km}km입니다.`;
const dropText = (x, y, km) => `점이 놓였습니다. 새 좌표는 (${x}, ${y})이며, 거리는 ${km}km입니다.`;
`점을 잡았습니다. 거리는 ${km}km이며, 현재 좌표는 (${x}, ${y})입니다. 방향키를 눌러 점의 위치를 조정하세요. 스페이스바를 눌러 점을 놓을 수 있습니다.`;
const moveText = (x, y, km) => `${km}km입니다. (현재 좌표: ${x}, ${y})`;
const dropText = (x, y, km) => `점이 놓였습니다. 거리는 ${km}km입니다. (새 좌표: ${x}, ${y})`;

function usePointDrag(enabled) {
const prevState = useRef({ x: 0, y: 0, mouseX: 0, mouseY: 0 });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const grabText = (value) =>
const moveText = (value, angle) => {
if (angle > 0) return `다이얼을 0도 이하로 조작할 수 없습니다.`;
if (angle < -Math.PI * 2) return `다이얼을 360도 이상으로 조작할 수 없습니다.`;
return `다이얼을 돌렸습니다. 현재 각도는 ${Math.floor((-angle * 180) / Math.PI)}도이며, 당신이 선택한 충전 시간은 ${value}분입니다.`;
return `다이얼을 돌렸습니다. 당신이 선택한 충전 시간은 ${value}분입니다.`;
};
const dropText = (value) =>
`다이얼 조작을 해제했습니다. 당신이 선택한 충전 시간은 ${value}분입니다.`;
Expand Down

0 comments on commit 5b79c9d

Please sign in to comment.