├── README.md ├── data └── README.md ├── icon ├── .DS_Store ├── Beacon_icon.jpg ├── Dataformat.png ├── emory.jpg ├── nscc.jpg ├── qcri.jpg ├── sdu.jpg └── thu.jpg └── sys ├── Analysis_script ├── LWFS_client │ ├── abnormal_node_detect.py │ ├── deal_generator.py │ ├── es_search.py │ ├── es_search_fwd.py │ ├── es_search_ost.py │ ├── job_ip_all.py │ ├── savejob_jobid_modified.py │ ├── scroll_query.py │ ├── showjob_by_jobid.py │ └── time_to_sec.py ├── LWFS_server │ ├── create_csv.py │ ├── data_example.txt │ ├── deal_latency_queue.py │ └── forwarding_each_all.py ├── MDS │ ├── MDS_query.py │ ├── draw.py │ └── lustre_MDS.py ├── README.rst ├── job │ ├── COMPID_CabinetID │ ├── job_cabid.py │ ├── job_ip.py │ └── jobcount_coreutilize.py ├── lustre_client │ ├── compute_band_gio.py │ ├── compute_volume.py │ ├── draw.py │ ├── forwarding_each_all.py │ └── lustre_client_band_cache.py └── lustre_server │ ├── OST_each_all.py │ ├── compute_volume.py │ ├── draw.py │ └── lustre_server_band.py ├── Monitoring_module ├── README.rst ├── get_lwfs_queue_latency.py ├── monitor_LWFS_client │ ├── Makefile │ ├── aggregation.bak.c │ ├── aggregation.c │ ├── aggregation.h │ ├── aggregation_dif.c │ ├── bitops.h │ ├── c.h │ ├── closestream.h │ ├── daemonize.c │ ├── daemonize.h │ ├── datacombine.c │ ├── datacombine.h │ ├── inttypes.h │ ├── nls.h │ ├── read.c │ ├── send-orig.c │ ├── sotailf.c │ ├── stdint.h │ ├── strutils.c │ ├── strutils.h │ ├── wchar.h │ └── xalloc.h ├── monitor_lustre_MDS.py ├── monitor_lustre_client.py └── monitor_lustre_server.py ├── README.md ├── Util ├── README.rst ├── benefit_jobid_iovolumn.py ├── read_IOmode_DB_volume.py └── read_from_source.py └── Web_interface ├── README.rst ├── __init__.py ├── app.py ├── auth ├── __init__.py ├── auth.py └── user.py ├── static ├── css │ ├── beacon.css │ ├── bootstrap-select-1.12.4.zip │ ├── bootstrap-select-1.12.4 │ │ ├── .github │ │ │ └── ISSUE_TEMPLATE.md │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── composer.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-select.css │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ └── bootstrap-select.min.css │ │ │ └── js │ │ │ │ ├── bootstrap-select.js │ │ │ │ ├── bootstrap-select.js.map │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ └── i18n │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ ├── defaults-ar_AR.min.js │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ ├── defaults-bg_BG.min.js │ │ │ │ ├── defaults-cro_CRO.js │ │ │ │ ├── defaults-cro_CRO.min.js │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ ├── defaults-da_DK.js │ │ │ │ ├── defaults-da_DK.min.js │ │ │ │ ├── defaults-de_DE.js │ │ │ │ ├── defaults-de_DE.min.js │ │ │ │ ├── defaults-en_US.js │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ ├── defaults-es_CL.js │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ ├── defaults-es_ES.js │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ ├── defaults-et_EE.js │ │ │ │ ├── defaults-et_EE.min.js │ │ │ │ ├── defaults-eu.js │ │ │ │ ├── defaults-eu.min.js │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ ├── defaults-fa_IR.min.js │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ ├── defaults-fr_FR.min.js │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ ├── defaults-id_ID.js │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ ├── defaults-it_IT.js │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ ├── defaults-ja_JP.min.js │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ ├── defaults-kh_KM.min.js │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ ├── defaults-ko_KR.min.js │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ ├── defaults-lt_LT.min.js │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ ├── defaults-ro_RO.min.js │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ ├── defaults-ru_RU.min.js │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ ├── defaults-sk_SK.min.js │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ ├── defaults-tr_TR.min.js │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ ├── defaults-ua_UA.min.js │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ ├── defaults-vi_VN.min.js │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ ├── defaults-zh_CN.min.js │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ └── defaults-zh_TW.min.js │ │ ├── docs │ │ │ ├── custom_theme │ │ │ │ ├── base.html │ │ │ │ ├── css │ │ │ │ │ └── base.css │ │ │ │ ├── img │ │ │ │ │ └── logos │ │ │ │ │ │ ├── convertizer.png │ │ │ │ │ │ ├── estimateit.png │ │ │ │ │ │ ├── membermeister.png │ │ │ │ │ │ ├── snapappointments.png │ │ │ │ │ │ ├── solveforall.png │ │ │ │ │ │ └── thermofisher.png │ │ │ │ ├── js │ │ │ │ │ └── base.js │ │ │ │ ├── nav.html │ │ │ │ └── toc.html │ │ │ ├── docs │ │ │ │ ├── css │ │ │ │ │ └── custom.css │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-select.css │ │ │ │ │ │ ├── bootstrap-select.css.map │ │ │ │ │ │ └── bootstrap-select.min.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap-select.js │ │ │ │ │ │ ├── bootstrap-select.js.map │ │ │ │ │ │ ├── bootstrap-select.min.js │ │ │ │ │ │ └── i18n │ │ │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ │ │ ├── defaults-ar_AR.min.js │ │ │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ │ │ ├── defaults-bg_BG.min.js │ │ │ │ │ │ ├── defaults-cro_CRO.js │ │ │ │ │ │ ├── defaults-cro_CRO.min.js │ │ │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ │ │ ├── defaults-cs_CZ.min.js │ │ │ │ │ │ ├── defaults-da_DK.js │ │ │ │ │ │ ├── defaults-da_DK.min.js │ │ │ │ │ │ ├── defaults-de_DE.js │ │ │ │ │ │ ├── defaults-de_DE.min.js │ │ │ │ │ │ ├── defaults-en_US.js │ │ │ │ │ │ ├── defaults-en_US.min.js │ │ │ │ │ │ ├── defaults-es_CL.js │ │ │ │ │ │ ├── defaults-es_CL.min.js │ │ │ │ │ │ ├── defaults-es_ES.js │ │ │ │ │ │ ├── defaults-es_ES.min.js │ │ │ │ │ │ ├── defaults-et_EE.js │ │ │ │ │ │ ├── defaults-et_EE.min.js │ │ │ │ │ │ ├── defaults-eu.js │ │ │ │ │ │ ├── defaults-eu.min.js │ │ │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ │ │ ├── defaults-fa_IR.min.js │ │ │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ │ │ ├── defaults-fi_FI.min.js │ │ │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ │ │ ├── defaults-fr_FR.min.js │ │ │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ │ │ ├── defaults-hu_HU.min.js │ │ │ │ │ │ ├── defaults-id_ID.js │ │ │ │ │ │ ├── defaults-id_ID.min.js │ │ │ │ │ │ ├── defaults-it_IT.js │ │ │ │ │ │ ├── defaults-it_IT.min.js │ │ │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ │ │ ├── defaults-ja_JP.min.js │ │ │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ │ │ ├── defaults-kh_KM.min.js │ │ │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ │ │ ├── defaults-ko_KR.min.js │ │ │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ │ │ ├── defaults-lt_LT.min.js │ │ │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ │ │ ├── defaults-nb_NO.min.js │ │ │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ │ │ ├── defaults-nl_NL.min.js │ │ │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ │ │ ├── defaults-pl_PL.min.js │ │ │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ │ │ ├── defaults-pt_BR.min.js │ │ │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ │ │ ├── defaults-pt_PT.min.js │ │ │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ │ │ ├── defaults-ro_RO.min.js │ │ │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ │ │ ├── defaults-ru_RU.min.js │ │ │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ │ │ ├── defaults-sk_SK.min.js │ │ │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ │ │ ├── defaults-sl_SI.min.js │ │ │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ │ │ ├── defaults-sv_SE.min.js │ │ │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ │ │ ├── defaults-tr_TR.min.js │ │ │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ │ │ ├── defaults-ua_UA.min.js │ │ │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ │ │ ├── defaults-vi_VN.min.js │ │ │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ │ │ ├── defaults-zh_CN.min.js │ │ │ │ │ │ ├── defaults-zh_TW.js │ │ │ │ │ │ └── defaults-zh_TW.min.js │ │ │ │ ├── examples.md │ │ │ │ ├── index.md │ │ │ │ ├── methods.md │ │ │ │ ├── options.md │ │ │ │ └── playground │ │ │ │ │ ├── index.html │ │ │ │ │ ├── plnkrOpener.js │ │ │ │ │ └── test.html │ │ │ └── mkdocs.yml │ │ ├── js │ │ │ ├── .jshintrc │ │ │ ├── bootstrap-select.js │ │ │ └── i18n │ │ │ │ ├── defaults-ar_AR.js │ │ │ │ ├── defaults-bg_BG.js │ │ │ │ ├── defaults-cro_CRO.js │ │ │ │ ├── defaults-cs_CZ.js │ │ │ │ ├── defaults-da_DK.js │ │ │ │ ├── defaults-de_DE.js │ │ │ │ ├── defaults-en_US.js │ │ │ │ ├── defaults-es_CL.js │ │ │ │ ├── defaults-es_ES.js │ │ │ │ ├── defaults-et_EE.js │ │ │ │ ├── defaults-eu.js │ │ │ │ ├── defaults-fa_IR.js │ │ │ │ ├── defaults-fi_FI.js │ │ │ │ ├── defaults-fr_FR.js │ │ │ │ ├── defaults-hu_HU.js │ │ │ │ ├── defaults-id_ID.js │ │ │ │ ├── defaults-it_IT.js │ │ │ │ ├── defaults-ja_JP.js │ │ │ │ ├── defaults-kh_KM.js │ │ │ │ ├── defaults-ko_KR.js │ │ │ │ ├── defaults-lt_LT.js │ │ │ │ ├── defaults-nb_NO.js │ │ │ │ ├── defaults-nl_NL.js │ │ │ │ ├── defaults-pl_PL.js │ │ │ │ ├── defaults-pt_BR.js │ │ │ │ ├── defaults-pt_PT.js │ │ │ │ ├── defaults-ro_RO.js │ │ │ │ ├── defaults-ru_RU.js │ │ │ │ ├── defaults-sk_SK.js │ │ │ │ ├── defaults-sl_SI.js │ │ │ │ ├── defaults-sv_SE.js │ │ │ │ ├── defaults-tr_TR.js │ │ │ │ ├── defaults-ua_UA.js │ │ │ │ ├── defaults-vi_VN.js │ │ │ │ ├── defaults-zh_CN.js │ │ │ │ └── defaults-zh_TW.js │ │ ├── less │ │ │ ├── bootstrap-select.less │ │ │ └── variables.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ └── bootstrap-select.nuspec │ │ ├── package.json │ │ ├── sass │ │ │ ├── bootstrap-select.scss │ │ │ └── variables.scss │ │ └── test.html │ ├── bootstrap-select.min.css │ ├── bootstrap-table.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── datepicker.css │ ├── datepicker3.css │ ├── login.css │ ├── reset.css │ └── styles.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── js │ ├── bootstrap-select.min.js │ ├── bootstrap-table.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── c_activeprocess.js │ ├── c_datadistribution.js │ ├── c_iobandwidth.js │ ├── c_iops.js │ ├── c_metadata.js │ ├── c_overview.js │ ├── canvas-particle.js │ ├── chart-image.js │ ├── chart.min.js │ ├── easypiechart-data.js │ ├── easypiechart.js │ ├── echarts.min.js │ ├── echarts.min.zip │ ├── fwd.js │ ├── history_job.js │ ├── html5shiv.min.js │ ├── jquery-1.11.1.min.js │ ├── login.js │ ├── lustre_server.js │ ├── lwfs_client.js │ ├── peichar.zip │ ├── respond.min.js │ ├── select_compute_node.js │ ├── test.js │ ├── userspace.js │ └── workload.js ├── templates ├── base.html ├── c_activeprocess.html ├── c_datadistribution.html ├── c_error.html ├── c_iobandwidth.html ├── c_iops.html ├── c_metadata.html ├── c_overview.html ├── chart_forwardingnodes.html ├── chart_metadata.html ├── fwd.html ├── history_job.html ├── index.html ├── job_detail.html ├── login.html ├── login2.html ├── lustre_server.html ├── lwfs_client.html ├── ost.html ├── select_compute_node.html ├── separate.html ├── system_user.html ├── test.png ├── userspace.html └── workload.html └── util ├── __init__.py ├── cache_cn.py ├── db_util.py ├── fwd.py ├── redis_test.py └── util.py /icon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/icon/.DS_Store -------------------------------------------------------------------------------- /icon/Beacon_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/icon/Beacon_icon.jpg -------------------------------------------------------------------------------- /icon/Dataformat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/icon/Dataformat.png -------------------------------------------------------------------------------- /icon/emory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/icon/emory.jpg -------------------------------------------------------------------------------- /icon/nscc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/icon/nscc.jpg -------------------------------------------------------------------------------- /icon/qcri.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/icon/qcri.jpg -------------------------------------------------------------------------------- /icon/sdu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/icon/sdu.jpg -------------------------------------------------------------------------------- /icon/thu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/icon/thu.jpg -------------------------------------------------------------------------------- /sys/Analysis_script/LWFS_client/scroll_query.py: -------------------------------------------------------------------------------- 1 | import elasticsearch1 as es 2 | from elasticsearch1 import helpers 3 | 4 | 5 | def scroll_search(query, host, index_name): 6 | ES_SERVERS = [{'host': host, 'port': 9200}] 7 | 8 | es_client = es.Elasticsearch(hosts=ES_SERVERS) 9 | 10 | es_result = get_search_result(query, index_name, es_client) 11 | 12 | return es_result 13 | 14 | 15 | def get_search_result(es_search_options, 16 | index_name, 17 | es_client, 18 | scroll='5m', 19 | raise_on_error=True, 20 | preserve_order=False, 21 | doc_type='redis-input', 22 | timeout="1m"): 23 | 24 | es_result = helpers.scan( 25 | client=es_client, 26 | query=es_search_options, 27 | scroll=scroll, 28 | index=index_name, 29 | doc_type=doc_type, 30 | timeout=timeout) 31 | 32 | return es_result 33 | 34 | 35 | #Test main 36 | if __name__ == "__main__": 37 | es_result = scroll_search({ 38 | "query": { 39 | "match_all": {} 40 | } 41 | }, "20.0.2.201", "logstash-2018.03.18") 42 | count = 0 43 | for item in es_result: 44 | count += 1 45 | print item 46 | print count 47 | -------------------------------------------------------------------------------- /sys/Analysis_script/MDS/draw.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | import matplotlib.pyplot as plt 3 | import matplotlib.patches as patches 4 | from matplotlib.pyplot import savefig 5 | import numpy as np 6 | import csv 7 | import os 8 | 9 | path = "" # e.g. './MDS_CSV_vbfs' 10 | re = os.listdir(path) 11 | re.sort() 12 | max_mds = 0 13 | for index in re: 14 | mon = str(index).split('.')[1] 15 | day = str(index).split('.')[3] 16 | c = open(path + '/' + index, 'rb') 17 | csv_reader = csv.reader(c) 18 | s = 0 19 | count_l = 0 20 | count_m = 0 21 | count_h = 0 22 | count_i = 0 23 | for row in csv_reader: 24 | MDS_open = float(row[0]) 25 | MDS_close = float(row[1]) 26 | if MDS_open > max_mds: 27 | max_mds = MDS_open 28 | max_index = index 29 | maxtime = s 30 | if MDS_open < 1000: 31 | count_i += 1 32 | elif MDS_open < 2500: 33 | count_l += 1 34 | elif MDS_open < 4000: 35 | count_m += 1 36 | else: 37 | count_h += 1 38 | s += 1 39 | if s >= 86400: 40 | break 41 | c.close() 42 | print str( 43 | index 44 | ), "\t", count_i * 1.0 / 86400, "\t", count_l * 1.0 / 86400, "\t", count_m * 1.0 / 86400, "\t", count_h * 1.0 / 86400 45 | print "max: ", max_mds, " ", max_index, " ", maxtime 46 | # print "start plot...",s 47 | # plt.plot(MDS_open,'r',label='Open') 48 | # plt.plot(MDS_close,'b',label='Close') 49 | # plt.ylabel('MDS opearation rate') 50 | # plt.xlabel('Time(s)') 51 | # plt.title(index) 52 | # plt.legend() 53 | # plt.show() 54 | #savefig("./MDS_fig/MDS_fig"+index+".png") 55 | #plt.close() 56 | -------------------------------------------------------------------------------- /sys/Analysis_script/lustre_client/compute_band_gio.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | import numpy as np 3 | import csv 4 | import os 5 | file_list = os.listdir("./forwarding_CSV_gio") 6 | file_list.sort() 7 | for file_name in file_list: 8 | #print file_name 9 | bandr = [([0] * 100000) for i in range(130)] 10 | bandw = [([0] * 100000) for i in range(130)] 11 | sum_r = [0 for i in xrange(100000)] 12 | sum_w = [0 for i in xrange(100000)] 13 | csv_reader = csv.reader(open("./forwarding_CSV_gio/" + file_name)) 14 | s = 0 15 | for row in csv_reader: 16 | for i in range(0, len(row), 2): 17 | bandr[i / 2][s] = float(row[i]) 18 | bandw[i / 2][s] = float(row[i + 1]) 19 | sum_r[s] += float(row[i]) 20 | sum_w[s] += float(row[i + 1]) 21 | s += 1 22 | time = str(file_name.split('.csv')[0]).split('CSV')[1] 23 | print time, "\t", sum(sum_r), "\t", sum(sum_w) 24 | #print "strat write csv..." 25 | index = time 26 | csvfile = file("./forwarding_band_gio/gio_band" + index + ".csv", 'wb') 27 | writer = csv.writer(csvfile) 28 | for i in range(86400): 29 | row_value = [] 30 | row_value.append(sum_r[i]) 31 | row_value.append(sum_w[i]) 32 | writer.writerow(row_value) 33 | csvfile.close() 34 | -------------------------------------------------------------------------------- /sys/Analysis_script/lustre_client/compute_volume.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | import numpy as np 3 | import csv 4 | import os 5 | file_list = os.listdir("./forwarding_CSV") 6 | file_list.sort() 7 | for file_name in file_list: 8 | bandr = [([0] * 100000) for i in range(130)] 9 | bandw = [([0] * 100000) for i in range(130)] 10 | sum_r = [0 for i in xrange(100000)] 11 | sum_w = [0 for i in xrange(100000)] 12 | csv_reader = csv.reader(open("./forwarding_CSV/" + file_name)) 13 | s = 0 14 | for row in csv_reader: 15 | for i in range(0, len(row), 2): 16 | bandr[i / 2][s] = float(row[i]) 17 | bandw[i / 2][s] = float(row[i + 1]) 18 | sum_r[s] += float(row[i]) 19 | sum_w[s] += float(row[i + 1]) 20 | s += 1 21 | time = str(file_name.split('.csv')[0]).split('CSV')[1] 22 | print time, "\t", sum(sum_r), "\t", sum(sum_w) 23 | -------------------------------------------------------------------------------- /sys/Analysis_script/lustre_server/compute_volume.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | import numpy as np 3 | import csv 4 | import os 5 | file_list = os.listdir("./OST_CSV") 6 | file_list.sort() 7 | for file_name in file_list: 8 | bandr = [([0] * 100000) for i in range(440)] 9 | bandw = [([0] * 100000) for i in range(440)] 10 | sum_r = [0 for i in xrange(100000)] 11 | sum_w = [0 for i in xrange(100000)] 12 | csv_reader = csv.reader(open("./OST_CSV/" + file_name)) 13 | s = 0 14 | for row in csv_reader: 15 | for i in range(0, len(row), 2): 16 | bandr[i / 2][s] = float(row[i]) 17 | bandw[i / 2][s] = float(row[i + 1]) 18 | sum_r[s] += float(row[i]) 19 | sum_w[s] += float(row[i + 1]) 20 | s += 1 21 | time = str(file_name.split('.csv')[0]).split('CSV')[1] 22 | print time, "\t", sum(sum_r), "\t", sum(sum_w) 23 | -------------------------------------------------------------------------------- /sys/Monitoring_module/monitor_LWFS_client/Makefile: -------------------------------------------------------------------------------- 1 | # zhouqi@20150601 2 | # 3 | # ARCH=X86 or ARCH=sw 4 | ARCH="X86" 5 | CX86="gcc -lpthread -o sotailf sotailf.c strutils.c daemonize.c aggregation.c" 6 | CSW="swgcc -I/usr/sz/swcc/swgcc-binary/include -L/usr/sz/swcc/swgcc-binary/lib -lpthread -o sotailf_offset sotailf.c strutils.c daemonize.c aggregation.c" 7 | 8 | all: sotailf 9 | 10 | sotailf: sotailf.c 11 | @if test $(ARCH) = sw;then \ 12 | echo $(CSW); \ 13 | sh -c $(CSW); \ 14 | else \ 15 | echo $(CX86); \ 16 | sh -c $(CX86); \ 17 | fi 18 | 19 | clean: 20 | rm -f sotailf strutils.o daemonize.o 21 | -------------------------------------------------------------------------------- /sys/Monitoring_module/monitor_LWFS_client/aggregation.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | void compute(char *st,char *strtime,int *size,char *stroffset,char *keyword,char *address); 8 | void agre(char *buf,int lines); 9 | void agregation(char *buf,int lines); 10 | -------------------------------------------------------------------------------- /sys/Monitoring_module/monitor_LWFS_client/closestream.h: -------------------------------------------------------------------------------- 1 | #ifndef UTIL_LINUX_CLOSESTREAM_H 2 | #define UTIL_LINUX_CLOSESTREAM_H 3 | 4 | #include 5 | #ifdef HAVE_STDIO_EXT_H 6 | #include 7 | #endif 8 | #include 9 | 10 | /*zhouqi#include "c.h" 11 | #include "nls.h"*/ 12 | 13 | #ifndef HAVE___FPENDING 14 | static inline int 15 | __fpending(FILE *stream __attribute__((__unused__))) 16 | { 17 | return 0; 18 | } 19 | #endif 20 | 21 | static inline int 22 | close_stream(FILE * stream) 23 | { 24 | const int some_pending = (__fpending(stream) != 0); 25 | const int prev_fail = (ferror(stream) != 0); 26 | const int fclose_fail = (fclose(stream) != 0); 27 | if (prev_fail || (fclose_fail && (some_pending || errno != EBADF))) { 28 | if (!fclose_fail) 29 | errno = 0; 30 | return EOF; 31 | } 32 | return 0; 33 | } 34 | 35 | /* Meant to be used atexit(close_stdout); */ 36 | static inline void 37 | close_stdout(void) 38 | { 39 | if (close_stream(stdout) != 0 && !(errno == EPIPE)) { 40 | if (errno) 41 | warn(_("write error")); 42 | else 43 | warnx(_("write error")); 44 | _exit(EXIT_FAILURE); 45 | } 46 | 47 | if (close_stream(stderr) != 0) 48 | _exit(EXIT_FAILURE); 49 | } 50 | 51 | #endif /* UTIL_LINUX_CLOSESTREAM_H */ 52 | -------------------------------------------------------------------------------- /sys/Monitoring_module/monitor_LWFS_client/daemonize.h: -------------------------------------------------------------------------------- 1 | void daemonize(const char *); 2 | -------------------------------------------------------------------------------- /sys/Monitoring_module/monitor_LWFS_client/datacombine.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | void computew(char*st,char*strtime,int *size,char*stroffset); 8 | void computer(char*st,char*strtime,int *size,char*stroffset); 9 | void combine(char *st,char *buf,int *iter); 10 | -------------------------------------------------------------------------------- /sys/Monitoring_module/monitor_LWFS_client/read.c: -------------------------------------------------------------------------------- 1 | //[2016-07-27 15:34:33] T [fuse-bridge.c:1967:fuse_writev_cbk] lwfs-fuse: 18049: WRITE => 131072/131072,2096627712/2096627712 2 | #include 3 | int main(){ 4 | int y, M, d, h, m, s, ln, op, unknown, opu, size, size2; 5 | long long off, off2; 6 | scanf("[%d-%d-%d %d:%d:%d] T [fuse-bridge.c:%d:%s] lwfs-fuse: %d: %s => %d/%d,%lld,%lld", &y, &M, &d, &h, &m, &s, &ln, &op, &unknown, &opu, &size, &size2, &off, &off2); 7 | printf("%d %d %d %d %d %d %d %s %d %s %d %d %lld %lld", y, M, d, h, m, s, ln, op, unknown, opu, size, size2); 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /sys/Monitoring_module/monitor_LWFS_client/send-orig.c: -------------------------------------------------------------------------------- 1 | /* 2 | *author: zhouqi 3 | */ 4 | 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include 10 | #include 11 | 12 | #define _PORT 9987 13 | #define SERVER_IP "20.0.211.6" 14 | #define BUF_SIZE 1024 15 | 16 | int main() 17 | { 18 | /* int ip; */ 19 | struct in_addr ip; 20 | inet_pton(AF_INET, SERVER_IP, &ip); 21 | 22 | //set server socket address 23 | struct sockaddr_in server_addr; 24 | server_addr.sin_family = AF_INET; 25 | server_addr.sin_addr.s_addr = ip.s_addr; 26 | server_addr.sin_port = htons(_PORT); 27 | 28 | int sd; 29 | if ((sd = socket(AF_INET, SOCK_STREAM, 0)) < 0) { 30 | perror("send"); 31 | exit(0); 32 | } 33 | 34 | if (connect(sd, (struct sockaddr*)&server_addr, 35 | sizeof(server_addr)) < 0) { 36 | perror("send"); 37 | exit(0); 38 | } 39 | 40 | char buffer[BUF_SIZE]; 41 | printf("input:"); 42 | scanf("%s", buffer); 43 | /* 44 | int len = send(sd, buffer, strlen(buffer), MSG_EOR); 45 | */ 46 | int len = write(sd, buffer, strlen(buffer)); 47 | if (len < 0) { 48 | perror("send"); 49 | exit(0); 50 | } 51 | 52 | close(sd); 53 | return 0; 54 | } 55 | -------------------------------------------------------------------------------- /sys/Monitoring_module/monitor_LWFS_client/wchar.h: -------------------------------------------------------------------------------- 1 | /* wchar_t type related definitions. i386/x86-64 version. 2 | Copyright (C) 2000-2012 Free Software Foundation, Inc. 3 | This file is part of the GNU C Library. 4 | 5 | The GNU C Library is free software; you can redistribute it and/or 6 | modify it under the terms of the GNU Lesser General Public 7 | License as published by the Free Software Foundation; either 8 | version 2.1 of the License, or (at your option) any later version. 9 | 10 | The GNU C Library is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 | Lesser General Public License for more details. 14 | 15 | You should have received a copy of the GNU Lesser General Public 16 | License along with the GNU C Library; if not, see 17 | . */ 18 | 19 | #ifndef _BITS_WCHAR_H 20 | #define _BITS_WCHAR_H 1 21 | 22 | #include 23 | 24 | #if __WORDSIZE == 64 25 | # define __WCHAR_MIN (-2147483647 - 1) 26 | # define __WCHAR_MAX (2147483647) 27 | #else 28 | # define __WCHAR_MIN (-2147483647l - 1l) 29 | # define __WCHAR_MAX (2147483647l) 30 | #endif 31 | 32 | #endif /* bits/wchar.h */ 33 | -------------------------------------------------------------------------------- /sys/Util/README.rst: -------------------------------------------------------------------------------- 1 | ☤ Beacon 2 | ------------ 3 | Beacon is a monitoring tool for HPC centers, and has been deployed on the current No.2 Sunway TaihuLight Supercomputer for a year. With the help of Beacon, various performance problems and system anomaly have been detected and relieved. 4 | 5 | ☤ About Util directory 6 | ------------ 7 | In this directory, we plan to open source our other util code here. 8 | 9 | 10 | 11 | ☤ To to continued... 12 | ------------ 13 | 14 | Contact us: 15 | 16 | Email: tianyuzhang1214@163.com. 17 | -------------------------------------------------------------------------------- /sys/Web_interface/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | #!/usr/bin/python 3 | 4 | -------------------------------------------------------------------------------- /sys/Web_interface/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/auth/__init__.py -------------------------------------------------------------------------------- /sys/Web_interface/auth/user.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Author: swstorage 3 | 4 | class User(): 5 | def __init__(self, username): 6 | self.id = username 7 | 8 | # The following 4 methods are required by Flask-Login 9 | def is_authenticated(self): 10 | return True 11 | 12 | def is_active(self): 13 | return True 14 | 15 | def is_anonymous(self): 16 | return False 17 | 18 | def get_id(self): 19 | return self.id 20 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/beacon.css: -------------------------------------------------------------------------------- 1 | th{ 2 | text-align:center; 3 | color:blue; 4 | } 5 | 6 | td{ 7 | text-align:center; 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/css/bootstrap-select-1.12.4.zip -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/.gitignore: -------------------------------------------------------------------------------- 1 | # OS or Editor folders 2 | .DS_Store 3 | .idea 4 | 5 | # Folders to ignore 6 | node_modules 7 | bower_components 8 | .sass-cache 9 | 10 | # Dist zip 11 | bootstrap-select-*.zip 12 | 13 | docs/site 14 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2013-2015 bootstrap-select 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-select", 3 | "main": [ 4 | "less/bootstrap-select.less", 5 | "dist/css/bootstrap-select.css", 6 | "dist/js/bootstrap-select.js" 7 | ], 8 | "homepage": "http://silviomoreto.github.io/bootstrap-select", 9 | "authors": [ 10 | "silviomoreto" 11 | ], 12 | "keywords": [ 13 | "form", 14 | "bootstrap", 15 | "select", 16 | "replacement" 17 | ], 18 | "dependencies": { 19 | "jquery": ">=1.8" 20 | }, 21 | "license": "MIT", 22 | "ignore": [ 23 | ".gitignore", 24 | "CONTRIBUTING.md", 25 | "Gruntfile.js", 26 | "README.md", 27 | "composer.json", 28 | "package.json", 29 | "test.html", 30 | "docs" 31 | ] 32 | } 33 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-select/bootstrap-select", 3 | "description": "Bootstrap-select is a jQuery plugin that utilizes Bootstrap's dropdown.js to style and bring additional functionality to standard select elements.", 4 | "keywords": [ 5 | "form", 6 | "bootstrap", 7 | "select", 8 | "replacement" 9 | ], 10 | "homepage": "http://silviomoreto.github.io/bootstrap-select", 11 | "version": "1.12.4", 12 | "authors": [ 13 | { 14 | "name": "Silvio Moreto", 15 | "homepage": "https://github.com/silviomoreto" 16 | } 17 | ], 18 | "license": "MIT", 19 | "suggest": { 20 | "components/jquery": ">=1.8", 21 | "twbs/bootstrap": "~3.0.0" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ar_AR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){/*! 8 | * Translated default messages for bootstrap-select. 9 | * Locale: AR (Arabic) 10 | * Author: Yasser Lotfy 11 | */ 12 | !function(a){a.fn.selectpicker.defaults={noneSelectedText:"لم يتم إختيار شئ",noneResultsText:"لا توجد نتائج مطابقة لـ {0}",countSelectedText:function(a,b){return 1==a?"{0} خيار تم إختياره":"{0} خيارات تمت إختيارها"},maxOptionsText:function(a,b){return[1==a?"تخطى الحد المسموح ({n} خيار بحد أقصى)":"تخطى الحد المسموح ({n} خيارات بحد أقصى)",1==b?"تخطى الحد المسموح للمجموعة ({n} خيار بحد أقصى)":"تخطى الحد المسموح للمجموعة ({n} خيارات بحد أقصى)"]},selectAllText:"إختيار الجميع",deselectAllText:"إلغاء إختيار الجميع",multipleSeparator:"، "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-bg_BG.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Нищо избрано",noneResultsText:"Няма резултат за {0}",countSelectedText:function(a,b){return 1==a?"{0} избран елемент":"{0} избрани елемента"},maxOptionsText:function(a,b){return[1==a?"Лимита е достигнат ({n} елемент максимум)":"Лимита е достигнат ({n} елемента максимум)",1==b?"Груповия лимит е достигнат ({n} елемент максимум)":"Груповия лимит е достигнат ({n} елемента максимум)"]},selectAllText:"Избери всички",deselectAllText:"Размаркирай всички",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-cro_CRO.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Odaberite stavku",noneResultsText:"Nema rezultata pretrage {0}",countSelectedText:function(a,b){return 1==a?"{0} stavka selektirana":"{0} stavke selektirane"},maxOptionsText:function(a,b){return[1==a?"Limit je postignut ({n} stvar maximalno)":"Limit je postignut ({n} stavke maksimalno)",1==b?"Grupni limit je postignut ({n} stvar maksimalno)":"Grupni limit je postignut ({n} stavke maksimalno)"]},selectAllText:"Selektiraj sve",deselectAllText:"Deselektiraj sve",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-cs_CZ.js: -------------------------------------------------------------------------------- 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: 'Nic není vybráno', 27 | noneResultsText: 'Žádné výsledky {0}', 28 | countSelectedText: 'Označeno {0} z {1}', 29 | maxOptionsText: ['Limit překročen ({n} {var} max)', 'Limit skupiny překročen ({n} {var} max)', ['položek', 'položka']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Vybrat Vše', 32 | deselectAllText: 'Odznačit Vše' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-cs_CZ.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic není vybráno",noneResultsText:"Žádné výsledky {0}",countSelectedText:"Označeno {0} z {1}",maxOptionsText:["Limit překročen ({n} {var} max)","Limit skupiny překročen ({n} {var} max)",["položek","položka"]],multipleSeparator:", ",selectAllText:"Vybrat Vše",deselectAllText:"Odznačit Vše"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-da_DK.js: -------------------------------------------------------------------------------- 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: 'Intet valgt', 27 | noneResultsText: 'Ingen resultater fundet {0}', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return (numSelected == 1) ? "{0} valgt" : "{0} valgt"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | (numAll == 1) ? 'Begrænsning nået (max {n} valgt)' : 'Begrænsning nået (max {n} valgte)', 34 | (numGroup == 1) ? 'Gruppe-begrænsning nået (max {n} valgt)' : 'Gruppe-begrænsning nået (max {n} valgte)' 35 | ]; 36 | }, 37 | selectAllText: 'Markér alle', 38 | deselectAllText: 'Afmarkér alle', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-da_DK.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Intet valgt",noneResultsText:"Ingen resultater fundet {0}",countSelectedText:function(a,b){return"{0} valgt"},maxOptionsText:function(a,b){return[1==a?"Begrænsning nået (max {n} valgt)":"Begrænsning nået (max {n} valgte)",1==b?"Gruppe-begrænsning nået (max {n} valgt)":"Gruppe-begrænsning nået (max {n} valgte)"]},selectAllText:"Markér alle",deselectAllText:"Afmarkér alle",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-de_DE.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Bitte wählen...",noneResultsText:"Keine Ergebnisse für {0}",countSelectedText:function(a,b){return 1==a?"{0} Element ausgewählt":"{0} Elemente ausgewählt"},maxOptionsText:function(a,b){return[1==a?"Limit erreicht ({n} Element max.)":"Limit erreicht ({n} Elemente max.)",1==b?"Gruppen-Limit erreicht ({n} Element max.)":"Gruppen-Limit erreicht ({n} Elemente max.)"]},selectAllText:"Alles auswählen",deselectAllText:"Nichts auswählen",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-en_US.js: -------------------------------------------------------------------------------- 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: 'Nothing selected', 27 | noneResultsText: 'No results match {0}', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return (numSelected == 1) ? "{0} item selected" : "{0} items selected"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | (numAll == 1) ? 'Limit reached ({n} item max)' : 'Limit reached ({n} items max)', 34 | (numGroup == 1) ? 'Group limit reached ({n} item max)' : 'Group limit reached ({n} items max)' 35 | ]; 36 | }, 37 | selectAllText: 'Select All', 38 | deselectAllText: 'Deselect All', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-en_US.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nothing selected",noneResultsText:"No results match {0}",countSelectedText:function(a,b){return 1==a?"{0} item selected":"{0} items selected"},maxOptionsText:function(a,b){return[1==a?"Limit reached ({n} item max)":"Limit reached ({n} items max)",1==b?"Group limit reached ({n} item max)":"Group limit reached ({n} items max)"]},selectAllText:"Select All",deselectAllText:"Deselect All",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-es_CL.js: -------------------------------------------------------------------------------- 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: 'No hay selección', 27 | noneResultsText: 'No hay resultados {0}', 28 | countSelectedText: 'Seleccionados {0} de {1}', 29 | maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Seleccionar Todos', 32 | deselectAllText: 'Desmarcar Todos' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-es_CL.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["Límite alcanzado ({n} {var} max)","Límite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-es_ES.js: -------------------------------------------------------------------------------- 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: 'No hay selección', 27 | noneResultsText: 'No hay resultados {0}', 28 | countSelectedText: 'Seleccionados {0} de {1}', 29 | maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Seleccionar Todos', 32 | deselectAllText: 'Desmarcar Todos' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-es_ES.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["Límite alcanzado ({n} {var} max)","Límite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-et_EE.js: -------------------------------------------------------------------------------- 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: 'Valikut pole tehtud', 27 | noneResultsText: 'Otsingule {0} ei ole vasteid', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return (numSelected == 1) ? "{0} item selected" : "{0} items selected"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | 'Limiit on {n} max', 34 | 'Globaalne limiit on {n} max' 35 | ]; 36 | }, 37 | selectAllText: 'Vali kõik', 38 | deselectAllText: 'Tühista kõik', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-et_EE.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Valikut pole tehtud",noneResultsText:"Otsingule {0} ei ole vasteid",countSelectedText:function(a,b){return 1==a?"{0} item selected":"{0} items selected"},maxOptionsText:function(a,b){return["Limiit on {n} max","Globaalne limiit on {n} max"]},selectAllText:"Vali kõik",deselectAllText:"Tühista kõik",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-eu.js: -------------------------------------------------------------------------------- 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: 'Hautapenik ez', 27 | noneResultsText: 'Emaitzarik ez {0}', 28 | countSelectedText: '{1}(e)tik {0} hautatuta', 29 | maxOptionsText: ['Mugara iritsita ({n} {var} gehienez)', 'Taldearen mugara iritsita ({n} {var} gehienez)', ['elementu', 'elementu']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Hautatu Guztiak', 32 | deselectAllText: 'Desautatu Guztiak' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-eu.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Hautapenik ez",noneResultsText:"Emaitzarik ez {0}",countSelectedText:"{1}(e)tik {0} hautatuta",maxOptionsText:["Mugara iritsita ({n} {var} gehienez)","Taldearen mugara iritsita ({n} {var} gehienez)",["elementu","elementu"]],multipleSeparator:", ",selectAllText:"Hautatu Guztiak",deselectAllText:"Desautatu Guztiak"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-fa_IR.js: -------------------------------------------------------------------------------- 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: 'چیزی انتخاب نشده است', 27 | noneResultsText: 'هیج مشابهی برای {0} پیدا نشد', 28 | countSelectedText: "{0} از {1} مورد انتخاب شده", 29 | maxOptionsText: ['بیشتر ممکن نیست {حداکثر {n} عدد}', 'بیشتر ممکن نیست {حداکثر {n} عدد}'], 30 | selectAllText: 'انتخاب همه', 31 | deselectAllText: 'انتخاب هیچ کدام', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-fa_IR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"چیزی انتخاب نشده است",noneResultsText:"هیج مشابهی برای {0} پیدا نشد",countSelectedText:"{0} از {1} مورد انتخاب شده",maxOptionsText:["بیشتر ممکن نیست {حداکثر {n} عدد}","بیشتر ممکن نیست {حداکثر {n} عدد}"],selectAllText:"انتخاب همه",deselectAllText:"انتخاب هیچ کدام",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-fi_FI.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ei valintoja",noneResultsText:"Ei hakutuloksia {0}",countSelectedText:function(a,b){return 1==a?"{0} valittu":"{0} valitut"},maxOptionsText:function(a,b){return["Valintojen maksimimäärä ({n} saavutettu)","Ryhmän maksimimäärä ({n} saavutettu)"]},selectAllText:"Valitse kaikki",deselectAllText:"Poista kaikki",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-fr_FR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Aucune sélection",noneResultsText:"Aucun résultat pour {0}",countSelectedText:function(a,b){return a>1?"{0} éléments sélectionnés":"{0} élément sélectionné"},maxOptionsText:function(a,b){return[a>1?"Limite atteinte ({n} éléments max)":"Limite atteinte ({n} élément max)",b>1?"Limite du groupe atteinte ({n} éléments max)":"Limite du groupe atteinte ({n} élément max)"]},multipleSeparator:", ",selectAllText:"Tout sélectionner",deselectAllText:"Tout désélectionner"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-hu_HU.js: -------------------------------------------------------------------------------- 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: 'Válasszon!', 27 | noneResultsText: 'Nincs találat {0}', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return '{0} elem kiválasztva'; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | 'Legfeljebb {n} elem választható', 34 | 'A csoportban legfeljebb {n} elem választható' 35 | ]; 36 | }, 37 | selectAllText: 'Mind', 38 | deselectAllText: 'Egyik sem', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-hu_HU.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Válasszon!",noneResultsText:"Nincs találat {0}",countSelectedText:function(a,b){return"{0} elem kiválasztva"},maxOptionsText:function(a,b){return["Legfeljebb {n} elem választható","A csoportban legfeljebb {n} elem választható"]},selectAllText:"Mind",deselectAllText:"Egyik sem",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-id_ID.js: -------------------------------------------------------------------------------- 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: 'Tidak ada yang dipilih', 27 | noneResultsText: 'Tidak ada yang cocok {0}', 28 | countSelectedText: '{0} terpilih', 29 | maxOptionsText: ['Mencapai batas (maksimum {n})', 'Mencapai batas grup (maksimum {n})'], 30 | selectAllText: 'Pilih Semua', 31 | deselectAllText: 'Hapus Semua', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-id_ID.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Tidak ada yang dipilih",noneResultsText:"Tidak ada yang cocok {0}",countSelectedText:"{0} terpilih",maxOptionsText:["Mencapai batas (maksimum {n})","Mencapai batas grup (maksimum {n})"],selectAllText:"Pilih Semua",deselectAllText:"Hapus Semua",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-it_IT.js: -------------------------------------------------------------------------------- 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: 'Nessuna selezione', 27 | noneResultsText: 'Nessun risultato per {0}', 28 | countSelectedText: function (numSelected, numTotal){ 29 | return (numSelected == 1) ? 'Selezionato {0} di {1}' : 'Selezionati {0} di {1}'; 30 | }, 31 | maxOptionsText: ['Limite raggiunto ({n} {var} max)', 'Limite del gruppo raggiunto ({n} {var} max)', ['elementi', 'elemento']], 32 | multipleSeparator: ', ', 33 | selectAllText: 'Seleziona Tutto', 34 | deselectAllText: 'Deseleziona Tutto' 35 | }; 36 | })(jQuery); 37 | 38 | 39 | })); 40 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-it_IT.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nessuna selezione",noneResultsText:"Nessun risultato per {0}",countSelectedText:function(a,b){return 1==a?"Selezionato {0} di {1}":"Selezionati {0} di {1}"},maxOptionsText:["Limite raggiunto ({n} {var} max)","Limite del gruppo raggiunto ({n} {var} max)",["elementi","elemento"]],multipleSeparator:", ",selectAllText:"Seleziona Tutto",deselectAllText:"Deseleziona Tutto"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ja_JP.js: -------------------------------------------------------------------------------- 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: '何もが選択した', 27 | noneResultsText: '\'{0}\'が結果を返さない', 28 | countSelectedText: '{0}/{1}が選択した', 29 | maxOptionsText: ['限界は達した({n}{var}最大)', '限界をグループは達した({n}{var}最大)', ['アイテム', 'アイテム']], 30 | selectAllText: '全部を選択する', 31 | deselectAllText: '何も選択しない', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ja_JP.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"何もが選択した",noneResultsText:"'{0}'が結果を返さない",countSelectedText:"{0}/{1}が選択した",maxOptionsText:["限界は達した({n}{var}最大)","限界をグループは達した({n}{var}最大)",["アイテム","アイテム"]],selectAllText:"全部を選択する",deselectAllText:"何も選択しない",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-kh_KM.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"មិនមានអ្វីបានជ្រើសរើស",noneResultsText:"មិនមានលទ្ធផល {0}",countSelectedText:function(a,b){return"{0} ធាតុដែលបានជ្រើស"},maxOptionsText:function(a,b){return[1==a?"ឈានដល់ដែនកំណត់ ( {n} ធាតុអតិបរមា)":"អតិបរមាឈានដល់ដែនកំណត់ ( {n} ធាតុ)",1==b?"ដែនកំណត់ក្រុមឈានដល់ ( {n} អតិបរមាធាតុ)":"អតិបរមាក្រុមឈានដល់ដែនកំណត់ ( {n} ធាតុ)"]},selectAllText:"ជ្រើស​យក​ទាំងអស់",deselectAllText:"មិនជ្រើស​យក​ទាំងអស",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ko_KR.js: -------------------------------------------------------------------------------- 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: '항목을 선택해주세요', 27 | noneResultsText: '{0} 검색 결과가 없습니다', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return "{0}개를 선택하였습니다"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | '{n}개까지 선택 가능합니다', 34 | '해당 그룹은 {n}개까지 선택 가능합니다' 35 | ]; 36 | }, 37 | selectAllText: '전체선택', 38 | deselectAllText: '전체해제', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ko_KR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"항목을 선택해주세요",noneResultsText:"{0} 검색 결과가 없습니다",countSelectedText:function(a,b){return"{0}개를 선택하였습니다"},maxOptionsText:function(a,b){return["{n}개까지 선택 가능합니다","해당 그룹은 {n}개까지 선택 가능합니다"]},selectAllText:"전체선택",deselectAllText:"전체해제",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-lt_LT.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Niekas nepasirinkta",noneResultsText:"Niekas nesutapo su {0}",countSelectedText:function(a,b){return 1==a?"{0} elementas pasirinktas":"{0} elementai(-ų) pasirinkta"},maxOptionsText:function(a,b){return[1==a?"Pasiekta riba ({n} elementas daugiausiai)":"Riba pasiekta ({n} elementai(-ų) daugiausiai)",1==b?"Grupės riba pasiekta ({n} elementas daugiausiai)":"Grupės riba pasiekta ({n} elementai(-ų) daugiausiai)"]},selectAllText:"Pasirinkti visus",deselectAllText:"Atmesti visus",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-nb_NO.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ingen valgt",noneResultsText:"Søket gir ingen treff {0}",countSelectedText:function(a,b){return 1==a?"{0} alternativ valgt":"{0} alternativer valgt"},maxOptionsText:function(a,b){return["Grense nådd (maks {n} valg)","Grense for grupper nådd (maks {n} grupper)"]},selectAllText:"Merk alle",deselectAllText:"Fjern alle",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-nl_NL.js: -------------------------------------------------------------------------------- 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: 'Niets geselecteerd', 27 | noneResultsText: 'Geen resultaten gevonden voor {0}', 28 | countSelectedText: '{0} van {1} geselecteerd', 29 | maxOptionsText: ['Limiet bereikt ({n} {var} max)', 'Groep limiet bereikt ({n} {var} max)', ['items', 'item']], 30 | selectAllText: 'Alles selecteren', 31 | deselectAllText: 'Alles deselecteren', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-nl_NL.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Niets geselecteerd",noneResultsText:"Geen resultaten gevonden voor {0}",countSelectedText:"{0} van {1} geselecteerd",maxOptionsText:["Limiet bereikt ({n} {var} max)","Groep limiet bereikt ({n} {var} max)",["items","item"]],selectAllText:"Alles selecteren",deselectAllText:"Alles deselecteren",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-pl_PL.js: -------------------------------------------------------------------------------- 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: 'Nic nie zaznaczono', 27 | noneResultsText: 'Brak wyników wyszukiwania {0}', 28 | countSelectedText: 'Zaznaczono {0} z {1}', 29 | maxOptionsText: ['Osiągnięto limit ({n} {var} max)', 'Limit grupy osiągnięty ({n} {var} max)', ['elementy', 'element']], 30 | selectAllText: 'Zaznacz wszystkie', 31 | deselectAllText: 'Odznacz wszystkie', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-pl_PL.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic nie zaznaczono",noneResultsText:"Brak wyników wyszukiwania {0}",countSelectedText:"Zaznaczono {0} z {1}",maxOptionsText:["Osiągnięto limit ({n} {var} max)","Limit grupy osiągnięty ({n} {var} max)",["elementy","element"]],selectAllText:"Zaznacz wszystkie",deselectAllText:"Odznacz wszystkie",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-pt_BR.js: -------------------------------------------------------------------------------- 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: 'Nada selecionado', 27 | noneResultsText: 'Nada encontrado contendo {0}', 28 | countSelectedText: 'Selecionado {0} de {1}', 29 | maxOptionsText: ['Limite excedido (máx. {n} {var})', 'Limite do grupo excedido (máx. {n} {var})', ['itens', 'item']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Selecionar Todos', 32 | deselectAllText: 'Desmarcar Todos' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-pt_BR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nada selecionado",noneResultsText:"Nada encontrado contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite excedido (máx. {n} {var})","Limite do grupo excedido (máx. {n} {var})",["itens","item"]],multipleSeparator:", ",selectAllText:"Selecionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-pt_PT.js: -------------------------------------------------------------------------------- 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: 'Nenhum seleccionado', 27 | noneResultsText: 'Sem resultados contendo {0}', 28 | countSelectedText: 'Selecionado {0} de {1}', 29 | maxOptionsText: ['Limite ultrapassado (máx. {n} {var})', 'Limite de seleções ultrapassado (máx. {n} {var})', ['itens', 'item']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Selecionar Tudo', 32 | deselectAllText: 'Desmarcar Todos' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-pt_PT.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nenhum seleccionado",noneResultsText:"Sem resultados contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite ultrapassado (máx. {n} {var})","Limite de seleções ultrapassado (máx. {n} {var})",["itens","item"]],multipleSeparator:", ",selectAllText:"Selecionar Tudo",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ro_RO.js: -------------------------------------------------------------------------------- 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 | doneButtonText: 'Închide', 27 | noneSelectedText: 'Nu a fost selectat nimic', 28 | noneResultsText: 'Nu există niciun rezultat {0}', 29 | countSelectedText: '{0} din {1} selectat(e)', 30 | maxOptionsText: ['Limita a fost atinsă ({n} {var} max)', 'Limita de grup a fost atinsă ({n} {var} max)', ['iteme', 'item']], 31 | selectAllText: 'Selectează toate', 32 | deselectAllText: 'Deselectează toate', 33 | multipleSeparator: ', ' 34 | }; 35 | })(jQuery); 36 | 37 | 38 | })); 39 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ro_RO.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={doneButtonText:"Închide",noneSelectedText:"Nu a fost selectat nimic",noneResultsText:"Nu există niciun rezultat {0}",countSelectedText:"{0} din {1} selectat(e)",maxOptionsText:["Limita a fost atinsă ({n} {var} max)","Limita de grup a fost atinsă ({n} {var} max)",["iteme","item"]],selectAllText:"Selectează toate",deselectAllText:"Deselectează toate",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ru_RU.js: -------------------------------------------------------------------------------- 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: 'Ничего не выбрано', 27 | noneResultsText: 'Совпадений не найдено {0}', 28 | countSelectedText: 'Выбрано {0} из {1}', 29 | maxOptionsText: ['Достигнут предел ({n} {var} максимум)', 'Достигнут предел в группе ({n} {var} максимум)', ['шт.', 'шт.']], 30 | doneButtonText: 'Закрыть', 31 | selectAllText: 'Выбрать все', 32 | deselectAllText: 'Отменить все', 33 | multipleSeparator: ', ' 34 | }; 35 | })(jQuery); 36 | 37 | 38 | })); 39 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ru_RU.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ничего не выбрано",noneResultsText:"Совпадений не найдено {0}",countSelectedText:"Выбрано {0} из {1}",maxOptionsText:["Достигнут предел ({n} {var} максимум)","Достигнут предел в группе ({n} {var} максимум)",["шт.","шт."]],doneButtonText:"Закрыть",selectAllText:"Выбрать все",deselectAllText:"Отменить все",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-sk_SK.js: -------------------------------------------------------------------------------- 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: 'Vyberte zo zoznamu', 27 | noneResultsText: 'Pre výraz {0} neboli nájdené žiadne výsledky', 28 | countSelectedText: 'Vybrané {0} z {1}', 29 | maxOptionsText: ['Limit prekročený ({n} {var} max)', 'Limit skupiny prekročený ({n} {var} max)', ['položiek', 'položka']], 30 | selectAllText: 'Vybrať všetky', 31 | deselectAllText: 'Zrušiť výber', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-sk_SK.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Vyberte zo zoznamu",noneResultsText:"Pre výraz {0} neboli nájdené žiadne výsledky",countSelectedText:"Vybrané {0} z {1}",maxOptionsText:["Limit prekročený ({n} {var} max)","Limit skupiny prekročený ({n} {var} max)",["položiek","položka"]],selectAllText:"Vybrať všetky",deselectAllText:"Zrušiť výber",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-sl_SI.js: -------------------------------------------------------------------------------- 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: 'Nič izbranega', 27 | noneResultsText: 'Ni zadetkov za {0}', 28 | countSelectedText: '{0} od {1} izbranih', 29 | maxOptionsText: function (numAll, numGroup) { 30 | return [ 31 | 'Omejitev dosežena (max. izbranih: {n})', 32 | 'Omejitev skupine dosežena (max. izbranih: {n})' 33 | ]; 34 | }, 35 | selectAllText: 'Izberi vse', 36 | deselectAllText: 'Počisti izbor', 37 | multipleSeparator: ', ' 38 | }; 39 | })(jQuery); 40 | 41 | 42 | })); 43 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-sl_SI.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nič izbranega",noneResultsText:"Ni zadetkov za {0}",countSelectedText:"{0} od {1} izbranih",maxOptionsText:function(a,b){return["Omejitev dosežena (max. izbranih: {n})","Omejitev skupine dosežena (max. izbranih: {n})"]},selectAllText:"Izberi vse",deselectAllText:"Počisti izbor",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-sv_SE.js: -------------------------------------------------------------------------------- 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: 'Inget valt', 27 | noneResultsText: 'Inget sökresultat matchar {0}', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return (numSelected === 1) ? "{0} alternativ valt" : "{0} alternativ valda"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | 'Gräns uppnåd (max {n} alternativ)', 34 | 'Gräns uppnåd (max {n} gruppalternativ)' 35 | ]; 36 | }, 37 | selectAllText: 'Markera alla', 38 | deselectAllText: 'Avmarkera alla', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-sv_SE.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Inget valt",noneResultsText:"Inget sökresultat matchar {0}",countSelectedText:function(a,b){return 1===a?"{0} alternativ valt":"{0} alternativ valda"},maxOptionsText:function(a,b){return["Gräns uppnåd (max {n} alternativ)","Gräns uppnåd (max {n} gruppalternativ)"]},selectAllText:"Markera alla",deselectAllText:"Avmarkera alla",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-tr_TR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Hiçbiri seçilmedi",noneResultsText:"Hiçbir sonuç bulunamadı {0}",countSelectedText:function(a,b){return"{0} öğe seçildi"},maxOptionsText:function(a,b){return[1==a?"Limit aşıldı (maksimum {n} sayıda öğe )":"Limit aşıldı (maksimum {n} sayıda öğe)","Grup limiti aşıldı (maksimum {n} sayıda öğe)"]},selectAllText:"Tümünü Seç",deselectAllText:"Seçiniz",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ua_UA.js: -------------------------------------------------------------------------------- 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: 'Нічого не вибрано', 27 | noneResultsText: 'Збігів не знайдено {0}', 28 | countSelectedText: 'Вибрано {0} із {1}', 29 | maxOptionsText: ['Досягнута межа ({n} {var} максимум)', 'Досягнута межа в групі ({n} {var} максимум)', ['items', 'item']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Вибрати все', 32 | deselectAllText: 'Скасувати вибір усі' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-ua_UA.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Нічого не вибрано",noneResultsText:"Збігів не знайдено {0}",countSelectedText:"Вибрано {0} із {1}",maxOptionsText:["Досягнута межа ({n} {var} максимум)","Досягнута межа в групі ({n} {var} максимум)",["items","item"]],multipleSeparator:", ",selectAllText:"Вибрати все",deselectAllText:"Скасувати вибір усі"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-vi_VN.js: -------------------------------------------------------------------------------- 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: 'Chưa chọn', 27 | noneResultsText: 'Không có kết quả cho {0}', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return "{0} mục đã chọn"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | 'Không thể chọn (giới hạn {n} mục)', 34 | 'Không thể chọn (giới hạn {n} mục)' 35 | ]; 36 | }, 37 | selectAllText: 'Chọn tất cả', 38 | deselectAllText: 'Bỏ chọn', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-vi_VN.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Chưa chọn",noneResultsText:"Không có kết quả cho {0}",countSelectedText:function(a,b){return"{0} mục đã chọn"},maxOptionsText:function(a,b){return["Không thể chọn (giới hạn {n} mục)","Không thể chọn (giới hạn {n} mục)"]},selectAllText:"Chọn tất cả",deselectAllText:"Bỏ chọn",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-zh_CN.js: -------------------------------------------------------------------------------- 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: '没有选中任何项', 27 | noneResultsText: '没有找到匹配项', 28 | countSelectedText: '选中{1}中的{0}项', 29 | maxOptionsText: ['超出限制 (最多选择{n}项)', '组选择超出限制(最多选择{n}组)'], 30 | multipleSeparator: ', ', 31 | selectAllText: '全选', 32 | deselectAllText: '取消全选' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-zh_CN.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"没有选中任何项",noneResultsText:"没有找到匹配项",countSelectedText:"选中{1}中的{0}项",maxOptionsText:["超出限制 (最多选择{n}项)","组选择超出限制(最多选择{n}组)"],multipleSeparator:", ",selectAllText:"全选",deselectAllText:"取消全选"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-zh_TW.js: -------------------------------------------------------------------------------- 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: '沒有選取任何項目', 27 | noneResultsText: '沒有找到符合的結果', 28 | countSelectedText: '已經選取{0}個項目', 29 | maxOptionsText: ['超過限制 (最多選擇{n}項)', '超過限制(最多選擇{n}組)'], 30 | selectAllText: '選取全部', 31 | deselectAllText: '全部取消', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/dist/js/i18n/defaults-zh_TW.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"沒有選取任何項目",noneResultsText:"沒有找到符合的結果",countSelectedText:"已經選取{0}個項目",maxOptionsText:["超過限制 (最多選擇{n}項)","超過限制(最多選擇{n}組)"],selectAllText:"選取全部",deselectAllText:"全部取消",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/convertizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/convertizer.png -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/estimateit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/estimateit.png -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/membermeister.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/membermeister.png -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/snapappointments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/snapappointments.png -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/solveforall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/solveforall.png -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/thermofisher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/img/logos/thermofisher.png -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/js/base.js: -------------------------------------------------------------------------------- 1 | /* Highlight */ 2 | $( document ).ready(function() { 3 | hljs.initHighlightingOnLoad(); 4 | $('table').addClass('table table-striped table-hover'); 5 | $('pre').addClass('highlight'); 6 | }); 7 | 8 | $('body').scrollspy({ 9 | target: '.bs-sidebar', 10 | }); 11 | 12 | $('.bs-sidebar').affix({ 13 | offset: { 14 | top: 210 15 | } 16 | }); 17 | 18 | /* Prevent disabled links from causing a page reload */ 19 | $("li.disabled a").click(function() { 20 | event.preventDefault(); 21 | }); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/custom_theme/toc.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ar_AR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){/*! 8 | * Translated default messages for bootstrap-select. 9 | * Locale: AR (Arabic) 10 | * Author: Yasser Lotfy 11 | */ 12 | !function(a){a.fn.selectpicker.defaults={noneSelectedText:"لم يتم إختيار شئ",noneResultsText:"لا توجد نتائج مطابقة لـ {0}",countSelectedText:function(a,b){return 1==a?"{0} خيار تم إختياره":"{0} خيارات تمت إختيارها"},maxOptionsText:function(a,b){return[1==a?"تخطى الحد المسموح ({n} خيار بحد أقصى)":"تخطى الحد المسموح ({n} خيارات بحد أقصى)",1==b?"تخطى الحد المسموح للمجموعة ({n} خيار بحد أقصى)":"تخطى الحد المسموح للمجموعة ({n} خيارات بحد أقصى)"]},selectAllText:"إختيار الجميع",deselectAllText:"إلغاء إختيار الجميع",multipleSeparator:"، "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-bg_BG.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Нищо избрано",noneResultsText:"Няма резултат за {0}",countSelectedText:function(a,b){return 1==a?"{0} избран елемент":"{0} избрани елемента"},maxOptionsText:function(a,b){return[1==a?"Лимита е достигнат ({n} елемент максимум)":"Лимита е достигнат ({n} елемента максимум)",1==b?"Груповия лимит е достигнат ({n} елемент максимум)":"Груповия лимит е достигнат ({n} елемента максимум)"]},selectAllText:"Избери всички",deselectAllText:"Размаркирай всички",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-cro_CRO.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Odaberite stavku",noneResultsText:"Nema rezultata pretrage {0}",countSelectedText:function(a,b){return 1==a?"{0} stavka selektirana":"{0} stavke selektirane"},maxOptionsText:function(a,b){return[1==a?"Limit je postignut ({n} stvar maximalno)":"Limit je postignut ({n} stavke maksimalno)",1==b?"Grupni limit je postignut ({n} stvar maksimalno)":"Grupni limit je postignut ({n} stavke maksimalno)"]},selectAllText:"Selektiraj sve",deselectAllText:"Deselektiraj sve",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-cs_CZ.js: -------------------------------------------------------------------------------- 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: 'Nic není vybráno', 27 | noneResultsText: 'Žádné výsledky {0}', 28 | countSelectedText: 'Označeno {0} z {1}', 29 | maxOptionsText: ['Limit překročen ({n} {var} max)', 'Limit skupiny překročen ({n} {var} max)', ['položek', 'položka']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Vybrat Vše', 32 | deselectAllText: 'Odznačit Vše' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-cs_CZ.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic není vybráno",noneResultsText:"Žádné výsledky {0}",countSelectedText:"Označeno {0} z {1}",maxOptionsText:["Limit překročen ({n} {var} max)","Limit skupiny překročen ({n} {var} max)",["položek","položka"]],multipleSeparator:", ",selectAllText:"Vybrat Vše",deselectAllText:"Odznačit Vše"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-da_DK.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Intet valgt",noneResultsText:"Ingen resultater fundet {0}",countSelectedText:function(a,b){return"{0} valgt"},maxOptionsText:function(a,b){return[1==a?"Begrænsning nået (max {n} valgt)":"Begrænsning nået (max {n} valgte)",1==b?"Gruppe-begrænsning nået (max {n} valgt)":"Gruppe-begrænsning nået (max {n} valgte)"]},selectAllText:"Markér alle",deselectAllText:"Afmarkér alle",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-de_DE.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Bitte wählen...",noneResultsText:"Keine Ergebnisse für {0}",countSelectedText:function(a,b){return 1==a?"{0} Element ausgewählt":"{0} Elemente ausgewählt"},maxOptionsText:function(a,b){return[1==a?"Limit erreicht ({n} Element max.)":"Limit erreicht ({n} Elemente max.)",1==b?"Gruppen-Limit erreicht ({n} Element max.)":"Gruppen-Limit erreicht ({n} Elemente max.)"]},selectAllText:"Alles auswählen",deselectAllText:"Nichts auswählen",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-en_US.js: -------------------------------------------------------------------------------- 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: 'Nothing selected', 27 | noneResultsText: 'No results match {0}', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return (numSelected == 1) ? "{0} item selected" : "{0} items selected"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | (numAll == 1) ? 'Limit reached ({n} item max)' : 'Limit reached ({n} items max)', 34 | (numGroup == 1) ? 'Group limit reached ({n} item max)' : 'Group limit reached ({n} items max)' 35 | ]; 36 | }, 37 | selectAllText: 'Select All', 38 | deselectAllText: 'Deselect All', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-en_US.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nothing selected",noneResultsText:"No results match {0}",countSelectedText:function(a,b){return 1==a?"{0} item selected":"{0} items selected"},maxOptionsText:function(a,b){return[1==a?"Limit reached ({n} item max)":"Limit reached ({n} items max)",1==b?"Group limit reached ({n} item max)":"Group limit reached ({n} items max)"]},selectAllText:"Select All",deselectAllText:"Deselect All",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-es_CL.js: -------------------------------------------------------------------------------- 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: 'No hay selección', 27 | noneResultsText: 'No hay resultados {0}', 28 | countSelectedText: 'Seleccionados {0} de {1}', 29 | maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Seleccionar Todos', 32 | deselectAllText: 'Desmarcar Todos' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-es_CL.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["Límite alcanzado ({n} {var} max)","Límite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-es_ES.js: -------------------------------------------------------------------------------- 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: 'No hay selección', 27 | noneResultsText: 'No hay resultados {0}', 28 | countSelectedText: 'Seleccionados {0} de {1}', 29 | maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Seleccionar Todos', 32 | deselectAllText: 'Desmarcar Todos' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-es_ES.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"No hay selección",noneResultsText:"No hay resultados {0}",countSelectedText:"Seleccionados {0} de {1}",maxOptionsText:["Límite alcanzado ({n} {var} max)","Límite del grupo alcanzado({n} {var} max)",["elementos","element"]],multipleSeparator:", ",selectAllText:"Seleccionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-et_EE.js: -------------------------------------------------------------------------------- 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: 'Valikut pole tehtud', 27 | noneResultsText: 'Otsingule {0} ei ole vasteid', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return (numSelected == 1) ? "{0} item selected" : "{0} items selected"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | 'Limiit on {n} max', 34 | 'Globaalne limiit on {n} max' 35 | ]; 36 | }, 37 | selectAllText: 'Vali kõik', 38 | deselectAllText: 'Tühista kõik', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-et_EE.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Valikut pole tehtud",noneResultsText:"Otsingule {0} ei ole vasteid",countSelectedText:function(a,b){return 1==a?"{0} item selected":"{0} items selected"},maxOptionsText:function(a,b){return["Limiit on {n} max","Globaalne limiit on {n} max"]},selectAllText:"Vali kõik",deselectAllText:"Tühista kõik",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-eu.js: -------------------------------------------------------------------------------- 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: 'Hautapenik ez', 27 | noneResultsText: 'Emaitzarik ez {0}', 28 | countSelectedText: '{1}(e)tik {0} hautatuta', 29 | maxOptionsText: ['Mugara iritsita ({n} {var} gehienez)', 'Taldearen mugara iritsita ({n} {var} gehienez)', ['elementu', 'elementu']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Hautatu Guztiak', 32 | deselectAllText: 'Desautatu Guztiak' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-eu.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Hautapenik ez",noneResultsText:"Emaitzarik ez {0}",countSelectedText:"{1}(e)tik {0} hautatuta",maxOptionsText:["Mugara iritsita ({n} {var} gehienez)","Taldearen mugara iritsita ({n} {var} gehienez)",["elementu","elementu"]],multipleSeparator:", ",selectAllText:"Hautatu Guztiak",deselectAllText:"Desautatu Guztiak"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-fa_IR.js: -------------------------------------------------------------------------------- 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: 'چیزی انتخاب نشده است', 27 | noneResultsText: 'هیج مشابهی برای {0} پیدا نشد', 28 | countSelectedText: "{0} از {1} مورد انتخاب شده", 29 | maxOptionsText: ['بیشتر ممکن نیست {حداکثر {n} عدد}', 'بیشتر ممکن نیست {حداکثر {n} عدد}'], 30 | selectAllText: 'انتخاب همه', 31 | deselectAllText: 'انتخاب هیچ کدام', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-fa_IR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"چیزی انتخاب نشده است",noneResultsText:"هیج مشابهی برای {0} پیدا نشد",countSelectedText:"{0} از {1} مورد انتخاب شده",maxOptionsText:["بیشتر ممکن نیست {حداکثر {n} عدد}","بیشتر ممکن نیست {حداکثر {n} عدد}"],selectAllText:"انتخاب همه",deselectAllText:"انتخاب هیچ کدام",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-fi_FI.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ei valintoja",noneResultsText:"Ei hakutuloksia {0}",countSelectedText:function(a,b){return 1==a?"{0} valittu":"{0} valitut"},maxOptionsText:function(a,b){return["Valintojen maksimimäärä ({n} saavutettu)","Ryhmän maksimimäärä ({n} saavutettu)"]},selectAllText:"Valitse kaikki",deselectAllText:"Poista kaikki",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-fr_FR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Aucune sélection",noneResultsText:"Aucun résultat pour {0}",countSelectedText:function(a,b){return a>1?"{0} éléments sélectionnés":"{0} élément sélectionné"},maxOptionsText:function(a,b){return[a>1?"Limite atteinte ({n} éléments max)":"Limite atteinte ({n} élément max)",b>1?"Limite du groupe atteinte ({n} éléments max)":"Limite du groupe atteinte ({n} élément max)"]},multipleSeparator:", ",selectAllText:"Tout sélectionner",deselectAllText:"Tout désélectionner"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-hu_HU.js: -------------------------------------------------------------------------------- 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: 'Válasszon!', 27 | noneResultsText: 'Nincs találat {0}', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return '{0} elem kiválasztva'; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | 'Legfeljebb {n} elem választható', 34 | 'A csoportban legfeljebb {n} elem választható' 35 | ]; 36 | }, 37 | selectAllText: 'Mind', 38 | deselectAllText: 'Egyik sem', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-hu_HU.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Válasszon!",noneResultsText:"Nincs találat {0}",countSelectedText:function(a,b){return"{0} elem kiválasztva"},maxOptionsText:function(a,b){return["Legfeljebb {n} elem választható","A csoportban legfeljebb {n} elem választható"]},selectAllText:"Mind",deselectAllText:"Egyik sem",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-id_ID.js: -------------------------------------------------------------------------------- 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: 'Tidak ada yang dipilih', 27 | noneResultsText: 'Tidak ada yang cocok {0}', 28 | countSelectedText: '{0} terpilih', 29 | maxOptionsText: ['Mencapai batas (maksimum {n})', 'Mencapai batas grup (maksimum {n})'], 30 | selectAllText: 'Pilih Semua', 31 | deselectAllText: 'Hapus Semua', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-id_ID.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Tidak ada yang dipilih",noneResultsText:"Tidak ada yang cocok {0}",countSelectedText:"{0} terpilih",maxOptionsText:["Mencapai batas (maksimum {n})","Mencapai batas grup (maksimum {n})"],selectAllText:"Pilih Semua",deselectAllText:"Hapus Semua",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-it_IT.js: -------------------------------------------------------------------------------- 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: 'Nessuna selezione', 27 | noneResultsText: 'Nessun risultato per {0}', 28 | countSelectedText: function (numSelected, numTotal){ 29 | return (numSelected == 1) ? 'Selezionato {0} di {1}' : 'Selezionati {0} di {1}'; 30 | }, 31 | maxOptionsText: ['Limite raggiunto ({n} {var} max)', 'Limite del gruppo raggiunto ({n} {var} max)', ['elementi', 'elemento']], 32 | multipleSeparator: ', ', 33 | selectAllText: 'Seleziona Tutto', 34 | deselectAllText: 'Deseleziona Tutto' 35 | }; 36 | })(jQuery); 37 | 38 | 39 | })); 40 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-it_IT.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nessuna selezione",noneResultsText:"Nessun risultato per {0}",countSelectedText:function(a,b){return 1==a?"Selezionato {0} di {1}":"Selezionati {0} di {1}"},maxOptionsText:["Limite raggiunto ({n} {var} max)","Limite del gruppo raggiunto ({n} {var} max)",["elementi","elemento"]],multipleSeparator:", ",selectAllText:"Seleziona Tutto",deselectAllText:"Deseleziona Tutto"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ja_JP.js: -------------------------------------------------------------------------------- 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: '何もが選択した', 27 | noneResultsText: '\'{0}\'が結果を返さない', 28 | countSelectedText: '{0}/{1}が選択した', 29 | maxOptionsText: ['限界は達した({n}{var}最大)', '限界をグループは達した({n}{var}最大)', ['アイテム', 'アイテム']], 30 | selectAllText: '全部を選択する', 31 | deselectAllText: '何も選択しない', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ja_JP.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"何もが選択した",noneResultsText:"'{0}'が結果を返さない",countSelectedText:"{0}/{1}が選択した",maxOptionsText:["限界は達した({n}{var}最大)","限界をグループは達した({n}{var}最大)",["アイテム","アイテム"]],selectAllText:"全部を選択する",deselectAllText:"何も選択しない",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-kh_KM.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"មិនមានអ្វីបានជ្រើសរើស",noneResultsText:"មិនមានលទ្ធផល {0}",countSelectedText:function(a,b){return"{0} ធាតុដែលបានជ្រើស"},maxOptionsText:function(a,b){return[1==a?"ឈានដល់ដែនកំណត់ ( {n} ធាតុអតិបរមា)":"អតិបរមាឈានដល់ដែនកំណត់ ( {n} ធាតុ)",1==b?"ដែនកំណត់ក្រុមឈានដល់ ( {n} អតិបរមាធាតុ)":"អតិបរមាក្រុមឈានដល់ដែនកំណត់ ( {n} ធាតុ)"]},selectAllText:"ជ្រើស​យក​ទាំងអស់",deselectAllText:"មិនជ្រើស​យក​ទាំងអស",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ko_KR.js: -------------------------------------------------------------------------------- 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: '항목을 선택해주세요', 27 | noneResultsText: '{0} 검색 결과가 없습니다', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return "{0}개를 선택하였습니다"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | '{n}개까지 선택 가능합니다', 34 | '해당 그룹은 {n}개까지 선택 가능합니다' 35 | ]; 36 | }, 37 | selectAllText: '전체선택', 38 | deselectAllText: '전체해제', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ko_KR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"항목을 선택해주세요",noneResultsText:"{0} 검색 결과가 없습니다",countSelectedText:function(a,b){return"{0}개를 선택하였습니다"},maxOptionsText:function(a,b){return["{n}개까지 선택 가능합니다","해당 그룹은 {n}개까지 선택 가능합니다"]},selectAllText:"전체선택",deselectAllText:"전체해제",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-lt_LT.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Niekas nepasirinkta",noneResultsText:"Niekas nesutapo su {0}",countSelectedText:function(a,b){return 1==a?"{0} elementas pasirinktas":"{0} elementai(-ų) pasirinkta"},maxOptionsText:function(a,b){return[1==a?"Pasiekta riba ({n} elementas daugiausiai)":"Riba pasiekta ({n} elementai(-ų) daugiausiai)",1==b?"Grupės riba pasiekta ({n} elementas daugiausiai)":"Grupės riba pasiekta ({n} elementai(-ų) daugiausiai)"]},selectAllText:"Pasirinkti visus",deselectAllText:"Atmesti visus",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-nb_NO.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ingen valgt",noneResultsText:"Søket gir ingen treff {0}",countSelectedText:function(a,b){return 1==a?"{0} alternativ valgt":"{0} alternativer valgt"},maxOptionsText:function(a,b){return["Grense nådd (maks {n} valg)","Grense for grupper nådd (maks {n} grupper)"]},selectAllText:"Merk alle",deselectAllText:"Fjern alle",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-nl_NL.js: -------------------------------------------------------------------------------- 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: 'Niets geselecteerd', 27 | noneResultsText: 'Geen resultaten gevonden voor {0}', 28 | countSelectedText: '{0} van {1} geselecteerd', 29 | maxOptionsText: ['Limiet bereikt ({n} {var} max)', 'Groep limiet bereikt ({n} {var} max)', ['items', 'item']], 30 | selectAllText: 'Alles selecteren', 31 | deselectAllText: 'Alles deselecteren', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-nl_NL.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Niets geselecteerd",noneResultsText:"Geen resultaten gevonden voor {0}",countSelectedText:"{0} van {1} geselecteerd",maxOptionsText:["Limiet bereikt ({n} {var} max)","Groep limiet bereikt ({n} {var} max)",["items","item"]],selectAllText:"Alles selecteren",deselectAllText:"Alles deselecteren",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-pl_PL.js: -------------------------------------------------------------------------------- 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: 'Nic nie zaznaczono', 27 | noneResultsText: 'Brak wyników wyszukiwania {0}', 28 | countSelectedText: 'Zaznaczono {0} z {1}', 29 | maxOptionsText: ['Osiągnięto limit ({n} {var} max)', 'Limit grupy osiągnięty ({n} {var} max)', ['elementy', 'element']], 30 | selectAllText: 'Zaznacz wszystkie', 31 | deselectAllText: 'Odznacz wszystkie', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-pl_PL.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nic nie zaznaczono",noneResultsText:"Brak wyników wyszukiwania {0}",countSelectedText:"Zaznaczono {0} z {1}",maxOptionsText:["Osiągnięto limit ({n} {var} max)","Limit grupy osiągnięty ({n} {var} max)",["elementy","element"]],selectAllText:"Zaznacz wszystkie",deselectAllText:"Odznacz wszystkie",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-pt_BR.js: -------------------------------------------------------------------------------- 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: 'Nada selecionado', 27 | noneResultsText: 'Nada encontrado contendo {0}', 28 | countSelectedText: 'Selecionado {0} de {1}', 29 | maxOptionsText: ['Limite excedido (máx. {n} {var})', 'Limite do grupo excedido (máx. {n} {var})', ['itens', 'item']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Selecionar Todos', 32 | deselectAllText: 'Desmarcar Todos' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-pt_BR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nada selecionado",noneResultsText:"Nada encontrado contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite excedido (máx. {n} {var})","Limite do grupo excedido (máx. {n} {var})",["itens","item"]],multipleSeparator:", ",selectAllText:"Selecionar Todos",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-pt_PT.js: -------------------------------------------------------------------------------- 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: 'Nenhum seleccionado', 27 | noneResultsText: 'Sem resultados contendo {0}', 28 | countSelectedText: 'Selecionado {0} de {1}', 29 | maxOptionsText: ['Limite ultrapassado (máx. {n} {var})', 'Limite de seleções ultrapassado (máx. {n} {var})', ['itens', 'item']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Selecionar Tudo', 32 | deselectAllText: 'Desmarcar Todos' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-pt_PT.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nenhum seleccionado",noneResultsText:"Sem resultados contendo {0}",countSelectedText:"Selecionado {0} de {1}",maxOptionsText:["Limite ultrapassado (máx. {n} {var})","Limite de seleções ultrapassado (máx. {n} {var})",["itens","item"]],multipleSeparator:", ",selectAllText:"Selecionar Tudo",deselectAllText:"Desmarcar Todos"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ro_RO.js: -------------------------------------------------------------------------------- 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 | doneButtonText: 'Închide', 27 | noneSelectedText: 'Nu a fost selectat nimic', 28 | noneResultsText: 'Nu există niciun rezultat {0}', 29 | countSelectedText: '{0} din {1} selectat(e)', 30 | maxOptionsText: ['Limita a fost atinsă ({n} {var} max)', 'Limita de grup a fost atinsă ({n} {var} max)', ['iteme', 'item']], 31 | selectAllText: 'Selectează toate', 32 | deselectAllText: 'Deselectează toate', 33 | multipleSeparator: ', ' 34 | }; 35 | })(jQuery); 36 | 37 | 38 | })); 39 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ro_RO.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={doneButtonText:"Închide",noneSelectedText:"Nu a fost selectat nimic",noneResultsText:"Nu există niciun rezultat {0}",countSelectedText:"{0} din {1} selectat(e)",maxOptionsText:["Limita a fost atinsă ({n} {var} max)","Limita de grup a fost atinsă ({n} {var} max)",["iteme","item"]],selectAllText:"Selectează toate",deselectAllText:"Deselectează toate",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ru_RU.js: -------------------------------------------------------------------------------- 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: 'Ничего не выбрано', 27 | noneResultsText: 'Совпадений не найдено {0}', 28 | countSelectedText: 'Выбрано {0} из {1}', 29 | maxOptionsText: ['Достигнут предел ({n} {var} максимум)', 'Достигнут предел в группе ({n} {var} максимум)', ['шт.', 'шт.']], 30 | doneButtonText: 'Закрыть', 31 | selectAllText: 'Выбрать все', 32 | deselectAllText: 'Отменить все', 33 | multipleSeparator: ', ' 34 | }; 35 | })(jQuery); 36 | 37 | 38 | })); 39 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ru_RU.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Ничего не выбрано",noneResultsText:"Совпадений не найдено {0}",countSelectedText:"Выбрано {0} из {1}",maxOptionsText:["Достигнут предел ({n} {var} максимум)","Достигнут предел в группе ({n} {var} максимум)",["шт.","шт."]],doneButtonText:"Закрыть",selectAllText:"Выбрать все",deselectAllText:"Отменить все",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-sk_SK.js: -------------------------------------------------------------------------------- 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: 'Vyberte zo zoznamu', 27 | noneResultsText: 'Pre výraz {0} neboli nájdené žiadne výsledky', 28 | countSelectedText: 'Vybrané {0} z {1}', 29 | maxOptionsText: ['Limit prekročený ({n} {var} max)', 'Limit skupiny prekročený ({n} {var} max)', ['položiek', 'položka']], 30 | selectAllText: 'Vybrať všetky', 31 | deselectAllText: 'Zrušiť výber', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-sk_SK.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Vyberte zo zoznamu",noneResultsText:"Pre výraz {0} neboli nájdené žiadne výsledky",countSelectedText:"Vybrané {0} z {1}",maxOptionsText:["Limit prekročený ({n} {var} max)","Limit skupiny prekročený ({n} {var} max)",["položiek","položka"]],selectAllText:"Vybrať všetky",deselectAllText:"Zrušiť výber",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-sl_SI.js: -------------------------------------------------------------------------------- 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: 'Nič izbranega', 27 | noneResultsText: 'Ni zadetkov za {0}', 28 | countSelectedText: '{0} od {1} izbranih', 29 | maxOptionsText: function (numAll, numGroup) { 30 | return [ 31 | 'Omejitev dosežena (max. izbranih: {n})', 32 | 'Omejitev skupine dosežena (max. izbranih: {n})' 33 | ]; 34 | }, 35 | selectAllText: 'Izberi vse', 36 | deselectAllText: 'Počisti izbor', 37 | multipleSeparator: ', ' 38 | }; 39 | })(jQuery); 40 | 41 | 42 | })); 43 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-sl_SI.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Nič izbranega",noneResultsText:"Ni zadetkov za {0}",countSelectedText:"{0} od {1} izbranih",maxOptionsText:function(a,b){return["Omejitev dosežena (max. izbranih: {n})","Omejitev skupine dosežena (max. izbranih: {n})"]},selectAllText:"Izberi vse",deselectAllText:"Počisti izbor",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-sv_SE.js: -------------------------------------------------------------------------------- 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: 'Inget valt', 27 | noneResultsText: 'Inget sökresultat matchar {0}', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return (numSelected === 1) ? "{0} alternativ valt" : "{0} alternativ valda"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | 'Gräns uppnåd (max {n} alternativ)', 34 | 'Gräns uppnåd (max {n} gruppalternativ)' 35 | ]; 36 | }, 37 | selectAllText: 'Markera alla', 38 | deselectAllText: 'Avmarkera alla', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-sv_SE.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Inget valt",noneResultsText:"Inget sökresultat matchar {0}",countSelectedText:function(a,b){return 1===a?"{0} alternativ valt":"{0} alternativ valda"},maxOptionsText:function(a,b){return["Gräns uppnåd (max {n} alternativ)","Gräns uppnåd (max {n} gruppalternativ)"]},selectAllText:"Markera alla",deselectAllText:"Avmarkera alla",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-tr_TR.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Hiçbiri seçilmedi",noneResultsText:"Hiçbir sonuç bulunamadı {0}",countSelectedText:function(a,b){return"{0} öğe seçildi"},maxOptionsText:function(a,b){return[1==a?"Limit aşıldı (maksimum {n} sayıda öğe )":"Limit aşıldı (maksimum {n} sayıda öğe)","Grup limiti aşıldı (maksimum {n} sayıda öğe)"]},selectAllText:"Tümünü Seç",deselectAllText:"Seçiniz",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ua_UA.js: -------------------------------------------------------------------------------- 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: 'Нічого не вибрано', 27 | noneResultsText: 'Збігів не знайдено {0}', 28 | countSelectedText: 'Вибрано {0} із {1}', 29 | maxOptionsText: ['Досягнута межа ({n} {var} максимум)', 'Досягнута межа в групі ({n} {var} максимум)', ['items', 'item']], 30 | multipleSeparator: ', ', 31 | selectAllText: 'Вибрати все', 32 | deselectAllText: 'Скасувати вибір усі' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-ua_UA.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Нічого не вибрано",noneResultsText:"Збігів не знайдено {0}",countSelectedText:"Вибрано {0} із {1}",maxOptionsText:["Досягнута межа ({n} {var} максимум)","Досягнута межа в групі ({n} {var} максимум)",["items","item"]],multipleSeparator:", ",selectAllText:"Вибрати все",deselectAllText:"Скасувати вибір усі"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-vi_VN.js: -------------------------------------------------------------------------------- 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: 'Chưa chọn', 27 | noneResultsText: 'Không có kết quả cho {0}', 28 | countSelectedText: function (numSelected, numTotal) { 29 | return "{0} mục đã chọn"; 30 | }, 31 | maxOptionsText: function (numAll, numGroup) { 32 | return [ 33 | 'Không thể chọn (giới hạn {n} mục)', 34 | 'Không thể chọn (giới hạn {n} mục)' 35 | ]; 36 | }, 37 | selectAllText: 'Chọn tất cả', 38 | deselectAllText: 'Bỏ chọn', 39 | multipleSeparator: ', ' 40 | }; 41 | })(jQuery); 42 | 43 | 44 | })); 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-vi_VN.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"Chưa chọn",noneResultsText:"Không có kết quả cho {0}",countSelectedText:function(a,b){return"{0} mục đã chọn"},maxOptionsText:function(a,b){return["Không thể chọn (giới hạn {n} mục)","Không thể chọn (giới hạn {n} mục)"]},selectAllText:"Chọn tất cả",deselectAllText:"Bỏ chọn",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-zh_CN.js: -------------------------------------------------------------------------------- 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: '没有选中任何项', 27 | noneResultsText: '没有找到匹配项', 28 | countSelectedText: '选中{1}中的{0}项', 29 | maxOptionsText: ['超出限制 (最多选择{n}项)', '组选择超出限制(最多选择{n}组)'], 30 | multipleSeparator: ', ', 31 | selectAllText: '全选', 32 | deselectAllText: '取消全选' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-zh_CN.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"没有选中任何项",noneResultsText:"没有找到匹配项",countSelectedText:"选中{1}中的{0}项",maxOptionsText:["超出限制 (最多选择{n}项)","组选择超出限制(最多选择{n}组)"],multipleSeparator:", ",selectAllText:"全选",deselectAllText:"取消全选"}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-zh_TW.js: -------------------------------------------------------------------------------- 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: '沒有選取任何項目', 27 | noneResultsText: '沒有找到符合的結果', 28 | countSelectedText: '已經選取{0}個項目', 29 | maxOptionsText: ['超過限制 (最多選擇{n}項)', '超過限制(最多選擇{n}組)'], 30 | selectAllText: '選取全部', 31 | deselectAllText: '全部取消', 32 | multipleSeparator: ', ' 33 | }; 34 | })(jQuery); 35 | 36 | 37 | })); 38 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/dist/js/i18n/defaults-zh_TW.min.js: -------------------------------------------------------------------------------- 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 | !function(a,b){"function"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a){a.fn.selectpicker.defaults={noneSelectedText:"沒有選取任何項目",noneResultsText:"沒有找到符合的結果",countSelectedText:"已經選取{0}個項目",maxOptionsText:["超過限制 (最多選擇{n}項)","超過限制(最多選擇{n}組)"],selectAllText:"選取全部",deselectAllText:"全部取消",multipleSeparator:", "}}(a)}); -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/docs/playground/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/docs/mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: bootstrap-select 2 | site_description: Bootstrap-select is a jQuery plugin that utilizes Bootstrap's dropdown.js to style and bring additional functionality to standard select elements. 3 | repo_url: https://github.com/silviomoreto/bootstrap-select 4 | theme: bootstrap 5 | theme_dir: custom_theme 6 | extra_css: 7 | - css/custom.css 8 | - dist/css/bootstrap-select.min.css 9 | extra_javascript: 10 | - dist/js/bootstrap-select.min.js 11 | pages: 12 | - Bootstrap-select: index.md 13 | - Examples: examples.md 14 | - Options: options.md 15 | - Methods: methods.md 16 | extra: 17 | version: 1.12.4 18 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "unused": true, 11 | "boss": true, 12 | "eqnull": true, 13 | "browser": true, 14 | "jquery": true 15 | } 16 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-ar_AR.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Translated default messages for bootstrap-select. 3 | * Locale: AR (Arabic) 4 | * Author: Yasser Lotfy 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'لم يتم إختيار شئ', 9 | noneResultsText: 'لا توجد نتائج مطابقة لـ {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} خيار تم إختياره" : "{0} خيارات تمت إختيارها"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'تخطى الحد المسموح ({n} خيار بحد أقصى)' : 'تخطى الحد المسموح ({n} خيارات بحد أقصى)', 16 | (numGroup == 1) ? 'تخطى الحد المسموح للمجموعة ({n} خيار بحد أقصى)' : 'تخطى الحد المسموح للمجموعة ({n} خيارات بحد أقصى)' 17 | ]; 18 | }, 19 | selectAllText: 'إختيار الجميع', 20 | deselectAllText: 'إلغاء إختيار الجميع', 21 | multipleSeparator: '، ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-bg_BG.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: BG (Bulgaria) 4 | * Region: BG (Bulgaria) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Нищо избрано', 9 | noneResultsText: 'Няма резултат за {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} избран елемент" : "{0} избрани елемента"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Лимита е достигнат ({n} елемент максимум)' : 'Лимита е достигнат ({n} елемента максимум)', 16 | (numGroup == 1) ? 'Груповия лимит е достигнат ({n} елемент максимум)' : 'Груповия лимит е достигнат ({n} елемента максимум)' 17 | ]; 18 | }, 19 | selectAllText: 'Избери всички', 20 | deselectAllText: 'Размаркирай всички', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-cro_CRO.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: CRO (Croatia) 4 | * Region: CRO (Croatia) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Odaberite stavku', 9 | noneResultsText: 'Nema rezultata pretrage {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} stavka selektirana" : "{0} stavke selektirane"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Limit je postignut ({n} stvar maximalno)' : 'Limit je postignut ({n} stavke maksimalno)', 16 | (numGroup == 1) ? 'Grupni limit je postignut ({n} stvar maksimalno)' : 'Grupni limit je postignut ({n} stavke maksimalno)' 17 | ]; 18 | }, 19 | selectAllText: 'Selektiraj sve', 20 | deselectAllText: 'Deselektiraj sve', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-cs_CZ.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: CS 4 | * Region: CZ (Czech Republic) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Nic není vybráno', 9 | noneResultsText: 'Žádné výsledky {0}', 10 | countSelectedText: 'Označeno {0} z {1}', 11 | maxOptionsText: ['Limit překročen ({n} {var} max)', 'Limit skupiny překročen ({n} {var} max)', ['položek', 'položka']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Vybrat Vše', 14 | deselectAllText: 'Odznačit Vše' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-da_DK.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: DA (Danish) 4 | * Region: DK (Denmark) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Intet valgt', 9 | noneResultsText: 'Ingen resultater fundet {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} valgt" : "{0} valgt"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Begrænsning nået (max {n} valgt)' : 'Begrænsning nået (max {n} valgte)', 16 | (numGroup == 1) ? 'Gruppe-begrænsning nået (max {n} valgt)' : 'Gruppe-begrænsning nået (max {n} valgte)' 17 | ]; 18 | }, 19 | selectAllText: 'Markér alle', 20 | deselectAllText: 'Afmarkér alle', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-de_DE.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: DE (German, deutsch) 4 | * Region: DE (Germany, Deutschland) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Bitte wählen...', 9 | noneResultsText: 'Keine Ergebnisse für {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} Element ausgewählt" : "{0} Elemente ausgewählt"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Limit erreicht ({n} Element max.)' : 'Limit erreicht ({n} Elemente max.)', 16 | (numGroup == 1) ? 'Gruppen-Limit erreicht ({n} Element max.)' : 'Gruppen-Limit erreicht ({n} Elemente max.)' 17 | ]; 18 | }, 19 | selectAllText: 'Alles auswählen', 20 | deselectAllText: 'Nichts auswählen', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-en_US.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: EN (English) 4 | * Region: US (United States) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Nothing selected', 9 | noneResultsText: 'No results match {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} item selected" : "{0} items selected"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Limit reached ({n} item max)' : 'Limit reached ({n} items max)', 16 | (numGroup == 1) ? 'Group limit reached ({n} item max)' : 'Group limit reached ({n} items max)' 17 | ]; 18 | }, 19 | selectAllText: 'Select All', 20 | deselectAllText: 'Deselect All', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-es_CL.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ES (Spanish) 4 | * Region: CL (Chile) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'No hay selección', 9 | noneResultsText: 'No hay resultados {0}', 10 | countSelectedText: 'Seleccionados {0} de {1}', 11 | maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Seleccionar Todos', 14 | deselectAllText: 'Desmarcar Todos' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-es_ES.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ES (Spanish) 4 | * Region: ES (Spain) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'No hay selección', 9 | noneResultsText: 'No hay resultados {0}', 10 | countSelectedText: 'Seleccionados {0} de {1}', 11 | maxOptionsText: ['Límite alcanzado ({n} {var} max)', 'Límite del grupo alcanzado({n} {var} max)', ['elementos', 'element']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Seleccionar Todos', 14 | deselectAllText: 'Desmarcar Todos' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-et_EE.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ET (Eesti keel) 4 | * Region: EE (Estonia) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Valikut pole tehtud', 9 | noneResultsText: 'Otsingule {0} ei ole vasteid', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} item selected" : "{0} items selected"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | 'Limiit on {n} max', 16 | 'Globaalne limiit on {n} max' 17 | ]; 18 | }, 19 | selectAllText: 'Vali kõik', 20 | deselectAllText: 'Tühista kõik', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: EU (Basque) 4 | * Region: 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Hautapenik ez', 9 | noneResultsText: 'Emaitzarik ez {0}', 10 | countSelectedText: '{1}(e)tik {0} hautatuta', 11 | maxOptionsText: ['Mugara iritsita ({n} {var} gehienez)', 'Taldearen mugara iritsita ({n} {var} gehienez)', ['elementu', 'elementu']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Hautatu Guztiak', 14 | deselectAllText: 'Desautatu Guztiak' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-fa_IR.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: FA (Farsi) 4 | * Region: IR (Iran) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'چیزی انتخاب نشده است', 9 | noneResultsText: 'هیج مشابهی برای {0} پیدا نشد', 10 | countSelectedText: "{0} از {1} مورد انتخاب شده", 11 | maxOptionsText: ['بیشتر ممکن نیست {حداکثر {n} عدد}', 'بیشتر ممکن نیست {حداکثر {n} عدد}'], 12 | selectAllText: 'انتخاب همه', 13 | deselectAllText: 'انتخاب هیچ کدام', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-fi_FI.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: FI (Finnish) 4 | * Region: FI (Finland) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Ei valintoja', 9 | noneResultsText: 'Ei hakutuloksia {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} valittu" : "{0} valitut"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Valintojen maksimimäärä ({n} saavutettu)' : 'Valintojen maksimimäärä ({n} saavutettu)', 16 | (numGroup == 1) ? 'Ryhmän maksimimäärä ({n} saavutettu)' : 'Ryhmän maksimimäärä ({n} saavutettu)' 17 | ]; 18 | }, 19 | selectAllText: 'Valitse kaikki', 20 | deselectAllText: 'Poista kaikki', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-fr_FR.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: FR (French; Français) 4 | * Region: FR (France) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Aucune sélection', 9 | noneResultsText: 'Aucun résultat pour {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected > 1) ? "{0} éléments sélectionnés" : "{0} élément sélectionné"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll > 1) ? 'Limite atteinte ({n} éléments max)' : 'Limite atteinte ({n} élément max)', 16 | (numGroup > 1) ? 'Limite du groupe atteinte ({n} éléments max)' : 'Limite du groupe atteinte ({n} élément max)' 17 | ]; 18 | }, 19 | multipleSeparator: ', ', 20 | selectAllText: 'Tout sélectionner', 21 | deselectAllText: 'Tout désélectionner', 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-hu_HU.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: HU (Hungarian) 4 | * Region: HU (Hungary) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Válasszon!', 9 | noneResultsText: 'Nincs találat {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return '{0} elem kiválasztva'; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | 'Legfeljebb {n} elem választható', 16 | 'A csoportban legfeljebb {n} elem választható' 17 | ]; 18 | }, 19 | selectAllText: 'Mind', 20 | deselectAllText: 'Egyik sem', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-id_ID.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ID (Indonesian; Bahasa Indonesia) 4 | * Region: ID (Indonesia) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Tidak ada yang dipilih', 9 | noneResultsText: 'Tidak ada yang cocok {0}', 10 | countSelectedText: '{0} terpilih', 11 | maxOptionsText: ['Mencapai batas (maksimum {n})', 'Mencapai batas grup (maksimum {n})'], 12 | selectAllText: 'Pilih Semua', 13 | deselectAllText: 'Hapus Semua', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-it_IT.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: IT (Italian; italiano) 4 | * Region: IT (Italy; Italia) 5 | * Author: Michele Beltrame 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Nessuna selezione', 10 | noneResultsText: 'Nessun risultato per {0}', 11 | countSelectedText: function (numSelected, numTotal){ 12 | return (numSelected == 1) ? 'Selezionato {0} di {1}' : 'Selezionati {0} di {1}'; 13 | }, 14 | maxOptionsText: ['Limite raggiunto ({n} {var} max)', 'Limite del gruppo raggiunto ({n} {var} max)', ['elementi', 'elemento']], 15 | multipleSeparator: ', ', 16 | selectAllText: 'Seleziona Tutto', 17 | deselectAllText: 'Deseleziona Tutto' 18 | }; 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-ja_JP.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: JA (Japanese; 日本語) 4 | * Region: JP (Japan) 5 | * Author: Richard Snijders (Flaxis) 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: '何もが選択した', 10 | noneResultsText: '\'{0}\'が結果を返さない', 11 | countSelectedText: '{0}/{1}が選択した', 12 | maxOptionsText: ['限界は達した({n}{var}最大)', '限界をグループは達した({n}{var}最大)', ['アイテム', 'アイテム']], 13 | selectAllText: '全部を選択する', 14 | deselectAllText: '何も選択しない', 15 | multipleSeparator: ', ' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-kh_KM.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: KH (Khmer) 4 | * Region: kM (Khmer) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'មិនមានអ្វីបានជ្រើសរើស', 9 | noneResultsText: 'មិនមានលទ្ធផល {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} ធាតុដែលបានជ្រើស" : "{0} ធាតុដែលបានជ្រើស"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'ឈានដល់ដែនកំណត់ ( {n} ធាតុអតិបរមា)' : 'អតិបរមាឈានដល់ដែនកំណត់ ( {n} ធាតុ)', 16 | (numGroup == 1) ? 'ដែនកំណត់ក្រុមឈានដល់ ( {n} អតិបរមាធាតុ)' : 'អតិបរមាក្រុមឈានដល់ដែនកំណត់ ( {n} ធាតុ)' 17 | ]; 18 | }, 19 | selectAllText: 'ជ្រើស​យក​ទាំងអស់', 20 | deselectAllText: 'មិនជ្រើស​យក​ទាំងអស', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-ko_KR.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: KO (Korean) 4 | * Region: KR (South Korea) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: '항목을 선택해주세요', 9 | noneResultsText: '{0} 검색 결과가 없습니다', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return "{0}개를 선택하였습니다"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | '{n}개까지 선택 가능합니다', 16 | '해당 그룹은 {n}개까지 선택 가능합니다' 17 | ]; 18 | }, 19 | selectAllText: '전체선택', 20 | deselectAllText: '전체해제', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-lt_LT.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: LT (Lithuanian) 4 | * Region: LT (Lithuania) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Niekas nepasirinkta', 9 | noneResultsText: 'Niekas nesutapo su {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} elementas pasirinktas" : "{0} elementai(-ų) pasirinkta"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Pasiekta riba ({n} elementas daugiausiai)' : 'Riba pasiekta ({n} elementai(-ų) daugiausiai)', 16 | (numGroup == 1) ? 'Grupės riba pasiekta ({n} elementas daugiausiai)' : 'Grupės riba pasiekta ({n} elementai(-ų) daugiausiai)' 17 | ]; 18 | }, 19 | selectAllText: 'Pasirinkti visus', 20 | deselectAllText: 'Atmesti visus', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-nb_NO.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: NB (Norwegian; Bokmål) 4 | * Region: NO (Norway) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Ingen valgt', 9 | noneResultsText: 'Søket gir ingen treff {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected == 1) ? "{0} alternativ valgt" : "{0} alternativer valgt"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | (numAll == 1) ? 'Grense nådd (maks {n} valg)' : 'Grense nådd (maks {n} valg)', 16 | (numGroup == 1) ? 'Grense for grupper nådd (maks {n} grupper)' : 'Grense for grupper nådd (maks {n} grupper)' 17 | ]; 18 | }, 19 | selectAllText: 'Merk alle', 20 | deselectAllText: 'Fjern alle', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-nl_NL.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: NL (Dutch; Nederlands) 4 | * Region: NL (Europe) 5 | * Author: Daan Rosbergen (Badmuts) 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Niets geselecteerd', 10 | noneResultsText: 'Geen resultaten gevonden voor {0}', 11 | countSelectedText: '{0} van {1} geselecteerd', 12 | maxOptionsText: ['Limiet bereikt ({n} {var} max)', 'Groep limiet bereikt ({n} {var} max)', ['items', 'item']], 13 | selectAllText: 'Alles selecteren', 14 | deselectAllText: 'Alles deselecteren', 15 | multipleSeparator: ', ' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-pl_PL.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: PL (Polish) 4 | * Region: EU (Europe) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Nic nie zaznaczono', 9 | noneResultsText: 'Brak wyników wyszukiwania {0}', 10 | countSelectedText: 'Zaznaczono {0} z {1}', 11 | maxOptionsText: ['Osiągnięto limit ({n} {var} max)', 'Limit grupy osiągnięty ({n} {var} max)', ['elementy', 'element']], 12 | selectAllText: 'Zaznacz wszystkie', 13 | deselectAllText: 'Odznacz wszystkie', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-pt_BR.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: PT (Portuguese; português) 4 | * Region: BR (Brazil; Brasil) 5 | * Author: Rodrigo de Avila 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Nada selecionado', 10 | noneResultsText: 'Nada encontrado contendo {0}', 11 | countSelectedText: 'Selecionado {0} de {1}', 12 | maxOptionsText: ['Limite excedido (máx. {n} {var})', 'Limite do grupo excedido (máx. {n} {var})', ['itens', 'item']], 13 | multipleSeparator: ', ', 14 | selectAllText: 'Selecionar Todos', 15 | deselectAllText: 'Desmarcar Todos' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-pt_PT.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: PT (Portuguese; português) 4 | * Region: PT (Portugal; Portugal) 5 | * Author: Burnspirit 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Nenhum seleccionado', 10 | noneResultsText: 'Sem resultados contendo {0}', 11 | countSelectedText: 'Selecionado {0} de {1}', 12 | maxOptionsText: ['Limite ultrapassado (máx. {n} {var})', 'Limite de seleções ultrapassado (máx. {n} {var})', ['itens', 'item']], 13 | multipleSeparator: ', ', 14 | selectAllText: 'Selecionar Tudo', 15 | deselectAllText: 'Desmarcar Todos' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-ro_RO.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: RO (Romanian) 4 | * Region: RO (Romania) 5 | * Alex Florea 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | doneButtonText: 'Închide', 10 | noneSelectedText: 'Nu a fost selectat nimic', 11 | noneResultsText: 'Nu există niciun rezultat {0}', 12 | countSelectedText: '{0} din {1} selectat(e)', 13 | maxOptionsText: ['Limita a fost atinsă ({n} {var} max)', 'Limita de grup a fost atinsă ({n} {var} max)', ['iteme', 'item']], 14 | selectAllText: 'Selectează toate', 15 | deselectAllText: 'Deselectează toate', 16 | multipleSeparator: ', ' 17 | }; 18 | })(jQuery); 19 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-ru_RU.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: RU (Russian; Русский) 4 | * Region: RU (Russian Federation) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Ничего не выбрано', 9 | noneResultsText: 'Совпадений не найдено {0}', 10 | countSelectedText: 'Выбрано {0} из {1}', 11 | maxOptionsText: ['Достигнут предел ({n} {var} максимум)', 'Достигнут предел в группе ({n} {var} максимум)', ['шт.', 'шт.']], 12 | doneButtonText: 'Закрыть', 13 | selectAllText: 'Выбрать все', 14 | deselectAllText: 'Отменить все', 15 | multipleSeparator: ', ' 16 | }; 17 | })(jQuery); 18 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-sk_SK.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: SK 4 | * Region: SK (Slovak Republic) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Vyberte zo zoznamu', 9 | noneResultsText: 'Pre výraz {0} neboli nájdené žiadne výsledky', 10 | countSelectedText: 'Vybrané {0} z {1}', 11 | maxOptionsText: ['Limit prekročený ({n} {var} max)', 'Limit skupiny prekročený ({n} {var} max)', ['položiek', 'položka']], 12 | selectAllText: 'Vybrať všetky', 13 | deselectAllText: 'Zrušiť výber', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-sl_SI.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: SL (Slovenian) 4 | * Region: SI (Slovenia) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Nič izbranega', 9 | noneResultsText: 'Ni zadetkov za {0}', 10 | countSelectedText: '{0} od {1} izbranih', 11 | maxOptionsText: function (numAll, numGroup) { 12 | return [ 13 | 'Omejitev dosežena (max. izbranih: {n})', 14 | 'Omejitev skupine dosežena (max. izbranih: {n})' 15 | ]; 16 | }, 17 | selectAllText: 'Izberi vse', 18 | deselectAllText: 'Počisti izbor', 19 | multipleSeparator: ', ' 20 | }; 21 | })(jQuery); 22 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-sv_SE.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: SV (Swedish) 4 | * Region: SE (Sweden) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Inget valt', 9 | noneResultsText: 'Inget sökresultat matchar {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return (numSelected === 1) ? "{0} alternativ valt" : "{0} alternativ valda"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | 'Gräns uppnåd (max {n} alternativ)', 16 | 'Gräns uppnåd (max {n} gruppalternativ)' 17 | ]; 18 | }, 19 | selectAllText: 'Markera alla', 20 | deselectAllText: 'Avmarkera alla', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-tr_TR.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: TR (Turkey) 4 | * Region: TR (Europe) 5 | * Author: Serhan Güney 6 | */ 7 | (function ($) { 8 | $.fn.selectpicker.defaults = { 9 | noneSelectedText: 'Hiçbiri seçilmedi', 10 | noneResultsText: 'Hiçbir sonuç bulunamadı {0}', 11 | countSelectedText: function (numSelected, numTotal) { 12 | return (numSelected == 1) ? "{0} öğe seçildi" : "{0} öğe seçildi"; 13 | }, 14 | maxOptionsText: function (numAll, numGroup) { 15 | return [ 16 | (numAll == 1) ? 'Limit aşıldı (maksimum {n} sayıda öğe )' : 'Limit aşıldı (maksimum {n} sayıda öğe)', 17 | (numGroup == 1) ? 'Grup limiti aşıldı (maksimum {n} sayıda öğe)' : 'Grup limiti aşıldı (maksimum {n} sayıda öğe)' 18 | ]; 19 | }, 20 | selectAllText: 'Tümünü Seç', 21 | deselectAllText: 'Seçiniz', 22 | multipleSeparator: ', ' 23 | }; 24 | })(jQuery); 25 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-ua_UA.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: UA (Ukrainian; Українська) 4 | * Region: UA (Ukraine) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Нічого не вибрано', 9 | noneResultsText: 'Збігів не знайдено {0}', 10 | countSelectedText: 'Вибрано {0} із {1}', 11 | maxOptionsText: ['Досягнута межа ({n} {var} максимум)', 'Досягнута межа в групі ({n} {var} максимум)', ['items', 'item']], 12 | multipleSeparator: ', ', 13 | selectAllText: 'Вибрати все', 14 | deselectAllText: 'Скасувати вибір усі' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-vi_VN.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Dịch các văn bản mặc định cho bootstrap-select. 3 | * Locale: VI (Vietnamese) 4 | * Region: VN (Việt Nam) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: 'Chưa chọn', 9 | noneResultsText: 'Không có kết quả cho {0}', 10 | countSelectedText: function (numSelected, numTotal) { 11 | return "{0} mục đã chọn"; 12 | }, 13 | maxOptionsText: function (numAll, numGroup) { 14 | return [ 15 | 'Không thể chọn (giới hạn {n} mục)', 16 | 'Không thể chọn (giới hạn {n} mục)' 17 | ]; 18 | }, 19 | selectAllText: 'Chọn tất cả', 20 | deselectAllText: 'Bỏ chọn', 21 | multipleSeparator: ', ' 22 | }; 23 | })(jQuery); 24 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-zh_CN.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ZH (Chinese) 4 | * Region: CN (China) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: '没有选中任何项', 9 | noneResultsText: '没有找到匹配项', 10 | countSelectedText: '选中{1}中的{0}项', 11 | maxOptionsText: ['超出限制 (最多选择{n}项)', '组选择超出限制(最多选择{n}组)'], 12 | multipleSeparator: ', ', 13 | selectAllText: '全选', 14 | deselectAllText: '取消全选' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/js/i18n/defaults-zh_TW.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Translated default messages for bootstrap-select. 3 | * Locale: ZH (Chinese) 4 | * Region: TW (Taiwan) 5 | */ 6 | (function ($) { 7 | $.fn.selectpicker.defaults = { 8 | noneSelectedText: '沒有選取任何項目', 9 | noneResultsText: '沒有找到符合的結果', 10 | countSelectedText: '已經選取{0}個項目', 11 | maxOptionsText: ['超過限制 (最多選擇{n}項)', '超過限制(最多選擇{n}組)'], 12 | selectAllText: '選取全部', 13 | deselectAllText: '全部取消', 14 | multipleSeparator: ', ' 15 | }; 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/less/variables.less: -------------------------------------------------------------------------------- 1 | @color-red-error: rgb(185, 74, 72); 2 | @color-grey-arrow: rgba(204, 204, 204, 0.2); 3 | 4 | @width-default: 220px; // 3 960px-grid columns 5 | 6 | @zindex-select-dropdown: 1060; // must be higher than a modal background (1050) 7 | 8 | //** Placeholder text color 9 | @input-color-placeholder: #999; -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/nuget/MyGet.ps1: -------------------------------------------------------------------------------- 1 | # set env vars usually set by MyGet (enable for local testing) 2 | #$env:SourcesPath = '..' 3 | #$env:NuGet = "./nuget.exe" #https://dist.nuget.org/win-x86-commandline/latest/nuget.exe 4 | 5 | $nuget = $env:NuGet 6 | 7 | # parse the version number out of package.json 8 | $bsversionParts = ((Get-Content $env:SourcesPath\package.json) -join "`n" | ConvertFrom-Json).version.split('-', 2) # split the version on the '-' 9 | $bsversion = $bsversionParts[0] 10 | 11 | if ($bsversionParts.Length -gt 1) 12 | { 13 | $bsversion += '-' + $bsversionParts[1].replace('.', '').replace('-', '_') # strip out invalid chars from the PreRelease part 14 | } 15 | 16 | # update sourceMappingURL in bootstrap-select.min.js 17 | (Get-Content $env:SourcesPath\dist\js\bootstrap-select.min.js).replace("sourceMappingURL=", "sourceMappingURL=Scripts/") | Set-Content $env:SourcesPath\dist\js\bootstrap-select.min.js 18 | 19 | # create packages 20 | & $nuget pack "$env:SourcesPath\nuget\bootstrap-select.nuspec" -Verbosity detailed -NonInteractive -NoPackageAnalysis -BasePath $env:SourcesPath -Version $bsversion -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/nuget/bootstrap-select.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bootstrap-select 5 | 1.12.4 6 | bootstrap-select 7 | Silvio Moreto,Ana Carolina,caseyjhol,Matt Bryson,and t0xicCode. 8 | Silvio Moreto 9 | https://github.com/silviomoreto/bootstrap-select 10 | Bootstrap-select is a jQuery plugin that utilizes Bootstrap's dropdown.js to style and bring additional functionality to standard select elements. 11 | bootstrap dropdown select 12 | false 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /sys/Web_interface/static/css/bootstrap-select-1.12.4/sass/variables.scss: -------------------------------------------------------------------------------- 1 | $color-red-error: rgb(185, 74, 72) !default; 2 | $color-grey-arrow: rgba(204, 204, 204, 0.2) !default; 3 | 4 | $width-default: 220px !default; // 3 960px-grid columns 5 | 6 | $zindex-select-dropdown: 1060 !default; // must be higher than a modal background (1050) 7 | 8 | //** Placeholder text color 9 | $input-color-placeholder: #999 !default; -------------------------------------------------------------------------------- /sys/Web_interface/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/css/login.css -------------------------------------------------------------------------------- /sys/Web_interface/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /sys/Web_interface/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /sys/Web_interface/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /sys/Web_interface/static/js/chart-image.js: -------------------------------------------------------------------------------- 1 | $("#submit").click(function() { 2 | var jid = $("#job_id").val(); 3 | if(!confirm("Please recheck your JOB ID:" + jid)){ 4 | return false; 5 | } 6 | $("#div_tip").html("Querying..."); 7 | $.ajax({ 8 | url : "/draw", 9 | type : 'post', 10 | data : $('#form_iops').serialize(), 11 | dataType : 'json', 12 | success : function(data) { 13 | var obj = eval(data); 14 | var jobid = obj.data.jobid; 15 | if (jobid.length == 0){ 16 | jobid=123456 17 | } 18 | $("#div_tip").html("Result"); 19 | $('#image').attr('src', '/image/'+jobid) 20 | }, 21 | error : function() { 22 | alert("error") 23 | } 24 | }) 25 | }); 26 | -------------------------------------------------------------------------------- /sys/Web_interface/static/js/easypiechart-data.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | $('#easypiechart-teal').easyPieChart({ 3 | scaleColor: false, 4 | barColor: '#1ebfae' 5 | }); 6 | }); 7 | 8 | $(function() { 9 | $('#easypiechart-orange').easyPieChart({ 10 | scaleColor: false, 11 | barColor: '#ffb53e' 12 | }); 13 | }); 14 | 15 | $(function() { 16 | $('#easypiechart-red').easyPieChart({ 17 | scaleColor: false, 18 | barColor: '#f9243f' 19 | }); 20 | }); 21 | 22 | $(function() { 23 | $('#easypiechart-blue').easyPieChart({ 24 | scaleColor: false, 25 | barColor: '#30a5ff' 26 | }); 27 | }); 28 | 29 | -------------------------------------------------------------------------------- /sys/Web_interface/static/js/echarts.min.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/js/echarts.min.zip -------------------------------------------------------------------------------- /sys/Web_interface/static/js/history_job.js: -------------------------------------------------------------------------------- 1 | function check(form){ 2 | 3 | var username = form.username.value; 4 | var jobname = form.jobname.value; 5 | 6 | if (username == "" || jobname == "" ){ 7 | alert("Please input both username and jobname"); 8 | return false; 9 | } 10 | return true; 11 | } 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sys/Web_interface/static/js/login.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | $('#username').focus().blur(checkName); 3 | $('#password').blur(checkPassword); 4 | }); 5 | 6 | function checkName(){ 7 | var name = $('#username').val(); 8 | if(name == null || name == ""){ 9 | $('#count-msg').html("Please input username"); 10 | return false; 11 | } 12 | $('#count-msg').empty(); 13 | return true; 14 | } 15 | 16 | function checkPassword(){ 17 | var password = $('#password').val(); 18 | if(password == null || password == ""){ 19 | $('#password-msg').html("Please input password"); 20 | return false; 21 | } 22 | $('#password-msg').empty(); 23 | return true; 24 | } 25 | -------------------------------------------------------------------------------- /sys/Web_interface/static/js/peichar.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/static/js/peichar.zip -------------------------------------------------------------------------------- /sys/Web_interface/static/js/userspace.js: -------------------------------------------------------------------------------- 1 | function check(form){ 2 | var start_time = form.start_time.value; 3 | var end_time = form.end_time.value; 4 | var username = form.username.value; 5 | 6 | if (username == ""){ 7 | alert("Please input at least the username"); 8 | return false; 9 | } 10 | 11 | if((start_time != "" && end_time =="") || (start_time == "" && end_time !="") ){ 12 | 13 | } 14 | 15 | var reg = /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/; 16 | 17 | if(start_time != ""){ 18 | var sr = start_time.match(reg); 19 | if(sr == null){ 20 | alert("Please input the right format start time, e.g. 2017-04-03 08:00:00"); 21 | return false; 22 | } 23 | } 24 | 25 | if(end_time != ""){ 26 | var sr = end_time.match(reg); 27 | if(sr == null){ 28 | alert("Please input the right format end time, e.g. 2017-04-03 08:00:00"); 29 | return false; 30 | } 31 | } 32 | 33 | if(start_time != "" && end_time !=""){ 34 | if(start_time >= end_time){ 35 | alert("The start time can not be later than the end time"); 36 | return false; 37 | } 38 | } 39 | 40 | return true; 41 | } 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /sys/Web_interface/static/js/workload.js: -------------------------------------------------------------------------------- 1 | function check(form){ 2 | var start_time = form.start_time.value; 3 | var end_time = form.end_time.value; 4 | 5 | if (start_time == "" || end_time == ""){ 6 | alert("Please input both start time and end time"); 7 | return false; 8 | } 9 | 10 | var reg = /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/; 11 | var sr = start_time.match(reg); 12 | var er = end_time.match(reg); 13 | 14 | if(sr == null){ 15 | alert("Please input the right format start time, e.g. 2017-04-03 08:00:00"); 16 | return false; 17 | } 18 | 19 | if(er == null){ 20 | alert("Please input the right format end time, e.g. 2017-04-03 08:00:00"); 21 | return false; 22 | } 23 | 24 | if(start_time >= end_time){ 25 | alert("The start time can not be later than the end time"); 26 | return false; 27 | } 28 | 29 | return true; 30 | } 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /sys/Web_interface/templates/c_error.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} {% block content %} 2 |
3 |
4 | 8 |
9 |
10 | {% if error_info %} 11 | {% for error_line in error_info %} 12 |

{{error_line}}

13 | {% endfor %} 14 | {% else %} 15 |

This is the ERROR information page

16 | {% endif %} 17 |
18 |
19 | 20 | {% endblock %} 21 | -------------------------------------------------------------------------------- /sys/Web_interface/templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} {% block content %} 2 |
3 |
4 | 5 |
6 |
7 | 8 | {% endblock %} {% block js %} 9 | 12 | {% endblock %} 13 | 14 | -------------------------------------------------------------------------------- /sys/Web_interface/templates/system_user.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} {% block content %} 2 |
3 |
4 | 9 |
10 |
11 |
12 |

All System Users

13 | 14 |
15 |
16 | 17 |
18 |
19 | 20 | 21 | {% for line in userlist %} 22 | 23 | {% for item in line %} 24 | 25 | {% endfor %} 26 | 27 | {% endfor %} 28 | 29 |
{{item[0]}}
30 | 31 | 32 | 33 | 34 | {% endblock %} {% block js %} 35 | 38 | {% endblock %} 39 | -------------------------------------------------------------------------------- /sys/Web_interface/templates/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Beaconsys/Beacon/d60d4128c89440816981fad3e9a1831a5447a86e/sys/Web_interface/templates/test.png -------------------------------------------------------------------------------- /sys/Web_interface/util/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # author: ideaPeng --------------------------------------------------------------------------------