PHP Classes

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

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/select2/src/js/select2/i18n/ca.js   Download  
File: vendors/gentelella/vendors/select2/src/js/select2/i18n/ca.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,182 bytes
 

Contents

Class file image Download
define(function () { // Catalan return { errorLoading: function () { return 'La càrrega ha fallat'; }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum; var message = 'Si us plau, elimina ' + overChars + ' car'; if (overChars == 1) { message += 'àcter'; } else { message += 'àcters'; } return message; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; var message = 'Si us plau, introdueix ' + remainingChars + ' car'; if (remainingChars == 1) { message += 'àcter'; } else { message += 'àcters'; } return message; }, loadingMore: function () { return 'Carregant més resultats?'; }, maximumSelected: function (args) { var message = 'Només es pot seleccionar ' + args.maximum + ' element'; if (args.maximum != 1) { message += 's'; } return message; }, noResults: function () { return 'No s\'han trobat resultats'; }, searching: function () { return 'Cercant?'; } }; });