Skip to content

Commit 24c8a19

Browse files
committed
Merge pull request select2#1445 from spoqa/master
Korean Translation.
2 parents 3ab1aaf + 4405617 commit 24c8a19

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

select2_locale_ko.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* Select2 <Language> translation.
3+
*
4+
* Author: Swen Mun <longfinfunnel@gmail.com>
5+
*/
6+
(function ($) {
7+
"use strict";
8+
9+
$.extend($.fn.select2.defaults, {
10+
formatNoMatches: function () { return "결과 없음"; },
11+
formatInputTooShort: function (input, min) { var n = min - input.length; return "너무 짧습니다. "+n+"글자 더 입력해주세요."; },
12+
formatInputTooLong: function (input, max) { var n = input.length - max; return "너무 깁니다. "+n+"글자 지워주세요."; },
13+
formatSelectionTooBig: function (limit) { return "최대 "+limit+"개까지만 선택하실 수 있습니다."; },
14+
formatLoadMore: function (pageNumber) { return "불러오는 중…"; },
15+
formatSearching: function () { return "검색 중…"; }
16+
});
17+
})(jQuery);

0 commit comments

Comments
 (0)