PHP Classes

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

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/select2/src/js/select2/i18n/ru.js   Download  
File: vendors/select2/src/js/select2/i18n/ru.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,527 bytes
 

Contents

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