46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
/*!
|
|
* Star Rating Korean Translations
|
|
*
|
|
* This file must be loaded after 'star-rating.js'. Patterns in braces '{}', or
|
|
* any HTML markup tags in the messages must not be converted or translated.
|
|
*
|
|
* NOTE: this file must be saved in UTF-8 encoding.
|
|
*
|
|
* bootstrap-star-rating v4.1.2
|
|
* http://plugins.krajee.com/star-rating
|
|
*
|
|
* Copyright: 2013 - 2021, Kartik Visweswaran, Krajee.com
|
|
*
|
|
* Licensed under the BSD 3-Clause
|
|
* https://github.com/kartik-v/bootstrap-star-rating/blob/master/LICENSE.md
|
|
*/
|
|
(function (factory) {
|
|
'use strict';
|
|
if (typeof define === 'function' && define.amd) {
|
|
define(['jquery'], factory);
|
|
} else if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
factory(require('jquery'));
|
|
} else {
|
|
factory(window.jQuery);
|
|
}
|
|
}(function ($) {
|
|
"use strict";
|
|
$.fn.ratingLocales['ko'] = {
|
|
defaultCaption: '{rating} 별점',
|
|
starCaptions: {
|
|
0.5: '0.5 점',
|
|
1: '1 점',
|
|
1.5: '1.5 점',
|
|
2: '2 점',
|
|
2.5: '2.5 점',
|
|
3: '3 점',
|
|
3.5: '3.5 점',
|
|
4: '4 점',
|
|
4.5: '4.5 점',
|
|
5: '5 점'
|
|
},
|
|
clearButtonTitle: '초기화',
|
|
clearCaption: '평점 없음'
|
|
};
|
|
}));
|