-
-
Notifications
You must be signed in to change notification settings - Fork 539
docs: usage, imperative에 대한 용어집 추가 #1448
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
7b27cc0
4343b18
b2e132a
30026e1
fff5b79
5f58ba6
af6a9b3
e640a5d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -603,6 +603,33 @@ module.exports = { | |||||
| note: '', | ||||||
| }, | ||||||
| }, | ||||||
| { | ||||||
| sources: [/\busage\b/i], | ||||||
| target: '용법', | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||||||
| meta: { | ||||||
| term: 'Usage', | ||||||
| discussions: [1425], | ||||||
| note: '', | ||||||
| }, | ||||||
| }, | ||||||
| { | ||||||
| sources: [/\btransitions?\b/], | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
앞선 리뷰와 동일합니다. |
||||||
| target: '트랜지션', | ||||||
| meta: { | ||||||
| term: 'transition', | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| discussions: [1425], | ||||||
| note: '', | ||||||
| }, | ||||||
| }, | ||||||
| { | ||||||
| sources: [/\bimperative\b/], | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| target: '명령형', | ||||||
| meta: { | ||||||
| term: 'imperative', | ||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| discussions: [1425], | ||||||
| note: '', | ||||||
| }, | ||||||
| }, | ||||||
| ], | ||||||
| }, | ||||||
| // untranslated: { | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
현재 구현에서는
i플래그를 기본적으로 추가하여 검사하고 있기 때문에,i플래그가 없어도 괜찮을 것 같아요.ko.react.dev/textlint/rules/translateGlossary.js
Lines 24 to 25 in 9123887
그리고 로직과는 상관 없지만 앞선 다른 정규표현식들이 모두 맨 첫 문자를 대문자로 표기했기에, 대문자
U로 정규식을 시작하면 더 좋을 것 같습니다.