PHP Classes

File: vendors/select2/src/js/select2/i18n/uk.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/select2/src/js/select2/i18n/uk.js   Download  
File: vendors/select2/src/js/select2/i18n/uk.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 1,371 bytes
 

Contents

Class file image Download
define(function () { // Ukranian function ending (count, one, couple, more) { if (count % 100 > 10 && count % 100 < 15) { return more; } if (count % 10 === 1) { return one; } if (count % 10 > 1 && count % 10 < 5) { return couple; } return more; } return { errorLoading: function () { return '????????? ??????????? ??????????'; }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum; return '???? ?????, ???????? ' + overChars + ' ' + ending(args.maximum, '??????', '??????', '?????'); }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; return '???? ?????, ??????? ' + remainingChars + ' ??? ?????? ?????'; }, loadingMore: function () { return '???????????? ????? ????????????'; }, maximumSelected: function (args) { return '?? ?????? ??????? ???? ' + args.maximum + ' ' + ending(args.maximum, '?????', '??????', '???????'); }, noResults: function () { return '?????? ?? ????????'; }, searching: function () { return '??????'; } }; });