Skip to content

Commit e7ea454

Browse files
authored
docs(core, mobile): translate English section headings to Korean in ko docs (#354)
1 parent eaf8b02 commit e7ea454

11 files changed

Lines changed: 11 additions & 11 deletions

File tree

packages/core/src/hooks/useCounter/ko/useCounter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`useCounter`는 증가, 감소 및 초기화 기능을 가진 숫자 카운터 상태를 관리하는 리액트 훅이에요. 선택적으로, 카운터의 범위를 제한하기 위해 최소값과 최대값을 제공할 수 있어요.
44

5-
## Interface
5+
## 인터페이스
66

77
```ts
88
function useCounter(

packages/core/src/hooks/useDebounce/ko/useDebounce.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`useDebounce`는 제공된 콜백 함수의 디바운스 버전을 반환하는 리액트 훅이에요. 함수 실행을 지연시키고 여러 호출을 하나로 그룹화하여 이벤트 처리를 최적화하는 데 도움을 줘요.
44

5-
## Interface
5+
## 인터페이스
66

77
```ts
88
function useDebounce<F extends (...args: any[]) => unknown>(

packages/core/src/hooks/useGeolocation/ko/useGeolocation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`useGeolocation`는 사용자의 지리적 위치를 검색하고 추적하는 리액트 훅이에요. 브라우저의 `Geolocation API`를 사용하여 단회 위치 검색과 지속적인 위치 추적을 모두 지원해요.
44

5-
## Interface
5+
## 인터페이스
66

77
```ts
88
function useGeolocation(options: GeolocationOptions): Object;

packages/core/src/hooks/useLongPress/ko/useLongPress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`useLongPress`는 요소가 지정된 기간 동안 눌려지고 유지될 때를 감지하는 리액트 훅이에요. 마우스와 터치 이벤트를 모두 처리하여 데스크탑과 모바일 장치에서 일관되게 작동해요.
44

5-
## Interface
5+
## 인터페이스
66

77
```ts
88
function useLongPress<E extends HTMLElement>(

packages/core/src/hooks/useThrottle/ko/useThrottle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
콜백 함수를 제한적으로 실행하는 버전을 만들어요. 이 기능은 함수가 호출될 수 있는 빈도를 제한하는 데 유용하며, 예를 들어 스크롤이나 리사이즈 이벤트를 처리할 때 사용돼요.
44

5-
## Interface
5+
## 인터페이스
66

77
```ts
88
function useThrottle<F extends (...args: any[]) => any>(

packages/core/src/hooks/useThrottledCallback/ko/useThrottledCallback.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
제공된 콜백 함수의 스로틀링된 버전을 반환하는 React 훅이에요. 스로틀링된 콜백은 지정된 간격당 최대 한 번만 호출돼요.
44

5-
## Interface
5+
## 인터페이스
66

77
```ts
88
function useThrottledCallback<F extends (...args: any[]) => any>(

packages/mobile/src/hooks/keyboardHeight/ko/useKeyboardHeight.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
모바일 온스크린 키보드의 높이를 실시간으로 추적하는 리액트 훅이에요. 키보드가 나타나거나 사라지거나 크기가 변경될 때 자동으로 업데이트돼요.
44

5-
## Interface
5+
## 인터페이스
66

77
```ts
88
function useKeyboardHeight(

packages/mobile/src/hooks/useAvoidKeyboard/ko/useAvoidKeyboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
하단 고정 요소가 온스크린 키보드를 자연스럽게 피할 수 있도록 도와주는 리액트 훅이에요. 키보드가 나타나면 `transform`을 사용해 요소를 위로 부드럽게 이동시켜요.
44

5-
## Interface
5+
## 인터페이스
66

77
```ts
88
function useAvoidKeyboard(

packages/mobile/src/hooks/useSafeAreaInset/ko/useSafeAreaInset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Safe Area Inset은 디바이스별 UI 요소를 고려해요:
88
- **bottom**: Face ID 디바이스의 홈 인디케이터
99
- **left/right**: 가로 모드에서의 둥근 모서리
1010

11-
## Interface
11+
## 인터페이스
1212

1313
```ts
1414
function useSafeAreaInset(): SafeAreaInset;

packages/mobile/src/utils/disableBodyScrollLock/ko/disableBodyScrollLock.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
function disableBodyScrollLock(): void;
99
```
1010

11-
### Parameters
11+
### 파라미터
1212

1313
### 반환 값
1414

0 commit comments

Comments
 (0)