fnschool 20250109.80500.803__py3-none-any.whl → 20251011.80531.840__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fnschool might be problematic. Click here for more details.
- fnschoo1/__init__.py +52 -0
- fnschoo1/canteen/admin.py +3 -0
- fnschoo1/canteen/apps.py +6 -0
- fnschoo1/canteen/forms.py +84 -0
- fnschoo1/canteen/migrations/0001_initial.py +119 -0
- fnschoo1/canteen/migrations/0002_ingredient_is_disabled.py +20 -0
- fnschoo1/canteen/migrations/0003_consumption_is_disabled_alter_ingredient_is_disabled.py +23 -0
- fnschoo1/canteen/migrations/0004_alter_ingredient_name_category_and_more.py +66 -0
- fnschoo1/canteen/migrations/0005_alter_category_created_at_alter_category_name_and_more.py +41 -0
- fnschoo1/canteen/migrations/0006_category_is_disabled_alter_category_user_and_more.py +49 -0
- fnschoo1/canteen/migrations/0007_alter_consumption_amount_used_and_more.py +30 -0
- fnschoo1/canteen/migrations/0008_category_abbreviation_mealtype.py +67 -0
- fnschoo1/canteen/migrations/0009_alter_category_abbreviation_and_more.py +55 -0
- fnschoo1/canteen/migrations/0010_alter_consumption_options_alter_ingredient_options_and_more.py +215 -0
- fnschoo1/canteen/migrations/0011_category_pin_to_consumptions_top.py +23 -0
- fnschoo1/canteen/migrations/0012_alter_ingredient_storage_date.py +18 -0
- fnschoo1/canteen/models.py +179 -0
- fnschoo1/canteen/templates/canteen/category/create.html +17 -0
- fnschoo1/canteen/templates/canteen/category/delete.html +61 -0
- fnschoo1/canteen/templates/canteen/category/list.html +63 -0
- fnschoo1/canteen/templates/canteen/category/update.html +23 -0
- fnschoo1/canteen/templates/canteen/close.html +11 -0
- fnschoo1/canteen/templates/canteen/consumption/_create.html +19 -0
- fnschoo1/canteen/templates/canteen/consumption/create.html +456 -0
- fnschoo1/canteen/templates/canteen/ingredient/close.html +11 -0
- fnschoo1/canteen/templates/canteen/ingredient/create.html +19 -0
- fnschoo1/canteen/templates/canteen/ingredient/create_one.html +17 -0
- fnschoo1/canteen/templates/canteen/ingredient/delete.html +41 -0
- fnschoo1/canteen/templates/canteen/ingredient/list.html +128 -0
- fnschoo1/canteen/templates/canteen/ingredient/update.html +23 -0
- fnschoo1/canteen/templates/canteen/meal_type/create.html +17 -0
- fnschoo1/canteen/templates/canteen/meal_type/delete.html +56 -0
- fnschoo1/canteen/templates/canteen/meal_type/list.html +59 -0
- fnschoo1/canteen/templates/canteen/meal_type/update.html +23 -0
- fnschoo1/canteen/tests.py +3 -0
- fnschoo1/canteen/urls.py +116 -0
- fnschoo1/canteen/views.py +814 -0
- fnschoo1/canteen/workbook/generate.py +2098 -0
- fnschoo1/db.sqlite3 +0 -0
- fnschoo1/fnschool/__init__.py +13 -0
- fnschoo1/fnschool/asgi.py +16 -0
- fnschoo1/fnschool/settings.py +167 -0
- fnschoo1/fnschool/templatetags/fnschool_tags.py +27 -0
- fnschoo1/fnschool/urls.py +30 -0
- fnschoo1/fnschool/views.py +9 -0
- fnschoo1/fnschool/wsgi.py +16 -0
- fnschoo1/locale/en/LC_MESSAGES/django.mo +0 -0
- fnschoo1/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- fnschoo1/manage.py +25 -0
- fnschoo1/profiles/admin.py +27 -0
- fnschoo1/profiles/apps.py +12 -0
- fnschoo1/profiles/forms.py +67 -0
- fnschoo1/profiles/migrations/0001_initial.py +192 -0
- fnschoo1/profiles/migrations/0002_alter_profile_bio.py +20 -0
- fnschoo1/profiles/migrations/0003_alter_profile_options_alter_profile_address_and_more.py +67 -0
- fnschoo1/profiles/migrations/0004_profile_gender.py +26 -0
- fnschoo1/profiles/migrations/0005_alter_profile_gender.py +23 -0
- fnschoo1/profiles/models.py +60 -0
- fnschoo1/profiles/signals.py +20 -0
- fnschoo1/profiles/templates/profiles/create.html +16 -0
- fnschoo1/profiles/templates/profiles/detail.html +14 -0
- fnschoo1/profiles/templates/profiles/edit.html +12 -0
- fnschoo1/profiles/templates/profiles/log_in.html +20 -0
- fnschoo1/profiles/templates/profiles/log_out.html +12 -0
- fnschoo1/profiles/tests.py +3 -0
- fnschoo1/profiles/urls.py +15 -0
- fnschoo1/profiles/views.py +63 -0
- fnschoo1/static/css/bootstrap.min.css +11776 -0
- fnschoo1/static/css/fnschool.css +26 -0
- fnschoo1/static/js/bootstrap.bundle.min.js +4223 -0
- fnschoo1/static/js/bootstrap.min.js +2919 -0
- fnschoo1/static/js/fnschool.js +84 -0
- fnschoo1/static/js/jquery.min.js +5413 -0
- fnschoo1/static/js/jquery.slim.min.js +4331 -0
- fnschoo1/static/js/popper.min.js +1306 -0
- fnschoo1/static_collected/admin/css/autocomplete.css +377 -0
- fnschoo1/static_collected/admin/css/base.css +1224 -0
- fnschoo1/static_collected/admin/css/changelists.css +334 -0
- fnschoo1/static_collected/admin/css/dark_mode.css +136 -0
- fnschoo1/static_collected/admin/css/dashboard.css +30 -0
- fnschoo1/static_collected/admin/css/forms.css +546 -0
- fnschoo1/static_collected/admin/css/login.css +62 -0
- fnschoo1/static_collected/admin/css/nav_sidebar.css +145 -0
- fnschoo1/static_collected/admin/css/responsive.css +1043 -0
- fnschoo1/static_collected/admin/css/responsive_rtl.css +84 -0
- fnschoo1/static_collected/admin/css/rtl.css +311 -0
- fnschoo1/static_collected/admin/css/vendor/select2/select2.css +708 -0
- fnschoo1/static_collected/admin/css/vendor/select2/select2.min.css +1 -0
- fnschoo1/static_collected/admin/css/widgets.css +639 -0
- fnschoo1/static_collected/admin/js/SelectBox.js +128 -0
- fnschoo1/static_collected/admin/js/SelectFilter2.js +503 -0
- fnschoo1/static_collected/admin/js/actions.js +232 -0
- fnschoo1/static_collected/admin/js/admin/DateTimeShortcuts.js +496 -0
- fnschoo1/static_collected/admin/js/admin/RelatedObjectLookups.js +276 -0
- fnschoo1/static_collected/admin/js/autocomplete.js +33 -0
- fnschoo1/static_collected/admin/js/calendar.js +251 -0
- fnschoo1/static_collected/admin/js/cancel.js +29 -0
- fnschoo1/static_collected/admin/js/change_form.js +21 -0
- fnschoo1/static_collected/admin/js/collapse.js +43 -0
- fnschoo1/static_collected/admin/js/core.js +174 -0
- fnschoo1/static_collected/admin/js/filters.js +37 -0
- fnschoo1/static_collected/admin/js/inlines.js +439 -0
- fnschoo1/static_collected/admin/js/jquery.init.js +8 -0
- fnschoo1/static_collected/admin/js/nav_sidebar.js +81 -0
- fnschoo1/static_collected/admin/js/popup_response.js +24 -0
- fnschoo1/static_collected/admin/js/prepopulate.js +43 -0
- fnschoo1/static_collected/admin/js/prepopulate_init.js +20 -0
- fnschoo1/static_collected/admin/js/theme.js +57 -0
- fnschoo1/static_collected/admin/js/urlify.js +529 -0
- fnschoo1/static_collected/admin/js/vendor/jquery/jquery.js +10913 -0
- fnschoo1/static_collected/admin/js/vendor/jquery/jquery.min.js +2 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/af.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ar.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/az.js +33 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/bg.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/bn.js +39 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/bs.js +48 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ca.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/cs.js +62 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/da.js +37 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/de.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/dsb.js +51 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/el.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/en.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/es.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/et.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/eu.js +45 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/fa.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/fi.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/fr.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/gl.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/he.js +44 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hi.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hr.js +45 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hsb.js +51 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hu.js +44 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/hy.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/id.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/is.js +37 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/it.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ja.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ka.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/km.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ko.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/lt.js +45 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/lv.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/mk.js +42 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ms.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/nb.js +38 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ne.js +44 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/nl.js +46 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/pl.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ps.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/pt-BR.js +39 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/pt.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ro.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/ru.js +48 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sk.js +61 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sl.js +41 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sq.js +43 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sr-Cyrl.js +48 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sr.js +48 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/sv.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/th.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/tk.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/tr.js +40 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/uk.js +59 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/vi.js +37 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/zh-CN.js +36 -0
- fnschoo1/static_collected/admin/js/vendor/select2/i18n/zh-TW.js +33 -0
- fnschoo1/static_collected/admin/js/vendor/select2/select2.full.js +7115 -0
- fnschoo1/static_collected/admin/js/vendor/select2/select2.full.min.js +2 -0
- fnschoo1/static_collected/admin/js/vendor/xregexp/xregexp.js +4993 -0
- fnschoo1/static_collected/admin/js/vendor/xregexp/xregexp.min.js +160 -0
- fnschoo1/static_collected/css/bootstrap.min.css +11776 -0
- fnschoo1/static_collected/css/fnschool.css +26 -0
- fnschoo1/static_collected/js/bootstrap.bundle.min.js +4223 -0
- fnschoo1/static_collected/js/bootstrap.min.js +2919 -0
- fnschoo1/static_collected/js/fnschool.js +84 -0
- fnschoo1/static_collected/js/jquery.min.js +5413 -0
- fnschoo1/static_collected/js/jquery.slim.min.js +4331 -0
- fnschoo1/static_collected/js/popper.min.js +1306 -0
- fnschoo1/templates/base/_css.html +1 -0
- fnschoo1/templates/base/_js.html +15 -0
- fnschoo1/templates/base/content.html +30 -0
- fnschoo1/templates/base/header_content_footer.html +35 -0
- fnschoo1/templates/close.html +11 -0
- fnschoo1/templates/home.html +51 -0
- fnschoo1/templates/includes/_footer.html +39 -0
- fnschoo1/templates/includes/_header.html +77 -0
- fnschoo1/templates/includes/_navigation.html +0 -0
- fnschoo1/templates/includes/_paginator.html +27 -0
- fnschoo1/templates/registration/logged_out.html +0 -0
- fnschoo1/templates/registration/login.html +0 -0
- fnschool-20251011.80531.840.dist-info/METADATA +179 -0
- fnschool-20251011.80531.840.dist-info/RECORD +207 -0
- {fnschool-20250109.80500.803.dist-info → fnschool-20251011.80531.840.dist-info}/WHEEL +1 -1
- fnschool-20251011.80531.840.dist-info/entry_points.txt +2 -0
- fnschool-20251011.80531.840.dist-info/top_level.txt +1 -0
- fnschool/__init__.py +0 -35
- fnschool/__main__.py +0 -16
- fnschool/app.py +0 -103
- fnschool/canteen/__init__.py +0 -3
- fnschool/canteen/__main__.py +0 -3
- fnschool/canteen/bill.py +0 -253
- fnschool/canteen/canteen.py +0 -1
- fnschool/canteen/canteen.toml +0 -61
- fnschool/canteen/config.py +0 -10
- fnschool/canteen/consuming.py +0 -53
- fnschool/canteen/currency.py +0 -17
- fnschool/canteen/data/bill.i18n.xlsx +0 -0
- fnschool/canteen/data/bill.xlsx +0 -0
- fnschool/canteen/data/consuming.xlsx +0 -0
- fnschool/canteen/data/purchase_list.xlsx +0 -0
- fnschool/canteen/entry.py +0 -40
- fnschool/canteen/food.py +0 -206
- fnschool/canteen/food_classes.py +0 -33
- fnschool/canteen/food_classes.toml +0 -64
- fnschool/canteen/operator.py +0 -91
- fnschool/canteen/path.py +0 -28
- fnschool/canteen/spreadsheet/base.py +0 -212
- fnschool/canteen/spreadsheet/consuming.py +0 -310
- fnschool/canteen/spreadsheet/consumingsum.py +0 -76
- fnschool/canteen/spreadsheet/cover.py +0 -64
- fnschool/canteen/spreadsheet/ctspreadsheet.py +0 -351
- fnschool/canteen/spreadsheet/food.py +0 -680
- fnschool/canteen/spreadsheet/inventory.py +0 -375
- fnschool/canteen/spreadsheet/merging.py +0 -340
- fnschool/canteen/spreadsheet/preconsuming.py +0 -329
- fnschool/canteen/spreadsheet/purchasing.py +0 -885
- fnschool/canteen/spreadsheet/purchasingsum.py +0 -110
- fnschool/canteen/spreadsheet/spreadsheet.py +0 -363
- fnschool/canteen/spreadsheet/translating.py +0 -12
- fnschool/canteen/spreadsheet/unwarehousing.py +0 -178
- fnschool/canteen/spreadsheet/unwarehousingsum.py +0 -11
- fnschool/canteen/spreadsheet/warehousing.py +0 -360
- fnschool/canteen/spreadsheet/workbook.py +0 -17
- fnschool/canteen/test.py +0 -97
- fnschool/config.py +0 -48
- fnschool/entry.py +0 -67
- fnschool/exam/__init__.py +0 -8
- fnschool/exam/data/parental_emails.xlsx +0 -0
- fnschool/exam/data/score.xlsx +0 -0
- fnschool/exam/email.py +0 -349
- fnschool/exam/entry.py +0 -36
- fnschool/exam/language.py +0 -19
- fnschool/exam/path.py +0 -24
- fnschool/exam/score.py +0 -1191
- fnschool/exam/subject.py +0 -20
- fnschool/exam/teacher.py +0 -54
- fnschool/external.py +0 -89
- fnschool/games/__init__.py +0 -1
- fnschool/games/__main__.py +0 -1
- fnschool/games/games.py +0 -1
- fnschool/inoutput.py +0 -97
- fnschool/language.py +0 -40
- fnschool/locales/en_US/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_CN/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_HK/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_SG/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/locales/zh_TW/LC_MESSAGES/fnschool.mo +0 -0
- fnschool/path.py +0 -45
- fnschool/test.py +0 -24
- fnschool/user.py +0 -262
- fnschool-20250109.80500.803.dist-info/METADATA +0 -342
- fnschool-20250109.80500.803.dist-info/RECORD +0 -78
- fnschool-20250109.80500.803.dist-info/entry_points.txt +0 -5
- fnschool-20250109.80500.803.dist-info/top_level.txt +0 -1
- /fnschool/canteen/consume.py → /fnschoo1/canteen/__init__.py +0 -0
- /fnschool/canteen/food_recount.toml → /fnschoo1/canteen/migrations/__init__.py +0 -0
- {fnschool/canteen/spreadsheet → fnschoo1/canteen/workbook}/__init__.py +0 -0
- /fnschool/exam/__main__.py → /fnschoo1/fnschool/templatetags/__init__.py +0 -0
- /fnschool/canteen/food_recounts.toml → /fnschoo1/profiles/__init__.py +0 -0
- /fnschool/canteen/warehouse.py → /fnschoo1/profiles/migrations/__init__.py +0 -0
- /fnschool/canteen/workbook.toml → /fnschoo1/templates/base/_content.html +0 -0
- {fnschool-20250109.80500.803.dist-info → fnschool-20251011.80531.840.dist-info/licenses}/LICENSE +0 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var e = jQuery.fn.select2.amd
|
|
6
|
+
;(e.define('select2/i18n/hu', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Az eredmények betöltése nem sikerült.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
return (
|
|
13
|
+
'Túl hosszú. ' +
|
|
14
|
+
(e.input.length - e.maximum) +
|
|
15
|
+
' karakterrel több, mint kellene.'
|
|
16
|
+
)
|
|
17
|
+
},
|
|
18
|
+
inputTooShort: function (e) {
|
|
19
|
+
return (
|
|
20
|
+
'Túl rövid. Még ' +
|
|
21
|
+
(e.minimum - e.input.length) +
|
|
22
|
+
' karakter hiányzik.'
|
|
23
|
+
)
|
|
24
|
+
},
|
|
25
|
+
loadingMore: function () {
|
|
26
|
+
return 'Töltés…'
|
|
27
|
+
},
|
|
28
|
+
maximumSelected: function (e) {
|
|
29
|
+
return 'Csak ' + e.maximum + ' elemet lehet kiválasztani.'
|
|
30
|
+
},
|
|
31
|
+
noResults: function () {
|
|
32
|
+
return 'Nincs találat.'
|
|
33
|
+
},
|
|
34
|
+
searching: function () {
|
|
35
|
+
return 'Keresés…'
|
|
36
|
+
},
|
|
37
|
+
removeAllItems: function () {
|
|
38
|
+
return 'Távolítson el minden elemet'
|
|
39
|
+
},
|
|
40
|
+
}
|
|
41
|
+
}),
|
|
42
|
+
e.define,
|
|
43
|
+
e.require)
|
|
44
|
+
})()
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/hy', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Արդյունքները հնարավոր չէ բեռնել։'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
return 'Խնդրում ենք հեռացնել ' + (n.input.length - n.maximum) + ' նշան'
|
|
13
|
+
},
|
|
14
|
+
inputTooShort: function (n) {
|
|
15
|
+
return (
|
|
16
|
+
'Խնդրում ենք մուտքագրել ' +
|
|
17
|
+
(n.minimum - n.input.length) +
|
|
18
|
+
' կամ ավել նշաններ'
|
|
19
|
+
)
|
|
20
|
+
},
|
|
21
|
+
loadingMore: function () {
|
|
22
|
+
return 'Բեռնվում են նոր արդյունքներ․․․'
|
|
23
|
+
},
|
|
24
|
+
maximumSelected: function (n) {
|
|
25
|
+
return 'Դուք կարող եք ընտրել առավելագույնը ' + n.maximum + ' կետ'
|
|
26
|
+
},
|
|
27
|
+
noResults: function () {
|
|
28
|
+
return 'Արդյունքներ չեն գտնվել'
|
|
29
|
+
},
|
|
30
|
+
searching: function () {
|
|
31
|
+
return 'Որոնում․․․'
|
|
32
|
+
},
|
|
33
|
+
removeAllItems: function () {
|
|
34
|
+
return 'Հեռացնել բոլոր տարրերը'
|
|
35
|
+
},
|
|
36
|
+
}
|
|
37
|
+
}),
|
|
38
|
+
n.define,
|
|
39
|
+
n.require)
|
|
40
|
+
})()
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/id', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Data tidak boleh diambil.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
return 'Hapuskan ' + (n.input.length - n.maximum) + ' huruf'
|
|
13
|
+
},
|
|
14
|
+
inputTooShort: function (n) {
|
|
15
|
+
return 'Masukkan ' + (n.minimum - n.input.length) + ' huruf lagi'
|
|
16
|
+
},
|
|
17
|
+
loadingMore: function () {
|
|
18
|
+
return 'Mengambil data…'
|
|
19
|
+
},
|
|
20
|
+
maximumSelected: function (n) {
|
|
21
|
+
return 'Anda hanya dapat memilih ' + n.maximum + ' pilihan'
|
|
22
|
+
},
|
|
23
|
+
noResults: function () {
|
|
24
|
+
return 'Tidak ada data yang sesuai'
|
|
25
|
+
},
|
|
26
|
+
searching: function () {
|
|
27
|
+
return 'Mencari…'
|
|
28
|
+
},
|
|
29
|
+
removeAllItems: function () {
|
|
30
|
+
return 'Hapus semua item'
|
|
31
|
+
},
|
|
32
|
+
}
|
|
33
|
+
}),
|
|
34
|
+
n.define,
|
|
35
|
+
n.require)
|
|
36
|
+
})()
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/is', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
inputTooLong: function (n) {
|
|
9
|
+
var t = n.input.length - n.maximum,
|
|
10
|
+
e = 'Vinsamlegast styttið texta um ' + t + ' staf'
|
|
11
|
+
return t <= 1 ? e : e + 'i'
|
|
12
|
+
},
|
|
13
|
+
inputTooShort: function (n) {
|
|
14
|
+
var t = n.minimum - n.input.length,
|
|
15
|
+
e = 'Vinsamlegast skrifið ' + t + ' staf'
|
|
16
|
+
return (t > 1 && (e += 'i'), (e += ' í viðbót'))
|
|
17
|
+
},
|
|
18
|
+
loadingMore: function () {
|
|
19
|
+
return 'Sæki fleiri niðurstöður…'
|
|
20
|
+
},
|
|
21
|
+
maximumSelected: function (n) {
|
|
22
|
+
return 'Þú getur aðeins valið ' + n.maximum + ' atriði'
|
|
23
|
+
},
|
|
24
|
+
noResults: function () {
|
|
25
|
+
return 'Ekkert fannst'
|
|
26
|
+
},
|
|
27
|
+
searching: function () {
|
|
28
|
+
return 'Leita…'
|
|
29
|
+
},
|
|
30
|
+
removeAllItems: function () {
|
|
31
|
+
return 'Fjarlægðu öll atriði'
|
|
32
|
+
},
|
|
33
|
+
}
|
|
34
|
+
}),
|
|
35
|
+
n.define,
|
|
36
|
+
n.require)
|
|
37
|
+
})()
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var e = jQuery.fn.select2.amd
|
|
6
|
+
;(e.define('select2/i18n/it', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'I risultati non possono essere caricati.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
var n = e.input.length - e.maximum,
|
|
13
|
+
t = 'Per favore cancella ' + n + ' caratter'
|
|
14
|
+
return (t += 1 !== n ? 'i' : 'e')
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (e) {
|
|
17
|
+
return (
|
|
18
|
+
'Per favore inserisci ' +
|
|
19
|
+
(e.minimum - e.input.length) +
|
|
20
|
+
' o più caratteri'
|
|
21
|
+
)
|
|
22
|
+
},
|
|
23
|
+
loadingMore: function () {
|
|
24
|
+
return 'Caricando più risultati…'
|
|
25
|
+
},
|
|
26
|
+
maximumSelected: function (e) {
|
|
27
|
+
var n = 'Puoi selezionare solo ' + e.maximum + ' element'
|
|
28
|
+
return (1 !== e.maximum ? (n += 'i') : (n += 'o'), n)
|
|
29
|
+
},
|
|
30
|
+
noResults: function () {
|
|
31
|
+
return 'Nessun risultato trovato'
|
|
32
|
+
},
|
|
33
|
+
searching: function () {
|
|
34
|
+
return 'Sto cercando…'
|
|
35
|
+
},
|
|
36
|
+
removeAllItems: function () {
|
|
37
|
+
return 'Rimuovi tutti gli oggetti'
|
|
38
|
+
},
|
|
39
|
+
}
|
|
40
|
+
}),
|
|
41
|
+
e.define,
|
|
42
|
+
e.require)
|
|
43
|
+
})()
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/ja', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return '結果が読み込まれませんでした'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
return n.input.length - n.maximum + ' 文字を削除してください'
|
|
13
|
+
},
|
|
14
|
+
inputTooShort: function (n) {
|
|
15
|
+
return (
|
|
16
|
+
'少なくとも ' +
|
|
17
|
+
(n.minimum - n.input.length) +
|
|
18
|
+
' 文字を入力してください'
|
|
19
|
+
)
|
|
20
|
+
},
|
|
21
|
+
loadingMore: function () {
|
|
22
|
+
return '読み込み中…'
|
|
23
|
+
},
|
|
24
|
+
maximumSelected: function (n) {
|
|
25
|
+
return n.maximum + ' 件しか選択できません'
|
|
26
|
+
},
|
|
27
|
+
noResults: function () {
|
|
28
|
+
return '対象が見つかりません'
|
|
29
|
+
},
|
|
30
|
+
searching: function () {
|
|
31
|
+
return '検索しています…'
|
|
32
|
+
},
|
|
33
|
+
removeAllItems: function () {
|
|
34
|
+
return 'すべてのアイテムを削除'
|
|
35
|
+
},
|
|
36
|
+
}
|
|
37
|
+
}),
|
|
38
|
+
n.define,
|
|
39
|
+
n.require)
|
|
40
|
+
})()
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/ka', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'მონაცემების ჩატვირთვა შეუძლებელია.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
return (
|
|
13
|
+
'გთხოვთ აკრიფეთ ' +
|
|
14
|
+
(n.input.length - n.maximum) +
|
|
15
|
+
' სიმბოლოთი ნაკლები'
|
|
16
|
+
)
|
|
17
|
+
},
|
|
18
|
+
inputTooShort: function (n) {
|
|
19
|
+
return (
|
|
20
|
+
'გთხოვთ აკრიფეთ ' + (n.minimum - n.input.length) + ' სიმბოლო ან მეტი'
|
|
21
|
+
)
|
|
22
|
+
},
|
|
23
|
+
loadingMore: function () {
|
|
24
|
+
return 'მონაცემების ჩატვირთვა…'
|
|
25
|
+
},
|
|
26
|
+
maximumSelected: function (n) {
|
|
27
|
+
return 'თქვენ შეგიძლიათ აირჩიოთ არაუმეტეს ' + n.maximum + ' ელემენტი'
|
|
28
|
+
},
|
|
29
|
+
noResults: function () {
|
|
30
|
+
return 'რეზულტატი არ მოიძებნა'
|
|
31
|
+
},
|
|
32
|
+
searching: function () {
|
|
33
|
+
return 'ძიება…'
|
|
34
|
+
},
|
|
35
|
+
removeAllItems: function () {
|
|
36
|
+
return 'ამოიღე ყველა ელემენტი'
|
|
37
|
+
},
|
|
38
|
+
}
|
|
39
|
+
}),
|
|
40
|
+
n.define,
|
|
41
|
+
n.require)
|
|
42
|
+
})()
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/km', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'មិនអាចទាញយកទិន្នន័យ'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
return 'សូមលុបចេញ ' + (n.input.length - n.maximum) + ' អក្សរ'
|
|
13
|
+
},
|
|
14
|
+
inputTooShort: function (n) {
|
|
15
|
+
return (
|
|
16
|
+
'សូមបញ្ចូល' + (n.minimum - n.input.length) + ' អក្សរ រឺ ច្រើនជាងនេះ'
|
|
17
|
+
)
|
|
18
|
+
},
|
|
19
|
+
loadingMore: function () {
|
|
20
|
+
return 'កំពុងទាញយកទិន្នន័យបន្ថែម...'
|
|
21
|
+
},
|
|
22
|
+
maximumSelected: function (n) {
|
|
23
|
+
return 'អ្នកអាចជ្រើសរើសបានតែ ' + n.maximum + ' ជម្រើសប៉ុណ្ណោះ'
|
|
24
|
+
},
|
|
25
|
+
noResults: function () {
|
|
26
|
+
return 'មិនមានលទ្ធផល'
|
|
27
|
+
},
|
|
28
|
+
searching: function () {
|
|
29
|
+
return 'កំពុងស្វែងរក...'
|
|
30
|
+
},
|
|
31
|
+
removeAllItems: function () {
|
|
32
|
+
return 'លុបធាតុទាំងអស់'
|
|
33
|
+
},
|
|
34
|
+
}
|
|
35
|
+
}),
|
|
36
|
+
n.define,
|
|
37
|
+
n.require)
|
|
38
|
+
})()
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/ko', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return '결과를 불러올 수 없습니다.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
return (
|
|
13
|
+
'너무 깁니다. ' + (n.input.length - n.maximum) + ' 글자 지워주세요.'
|
|
14
|
+
)
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (n) {
|
|
17
|
+
return (
|
|
18
|
+
'너무 짧습니다. ' +
|
|
19
|
+
(n.minimum - n.input.length) +
|
|
20
|
+
' 글자 더 입력해주세요.'
|
|
21
|
+
)
|
|
22
|
+
},
|
|
23
|
+
loadingMore: function () {
|
|
24
|
+
return '불러오는 중…'
|
|
25
|
+
},
|
|
26
|
+
maximumSelected: function (n) {
|
|
27
|
+
return '최대 ' + n.maximum + '개까지만 선택 가능합니다.'
|
|
28
|
+
},
|
|
29
|
+
noResults: function () {
|
|
30
|
+
return '결과가 없습니다.'
|
|
31
|
+
},
|
|
32
|
+
searching: function () {
|
|
33
|
+
return '검색 중…'
|
|
34
|
+
},
|
|
35
|
+
removeAllItems: function () {
|
|
36
|
+
return '모든 항목 삭제'
|
|
37
|
+
},
|
|
38
|
+
}
|
|
39
|
+
}),
|
|
40
|
+
n.define,
|
|
41
|
+
n.require)
|
|
42
|
+
})()
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/lt', [], function () {
|
|
7
|
+
function n(n, e, i, t) {
|
|
8
|
+
return n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)
|
|
9
|
+
? e
|
|
10
|
+
: n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)
|
|
11
|
+
? i
|
|
12
|
+
: t
|
|
13
|
+
}
|
|
14
|
+
return {
|
|
15
|
+
inputTooLong: function (e) {
|
|
16
|
+
var i = e.input.length - e.maximum,
|
|
17
|
+
t = 'Pašalinkite ' + i + ' simbol'
|
|
18
|
+
return (t += n(i, 'į', 'ius', 'ių'))
|
|
19
|
+
},
|
|
20
|
+
inputTooShort: function (e) {
|
|
21
|
+
var i = e.minimum - e.input.length,
|
|
22
|
+
t = 'Įrašykite dar ' + i + ' simbol'
|
|
23
|
+
return (t += n(i, 'į', 'ius', 'ių'))
|
|
24
|
+
},
|
|
25
|
+
loadingMore: function () {
|
|
26
|
+
return 'Kraunama daugiau rezultatų…'
|
|
27
|
+
},
|
|
28
|
+
maximumSelected: function (e) {
|
|
29
|
+
var i = 'Jūs galite pasirinkti tik ' + e.maximum + ' element'
|
|
30
|
+
return (i += n(e.maximum, 'ą', 'us', 'ų'))
|
|
31
|
+
},
|
|
32
|
+
noResults: function () {
|
|
33
|
+
return 'Atitikmenų nerasta'
|
|
34
|
+
},
|
|
35
|
+
searching: function () {
|
|
36
|
+
return 'Ieškoma…'
|
|
37
|
+
},
|
|
38
|
+
removeAllItems: function () {
|
|
39
|
+
return 'Pašalinti visus elementus'
|
|
40
|
+
},
|
|
41
|
+
}
|
|
42
|
+
}),
|
|
43
|
+
n.define,
|
|
44
|
+
n.require)
|
|
45
|
+
})()
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var e = jQuery.fn.select2.amd
|
|
6
|
+
;(e.define('select2/i18n/lv', [], function () {
|
|
7
|
+
function e(e, n, u, i) {
|
|
8
|
+
return 11 === e ? n : e % 10 == 1 ? u : i
|
|
9
|
+
}
|
|
10
|
+
return {
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
var u = n.input.length - n.maximum,
|
|
13
|
+
i = 'Lūdzu ievadiet par ' + u
|
|
14
|
+
return (i += ' simbol' + e(u, 'iem', 'u', 'iem')) + ' mazāk'
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (n) {
|
|
17
|
+
var u = n.minimum - n.input.length,
|
|
18
|
+
i = 'Lūdzu ievadiet vēl ' + u
|
|
19
|
+
return (i += ' simbol' + e(u, 'us', 'u', 'us'))
|
|
20
|
+
},
|
|
21
|
+
loadingMore: function () {
|
|
22
|
+
return 'Datu ielāde…'
|
|
23
|
+
},
|
|
24
|
+
maximumSelected: function (n) {
|
|
25
|
+
var u = 'Jūs varat izvēlēties ne vairāk kā ' + n.maximum
|
|
26
|
+
return (u += ' element' + e(n.maximum, 'us', 'u', 'us'))
|
|
27
|
+
},
|
|
28
|
+
noResults: function () {
|
|
29
|
+
return 'Sakritību nav'
|
|
30
|
+
},
|
|
31
|
+
searching: function () {
|
|
32
|
+
return 'Meklēšana…'
|
|
33
|
+
},
|
|
34
|
+
removeAllItems: function () {
|
|
35
|
+
return 'Noņemt visus vienumus'
|
|
36
|
+
},
|
|
37
|
+
}
|
|
38
|
+
}),
|
|
39
|
+
e.define,
|
|
40
|
+
e.require)
|
|
41
|
+
})()
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/mk', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
inputTooLong: function (n) {
|
|
9
|
+
var e =
|
|
10
|
+
(n.input.length,
|
|
11
|
+
n.maximum,
|
|
12
|
+
'Ве молиме внесете ' + n.maximum + ' помалку карактер')
|
|
13
|
+
return (1 !== n.maximum && (e += 'и'), e)
|
|
14
|
+
},
|
|
15
|
+
inputTooShort: function (n) {
|
|
16
|
+
var e =
|
|
17
|
+
(n.minimum,
|
|
18
|
+
n.input.length,
|
|
19
|
+
'Ве молиме внесете уште ' + n.maximum + ' карактер')
|
|
20
|
+
return (1 !== n.maximum && (e += 'и'), e)
|
|
21
|
+
},
|
|
22
|
+
loadingMore: function () {
|
|
23
|
+
return 'Вчитување резултати…'
|
|
24
|
+
},
|
|
25
|
+
maximumSelected: function (n) {
|
|
26
|
+
var e = 'Можете да изберете само ' + n.maximum + ' ставк'
|
|
27
|
+
return (1 === n.maximum ? (e += 'а') : (e += 'и'), e)
|
|
28
|
+
},
|
|
29
|
+
noResults: function () {
|
|
30
|
+
return 'Нема пронајдено совпаѓања'
|
|
31
|
+
},
|
|
32
|
+
searching: function () {
|
|
33
|
+
return 'Пребарување…'
|
|
34
|
+
},
|
|
35
|
+
removeAllItems: function () {
|
|
36
|
+
return 'Отстрани ги сите предмети'
|
|
37
|
+
},
|
|
38
|
+
}
|
|
39
|
+
}),
|
|
40
|
+
n.define,
|
|
41
|
+
n.require)
|
|
42
|
+
})()
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/ms', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Keputusan tidak berjaya dimuatkan.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
return 'Sila hapuskan ' + (n.input.length - n.maximum) + ' aksara'
|
|
13
|
+
},
|
|
14
|
+
inputTooShort: function (n) {
|
|
15
|
+
return (
|
|
16
|
+
'Sila masukkan ' + (n.minimum - n.input.length) + ' atau lebih aksara'
|
|
17
|
+
)
|
|
18
|
+
},
|
|
19
|
+
loadingMore: function () {
|
|
20
|
+
return 'Sedang memuatkan keputusan…'
|
|
21
|
+
},
|
|
22
|
+
maximumSelected: function (n) {
|
|
23
|
+
return 'Anda hanya boleh memilih ' + n.maximum + ' pilihan'
|
|
24
|
+
},
|
|
25
|
+
noResults: function () {
|
|
26
|
+
return 'Tiada padanan yang ditemui'
|
|
27
|
+
},
|
|
28
|
+
searching: function () {
|
|
29
|
+
return 'Mencari…'
|
|
30
|
+
},
|
|
31
|
+
removeAllItems: function () {
|
|
32
|
+
return 'Keluarkan semua item'
|
|
33
|
+
},
|
|
34
|
+
}
|
|
35
|
+
}),
|
|
36
|
+
n.define,
|
|
37
|
+
n.require)
|
|
38
|
+
})()
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var e = jQuery.fn.select2.amd
|
|
6
|
+
;(e.define('select2/i18n/nb', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Kunne ikke hente resultater.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
return 'Vennligst fjern ' + (e.input.length - e.maximum) + ' tegn'
|
|
13
|
+
},
|
|
14
|
+
inputTooShort: function (e) {
|
|
15
|
+
return (
|
|
16
|
+
'Vennligst skriv inn ' + (e.minimum - e.input.length) + ' tegn til'
|
|
17
|
+
)
|
|
18
|
+
},
|
|
19
|
+
loadingMore: function () {
|
|
20
|
+
return 'Laster flere resultater…'
|
|
21
|
+
},
|
|
22
|
+
maximumSelected: function (e) {
|
|
23
|
+
return 'Du kan velge maks ' + e.maximum + ' elementer'
|
|
24
|
+
},
|
|
25
|
+
noResults: function () {
|
|
26
|
+
return 'Ingen treff'
|
|
27
|
+
},
|
|
28
|
+
searching: function () {
|
|
29
|
+
return 'Søker…'
|
|
30
|
+
},
|
|
31
|
+
removeAllItems: function () {
|
|
32
|
+
return 'Fjern alle elementer'
|
|
33
|
+
},
|
|
34
|
+
}
|
|
35
|
+
}),
|
|
36
|
+
e.define,
|
|
37
|
+
e.require)
|
|
38
|
+
})()
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/ne', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'नतिजाहरु देखाउन सकिएन।'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
var e = n.input.length - n.maximum,
|
|
13
|
+
u = 'कृपया ' + e + ' अक्षर मेटाउनुहोस्।'
|
|
14
|
+
return (1 != e && (u += 'कृपया ' + e + ' अक्षरहरु मेटाउनुहोस्।'), u)
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (n) {
|
|
17
|
+
return (
|
|
18
|
+
'कृपया बाँकी रहेका ' +
|
|
19
|
+
(n.minimum - n.input.length) +
|
|
20
|
+
' वा अरु धेरै अक्षरहरु भर्नुहोस्।'
|
|
21
|
+
)
|
|
22
|
+
},
|
|
23
|
+
loadingMore: function () {
|
|
24
|
+
return 'अरु नतिजाहरु भरिँदैछन् …'
|
|
25
|
+
},
|
|
26
|
+
maximumSelected: function (n) {
|
|
27
|
+
var e = 'तँपाई ' + n.maximum + ' वस्तु मात्र छान्न पाउँनुहुन्छ।'
|
|
28
|
+
return (
|
|
29
|
+
1 != n.maximum &&
|
|
30
|
+
(e = 'तँपाई ' + n.maximum + ' वस्तुहरु मात्र छान्न पाउँनुहुन्छ।'),
|
|
31
|
+
e
|
|
32
|
+
)
|
|
33
|
+
},
|
|
34
|
+
noResults: function () {
|
|
35
|
+
return 'कुनै पनि नतिजा भेटिएन।'
|
|
36
|
+
},
|
|
37
|
+
searching: function () {
|
|
38
|
+
return 'खोजि हुँदैछ…'
|
|
39
|
+
},
|
|
40
|
+
}
|
|
41
|
+
}),
|
|
42
|
+
n.define,
|
|
43
|
+
n.require)
|
|
44
|
+
})()
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/*! Select2 4.0.13 | https://github.com/select2/select2/blob/master/LICENSE.md */
|
|
2
|
+
|
|
3
|
+
!(function () {
|
|
4
|
+
if (jQuery && jQuery.fn && jQuery.fn.select2 && jQuery.fn.select2.amd)
|
|
5
|
+
var e = jQuery.fn.select2.amd
|
|
6
|
+
;(e.define('select2/i18n/nl', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'De resultaten konden niet worden geladen.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
return (
|
|
13
|
+
'Gelieve ' +
|
|
14
|
+
(e.input.length - e.maximum) +
|
|
15
|
+
' karakters te verwijderen'
|
|
16
|
+
)
|
|
17
|
+
},
|
|
18
|
+
inputTooShort: function (e) {
|
|
19
|
+
return (
|
|
20
|
+
'Gelieve ' +
|
|
21
|
+
(e.minimum - e.input.length) +
|
|
22
|
+
' of meer karakters in te voeren'
|
|
23
|
+
)
|
|
24
|
+
},
|
|
25
|
+
loadingMore: function () {
|
|
26
|
+
return 'Meer resultaten laden…'
|
|
27
|
+
},
|
|
28
|
+
maximumSelected: function (e) {
|
|
29
|
+
var n = 1 == e.maximum ? 'kan' : 'kunnen',
|
|
30
|
+
r = 'Er ' + n + ' maar ' + e.maximum + ' item'
|
|
31
|
+
return (1 != e.maximum && (r += 's'), (r += ' worden geselecteerd'))
|
|
32
|
+
},
|
|
33
|
+
noResults: function () {
|
|
34
|
+
return 'Geen resultaten gevonden…'
|
|
35
|
+
},
|
|
36
|
+
searching: function () {
|
|
37
|
+
return 'Zoeken…'
|
|
38
|
+
},
|
|
39
|
+
removeAllItems: function () {
|
|
40
|
+
return 'Verwijder alle items'
|
|
41
|
+
},
|
|
42
|
+
}
|
|
43
|
+
}),
|
|
44
|
+
e.define,
|
|
45
|
+
e.require)
|
|
46
|
+
})()
|