PHP Classes

File: vendors/gentelella/vendors/select2/src/js/select2/i18n/it.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/select2/src/js/select2/i18n/it.js   Download  
File: vendors/gentelella/vendors/select2/src/js/select2/i18n/it.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 1,128 bytes
 

Contents

Class file image Download
define(function () { // Italian return { errorLoading: function () { return 'I risultati non possono essere caricati.'; }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum; var message = 'Per favore cancella ' + overChars + ' caratter'; if (overChars !== 1) { message += 'i'; } else { message += 'e'; } return message; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; var message = 'Per favore inserisci ' +remainingChars+ ' o pił caratteri'; return message; }, loadingMore: function () { return 'Caricando pił risultati?'; }, maximumSelected: function (args) { var message = 'Puoi selezionare solo ' + args.maximum + ' element'; if (args.maximum !== 1) { message += 'i'; } else { message += 'o'; } return message; }, noResults: function () { return 'Nessun risultato trovato'; }, searching: function () { return 'Sto cercando?'; } }; });