mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-03 06:27:02 +03:00
Original unminified source code (dev folder - js, css, less) (fixes #6) Grunt build system Multiple identities correction (fixes #9) Compose html editor (fixes #12) New general settings - Loading Description New warning about default admin password Split general and login screen settings
15 lines
865 B
JavaScript
15 lines
865 B
JavaScript
/**
|
|
* Select2 Spanish translation
|
|
*/
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
$.extend($.fn.select2.defaults, {
|
|
formatNoMatches: function () { return "No se encontraron resultados"; },
|
|
formatInputTooShort: function (input, min) { var n = min - input.length; return "Por favor, introduzca " + n + " car" + (n == 1? "á" : "a") + "cter" + (n == 1? "" : "es"); },
|
|
formatInputTooLong: function (input, max) { var n = input.length - max; return "Por favor, elimine " + n + " car" + (n == 1? "á" : "a") + "cter" + (n == 1? "" : "es"); },
|
|
formatSelectionTooBig: function (limit) { return "Sólo puede seleccionar " + limit + " elemento" + (limit == 1 ? "" : "s"); },
|
|
formatLoadMore: function (pageNumber) { return "Cargando más resultados..."; },
|
|
formatSearching: function () { return "Buscando..."; }
|
|
});
|
|
})(jQuery);
|