-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into zack/521-default-lang-bug
- Loading branch information
Showing
31 changed files
with
298 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Python package | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3] | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install isso dependencies | ||
run: python setup.py develop | ||
- name: Install test suite dependencies | ||
run: pip3 install nose | ||
- name: Run test suite | ||
run: make test | ||
env: | ||
PYTHONHASHSEED: random | ||
- name: Install style check dependencies | ||
run: pip3 install flake8 | ||
- name: Run style check | ||
run: make flakes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
define({ | ||
"postbox-text": "여기에 댓글을 입력해주세요(최소 3문자 이상)", | ||
"postbox-author": "이름 (선택)", | ||
"postbox-email": "이메일 (선택)", | ||
"postbox-website": "웹사이트 (선택)", | ||
"postbox-preview": "미리보기", | ||
"postbox-edit": "수정", | ||
"postbox-submit": "댓글쓰기", | ||
"postbox-notification": "댓글이 달리면 이메일로 알립니다", | ||
|
||
"num-comments": "한 개의 댓글\n{{ n }} 개의 댓글", | ||
"no-comments": "아직 댓글이 없습니다", | ||
"atom-feed": "Atom 피드", | ||
|
||
"comment-reply": "댓글", | ||
"comment-edit": "수정", | ||
"comment-save": "저장", | ||
"comment-delete": "삭제", | ||
"comment-confirm": "확인", | ||
"comment-close": "닫기", | ||
"comment-cancel": "취소", | ||
"comment-deleted": "댓글이 삭제됨.", | ||
"comment-queued": "검토 대기 중인 댓글.", | ||
"comment-anonymous": "익명", | ||
"comment-hidden": "{{ n }} 개의 숨김 댓글", | ||
|
||
"date-now": "방금 전", | ||
"date-minute": "1 분 전\n{{ n }} 분 전", | ||
"date-hour": "1 시간 전\n{{ n }} 시간 전", | ||
"date-day": "어제\n{{ n }} 일 전", | ||
"date-week": "저번 주\n{{ n }} 주 전", | ||
"date-month": "저번 달\n{{ n }} 개월 전", | ||
"date-year": "작년\n{{ n }} 년 전" | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.