~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to web/theme/default/libraries/bootstrap-select/js/i18n/defaults-nb_NO.js

  • Committer: GitHub
  • Author(s): Dan Garner
  • Date: 2018-06-20 16:27:37 UTC
  • mfrom: (652)
  • mto: This revision was merged to the branch mainline in revision 653.
  • Revision ID: git-v1:1a1ca01506202d782ed245fa27b6ce6c32f0a216
Merge branch 'release18' into bugfix/1.8.10-pack2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*!
2
 
 * Bootstrap-select v1.12.4 (http://silviomoreto.github.io/bootstrap-select)
3
 
 *
4
 
 * Copyright 2013-2017 bootstrap-select
5
 
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
6
 
 */
7
 
 
8
 
(function (root, factory) {
9
 
  if (typeof define === 'function' && define.amd) {
10
 
    // AMD. Register as an anonymous module unless amdModuleId is set
11
 
    define(["jquery"], function (a0) {
12
 
      return (factory(a0));
13
 
    });
14
 
  } else if (typeof module === 'object' && module.exports) {
15
 
    // Node. Does not work with strict CommonJS, but
16
 
    // only CommonJS-like environments that support module.exports,
17
 
    // like Node.
18
 
    module.exports = factory(require("jquery"));
19
 
  } else {
20
 
    factory(root["jQuery"]);
21
 
  }
22
 
}(this, function (jQuery) {
23
 
 
24
 
(function ($) {
25
 
  $.fn.selectpicker.defaults = {
26
 
    noneSelectedText: 'Ingen valgt',
27
 
    noneResultsText: 'Søket gir ingen treff {0}',
28
 
    countSelectedText: function (numSelected, numTotal) {
29
 
      return (numSelected == 1) ? "{0} alternativ valgt" : "{0} alternativer valgt";
30
 
    },
31
 
    maxOptionsText: function (numAll, numGroup) {
32
 
      return [
33
 
        (numAll == 1) ? 'Grense nådd (maks {n} valg)' : 'Grense nådd (maks {n} valg)',
34
 
        (numGroup == 1) ? 'Grense for grupper nådd (maks {n} grupper)' : 'Grense for grupper nådd (maks {n} grupper)'
35
 
      ];
36
 
    },
37
 
    selectAllText: 'Merk alle',
38
 
    deselectAllText: 'Fjern alle',
39
 
    multipleSeparator: ', '
40
 
  };
41
 
})(jQuery);
42
 
 
43
 
 
44
 
}));