|
| 1 | +{ |
| 2 | + "cheatsheet.anchors": "앵커", |
| 3 | + "cheatsheet.caret.title": "문자열 또는 라인의 앞 부분", |
| 4 | + "cheatsheet.caret.description": "문자열 또는 라인의 앞 부분을 탐색합니다.", |
| 5 | + "cheatsheet.dollar.title": "문자열 또는 라인의 끝 부분", |
| 6 | + "cheatsheet.dollar.description": "문자열 또는 라인의 끝 부분을 탐색합니다.", |
| 7 | + "cheatsheet.wordBoundary.title": "문장 경계선", |
| 8 | + "cheatsheet.wordBoundary.description": "전체 문장에서 모든 단어 또는 위치를 탐색합니다.", |
| 9 | + "cheatsheet.notWordBoundary.title": "문장 경계선 아님", |
| 10 | + "cheatsheet.notWordBoundary.description": "전체 문장에서 가장 먼저 보이는 단어 또는 위치를 탐색합니다.", |
| 11 | + |
| 12 | + "cheatsheet.characterClasses": "문자 클래스", |
| 13 | + "cheatsheet.characterSet.title": "문자 집합", |
| 14 | + "cheatsheet.characterSet.description": "집합내의 문자를 포함하는 단어를 모두 탐색합니다.", |
| 15 | + "cheatsheet.negatedCharacterSet.title": "부정 문자 집합", |
| 16 | + "cheatsheet.negatedCharacterSet.description": "집합내의 문자를 포함하지 않는 단어를 모두 탐색합니다.", |
| 17 | + "cheatsheet.range.title": "범위", |
| 18 | + "cheatsheet.range.description": "두 문자 사이중 자기 자신을 포함한 모든 문자를 탐색합니다.", |
| 19 | + "cheatsheet.dot.title": "점", |
| 20 | + "cheatsheet.dot.description": "줄 바꿈을 제외한 모든 문자를 탐색합니다.", |
| 21 | + "cheatsheet.word.title": "단어", |
| 22 | + "cheatsheet.word.description": "영어, 숫자, 밑줄을 포함한 모든 문자를 탐색합니다.", |
| 23 | + "cheatsheet.notWord.title": "단어 아님", |
| 24 | + "cheatsheet.notWord.description": "영어, 숫자, 밑줄이 아닌 모든 문자를 탐색합니다.", |
| 25 | + "cheatsheet.digit.title": "숫자", |
| 26 | + "cheatsheet.digit.description": "모든 숫자를 탐색합니다.", |
| 27 | + "cheatsheet.notDigit.title": "숫자 아님", |
| 28 | + "cheatsheet.notDigit.description": "숫자가 아닌 모든 문자를 탐색합니다.", |
| 29 | + "cheatsheet.space.title": "공백", |
| 30 | + "cheatsheet.space.description": "모든 공백을 탐색합니다", |
| 31 | + "cheatsheet.notSpace.title": "공백 아님", |
| 32 | + "cheatsheet.notSpace.description": "공백이 아닌 모든 문자를 탐색합니다.", |
| 33 | + |
| 34 | + "cheatsheet.flags": "플래그", |
| 35 | + "cheatsheet.caseInsensitiveFlag.title": "대소문자 무시", |
| 36 | + "cheatsheet.caseInsensitiveFlag.description": "표현식이 대소문자를 구별하도록 합니다.", |
| 37 | + "cheatsheet.globalFlag.title": "전체", |
| 38 | + "cheatsheet.globalFlag.description": "처음 문자열을 찾아내도 다음 탐색을 계속 진행하도록 합니다.", |
| 39 | + "cheatsheet.multilineFlag.title": "다중라인", |
| 40 | + "cheatsheet.multilineFlag.description": "사용하지 않을 경우, 줄의 시작과 끝은 전체 문자열의 시작과 끝과 같습니다. 각 문자 라인의 끝마다 작동하지 않습니다.", |
| 41 | + |
| 42 | + "cheatsheet.groupAndReferences": "그룹 & 참조", |
| 43 | + "cheatsheet.group.title": "그룹", |
| 44 | + "cheatsheet.group.description": "표현식을 그룹화 합니다.", |
| 45 | + "cheatsheet.reference.title": "참조", |
| 46 | + "cheatsheet.reference.description": "그룹화된 식을 참조합니다.", |
| 47 | + "cheatsheet.nonCapturingGroup.title": "캡처링 되지 않은 그룹", |
| 48 | + "cheatsheet.nonCapturingGroup.description": "참조할 수 없는 그룹식을 만듭니다.", |
| 49 | + |
| 50 | + "cheatsheet.lookarounds": "찾아보기", |
| 51 | + "cheatsheet.positiveLookahead.title": "앞에서 부터 맞는것 찾기", |
| 52 | + "cheatsheet.negativeLookahead.title": "앞에서 부터 다른것 찾기", |
| 53 | + "cheatsheet.positiveLookbehind.title": "뒤에서 부터 맞는것 찾기", |
| 54 | + "cheatsheet.negativeLookbehind.title": "뒤에서 부터 다른것 찾기", |
| 55 | + |
| 56 | + "cheatsheet.quantifiersAndAlternation": "수량 및 대체", |
| 57 | + "cheatsheet.plus.title": "더하기", |
| 58 | + "cheatsheet.plus.description": "표현식이 하나 또는 그 이상을 탐색하도록 합니다.", |
| 59 | + "cheatsheet.asterisk.title": "Astekrisk", |
| 60 | + "cheatsheet.asterisk.description": "표현식이 0개 또는 그 이상을 탐색하도록 합니다.", |
| 61 | + "cheatsheet.quantifier.title": "수량자", |
| 62 | + "cheatsheet.quantifier.description": "표현식이 명시된 범위를 탐색하도록 합니다.", |
| 63 | + "cheatsheet.optional.title": "선택적", |
| 64 | + "cheatsheet.optional.description": "표현식을 선택적 탐색을 하도록 합니다.", |
| 65 | + "cheatsheet.alternation.title": "대안", |
| 66 | + "cheatsheet.alternation.description": "닮은 것을 탐색합니다. 예약된 식중 하나와 일치할때 까지 탐색합니다." |
| 67 | +} |
0 commit comments