فهرست منبع

Fix #271: Add Dutch translations

Kartik Visweswaran 10 سال پیش
والد
کامیت
5fb5a3f3d4
2فایلهای تغییر یافته به همراه4 افزوده شده و 3 حذف شده
  1. 1 0
      CHANGE.md
  2. 3 3
      js/fileinput_locale_nl.js

+ 1 - 0
CHANGE.md

@@ -23,6 +23,7 @@ version 4.1.9
 19. (enh #264): Validate input type of file before initializing plugin.
 20. (enh #269): Add Turkish translations.
 21. (enh #270): Add Portugese translations.
+22. (enh #271): Add Dutch translations.
 
 version 4.1.8
 =============

+ 3 - 3
js/fileinput_locale_nl.js

@@ -1,5 +1,5 @@
 /*!
- * FileInput <nl> Translations
+ * FileInput Dutch Translations
  *
  * This file must be loaded after 'fileinput.js'. Patterns in braces '{}', or
  * any HTML markup tags in the messages must not be converted or translated.
@@ -11,7 +11,7 @@
 (function ($) {
     "use strict";
 
-    $.fn.fileinput.locales._LANG_ = {
+    $.fn.fileinput.locales.nl = {
         fileSingle: 'bestand',
         filePlural: 'bestanden',
         browseLabel: 'Zoek &hellip;',
@@ -39,5 +39,5 @@
         dropZoneTitle: 'Drag & drop bestanden hier &hellip;'
     };
 
-    $.extend($.fn.fileinput.defaults, $.fn.fileinput.locales._LANG_);
+    $.extend($.fn.fileinput.defaults, $.fn.fileinput.locales.nl);
 })(window.jQuery);