PHP Classes

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

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

 

Contents

Class file image Download
define(function () { // Icelandic return { inputTooLong: function (args) { var overChars = args.input.length - args.maximum; var message = 'Vinsamlegast styttið texta um ' + overChars + ' staf'; if (overChars <= 1) { return message; } return message + 'i'; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; var message = 'Vinsamlegast skrifið ' + remainingChars + ' staf'; if (remainingChars > 1) { message += 'i'; } message += ' í viðbót'; return message; }, loadingMore: function () { return 'Sæki fleiri niðurstöður?'; }, maximumSelected: function (args) { return 'Þú getur aðeins valið ' + args.maximum + ' atriði'; }, noResults: function () { return 'Ekkert fannst'; }, searching: function () { return 'Leita?'; }, removeAllItems: function () { return 'Fjarlægðu öll atriði'; } }; });