PHP Classes

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

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

Contents

Class file image Download
define(function () { // Romanian return { errorLoading: function () { return 'Rezultatele nu au putut fi inc?rcate.'; }, inputTooLong: function (args) { var overChars = args.input.length - args.maximum; var message = 'V? rug?m s? ?terge?i' + overChars + ' caracter'; if (overChars !== 1) { message += 'e'; } return message; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; var message = 'V? rug?m s? introduce?i ' + remainingChars + ' sau mai multe caractere'; return message; }, loadingMore: function () { return 'Se încarc? mai multe rezultate?'; }, maximumSelected: function (args) { var message = 'Ave?i voie s? selecta?i cel mult ' + args.maximum; message += ' element'; if (args.maximum !== 1) { message += 'e'; } return message; }, noResults: function () { return 'Nu au fost g?site rezultate'; }, searching: function () { return 'C?utare?'; }, removeAllItems: function () { return 'Elimina?i toate elementele'; } }; });