PHP Classes

File: vendors/select2/src/js/select2/i18n/vi.js

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

Contents

Class file image Download
define(function () { // Vietnamese return { inputTooLong: function (args) { var overChars = args.input.length - args.maximum; var message = 'Vui lòng nh?p ít h?n ' + overChars + ' ký t?'; if (overChars != 1) { message += 's'; } return message; }, inputTooShort: function (args) { var remainingChars = args.minimum - args.input.length; var message = 'Vui lòng nh?p nhi?u h?n ' + remainingChars + ' ký t?"'; return message; }, loadingMore: function () { return '?ang l?y thêm k?t qu??'; }, maximumSelected: function (args) { var message = 'Ch? có th? ch?n ???c ' + args.maximum + ' l?a ch?n'; return message; }, noResults: function () { return 'Không tìm th?y k?t qu?'; }, searching: function () { return '?ang tìm?'; } }; });