PHP Classes

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

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

Contents

Class file image Download
define(function () { // Danish return { errorLoading: function () { return 'Resultaterne kunne ikke indlæses.'; }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum; return 'Angiv venligst ' + overChars + ' tegn mindre'; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; return 'Angiv venligst ' + remainingChars + ' tegn mere'; }, loadingMore: function () { return 'Indlæser flere resultater?'; }, maximumSelected: function (args) { var message = 'Du kan kun vælge ' + args.maximum + ' emne'; if (args.maximum != 1) { message += 'r'; } return message; }, noResults: function () { return 'Ingen resultater fundet'; }, searching: function () { return 'Søger?'; }, removeAllItems: function () { return 'Fjern alle elementer'; } }; });