Skip to content

Commit

Permalink
Added translation from yanickrochon#54
Browse files Browse the repository at this point in the history
  • Loading branch information
yanickrochon committed Apr 3, 2013
1 parent 9104bb8 commit f0329e7
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions js/locales/jquery.uix.multiselect_nl.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/*
* jQuery UI Multiselect 2.0
*
* Authors:
* Yanick Rochon (yanick.rochon[at]gmail[dot]com)
*
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* http://mind2soft.com/labs/jquery/multiselect/
*
*
* Localization : NL
*
*/

(function($) {

$.uix.multiselect.i18n['nl'] = {
itemsSelected_nil: 'Geen geselecteerde items', // 0
itemsSelected: '{count} geselecteerde item', // 0, 1
itemsSelected_plural: '{count} geselecteerde items', // n
//itemsSelected_plural_two: ... // 2
//itemsSelected_plural_few: ... // 3, 4
itemsAvailable_nil: 'Geen item beschikbaar',
itemsAvailable: '{count} beschikbare item',
itemsAvailable_plural: '{count} beschikbare items',
//itemsAvailable_plural_two: ...
//itemsAvailable_plural_few: ...
itemsFiltered_nil: 'Geen gefilterde item',
itemsFiltered: '{count} item gefilterd',
itemsFiltered_plural: '{count} items fgeilterd',
//itemsFiltered_plural_two: ...
//itemsFiltered_plural_few: ...
selectAll: 'Selecteer Alles',
deselectAll: 'Deselecteer Alles',
search: 'Zoek opties',
collapseGroup: 'Klap groep in',
expandGroup: 'Klap Group uit',
selectAllGroup: 'Selecteer alle groepen',
deselectAllGroup: 'Deselecteer alle groepen'
};

// link locales
$.uix.multiselect.i18n['nl_NL'] = $.uix.multiselect.i18n['nl'];
// ...

})(jQuery);

0 comments on commit f0329e7

Please sign in to comment.