PHP Classes

File: public/asset/vendor/select2/src/js/select2/i18n/et.js

Recommend this page to a friend!
  Classes of fathurrahman   mnTemplate   public/asset/vendor/select2/src/js/select2/i18n/et.js   Download  
File: public/asset/vendor/select2/src/js/select2/i18n/et.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: mnTemplate
Route HTTP requests to callback functions
Author: By
Last change:
Date: 1 year ago
Size: 1,150 bytes
 

Contents

Class file image Download
define(function () { // Estonian return { inputTooLong: function (args) { var overChars = args.input.length - args.maximum; var message = 'Sisesta ' + overChars + ' täht'; if (overChars != 1) { message += 'e'; } message += ' vähem'; return message; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; var message = 'Sisesta ' + remainingChars + ' täht'; if (remainingChars != 1) { message += 'e'; } message += ' rohkem'; return message; }, loadingMore: function () { return 'Laen tulemusi?'; }, maximumSelected: function (args) { var message = 'Saad vaid ' + args.maximum + ' tulemus'; if (args.maximum == 1) { message += 'e'; } else { message += 't'; } message += ' valida'; return message; }, noResults: function () { return 'Tulemused puuduvad'; }, searching: function () { return 'Otsin?'; }, removeAllItems: function () { return 'Eemalda kõik esemed'; } }; });