PHP Classes

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

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

Contents

Class file image Download
define(function () { // Galician return { errorLoading: function () { return 'Non foi posíbel cargar os resultados.'; }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum; if (overChars === 1) { return 'Elimine un carácter'; } return 'Elimine ' + overChars + ' caracteres'; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; if (remainingChars === 1) { return 'Engada un carácter'; } return 'Engada ' + remainingChars + ' caracteres'; }, loadingMore: function () { return 'Cargando máis resultados?'; }, maximumSelected: function (args) { if (args.maximum === 1) { return 'Só pode seleccionar un elemento'; } return 'Só pode seleccionar ' + args.maximum + ' elementos'; }, noResults: function () { return 'Non se atoparon resultados'; }, searching: function () { return 'Buscando?'; }, removeAllItems: function () { return 'Elimina todos os elementos'; } }; });