PHP Classes

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

Recommend this page to a friend!
  Classes of fathurrahman   mnTemplate   public/asset/vendor/select2/src/js/select2/i18n/sl.js   Download  
File: public/asset/vendor/select2/src/js/select2/i18n/sl.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,347 bytes
 

Contents

Class file image Download
define(function () { // Slovene return { errorLoading: function () { return 'Zadetkov iskanja ni bilo mogo?e nalo?iti.'; }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum; var message = 'Prosim zbri?ite ' + overChars + ' znak'; if (overChars == 2) { message += 'a'; } else if (overChars != 1) { message += 'e'; } return message; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; var message = 'Prosim vpi?ite ?e ' + remainingChars + ' znak'; if (remainingChars == 2) { message += 'a'; } else if (remainingChars != 1) { message += 'e'; } return message; }, loadingMore: function () { return 'Nalagam ve? zadetkov?'; }, maximumSelected: function (args) { var message = 'Ozna?ite lahko najve? ' + args.maximum + ' predmet'; if (args.maximum == 2) { message += 'a'; } else if (args.maximum != 1) { message += 'e'; } return message; }, noResults: function () { return 'Ni zadetkov.'; }, searching: function () { return 'I??em?'; }, removeAllItems: function () { return 'Odstranite vse elemente'; } }; });