Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
vendors
/
select2
/
src
/
js
/
select2
/
i18n
:
gl.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
define(function () { // Galician return { inputTooLong: function (args) { var overChars = args.input.length - args.maximum; var message = 'Elimine '; if (overChars === 1) { message += 'un carácter'; } else { message += overChars + ' caracteres'; } return message; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; var message = 'Engada '; if (remainingChars === 1) { message += 'un carácter'; } else { message += remainingChars + ' caracteres'; } return message; }, loadingMore: function () { return 'Cargando máis resultados…'; }, maximumSelected: function (args) { var message = 'Só pode '; if (args.maximum === 1) { message += 'un elemento'; } else { message += args.maximum + ' elementos'; } return message; }, noResults: function () { return 'Non se atoparon resultados'; }, searching: function () { return 'Buscando…'; } }; });