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,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 n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/pl', [], function () {
|
|
7
|
+
var n = ['znak', 'znaki', 'znaków'],
|
|
8
|
+
e = ['element', 'elementy', 'elementów'],
|
|
9
|
+
r = function (n, e) {
|
|
10
|
+
return 1 === n ? e[0] : n > 1 && n <= 4 ? e[1] : n >= 5 ? e[2] : void 0
|
|
11
|
+
}
|
|
12
|
+
return {
|
|
13
|
+
errorLoading: function () {
|
|
14
|
+
return 'Nie można załadować wyników.'
|
|
15
|
+
},
|
|
16
|
+
inputTooLong: function (e) {
|
|
17
|
+
var t = e.input.length - e.maximum
|
|
18
|
+
return 'Usuń ' + t + ' ' + r(t, n)
|
|
19
|
+
},
|
|
20
|
+
inputTooShort: function (e) {
|
|
21
|
+
var t = e.minimum - e.input.length
|
|
22
|
+
return 'Podaj przynajmniej ' + t + ' ' + r(t, n)
|
|
23
|
+
},
|
|
24
|
+
loadingMore: function () {
|
|
25
|
+
return 'Trwa ładowanie…'
|
|
26
|
+
},
|
|
27
|
+
maximumSelected: function (n) {
|
|
28
|
+
return 'Możesz zaznaczyć tylko ' + n.maximum + ' ' + r(n.maximum, e)
|
|
29
|
+
},
|
|
30
|
+
noResults: function () {
|
|
31
|
+
return 'Brak wyników'
|
|
32
|
+
},
|
|
33
|
+
searching: function () {
|
|
34
|
+
return 'Trwa wyszukiwanie…'
|
|
35
|
+
},
|
|
36
|
+
removeAllItems: function () {
|
|
37
|
+
return 'Usuń wszystkie przedmioty'
|
|
38
|
+
},
|
|
39
|
+
}
|
|
40
|
+
}),
|
|
41
|
+
n.define,
|
|
42
|
+
n.require)
|
|
43
|
+
})()
|
|
@@ -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 n = jQuery.fn.select2.amd
|
|
6
|
+
;(n.define('select2/i18n/ps', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'پايلي نه سي ترلاسه کېدای'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
var e = n.input.length - n.maximum,
|
|
13
|
+
r = 'د مهربانۍ لمخي ' + e + ' توری ړنګ کړئ'
|
|
14
|
+
return (1 != e && (r = r.replace('توری', 'توري')), r)
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (n) {
|
|
17
|
+
return (
|
|
18
|
+
'لږ تر لږه ' + (n.minimum - n.input.length) + ' يا ډېر توري وليکئ'
|
|
19
|
+
)
|
|
20
|
+
},
|
|
21
|
+
loadingMore: function () {
|
|
22
|
+
return 'نوري پايلي ترلاسه کيږي...'
|
|
23
|
+
},
|
|
24
|
+
maximumSelected: function (n) {
|
|
25
|
+
var e = 'تاسو يوازي ' + n.maximum + ' قلم په نښه کولای سی'
|
|
26
|
+
return (1 != n.maximum && (e = e.replace('قلم', 'قلمونه')), e)
|
|
27
|
+
},
|
|
28
|
+
noResults: function () {
|
|
29
|
+
return 'پايلي و نه موندل سوې'
|
|
30
|
+
},
|
|
31
|
+
searching: function () {
|
|
32
|
+
return 'لټول کيږي...'
|
|
33
|
+
},
|
|
34
|
+
removeAllItems: function () {
|
|
35
|
+
return 'ټول توکي لرې کړئ'
|
|
36
|
+
},
|
|
37
|
+
}
|
|
38
|
+
}),
|
|
39
|
+
n.define,
|
|
40
|
+
n.require)
|
|
41
|
+
})()
|
|
@@ -0,0 +1,39 @@
|
|
|
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/pt-BR', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Os resultados não puderam ser carregados.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
var n = e.input.length - e.maximum,
|
|
13
|
+
r = 'Apague ' + n + ' caracter'
|
|
14
|
+
return (1 != n && (r += 'es'), r)
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (e) {
|
|
17
|
+
return 'Digite ' + (e.minimum - e.input.length) + ' ou mais caracteres'
|
|
18
|
+
},
|
|
19
|
+
loadingMore: function () {
|
|
20
|
+
return 'Carregando mais resultados…'
|
|
21
|
+
},
|
|
22
|
+
maximumSelected: function (e) {
|
|
23
|
+
var n = 'Você só pode selecionar ' + e.maximum + ' ite'
|
|
24
|
+
return (1 == e.maximum ? (n += 'm') : (n += 'ns'), n)
|
|
25
|
+
},
|
|
26
|
+
noResults: function () {
|
|
27
|
+
return 'Nenhum resultado encontrado'
|
|
28
|
+
},
|
|
29
|
+
searching: function () {
|
|
30
|
+
return 'Buscando…'
|
|
31
|
+
},
|
|
32
|
+
removeAllItems: function () {
|
|
33
|
+
return 'Remover todos os itens'
|
|
34
|
+
},
|
|
35
|
+
}
|
|
36
|
+
}),
|
|
37
|
+
e.define,
|
|
38
|
+
e.require)
|
|
39
|
+
})()
|
|
@@ -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/pt', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Os resultados não puderam ser carregados.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
var r = e.input.length - e.maximum,
|
|
13
|
+
n = 'Por favor apague ' + r + ' '
|
|
14
|
+
return (n += 1 != r ? 'caracteres' : 'caractere')
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (e) {
|
|
17
|
+
return (
|
|
18
|
+
'Introduza ' + (e.minimum - e.input.length) + ' ou mais caracteres'
|
|
19
|
+
)
|
|
20
|
+
},
|
|
21
|
+
loadingMore: function () {
|
|
22
|
+
return 'A carregar mais resultados…'
|
|
23
|
+
},
|
|
24
|
+
maximumSelected: function (e) {
|
|
25
|
+
var r = 'Apenas pode seleccionar ' + e.maximum + ' '
|
|
26
|
+
return (r += 1 != e.maximum ? 'itens' : 'item')
|
|
27
|
+
},
|
|
28
|
+
noResults: function () {
|
|
29
|
+
return 'Sem resultados'
|
|
30
|
+
},
|
|
31
|
+
searching: function () {
|
|
32
|
+
return 'A procurar…'
|
|
33
|
+
},
|
|
34
|
+
removeAllItems: function () {
|
|
35
|
+
return 'Remover todos os itens'
|
|
36
|
+
},
|
|
37
|
+
}
|
|
38
|
+
}),
|
|
39
|
+
e.define,
|
|
40
|
+
e.require)
|
|
41
|
+
})()
|
|
@@ -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/ro', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Rezultatele nu au putut fi incărcate.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
var t = e.input.length - e.maximum,
|
|
13
|
+
n = 'Vă rugăm să ștergeți' + t + ' caracter'
|
|
14
|
+
return (1 !== t && (n += 'e'), n)
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (e) {
|
|
17
|
+
return (
|
|
18
|
+
'Vă rugăm să introduceți ' +
|
|
19
|
+
(e.minimum - e.input.length) +
|
|
20
|
+
' sau mai multe caractere'
|
|
21
|
+
)
|
|
22
|
+
},
|
|
23
|
+
loadingMore: function () {
|
|
24
|
+
return 'Se încarcă mai multe rezultate…'
|
|
25
|
+
},
|
|
26
|
+
maximumSelected: function (e) {
|
|
27
|
+
var t = 'Aveți voie să selectați cel mult ' + e.maximum
|
|
28
|
+
return ((t += ' element'), 1 !== e.maximum && (t += 'e'), t)
|
|
29
|
+
},
|
|
30
|
+
noResults: function () {
|
|
31
|
+
return 'Nu au fost găsite rezultate'
|
|
32
|
+
},
|
|
33
|
+
searching: function () {
|
|
34
|
+
return 'Căutare…'
|
|
35
|
+
},
|
|
36
|
+
removeAllItems: function () {
|
|
37
|
+
return 'Eliminați toate elementele'
|
|
38
|
+
},
|
|
39
|
+
}
|
|
40
|
+
}),
|
|
41
|
+
e.define,
|
|
42
|
+
e.require)
|
|
43
|
+
})()
|
|
@@ -0,0 +1,48 @@
|
|
|
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/ru', [], function () {
|
|
7
|
+
function n(n, e, r, u) {
|
|
8
|
+
return (n % 10 < 5 && n % 10 > 0 && n % 100 < 5) || n % 100 > 20
|
|
9
|
+
? n % 10 > 1
|
|
10
|
+
? r
|
|
11
|
+
: e
|
|
12
|
+
: u
|
|
13
|
+
}
|
|
14
|
+
return {
|
|
15
|
+
errorLoading: function () {
|
|
16
|
+
return 'Невозможно загрузить результаты'
|
|
17
|
+
},
|
|
18
|
+
inputTooLong: function (e) {
|
|
19
|
+
var r = e.input.length - e.maximum,
|
|
20
|
+
u = 'Пожалуйста, введите на ' + r + ' символ'
|
|
21
|
+
return ((u += n(r, '', 'a', 'ов')), (u += ' меньше'))
|
|
22
|
+
},
|
|
23
|
+
inputTooShort: function (e) {
|
|
24
|
+
var r = e.minimum - e.input.length,
|
|
25
|
+
u = 'Пожалуйста, введите ещё хотя бы ' + r + ' символ'
|
|
26
|
+
return (u += n(r, '', 'a', 'ов'))
|
|
27
|
+
},
|
|
28
|
+
loadingMore: function () {
|
|
29
|
+
return 'Загрузка данных…'
|
|
30
|
+
},
|
|
31
|
+
maximumSelected: function (e) {
|
|
32
|
+
var r = 'Вы можете выбрать не более ' + e.maximum + ' элемент'
|
|
33
|
+
return (r += n(e.maximum, '', 'a', 'ов'))
|
|
34
|
+
},
|
|
35
|
+
noResults: function () {
|
|
36
|
+
return 'Совпадений не найдено'
|
|
37
|
+
},
|
|
38
|
+
searching: function () {
|
|
39
|
+
return 'Поиск…'
|
|
40
|
+
},
|
|
41
|
+
removeAllItems: function () {
|
|
42
|
+
return 'Удалить все элементы'
|
|
43
|
+
},
|
|
44
|
+
}
|
|
45
|
+
}),
|
|
46
|
+
n.define,
|
|
47
|
+
n.require)
|
|
48
|
+
})()
|
|
@@ -0,0 +1,61 @@
|
|
|
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/sk', [], function () {
|
|
7
|
+
var e = {
|
|
8
|
+
2: function (e) {
|
|
9
|
+
return e ? 'dva' : 'dve'
|
|
10
|
+
},
|
|
11
|
+
3: function () {
|
|
12
|
+
return 'tri'
|
|
13
|
+
},
|
|
14
|
+
4: function () {
|
|
15
|
+
return 'štyri'
|
|
16
|
+
},
|
|
17
|
+
}
|
|
18
|
+
return {
|
|
19
|
+
errorLoading: function () {
|
|
20
|
+
return 'Výsledky sa nepodarilo načítať.'
|
|
21
|
+
},
|
|
22
|
+
inputTooLong: function (n) {
|
|
23
|
+
var t = n.input.length - n.maximum
|
|
24
|
+
return 1 == t
|
|
25
|
+
? 'Prosím, zadajte o jeden znak menej'
|
|
26
|
+
: t >= 2 && t <= 4
|
|
27
|
+
? 'Prosím, zadajte o ' + e[t](!0) + ' znaky menej'
|
|
28
|
+
: 'Prosím, zadajte o ' + t + ' znakov menej'
|
|
29
|
+
},
|
|
30
|
+
inputTooShort: function (n) {
|
|
31
|
+
var t = n.minimum - n.input.length
|
|
32
|
+
return 1 == t
|
|
33
|
+
? 'Prosím, zadajte ešte jeden znak'
|
|
34
|
+
: t <= 4
|
|
35
|
+
? 'Prosím, zadajte ešte ďalšie ' + e[t](!0) + ' znaky'
|
|
36
|
+
: 'Prosím, zadajte ešte ďalších ' + t + ' znakov'
|
|
37
|
+
},
|
|
38
|
+
loadingMore: function () {
|
|
39
|
+
return 'Načítanie ďalších výsledkov…'
|
|
40
|
+
},
|
|
41
|
+
maximumSelected: function (n) {
|
|
42
|
+
return 1 == n.maximum
|
|
43
|
+
? 'Môžete zvoliť len jednu položku'
|
|
44
|
+
: n.maximum >= 2 && n.maximum <= 4
|
|
45
|
+
? 'Môžete zvoliť najviac ' + e[n.maximum](!1) + ' položky'
|
|
46
|
+
: 'Môžete zvoliť najviac ' + n.maximum + ' položiek'
|
|
47
|
+
},
|
|
48
|
+
noResults: function () {
|
|
49
|
+
return 'Nenašli sa žiadne položky'
|
|
50
|
+
},
|
|
51
|
+
searching: function () {
|
|
52
|
+
return 'Vyhľadávanie…'
|
|
53
|
+
},
|
|
54
|
+
removeAllItems: function () {
|
|
55
|
+
return 'Odstráňte všetky položky'
|
|
56
|
+
},
|
|
57
|
+
}
|
|
58
|
+
}),
|
|
59
|
+
e.define,
|
|
60
|
+
e.require)
|
|
61
|
+
})()
|
|
@@ -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/sl', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Zadetkov iskanja ni bilo mogoče naložiti.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
var n = e.input.length - e.maximum,
|
|
13
|
+
t = 'Prosim zbrišite ' + n + ' znak'
|
|
14
|
+
return (2 == n ? (t += 'a') : 1 != n && (t += 'e'), t)
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (e) {
|
|
17
|
+
var n = e.minimum - e.input.length,
|
|
18
|
+
t = 'Prosim vpišite še ' + n + ' znak'
|
|
19
|
+
return (2 == n ? (t += 'a') : 1 != n && (t += 'e'), t)
|
|
20
|
+
},
|
|
21
|
+
loadingMore: function () {
|
|
22
|
+
return 'Nalagam več zadetkov…'
|
|
23
|
+
},
|
|
24
|
+
maximumSelected: function (e) {
|
|
25
|
+
var n = 'Označite lahko največ ' + e.maximum + ' predmet'
|
|
26
|
+
return (2 == e.maximum ? (n += 'a') : 1 != e.maximum && (n += 'e'), n)
|
|
27
|
+
},
|
|
28
|
+
noResults: function () {
|
|
29
|
+
return 'Ni zadetkov.'
|
|
30
|
+
},
|
|
31
|
+
searching: function () {
|
|
32
|
+
return 'Iščem…'
|
|
33
|
+
},
|
|
34
|
+
removeAllItems: function () {
|
|
35
|
+
return 'Odstranite vse elemente'
|
|
36
|
+
},
|
|
37
|
+
}
|
|
38
|
+
}),
|
|
39
|
+
e.define,
|
|
40
|
+
e.require)
|
|
41
|
+
})()
|
|
@@ -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/sq', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Rezultatet nuk mund të ngarkoheshin.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
var n = e.input.length - e.maximum,
|
|
13
|
+
t = 'Të lutem fshi ' + n + ' karakter'
|
|
14
|
+
return (1 != n && (t += 'e'), t)
|
|
15
|
+
},
|
|
16
|
+
inputTooShort: function (e) {
|
|
17
|
+
return (
|
|
18
|
+
'Të lutem shkruaj ' +
|
|
19
|
+
(e.minimum - e.input.length) +
|
|
20
|
+
' ose më shumë karaktere'
|
|
21
|
+
)
|
|
22
|
+
},
|
|
23
|
+
loadingMore: function () {
|
|
24
|
+
return 'Duke ngarkuar më shumë rezultate…'
|
|
25
|
+
},
|
|
26
|
+
maximumSelected: function (e) {
|
|
27
|
+
var n = 'Mund të zgjedhësh vetëm ' + e.maximum + ' element'
|
|
28
|
+
return (1 != e.maximum && (n += 'e'), n)
|
|
29
|
+
},
|
|
30
|
+
noResults: function () {
|
|
31
|
+
return 'Nuk u gjet asnjë rezultat'
|
|
32
|
+
},
|
|
33
|
+
searching: function () {
|
|
34
|
+
return 'Duke kërkuar…'
|
|
35
|
+
},
|
|
36
|
+
removeAllItems: function () {
|
|
37
|
+
return 'Hiq të gjitha sendet'
|
|
38
|
+
},
|
|
39
|
+
}
|
|
40
|
+
}),
|
|
41
|
+
e.define,
|
|
42
|
+
e.require)
|
|
43
|
+
})()
|
|
@@ -0,0 +1,48 @@
|
|
|
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/sr-Cyrl', [], function () {
|
|
7
|
+
function n(n, e, r, u) {
|
|
8
|
+
return n % 10 == 1 && n % 100 != 11
|
|
9
|
+
? e
|
|
10
|
+
: n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)
|
|
11
|
+
? r
|
|
12
|
+
: u
|
|
13
|
+
}
|
|
14
|
+
return {
|
|
15
|
+
errorLoading: function () {
|
|
16
|
+
return 'Преузимање није успело.'
|
|
17
|
+
},
|
|
18
|
+
inputTooLong: function (e) {
|
|
19
|
+
var r = e.input.length - e.maximum,
|
|
20
|
+
u = 'Обришите ' + r + ' симбол'
|
|
21
|
+
return (u += n(r, '', 'а', 'а'))
|
|
22
|
+
},
|
|
23
|
+
inputTooShort: function (e) {
|
|
24
|
+
var r = e.minimum - e.input.length,
|
|
25
|
+
u = 'Укуцајте бар још ' + r + ' симбол'
|
|
26
|
+
return (u += n(r, '', 'а', 'а'))
|
|
27
|
+
},
|
|
28
|
+
loadingMore: function () {
|
|
29
|
+
return 'Преузимање још резултата…'
|
|
30
|
+
},
|
|
31
|
+
maximumSelected: function (e) {
|
|
32
|
+
var r = 'Можете изабрати само ' + e.maximum + ' ставк'
|
|
33
|
+
return (r += n(e.maximum, 'у', 'е', 'и'))
|
|
34
|
+
},
|
|
35
|
+
noResults: function () {
|
|
36
|
+
return 'Ништа није пронађено'
|
|
37
|
+
},
|
|
38
|
+
searching: function () {
|
|
39
|
+
return 'Претрага…'
|
|
40
|
+
},
|
|
41
|
+
removeAllItems: function () {
|
|
42
|
+
return 'Уклоните све ставке'
|
|
43
|
+
},
|
|
44
|
+
}
|
|
45
|
+
}),
|
|
46
|
+
n.define,
|
|
47
|
+
n.require)
|
|
48
|
+
})()
|
|
@@ -0,0 +1,48 @@
|
|
|
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/sr', [], function () {
|
|
7
|
+
function n(n, e, r, t) {
|
|
8
|
+
return n % 10 == 1 && n % 100 != 11
|
|
9
|
+
? e
|
|
10
|
+
: n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)
|
|
11
|
+
? r
|
|
12
|
+
: t
|
|
13
|
+
}
|
|
14
|
+
return {
|
|
15
|
+
errorLoading: function () {
|
|
16
|
+
return 'Preuzimanje nije uspelo.'
|
|
17
|
+
},
|
|
18
|
+
inputTooLong: function (e) {
|
|
19
|
+
var r = e.input.length - e.maximum,
|
|
20
|
+
t = 'Obrišite ' + r + ' simbol'
|
|
21
|
+
return (t += n(r, '', 'a', 'a'))
|
|
22
|
+
},
|
|
23
|
+
inputTooShort: function (e) {
|
|
24
|
+
var r = e.minimum - e.input.length,
|
|
25
|
+
t = 'Ukucajte bar još ' + r + ' simbol'
|
|
26
|
+
return (t += n(r, '', 'a', 'a'))
|
|
27
|
+
},
|
|
28
|
+
loadingMore: function () {
|
|
29
|
+
return 'Preuzimanje još rezultata…'
|
|
30
|
+
},
|
|
31
|
+
maximumSelected: function (e) {
|
|
32
|
+
var r = 'Možete izabrati samo ' + e.maximum + ' stavk'
|
|
33
|
+
return (r += n(e.maximum, 'u', 'e', 'i'))
|
|
34
|
+
},
|
|
35
|
+
noResults: function () {
|
|
36
|
+
return 'Ništa nije pronađeno'
|
|
37
|
+
},
|
|
38
|
+
searching: function () {
|
|
39
|
+
return 'Pretraga…'
|
|
40
|
+
},
|
|
41
|
+
removeAllItems: function () {
|
|
42
|
+
return 'Уклоните све ставке'
|
|
43
|
+
},
|
|
44
|
+
}
|
|
45
|
+
}),
|
|
46
|
+
n.define,
|
|
47
|
+
n.require)
|
|
48
|
+
})()
|
|
@@ -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/sv', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Resultat kunde inte laddas.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
return 'Vänligen sudda ut ' + (n.input.length - n.maximum) + ' tecken'
|
|
13
|
+
},
|
|
14
|
+
inputTooShort: function (n) {
|
|
15
|
+
return (
|
|
16
|
+
'Vänligen skriv in ' +
|
|
17
|
+
(n.minimum - n.input.length) +
|
|
18
|
+
' eller fler tecken'
|
|
19
|
+
)
|
|
20
|
+
},
|
|
21
|
+
loadingMore: function () {
|
|
22
|
+
return 'Laddar fler resultat…'
|
|
23
|
+
},
|
|
24
|
+
maximumSelected: function (n) {
|
|
25
|
+
return 'Du kan max välja ' + n.maximum + ' element'
|
|
26
|
+
},
|
|
27
|
+
noResults: function () {
|
|
28
|
+
return 'Inga träffar'
|
|
29
|
+
},
|
|
30
|
+
searching: function () {
|
|
31
|
+
return 'Söker…'
|
|
32
|
+
},
|
|
33
|
+
removeAllItems: function () {
|
|
34
|
+
return 'Ta bort alla objekt'
|
|
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/th', [], 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 'โปรดพิมพ์เพิ่มอีก ' + (n.minimum - n.input.length) + ' ตัวอักษร'
|
|
16
|
+
},
|
|
17
|
+
loadingMore: function () {
|
|
18
|
+
return 'กำลังค้นข้อมูลเพิ่ม…'
|
|
19
|
+
},
|
|
20
|
+
maximumSelected: function (n) {
|
|
21
|
+
return 'คุณสามารถเลือกได้ไม่เกิน ' + n.maximum + ' รายการ'
|
|
22
|
+
},
|
|
23
|
+
noResults: function () {
|
|
24
|
+
return 'ไม่พบข้อมูล'
|
|
25
|
+
},
|
|
26
|
+
searching: function () {
|
|
27
|
+
return 'กำลังค้นข้อมูล…'
|
|
28
|
+
},
|
|
29
|
+
removeAllItems: function () {
|
|
30
|
+
return 'ลบรายการทั้งหมด'
|
|
31
|
+
},
|
|
32
|
+
}
|
|
33
|
+
}),
|
|
34
|
+
n.define,
|
|
35
|
+
n.require)
|
|
36
|
+
})()
|
|
@@ -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 e = jQuery.fn.select2.amd
|
|
6
|
+
;(e.define('select2/i18n/tk', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Netije ýüklenmedi.'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (e) {
|
|
12
|
+
return e.input.length - e.maximum + ' harp bozuň.'
|
|
13
|
+
},
|
|
14
|
+
inputTooShort: function (e) {
|
|
15
|
+
return 'Ýene-de iň az ' + (e.minimum - e.input.length) + ' harp ýazyň.'
|
|
16
|
+
},
|
|
17
|
+
loadingMore: function () {
|
|
18
|
+
return 'Köpräk netije görkezilýär…'
|
|
19
|
+
},
|
|
20
|
+
maximumSelected: function (e) {
|
|
21
|
+
return 'Diňe ' + e.maximum + ' sanysyny saýlaň.'
|
|
22
|
+
},
|
|
23
|
+
noResults: function () {
|
|
24
|
+
return 'Netije tapylmady.'
|
|
25
|
+
},
|
|
26
|
+
searching: function () {
|
|
27
|
+
return 'Gözlenýär…'
|
|
28
|
+
},
|
|
29
|
+
removeAllItems: function () {
|
|
30
|
+
return 'Remove all items'
|
|
31
|
+
},
|
|
32
|
+
}
|
|
33
|
+
}),
|
|
34
|
+
e.define,
|
|
35
|
+
e.require)
|
|
36
|
+
})()
|
|
@@ -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/tr', [], function () {
|
|
7
|
+
return {
|
|
8
|
+
errorLoading: function () {
|
|
9
|
+
return 'Sonuç yüklenemedi'
|
|
10
|
+
},
|
|
11
|
+
inputTooLong: function (n) {
|
|
12
|
+
return n.input.length - n.maximum + ' karakter daha girmelisiniz'
|
|
13
|
+
},
|
|
14
|
+
inputTooShort: function (n) {
|
|
15
|
+
return (
|
|
16
|
+
'En az ' +
|
|
17
|
+
(n.minimum - n.input.length) +
|
|
18
|
+
' karakter daha girmelisiniz'
|
|
19
|
+
)
|
|
20
|
+
},
|
|
21
|
+
loadingMore: function () {
|
|
22
|
+
return 'Daha fazla…'
|
|
23
|
+
},
|
|
24
|
+
maximumSelected: function (n) {
|
|
25
|
+
return 'Sadece ' + n.maximum + ' seçim yapabilirsiniz'
|
|
26
|
+
},
|
|
27
|
+
noResults: function () {
|
|
28
|
+
return 'Sonuç bulunamadı'
|
|
29
|
+
},
|
|
30
|
+
searching: function () {
|
|
31
|
+
return 'Aranıyor…'
|
|
32
|
+
},
|
|
33
|
+
removeAllItems: function () {
|
|
34
|
+
return 'Tüm öğeleri kaldır'
|
|
35
|
+
},
|
|
36
|
+
}
|
|
37
|
+
}),
|
|
38
|
+
n.define,
|
|
39
|
+
n.require)
|
|
40
|
+
})()
|