Skip to content
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

Add korean language #357

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/angular-filemanager.min.js

Large diffs are not rendered by default.

102 changes: 102 additions & 0 deletions src/js/providers/translations.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
persian: 'Persian',
polish: 'Polish',
dutch: 'Dutch',
korean: 'Korean',
confirm: 'Confirm',
cancel: 'Cancel',
close: 'Close',
Expand Down Expand Up @@ -1598,5 +1599,106 @@
download_as_zip: 'Scarica come file ZIP'
});

$translateProvider.translations('kr', {
filemanager: '파일 관리자',
language: '언어',
english: '영어',
spanish: '스페인어',
portuguese: '포르투갈어',
french: '프랑스어',
german: '독일어',
hebrew: '히브리어',
italian: '이탈리아어',
slovak: '슬로바키아어',
chinese_tw: '중국어 번체',
chinese_cn: '중국어 간체',
russian: '러시아어',
ukrainian: '우크라이나어',
turkish: '터키어',
persian: '페르시아어',
polish: '폴란드어',
dutch: '네덜란드어',
confirm: '확인',
cancel: '취소',
close: '닫기',
upload_files: '파일 업로드',
files_will_uploaded_to: '업로드 경로',
select_files: '파일 선택',
uploading: '업로딩',
permissions: '권한',
select_destination_folder: '폴더 선택',
source: '원본 경로',
destination: '대상 경로',
copy_file: '파일 복사',
sure_to_delete: '선택한 폴더 및 파일을 삭제 하시겠습니까?',
change_name_move: '이름 변경 / 이동',
enter_new_name_for: '새로운 이름 입력',
extract_item: '압축 풀기',
extraction_started: '압축풀기 작업이 시작되었습니다. (작업은 백그라운드에서 진행됩니다.)',
compression_started: '폴더압축 작업이 시작되었습니다. (작업은 백그라운드에서 진행됩니다.)',
enter_folder_name_for_extraction: '압축 해제 할 폴더명 입력',
enter_file_name_for_compression: '압축 파일 이름 입력',
toggle_fullscreen: '전체 화면',
edit_file: '파일 내용 수정',
file_content: '파일 내용',
loading: '로딩중',
search: '검색',
create_folder: '새폴더',
create: '생성',
folder_name: '폴더명',
upload: '업로드',
change_permissions: '권한 변경',
change: '변경',
details: '상세보기',
icons: '아이콘',
list: '목록',
name: '이름',
size: '크기',
actions: '최근 작업',
date: '날짜',
selection: '선택된 폴더 및 파일',
no_files_in_folder: '파일 목록이 없습니다.',
no_folders_in_folder: '하위 폴더 목록이 없습니다.',
select_this: '선택',
go_back: '뒤로',
wait: '대기중',
move: '이동',
download: '다운로드',
view_item: '보기',
remove: '삭제',
edit: '수정',
save: '저장',
copy: '복사',
rename: '이름 변경',
extract: '압축 풀기',
compress: '압축 하기',
error_invalid_filename: '파일 이름이 잘못된 형식이거나 이미 존재하는 파일 이름입니다. 다른 이름으로 입력해 주세요.',
error_modifying: '파일 수정중 오류가 발생하였습니다.',
error_deleting: '파일 및 폴더 삭제중 오류가 발생하였습니다.',
error_renaming: '파일 이름 변경 중 오류가 발생하였습니다.',
error_copying: '파일 복사 중 오류가 발생하였습니다.',
error_compressing: '폴더 및 파일을 압축하는 도중 오류가 발생하였습니다.',
error_extracting: '파일 압축을 푸는 도중 오류가 발생하였습니다.',
error_creating_folder: '폴더 생성 중 오류가 발생하였습니다.',
error_getting_content: '파일 내용을 가져오는 도중 오류가 발생하였습니다.',
error_changing_perms: '권한 변경 중 오류가 발생하였습니다.',
error_uploading_files: '파일 업로드 중 오류가 발생하였습니다.',
sure_to_start_compression_with: '폴더 및 파일 압축을 하시겠습니까?',
owner: '소유자',
group: '그룹',
others: '기타',
read: '읽기',
write: '쓰기',
exec: '실행',
original: '변경 전',
changes: '변경 후',
recursive: '하위 폴더 및 파일 포함 변경',
preview: '미리보기',
open: '열기',
these_elements: '({{total}}개 파일 및 폴더)',
new_folder: '새 폴더',
download_as_zip: 'ZIP 파일 다운로드'
});

}]);
})(angular);
1 change: 1 addition & 0 deletions src/templates/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
<li role="presentation"><a role="menuitem" tabindex="-1" href="" ng-click="changeLanguage('tr')">Türkçe</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="" ng-click="changeLanguage('fa')">فارسی</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="" ng-click="changeLanguage('pl')">Polski</a></li>
<li role="presentation"><a role="menuitem" tabindex="-1" href="" ng-click="changeLanguage('kr')">한국어</a></li>
</ul>
</div>

Expand Down