├── NewFile ├── README.md ├── amp-iframe.html ├── amp.html ├── amp.pug ├── appServer.js ├── bin ├── layouts │ ├── style-fullscreen.css │ └── style-horizontal.css ├── materialize.css ├── materialize.js └── style.css ├── css ├── bootstrap-responsive.min.css ├── custom │ ├── custom.css │ └── custom.min.css ├── handleCounter.css ├── introjs.css ├── keypad.css ├── layouts │ ├── page-center.css │ ├── style-fullscreen.css │ └── style-horizontal.css ├── materialize-css.css ├── materialize.css ├── plugins │ └── media-hover-effects.css └── style.css ├── font ├── material-design-icons │ ├── LICENSE.txt │ ├── Material-Design-Icons.eot │ ├── Material-Design-Icons.svg │ ├── Material-Design-Icons.ttf │ ├── Material-Design-Icons.woff │ └── Material-Design-Icons.woff2 └── roboto │ ├── Roboto-Bold.ttf │ ├── Roboto-Bold.woff │ ├── Roboto-Bold.woff2 │ ├── Roboto-Light.ttf │ ├── Roboto-Light.woff │ ├── Roboto-Light.woff2 │ ├── Roboto-Medium.ttf │ ├── Roboto-Medium.woff │ ├── Roboto-Medium.woff2 │ ├── Roboto-Regular.ttf │ ├── Roboto-Regular.woff │ ├── Roboto-Regular.woff2 │ ├── Roboto-Thin.ttf │ ├── Roboto-Thin.woff │ └── Roboto-Thin.woff2 ├── helper-iframe.html ├── images ├── 3.png ├── Delivered.png ├── bitsoko-off.png ├── bitsoko.png ├── bitsoko_logo.png ├── call.png ├── complete.png ├── contacts.png ├── contactsBanner.png ├── deliveryM.png ├── dunno.png ├── facebook.png ├── gdrive-icon.png ├── icon.png ├── icons │ ├── battery.png │ ├── calendar.png │ ├── cancel.png │ ├── chat-1.png │ ├── chat-10.png │ ├── chat-2.png │ ├── chat-3.png │ ├── chat-4.png │ ├── chat-5.png │ ├── chat-6.png │ ├── chat-7.png │ ├── chat-8.png │ ├── chat-9.png │ ├── chat.png │ ├── checked.png │ ├── cloud-computing.png │ ├── cloud.png │ ├── cursor.png │ ├── document.png │ ├── envelope-1.png │ ├── envelope.png │ ├── folder.png │ ├── hourglass.png │ ├── idea.png │ ├── keyboard.png │ ├── loading.png │ ├── monitor.png │ ├── mouse.png │ ├── music.png │ ├── padlock.png │ ├── phone-call.png │ ├── rocket.png │ ├── settings.png │ ├── socket.png │ ├── stopwatch.png │ ├── tablet.png │ ├── trash.png │ ├── user.png │ ├── video-player.png │ ├── wristwatch.png │ └── zoom.png ├── linkedin.png ├── login-logo.png ├── logo-bits.png ├── mail.png ├── merchants.png ├── merchantsBanner.png ├── no.png ├── pending.png ├── search-icon.png ├── slides │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ └── p.png ├── stopwatch.png ├── tex2.png ├── twitter.png ├── user-bg-simple.jpg ├── user-profile-bg.jpg └── yes.png ├── index.html ├── jquery-1.7.1.min.js ├── js ├── Bits-closest-shop.js ├── aos.js ├── bitcore-ecies.min.js ├── bitcore.min.js ├── bits-FeatureDiscovery.js ├── bits-addMobiVeri.js ├── bits-animate.js ├── bits-follow.js ├── bits-oder-functions.js ├── bits-theme.js ├── bits-updatedata.js ├── bits-wallet-functions.js ├── bits-wallet-on.js ├── bits-wallets-sort.js ├── bitsCore.js ├── bits_auth.js ├── bits_contacts.js ├── bits_error_handler.js ├── bits_jspdf.js ├── bits_number.js ├── bits_promos.js ├── custom-script.js ├── delRate.js ├── feedback.js ├── functions.js ├── globalServices.js ├── google-fcm.js ├── html2canvas.js ├── html2canvas.min.js ├── init.js ├── intro.js ├── jquery.star.rating.js ├── jspdf.js ├── locationManager.js ├── materialize-css.js ├── materialize-plugins │ ├── animation.js │ ├── buttons.js │ ├── cards.js │ ├── carousel.js │ ├── character_counter.js │ ├── chips.js │ ├── collapsible.js │ ├── date_picker │ │ ├── picker.date.js │ │ └── picker.js │ ├── dropdown.js │ ├── forms.js │ ├── global.js │ ├── hammer.min.js │ ├── jquery.easing.1.3.js │ ├── jquery.hammer.js │ ├── jquery.timeago.min.js │ ├── leanModal.js │ ├── materialbox.js │ ├── materialize.min.js │ ├── parallax.js │ ├── prism.js │ ├── pushpin.js │ ├── scrollFire.js │ ├── scrollspy.js │ ├── sideNav.js │ ├── slider.js │ ├── tabs.js │ ├── toasts.js │ ├── tooltip.js │ ├── transitions.js │ ├── velocity.min.js │ └── waves.js ├── materialize.js ├── plugins.js ├── plugins │ ├── angular-materialize.js │ ├── angular.min.js │ ├── animate-css │ │ └── animate.css │ ├── chartist-js │ │ ├── LICENSE │ │ ├── chartist-script.js │ │ ├── chartist.js │ │ ├── chartist.min.css │ │ ├── chartist.min.js │ │ ├── chartist.min.js.map │ │ └── scss │ │ │ ├── chartist.scss │ │ │ └── settings │ │ │ └── _chartist-settings.scss │ ├── chartjs │ │ ├── chart-script.js │ │ ├── chart.min.js │ │ └── chartjs-sample-chart.js │ ├── d3 │ │ ├── d3.js │ │ └── d3.min.js │ ├── data-tables │ │ ├── css │ │ │ ├── jquery.dataTables.css │ │ │ ├── jquery.dataTables.min.css │ │ │ └── jquery.dataTables_themeroller.css │ │ ├── data-tables-script.js │ │ ├── images │ │ │ ├── Sorting icons.psd │ │ │ ├── favicon.ico │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ └── js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.js │ ├── dropify │ │ ├── css │ │ │ ├── demo.css │ │ │ ├── dropify.css │ │ │ └── dropify.min.css │ │ ├── fonts │ │ │ ├── dropify.eot │ │ │ ├── dropify.svg │ │ │ ├── dropify.ttf │ │ │ └── dropify.woff │ │ └── js │ │ │ ├── dropify.js │ │ │ └── dropify.min.js │ ├── dynatree │ │ ├── jquery.dynatree.js │ │ ├── skin-vista │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ └── ui.dynatree.css │ │ └── skin │ │ │ ├── icons-rtl.gif │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ ├── ui.dynatree.css │ │ │ ├── vline-rtl.gif │ │ │ └── vline.gif │ ├── editable-table │ │ ├── mindmup-editabletable.js │ │ └── numeric-input-example.js │ ├── floatThead │ │ ├── jquery.floatThead-slim.js │ │ ├── jquery.floatThead-slim.min.js │ │ ├── jquery.floatThead.js │ │ └── jquery.floatThead.min.js │ ├── flot-chart │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── flot-script.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.colorhelpers.min.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.canvas.min.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.categories.min.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.crosshair.min.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.errorbars.min.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.fillbetween.min.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.image.min.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.navigate.min.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.pie.min.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.selection.min.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.stack.min.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.symbol.min.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.threshold.min.js │ │ ├── jquery.flot.time.js │ │ └── jquery.flot.time.min.js │ ├── formatter │ │ ├── formatter.js │ │ ├── formatter.min.js │ │ ├── jquery.formatter.js │ │ ├── jquery.formatter.min.js │ │ └── scale.fix.js │ ├── fullcalendar │ │ ├── css │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.min.css │ │ │ └── fullcalendar.print.css │ │ ├── fullcalendar-script.js │ │ ├── js │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.js │ │ │ ├── gcal.js │ │ │ └── lang-all.js │ │ ├── lang │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── es.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ └── lib │ │ │ ├── cupertino │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui.min.css │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery.min.js │ │ │ └── moment.min.js │ ├── google-map │ │ └── google-map-script.js │ ├── imagesloaded.pkgd.min.js │ ├── introjs │ │ ├── intro.js │ │ ├── introjs.css │ │ ├── minified │ │ │ ├── intro.min.js │ │ │ ├── introjs-rtl.min.css │ │ │ └── introjs.min.css │ │ └── themes │ │ │ ├── introjs-dark.css │ │ │ ├── introjs-nassim.css │ │ │ ├── introjs-nazanin.css │ │ │ └── introjs-royal.css │ ├── ionRangeSlider │ │ ├── css │ │ │ ├── ion.rangeSlider.css │ │ │ └── ion.rangeSlider.skinFlat.css │ │ ├── img │ │ │ └── sprite-skin-flat.png │ │ ├── index.html │ │ └── js │ │ │ └── ion.rangeSlider.js │ ├── jQuery-ui-Slider-Pips │ │ ├── jquery-ui-slider-pips.css │ │ ├── jquery-ui-slider-pips.js │ │ └── jquery-ui-slider-pips.min.js │ ├── jquery-1.11.2.min.js │ ├── jquery-cookies │ │ └── jquery.cookies.min.js │ ├── jquery-sortable.js │ ├── jquery-ui.custom.js │ ├── jquery-validation │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_bn_BD.min.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_es_PE.min.js │ │ │ ├── messages_et.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_ge.min.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_hy_AM.min.js │ │ │ ├── messages_id.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_my.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_si.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_nl.js │ │ │ ├── methods_nl.min.js │ │ │ ├── methods_pt.js │ │ │ └── methods_pt.min.js │ ├── jquery.nestable │ │ ├── jquery.nestable.js │ │ └── nestable.css │ ├── jsgrid │ │ ├── css │ │ │ ├── jsgrid-theme.css │ │ │ ├── jsgrid-theme.min.css │ │ │ ├── jsgrid.css │ │ │ └── jsgrid.min.css │ │ └── js │ │ │ ├── db.js │ │ │ ├── jsgrid-script.js │ │ │ ├── jsgrid.js │ │ │ └── jsgrid.min.js │ ├── jvectormap │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ ├── jquery-jvectormap-world-mill-en.js │ │ ├── jquery-jvectormap.css │ │ └── vectormap-script.js │ ├── magnific-popup │ │ ├── jquery.magnific-popup.js │ │ ├── jquery.magnific-popup.min.js │ │ └── magnific-popup.css │ ├── masonry.pkgd.min.js │ ├── morris-chart │ │ ├── morris-script.js │ │ ├── morris.css │ │ └── morris.min.js │ ├── perfect-scrollbar │ │ ├── perfect-scrollbar.css │ │ └── perfect-scrollbar.min.js │ ├── prism │ │ ├── prism.css │ │ └── prism.js │ ├── raphael-min.js │ ├── raphael │ │ └── raphael-min.js │ ├── sparkline │ │ ├── jquery.sparkline.min.js │ │ └── sparkline-script.js │ ├── sweetalert │ │ ├── dist │ │ │ ├── sweetalert-dev.js │ │ │ ├── sweetalert.css │ │ │ └── sweetalert.min.js │ │ └── themes │ │ │ ├── facebook │ │ │ ├── facebook.css │ │ │ └── facebook.scss │ │ │ ├── google │ │ │ ├── google.css │ │ │ └── google.scss │ │ │ └── twitter │ │ │ ├── twitter.css │ │ │ └── twitter.scss │ ├── translator │ │ ├── jqueryTranslator.min.js │ │ ├── translate-ch.json │ │ ├── translate-en.json │ │ ├── translate-es.json │ │ ├── translate-fr.json │ │ └── translation-script.js │ └── xcharts │ │ ├── LICENSE │ │ ├── README.md │ │ ├── xcharts-script.js │ │ ├── xcharts.css │ │ ├── xcharts.js │ │ ├── xcharts.min.css │ │ └── xcharts.min.js ├── products-promo-match.js ├── screenOrientation.js └── update_services.js ├── jspdf.js ├── permission-dialog.html ├── sass ├── components │ ├── _buttons.scss │ ├── _cards.scss │ ├── _carousel.scss │ ├── _chips.scss │ ├── _collapsible.scss │ ├── _color.scss │ ├── _dropdown.scss │ ├── _form.scss │ ├── _global.scss │ ├── _grid.scss │ ├── _icons-material-design.scss │ ├── _materialbox.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _navbar.scss │ ├── _normalize.scss │ ├── _prefixer.scss │ ├── _preloader.scss │ ├── _roboto.scss │ ├── _sideNav.scss │ ├── _slider.scss │ ├── _table_of_contents.scss │ ├── _tabs.scss │ ├── _toast.scss │ ├── _tooltip.scss │ ├── _typography.scss │ ├── _variables.scss │ ├── _waves.scss │ └── date_picker │ │ ├── _default.date.scss │ │ ├── _default.scss │ │ └── _default.time.scss ├── custom │ └── custom.scss ├── materialize.scss ├── style.scss ├── theme-components │ ├── _breadcrumb.scss │ ├── _calendar.scss │ ├── _card.scss │ ├── _chart.scss │ ├── _footer.scss │ ├── _global.scss │ ├── _header.scss │ ├── _miscellaneous.scss │ ├── _preloader.scss │ ├── _sidebar.scss │ ├── _slideout.scss │ ├── _table.scss │ ├── _typography.scss │ ├── _variables.scss │ ├── layouts │ │ ├── style-fullscreen.scss │ │ └── style-horizontal.scss │ └── pages │ │ ├── _blog.scss │ │ ├── _email.scss │ │ ├── _error.scss │ │ ├── _gallary.scss │ │ ├── _icon.scss │ │ ├── _invoice.scss │ │ ├── _login.scss │ │ ├── _map.scss │ │ ├── _plan.scss │ │ ├── _product.scss │ │ └── _profile.scss └── themes │ ├── amber │ ├── _theme.scss │ ├── _typography.scss │ └── _variables.scss │ ├── asher │ ├── _theme.scss │ ├── _typography.scss │ └── _variables.scss │ ├── brown │ ├── _theme.scss │ ├── _typography.scss │ └── _variables.scss │ ├── default │ ├── _theme.scss │ ├── _typography.scss │ └── _variables.scss │ ├── indigo │ ├── _theme.scss │ ├── _typography.scss │ └── _variables.scss │ ├── jade │ ├── _theme.scss │ ├── _typography.scss │ └── _variables.scss │ ├── ruby │ ├── _theme.scss │ ├── _typography.scss │ └── _variables.scss │ └── skye │ ├── _theme.scss │ ├── _typography.scss │ └── _variables.scss ├── server.js ├── temp └── js │ └── materialize.js ├── tocken-test.html ├── user-login.html └── web-manifest.json /NewFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/NewFile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bits Wallet 2 | A free simple and secure way to store your digital currencies on your mobile. 3 | # Getting Started 4 | These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. 5 | # Prerequisites 6 | What you need 7 | - Code editor 8 | - Web Server For Chrome 9 | - Chrome Browser 10 | # Installing 11 | Step by step guide to get a development env running 12 | Clone this repository 13 | https://github.com/bitsoko-services/bits.git 14 | Go into the repository 15 | $ cd bits 16 | 17 | Launch Web Server for Chrome 18 | Search for Web Server for Chrome in your list of applications 19 | 20 | Enter Port 21 | Enter [9000] as the port number on Web Server for Chrome and navigate 22 | to [localhost:9000/index.html] in your web browser. 23 | 24 | # Running the tests 25 | Navigate to localhost:9000/index.html on your chrome browser with the console showing to track the progress as the wallet loads. 26 | # Built With 27 | • Materialize - The web framework used 28 | # Versioning 29 | We use a simple method of versioning the app on the server.js file increment the number bitsVersion. 30 | # Authors 31 | • Samuel Muchiri K - Software Developer - Bitsoko 32 | # License 33 | 34 | # Acknowledgments 35 | I would like to thank my laptop for the support, the late night company and for the many days to come. 36 | -------------------------------------------------------------------------------- /amp-iframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /bin/layouts/style-fullscreen.css: -------------------------------------------------------------------------------- 1 | #main, footer { 2 | padding-left: 0px; } 3 | 4 | @media only screen and (min-width: 992px) { 5 | .sidebar-collapse { 6 | top: -52px; } } 7 | 8 | header .brand-logo { 9 | margin: 1px 0px; 10 | padding: 14px 60px; } 11 | header .brand-logo img { 12 | width: 172px; } 13 | 14 | .menu-sidebar-collapse { 15 | margin: 0 10px 0 18px; } 16 | 17 | .header-search-wrapper { 18 | margin-left: 250px; } 19 | 20 | .doughnut-chart-status { 21 | top: -85px; } 22 | -------------------------------------------------------------------------------- /css/custom/custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/css/custom/custom.min.css -------------------------------------------------------------------------------- /css/handleCounter.css: -------------------------------------------------------------------------------- 1 | .handle-counter { 2 | overflow: hidden; 3 | /* float: right; */ 4 | /* margin-top: -16px; */ 5 | /* width: 100px; */ 6 | /* margin-right: -20px; */ 7 | } 8 | 9 | .handle-counter .counter-minus, 10 | .handle-counter .counter-plus, 11 | .handle-counter input { 12 | /* float: left; */ 13 | text-align: center; 14 | } 15 | 16 | .handle-counter .counter-minus, 17 | .handle-counter .counter-plus { 18 | text-align: center; 19 | } 20 | 21 | .handle-counter input { 22 | width: 25px; 23 | border-width: 1px; 24 | border-left: none; 25 | border-right: none; 26 | margin-left: 8px; 27 | } 28 | 29 | .btn { 30 | /* padding: 6px 12px; */ 31 | border: 1px solid transparent; 32 | color: #fff; 33 | } 34 | 35 | .btn:disabled, 36 | .btn:disabled:hover { 37 | background-color: darkgrey; 38 | cursor: not-allowed; 39 | } 40 | 41 | .btn-primary { 42 | background-color: #009dda; 43 | } 44 | 45 | .btn-primary:hover, 46 | .btn-primary:focus { 47 | background-color: #0486b9; 48 | } 49 | 50 | .btn-f { 51 | width: 30px; 52 | height: 30px; 53 | font-size: 11px; 54 | box-shadow: none; 55 | } 56 | -------------------------------------------------------------------------------- /css/keypad.css: -------------------------------------------------------------------------------- 1 | 2 | .result { 3 | width: 100%; 4 | height: 40px; 5 | color: #fff; 6 | display: block; 7 | font-family: sans-serif; 8 | margin: 5px auto; 9 | /* text-align: center; */ 10 | padding-top: 20px; 11 | font-size: 100%; 12 | outline: none; 13 | overflow: hidden; 14 | letter-spacing: 1px; 15 | position: relative; 16 | } 17 | .btn-style:hover{ 18 | 19 | background-color: #ebecef!important; 20 | border: 1px solid #ccc8c8; 21 | } 22 | .rows{ 23 | 24 | margin-bottom: 2px;} 25 | #first-rows { 26 | margin-bottom: 20px; 27 | position: relative; 28 | top:10px; 29 | } 30 | 31 | 32 | 33 | 34 | /* Button styling */ 35 | .btn-style { 36 | width: 25%; 37 | height: 40px; 38 | } 39 | 40 | 41 | .first-child {margin-left: 0px; 42 | } 43 | 44 | 45 | /* Adding background color to the number values */ 46 | .num-bg { 47 | background: #fafafa; 48 | color: #0f5f76 !important; 49 | font-size: 15px; 50 | cursor: pointer; 51 | outline: none; 52 | border: 1px solid #eae8e8; 53 | } 54 | 55 | 56 | 57 | -------------------------------------------------------------------------------- /css/layouts/page-center.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | height: 100%; 4 | } 5 | html { 6 | display: table; 7 | margin: auto; 8 | } 9 | body { 10 | display: table-cell; 11 | vertical-align: middle; 12 | } -------------------------------------------------------------------------------- /css/layouts/style-fullscreen.css: -------------------------------------------------------------------------------- 1 | #main, footer { 2 | padding-left: 0px; 3 | } 4 | 5 | @media only screen and (min-width: 992px) { 6 | .sidebar-collapse { 7 | top: -52px; 8 | } 9 | } 10 | 11 | header .brand-logo { 12 | margin: 1px 0px; 13 | padding: 14px 60px; 14 | } 15 | 16 | header .brand-logo img { 17 | width: 172px; 18 | } 19 | 20 | .menu-sidebar-collapse { 21 | margin: 0 10px 0 18px; 22 | } 23 | 24 | .header-search-wrapper { 25 | margin-left: 250px; 26 | } 27 | 28 | .doughnut-chart-status { 29 | top: -85px; 30 | } 31 | -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /helper-iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/helper-iframe.html -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/3.png -------------------------------------------------------------------------------- /images/Delivered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/Delivered.png -------------------------------------------------------------------------------- /images/bitsoko-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/bitsoko-off.png -------------------------------------------------------------------------------- /images/bitsoko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/bitsoko.png -------------------------------------------------------------------------------- /images/bitsoko_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/bitsoko_logo.png -------------------------------------------------------------------------------- /images/call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/call.png -------------------------------------------------------------------------------- /images/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/complete.png -------------------------------------------------------------------------------- /images/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/contacts.png -------------------------------------------------------------------------------- /images/contactsBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/contactsBanner.png -------------------------------------------------------------------------------- /images/deliveryM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/deliveryM.png -------------------------------------------------------------------------------- /images/dunno.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/dunno.png -------------------------------------------------------------------------------- /images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/facebook.png -------------------------------------------------------------------------------- /images/gdrive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/gdrive-icon.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icon.png -------------------------------------------------------------------------------- /images/icons/battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/battery.png -------------------------------------------------------------------------------- /images/icons/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/calendar.png -------------------------------------------------------------------------------- /images/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/cancel.png -------------------------------------------------------------------------------- /images/icons/chat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-1.png -------------------------------------------------------------------------------- /images/icons/chat-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-10.png -------------------------------------------------------------------------------- /images/icons/chat-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-2.png -------------------------------------------------------------------------------- /images/icons/chat-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-3.png -------------------------------------------------------------------------------- /images/icons/chat-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-4.png -------------------------------------------------------------------------------- /images/icons/chat-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-5.png -------------------------------------------------------------------------------- /images/icons/chat-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-6.png -------------------------------------------------------------------------------- /images/icons/chat-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-7.png -------------------------------------------------------------------------------- /images/icons/chat-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-8.png -------------------------------------------------------------------------------- /images/icons/chat-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat-9.png -------------------------------------------------------------------------------- /images/icons/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/chat.png -------------------------------------------------------------------------------- /images/icons/checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/checked.png -------------------------------------------------------------------------------- /images/icons/cloud-computing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/cloud-computing.png -------------------------------------------------------------------------------- /images/icons/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/cloud.png -------------------------------------------------------------------------------- /images/icons/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/cursor.png -------------------------------------------------------------------------------- /images/icons/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/document.png -------------------------------------------------------------------------------- /images/icons/envelope-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/envelope-1.png -------------------------------------------------------------------------------- /images/icons/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/envelope.png -------------------------------------------------------------------------------- /images/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/folder.png -------------------------------------------------------------------------------- /images/icons/hourglass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/hourglass.png -------------------------------------------------------------------------------- /images/icons/idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/idea.png -------------------------------------------------------------------------------- /images/icons/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/keyboard.png -------------------------------------------------------------------------------- /images/icons/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/loading.png -------------------------------------------------------------------------------- /images/icons/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/monitor.png -------------------------------------------------------------------------------- /images/icons/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/mouse.png -------------------------------------------------------------------------------- /images/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/music.png -------------------------------------------------------------------------------- /images/icons/padlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/padlock.png -------------------------------------------------------------------------------- /images/icons/phone-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/phone-call.png -------------------------------------------------------------------------------- /images/icons/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/rocket.png -------------------------------------------------------------------------------- /images/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/settings.png -------------------------------------------------------------------------------- /images/icons/socket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/socket.png -------------------------------------------------------------------------------- /images/icons/stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/stopwatch.png -------------------------------------------------------------------------------- /images/icons/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/tablet.png -------------------------------------------------------------------------------- /images/icons/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/trash.png -------------------------------------------------------------------------------- /images/icons/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/user.png -------------------------------------------------------------------------------- /images/icons/video-player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/video-player.png -------------------------------------------------------------------------------- /images/icons/wristwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/wristwatch.png -------------------------------------------------------------------------------- /images/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/icons/zoom.png -------------------------------------------------------------------------------- /images/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/linkedin.png -------------------------------------------------------------------------------- /images/login-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/login-logo.png -------------------------------------------------------------------------------- /images/logo-bits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/logo-bits.png -------------------------------------------------------------------------------- /images/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/mail.png -------------------------------------------------------------------------------- /images/merchants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/merchants.png -------------------------------------------------------------------------------- /images/merchantsBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/merchantsBanner.png -------------------------------------------------------------------------------- /images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/no.png -------------------------------------------------------------------------------- /images/pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/pending.png -------------------------------------------------------------------------------- /images/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/search-icon.png -------------------------------------------------------------------------------- /images/slides/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/slides/1.jpg -------------------------------------------------------------------------------- /images/slides/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/slides/2.jpg -------------------------------------------------------------------------------- /images/slides/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/slides/3.jpg -------------------------------------------------------------------------------- /images/slides/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/slides/4.jpg -------------------------------------------------------------------------------- /images/slides/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/slides/p.png -------------------------------------------------------------------------------- /images/stopwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/stopwatch.png -------------------------------------------------------------------------------- /images/tex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/tex2.png -------------------------------------------------------------------------------- /images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/twitter.png -------------------------------------------------------------------------------- /images/user-bg-simple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/user-bg-simple.jpg -------------------------------------------------------------------------------- /images/user-profile-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/user-profile-bg.jpg -------------------------------------------------------------------------------- /images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/images/yes.png -------------------------------------------------------------------------------- /js/bits-animate.js: -------------------------------------------------------------------------------- 1 | function bitsAnim(x) { 2 | $('.delivery').addClass(' animated jello'), setTimeout(function(){$('.delivery').removeClass(' animated jello')},1000); 3 | }; 4 | 5 | -------------------------------------------------------------------------------- /js/bits-theme.js: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 2 | function bitsTheme(thm) { 3 | //get theme 4 | 5 | var p = thm; 6 | //console.log(thm); 7 | 8 | if (p == "" || p == undefined) { 9 | console.log("cant find theme colour"); 10 | p = "#0f5f76"; 11 | } 12 | 13 | 14 | var bits_theme = $('.bits').css('background-color'); 15 | $('.bits').css('background-color', p); 16 | $('head').append(''); 17 | $('head').append(''); 18 | $('head').append(''); 19 | $('head').append(''); 20 | 21 | //gradient fade 22 | var w = convertHex(p, 24); 23 | var q = convertHex(p, 13); 24 | 25 | var bits_theme_min = $('.min-card').css('background'); 26 | $('.min-card').css('background', '-webkit-linear-gradient(top, rgba(255,255,255,0) 0%,' + q + ' 5%,' + w + '15%,' + p + ' 93%)'); 27 | 28 | 29 | 30 | } 31 | 32 | function convertHex(hex, opacity) { 33 | hex = hex.replace('#', ''); 34 | r = parseInt(hex.substring(0, 2), 16); 35 | g = parseInt(hex.substring(2, 4), 16); 36 | b = parseInt(hex.substring(4, 6), 16); 37 | 38 | result = 'rgba(' + r + ',' + g + ',' + b + ',' + opacity / 100 + ')'; 39 | return result; 40 | } 41 | -------------------------------------------------------------------------------- /js/bits-updatedata.js: -------------------------------------------------------------------------------- 1 | ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 2 | ///////////////-------------------------------------bits update user details function -----------------------------------------------//////////////////////////// 3 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// 4 | -------------------------------------------------------------------------------- /js/bits-wallet-functions.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | function startUser(user) { 5 | return new Promise(function(resolve, reject) { 6 | if (user == undefined) { 7 | user = anon; 8 | } 9 | console.log(user); 10 | var walsvar = getObjectStore('data', 'readwrite').get('bits-wallets-' + user); 11 | walsvar.onsuccess = function(event) { 12 | try { 13 | var address = JSON.parse(event.target.result).publicAddress; 14 | if (navigator.serviceWorker.controller) { 15 | sendMessage({ 16 | data: { 17 | app: 'bits', 18 | req: 'appVersion' 19 | }, 20 | }).then(function(version) { 21 | // If the promise resolves, show the version number. 22 | console.log(version); 23 | $("#bv").html(version); 24 | }) 25 | } else {} 26 | } catch (err) { 27 | reject(err); 28 | } 29 | console.log(address); 30 | if (!address || address == "" || address == "undefined" || address == "null" || address == null) { 31 | reject('no wallet'); 32 | localStorage.setItem('bitsoko-wallets', 'none'); 33 | localStorage.setItem('bitsoko-settings-country', 'default'); 34 | getObjectStore('data', 'readwrite').put('[]', 'services'); 35 | getObjectStore('data', 'readwrite').put('[]', 'transactions'); 36 | //return; 37 | return; 38 | } else { 39 | resolve(address); 40 | } 41 | } 42 | walsvar.onerror = function(event) { 43 | console.log('access error'); 44 | reject('no wallet'); 45 | } 46 | }); 47 | } 48 | -------------------------------------------------------------------------------- /js/bits-wallet-on.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | function newxrate (newBalance){ 4 | 5 | // get xchange rates 6 | 7 | doFetch({ action: 'getXrates',country:'default'}).then(function(e){ 8 | 9 | if (e.status=="ok"){ 10 | 11 | getObjectStore('data', 'readwrite').put(JSON.stringify(e.data), 'xrates'); 12 | 13 | 14 | 15 | // console.log(e.data.basex) 16 | 17 | var ex = e.data.basex 18 | 19 | var cc = newBalance 20 | 21 | // console.log(cc) 22 | 23 | var tot = ex*cc 24 | 25 | // console.log(tot) 26 | 27 | $( "#balance-coins" ).html(numberify(tot) + ' '+ e.data.curcode+''); 28 | 29 | }else{ 30 | 31 | 32 | 33 | } 34 | 35 | }) 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | } 44 | 45 | 46 | -------------------------------------------------------------------------------- /js/bits_auth.js: -------------------------------------------------------------------------------- 1 | // bits_auth handles the google login process and has other functions that depend on login 2 | // sam@bitsoko.io 3 | // start function google authentication 4 | 5 | function signOut() { 6 | startGoogle() 7 | var auth2 = gapi.auth2.getAuthInstance(); 8 | auth2.signOut().then(function () { 9 | console.log('User signed out.'); 10 | }); 11 | } 12 | //end google authentication 13 | 14 | 15 | 16 | //-----------------------------------------------signOut--------------------------------------------------- 17 | function signOut() { 18 | startGoogle() 19 | var auth2 = gapi.auth2.getAuthInstance(); 20 | auth2.signOut().then(function () { 21 | getObjectStore('data', 'readwrite').put('', 'bits-wallets-'+localStorage.getItem('bits-user-name')); 22 | getObjectStore('data', 'readwrite').put('', 'user-profile-'+localStorage.getItem('bits-user-name')); 23 | localStorage.removeItem("bits-user-name"); 24 | localStorage.setItem("bits-user-wallet", ''); 25 | localStorage.setItem("bitsoko-settings-location", ""); 26 | // localStorage.setItem("bits-user-name", ""); 27 | // localStorage.setItem("bits-user-name", ""); 28 | window.location.reload(); 29 | 30 | console.log('User signed out.'); 31 | }); 32 | } 33 | //---------------------------------------------------end signOut------------------------------------------ 34 | -------------------------------------------------------------------------------- /js/bits_error_handler.js: -------------------------------------------------------------------------------- 1 | function noPromo(){ 2 | 3 | } 4 | function noProducts(){ 5 | 6 | } -------------------------------------------------------------------------------- /js/bits_jspdf.js: -------------------------------------------------------------------------------- 1 | // ---------------------------------------------Jspdf start---------------------------------------------------------------------------------------------- 2 | function initializePdf() { 3 | var doc = new jsPDF(); 4 | var specialElementHandlers = { 5 | '#editor': function (element, renderer) { 6 | return true; 7 | } 8 | }; 9 | $('#btn_save').click(function () { 10 | doc.fromHTML($('#adressesModal').html(), 15, 15, { 11 | 'width': 170, 12 | 'elementHandlers': specialElementHandlers 13 | }); 14 | doc.save('BitsWallet_Backup.pdf'); 15 | }); 16 | } 17 | 18 | 19 | // ..................................................JSPDF end..................................................................................... 20 | -------------------------------------------------------------------------------- /js/custom-script.js: -------------------------------------------------------------------------------- 1 | /*================================================================================ 2 | Item Name: Materialize - Material Design Admin Template 3 | Version: 3.1 4 | Author: GeeksLabs 5 | Author URL: http://www.themeforest.net/user/geekslabs 6 | ================================================================================ 7 | 8 | NOTE: 9 | ------ 10 | PLACE HERE YOUR OWN JS CODES AND IF NEEDED. 11 | WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR CUSTOM SCRIPT IT'S BETTER LIKE THIS. */ -------------------------------------------------------------------------------- /js/materialize-plugins/animation.js: -------------------------------------------------------------------------------- 1 | // Custom Easing 2 | jQuery.extend( jQuery.easing, 3 | { 4 | easeInOutMaterial: function (x, t, b, c, d) { 5 | if ((t/=d/2) < 1) return c/2*t*t + b; 6 | return c/4*((t-=2)*t*t + 2) + b; 7 | } 8 | }); 9 | 10 | -------------------------------------------------------------------------------- /js/materialize-plugins/cards.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | $(document).ready(function() { 3 | 4 | $(document).on('click.card', '.card', function (e) { 5 | if ($(this).find('> .card-reveal').length) { 6 | if ($(e.target).is($('.card-reveal .card-title')) || $(e.target).is($('.card-reveal .card-title i'))) { 7 | // Make Reveal animate down and display none 8 | $(this).find('.card-reveal').velocity( 9 | {translateY: 0}, { 10 | duration: 225, 11 | queue: false, 12 | easing: 'easeInOutQuad', 13 | complete: function() { $(this).css({ display: 'none'}); } 14 | } 15 | ); 16 | } 17 | else if ($(e.target).is($('.card .activator')) || 18 | $(e.target).is($('.card .activator i')) ) { 19 | $(e.target).closest('.card').css('overflow', 'hidden'); 20 | $(this).find('.card-reveal').css({ display: 'block'}).velocity("stop", false).velocity({translateY: '-100%'}, {duration: 300, queue: false, easing: 'easeInOutQuad'}); 21 | } 22 | } 23 | 24 | $('.card-reveal').closest('.card').css('overflow', 'hidden'); 25 | 26 | }); 27 | 28 | }); 29 | }( jQuery )); -------------------------------------------------------------------------------- /js/materialize-plugins/chips.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | $(document).ready(function() { 3 | 4 | $(document).on('click.chip', '.chip .material-icons', function (e) { 5 | $(this).parent().remove(); 6 | }); 7 | 8 | }); 9 | }( jQuery )); -------------------------------------------------------------------------------- /js/materialize-plugins/global.js: -------------------------------------------------------------------------------- 1 | // Required for Meteor package, the use of window prevents export by Meteor 2 | (function(window){ 3 | if(window.Package){ 4 | Materialize = {}; 5 | } else { 6 | window.Materialize = {}; 7 | } 8 | })(window); 9 | 10 | 11 | // Unique ID 12 | Materialize.guid = (function() { 13 | function s4() { 14 | return Math.floor((1 + Math.random()) * 0x10000) 15 | .toString(16) 16 | .substring(1); 17 | } 18 | return function() { 19 | return s4() + s4() + '-' + s4() + '-' + s4() + '-' + 20 | s4() + '-' + s4() + s4() + s4(); 21 | }; 22 | })(); 23 | 24 | Materialize.elementOrParentIsFixed = function(element) { 25 | var $element = $(element); 26 | var $checkElements = $element.add($element.parents()); 27 | var isFixed = false; 28 | $checkElements.each(function(){ 29 | if ($(this).css("position") === "fixed") { 30 | isFixed = true; 31 | return false; 32 | } 33 | }); 34 | return isFixed; 35 | }; 36 | 37 | // Velocity has conflicts when loaded with jQuery, this will check for it 38 | var Vel; 39 | if ($) { 40 | Vel = $.Velocity; 41 | } 42 | else { 43 | Vel = Velocity; 44 | } 45 | -------------------------------------------------------------------------------- /js/materialize-plugins/jquery.hammer.js: -------------------------------------------------------------------------------- 1 | (function(factory) { 2 | if (typeof define === 'function' && define.amd) { 3 | define(['jquery', 'hammerjs'], factory); 4 | } else if (typeof exports === 'object') { 5 | factory(require('jquery'), require('hammerjs')); 6 | } else { 7 | factory(jQuery, Hammer); 8 | } 9 | }(function($, Hammer) { 10 | function hammerify(el, options) { 11 | var $el = $(el); 12 | if(!$el.data("hammer")) { 13 | $el.data("hammer", new Hammer($el[0], options)); 14 | } 15 | } 16 | 17 | $.fn.hammer = function(options) { 18 | return this.each(function() { 19 | hammerify(this, options); 20 | }); 21 | }; 22 | 23 | // extend the emit method to also trigger jQuery events 24 | Hammer.Manager.prototype.emit = (function(originalEmit) { 25 | return function(type, data) { 26 | originalEmit.call(this, type, data); 27 | $(this.element).trigger({ 28 | type: type, 29 | gesture: data 30 | }); 31 | }; 32 | })(Hammer.Manager.prototype.emit); 33 | })); 34 | -------------------------------------------------------------------------------- /js/materialize-plugins/scrollFire.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | 3 | // Input: Array of JSON objects {selector, offset, callback} 4 | 5 | Materialize.scrollFire = function(options) { 6 | 7 | var didScroll = false; 8 | 9 | window.addEventListener("scroll", function() { 10 | didScroll = true; 11 | }); 12 | 13 | // Rate limit to 100ms 14 | setInterval(function() { 15 | if(didScroll) { 16 | didScroll = false; 17 | 18 | var windowScroll = window.pageYOffset + window.innerHeight; 19 | 20 | for (var i = 0 ; i < options.length; i++) { 21 | // Get options from each line 22 | var value = options[i]; 23 | var selector = value.selector, 24 | offset = value.offset, 25 | callback = value.callback; 26 | 27 | var currentElement = document.querySelector(selector); 28 | if ( currentElement !== null) { 29 | var elementOffset = currentElement.getBoundingClientRect().top + window.pageYOffset; 30 | 31 | if (windowScroll > (elementOffset + offset)) { 32 | if (value.done !== true) { 33 | var callbackFunc = new Function(callback); 34 | callbackFunc(); 35 | value.done = true; 36 | } 37 | } 38 | } 39 | } 40 | } 41 | }, 100); 42 | }; 43 | 44 | })(jQuery); -------------------------------------------------------------------------------- /js/plugins/chartist-js/LICENSE: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2004 Sam Hocevar 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. 14 | -------------------------------------------------------------------------------- /js/plugins/data-tables/data-tables-script.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $('#data-table-simple').DataTable(); 3 | 4 | 5 | var table = $('#data-table-row-grouping').DataTable({ 6 | "columnDefs": [ 7 | { "visible": false, "targets": 2 } 8 | ], 9 | "order": [[ 2, 'asc' ]], 10 | "displayLength": 25, 11 | "drawCallback": function ( settings ) { 12 | var api = this.api(); 13 | var rows = api.rows( {page:'current'} ).nodes(); 14 | var last=null; 15 | 16 | api.column(2, {page:'current'} ).data().each( function ( group, i ) { 17 | if ( last !== group ) { 18 | $(rows).eq( i ).before( 19 | ''+group+'' 20 | ); 21 | 22 | last = group; 23 | } 24 | } ); 25 | } 26 | }); 27 | 28 | // Order by the grouping 29 | $('#data-table-row-grouping tbody').on( 'click', 'tr.group', function () { 30 | var currentOrder = table.order()[0]; 31 | if ( currentOrder[0] === 2 && currentOrder[1] === 'asc' ) { 32 | table.order( [ 2, 'desc' ] ).draw(); 33 | } 34 | else { 35 | table.order( [ 2, 'asc' ] ).draw(); 36 | } 37 | } ); 38 | 39 | 40 | }); -------------------------------------------------------------------------------- /js/plugins/data-tables/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/data-tables/images/Sorting icons.psd -------------------------------------------------------------------------------- /js/plugins/data-tables/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/data-tables/images/favicon.ico -------------------------------------------------------------------------------- /js/plugins/data-tables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/data-tables/images/sort_asc.png -------------------------------------------------------------------------------- /js/plugins/data-tables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/data-tables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /js/plugins/data-tables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/data-tables/images/sort_both.png -------------------------------------------------------------------------------- /js/plugins/data-tables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/data-tables/images/sort_desc.png -------------------------------------------------------------------------------- /js/plugins/data-tables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/data-tables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /js/plugins/dropify/fonts/dropify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dropify/fonts/dropify.eot -------------------------------------------------------------------------------- /js/plugins/dropify/fonts/dropify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dropify/fonts/dropify.ttf -------------------------------------------------------------------------------- /js/plugins/dropify/fonts/dropify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dropify/fonts/dropify.woff -------------------------------------------------------------------------------- /js/plugins/dynatree/skin-vista/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dynatree/skin-vista/icons.gif -------------------------------------------------------------------------------- /js/plugins/dynatree/skin-vista/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dynatree/skin-vista/loading.gif -------------------------------------------------------------------------------- /js/plugins/dynatree/skin/icons-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dynatree/skin/icons-rtl.gif -------------------------------------------------------------------------------- /js/plugins/dynatree/skin/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dynatree/skin/icons.gif -------------------------------------------------------------------------------- /js/plugins/dynatree/skin/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dynatree/skin/loading.gif -------------------------------------------------------------------------------- /js/plugins/dynatree/skin/vline-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dynatree/skin/vline-rtl.gif -------------------------------------------------------------------------------- /js/plugins/dynatree/skin/vline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/dynatree/skin/vline.gif -------------------------------------------------------------------------------- /js/plugins/editable-table/numeric-input-example.js: -------------------------------------------------------------------------------- 1 | /* global $ */ 2 | /* this is an example for validation and change events */ 3 | $.fn.numericInputExample = function () { 4 | 'use strict'; 5 | var element = $(this), 6 | footer = element.find('tfoot tr'), 7 | dataRows = element.find('tbody tr'), 8 | initialTotal = function () { 9 | var column, total; 10 | for (column = 1; column < footer.children().size(); column++) { 11 | total = 0; 12 | dataRows.each(function () { 13 | var row = $(this); 14 | total += parseFloat(row.children().eq(column).text()); 15 | }); 16 | footer.children().eq(column).text(total); 17 | }; 18 | }; 19 | element.find('td').on('change', function (evt) { 20 | var cell = $(this), 21 | column = cell.index(), 22 | total = 0; 23 | if (column === 0) { 24 | return; 25 | } 26 | element.find('tbody tr').each(function () { 27 | var row = $(this); 28 | total += parseFloat(row.children().eq(column).text()); 29 | }); 30 | if (column === 1 && total > 5000) { 31 | $('.alert').show(); 32 | return false; // changes can be rejected 33 | } else { 34 | $('.alert').hide(); 35 | footer.children().eq(column).text(total); 36 | } 37 | }).on('validate', function (evt, value) { 38 | var cell = $(this), 39 | column = cell.index(); 40 | if (column === 0) { 41 | return !!value && value.trim().length > 0; 42 | } else { 43 | return !isNaN(parseFloat(value)) && isFinite(value); 44 | } 45 | }); 46 | initialTotal(); 47 | return this; 48 | }; 49 | -------------------------------------------------------------------------------- /js/plugins/flot-chart/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2007-2014 IOLA and Ole Laursen 2 | 3 | Permission is hereby granted, free of charge, to any person 4 | obtaining a copy of this software and associated 5 | files (the "Software"), to deal in the Software without 6 | restriction, including without limitation the rights to use, 7 | copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the 9 | Software is furnished to do so, subject to the following 10 | conditions: 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /js/plugins/flot-chart/jquery.flot.symbol.min.js: -------------------------------------------------------------------------------- 1 | /* Javascript plotting library for jQuery, version 0.8.3. 2 | 3 | Copyright (c) 2007-2014 IOLA and Ole Laursen. 4 | Licensed under the MIT license. 5 | 6 | */ 7 | (function($){function processRawData(plot,series,datapoints){var handlers={square:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.rect(x-size,y-size,size+size,size+size)},diamond:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI/2);ctx.moveTo(x-size,y);ctx.lineTo(x,y-size);ctx.lineTo(x+size,y);ctx.lineTo(x,y+size);ctx.lineTo(x-size,y)},triangle:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(2*Math.PI/Math.sin(Math.PI/3));var height=size*Math.sin(Math.PI/3);ctx.moveTo(x-size/2,y+height/2);ctx.lineTo(x+size/2,y+height/2);if(!shadow){ctx.lineTo(x,y-height/2);ctx.lineTo(x-size/2,y+height/2)}},cross:function(ctx,x,y,radius,shadow){var size=radius*Math.sqrt(Math.PI)/2;ctx.moveTo(x-size,y-size);ctx.lineTo(x+size,y+size);ctx.moveTo(x-size,y+size);ctx.lineTo(x+size,y-size)}};var s=series.points.symbol;if(handlers[s])series.points.symbol=handlers[s]}function init(plot){plot.hooks.processDatapoints.push(processRawData)}$.plot.plugins.push({init:init,name:"symbols",version:"1.0"})})(jQuery); -------------------------------------------------------------------------------- /js/plugins/formatter/scale.fix.js: -------------------------------------------------------------------------------- 1 | var metas = document.getElementsByTagName('meta'); 2 | var i; 3 | if (navigator.userAgent.match(/iPhone/i)) { 4 | for (i=0; ie?"午前":"午後"},calendar:{sameDay:"[今日] LT",nextDay:"[明日] LT",nextWeek:"[来週]dddd LT",lastDay:"[昨日] LT",lastWeek:"[前週]dddd LT",sameElse:"L"},relativeTime:{future:"%s後",past:"%s前",s:"数秒",m:"1分",mm:"%d分",h:"1時間",hh:"%d時間",d:"1日",dd:"%d日",M:"1ヶ月",MM:"%dヶ月",y:"1年",yy:"%d年"}}),e.fullCalendar.datepickerLang("ja","ja",{closeText:"閉じる",prevText:"<前",nextText:"次>",currentText:"今日",monthNames:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],monthNamesShort:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayNames:["日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日"],dayNamesShort:["日","月","火","水","木","金","土"],dayNamesMin:["日","月","火","水","木","金","土"],weekHeader:"週",dateFormat:"yy/mm/dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"年"}),e.fullCalendar.lang("ja",{buttonText:{month:"月",week:"週",day:"日",list:"予定リスト"},allDayText:"終日",eventLimitText:function(e){return"他 "+e+" 件"}})}); -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lang/ko.js: -------------------------------------------------------------------------------- 1 | (function(e){"function"==typeof define&&define.amd?define(["jquery","moment"],e):e(jQuery,moment)})(function(e,t){(t.defineLocale||t.lang).call(t,"ko",{months:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),monthsShort:"1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월".split("_"),weekdays:"일요일_월요일_화요일_수요일_목요일_금요일_토요일".split("_"),weekdaysShort:"일_월_화_수_목_금_토".split("_"),weekdaysMin:"일_월_화_수_목_금_토".split("_"),longDateFormat:{LT:"A h시 m분",LTS:"A h시 m분 s초",L:"YYYY.MM.DD",LL:"YYYY년 MMMM D일",LLL:"YYYY년 MMMM D일 LT",LLLL:"YYYY년 MMMM D일 dddd LT"},calendar:{sameDay:"오늘 LT",nextDay:"내일 LT",nextWeek:"dddd LT",lastDay:"어제 LT",lastWeek:"지난주 dddd LT",sameElse:"L"},relativeTime:{future:"%s 후",past:"%s 전",s:"몇초",ss:"%d초",m:"일분",mm:"%d분",h:"한시간",hh:"%d시간",d:"하루",dd:"%d일",M:"한달",MM:"%d달",y:"일년",yy:"%d년"},ordinalParse:/\d{1,2}일/,ordinal:"%d일",meridiemParse:/오전|오후/,isPM:function(e){return"오후"===e},meridiem:function(e){return 12>e?"오전":"오후"}}),e.fullCalendar.datepickerLang("ko","ko",{closeText:"닫기",prevText:"이전달",nextText:"다음달",currentText:"오늘",monthNames:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],monthNamesShort:["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],dayNames:["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],dayNamesShort:["일","월","화","수","목","금","토"],dayNamesMin:["일","월","화","수","목","금","토"],weekHeader:"Wk",dateFormat:"yy-mm-dd",firstDay:0,isRTL:!1,showMonthAfterYear:!0,yearSuffix:"년"}),e.fullCalendar.lang("ko",{buttonText:{month:"월",week:"주",day:"일",list:"일정목록"},allDayText:"종일",eventLimitText:"개"})}); -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/animated-overlay.gif -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-bg_glass_50_3baae3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-bg_glass_50_3baae3_1x400.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-icons_2694e8_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-icons_2694e8_256x240.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-icons_3d80b3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-icons_3d80b3_256x240.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-icons_72a7cf_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-icons_72a7cf_256x240.png -------------------------------------------------------------------------------- /js/plugins/fullcalendar/lib/cupertino/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/fullcalendar/lib/cupertino/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /js/plugins/introjs/minified/introjs-rtl.min.css: -------------------------------------------------------------------------------- 1 | .introjs-tooltipbuttons{text-align:left}.introjs-skipbutton{margin-left:5px}.introjs-tooltip{direction:rtl}.introjs-prevbutton{border:1px solid #d4d4d4;border-left:none;-webkit-border-radius:0 .2em .2em 0;-moz-border-radius:0 .2em .2em 0;border-radius:0 .2em .2em 0}.introjs-nextbutton{border:1px solid #d4d4d4;-webkit-border-radius:.2em 0 0 .2em;-moz-border-radius:.2em 0 0 .2em;border-radius:.2em 0 0 .2em} -------------------------------------------------------------------------------- /js/plugins/ionRangeSlider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/js/plugins/ionRangeSlider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /js/plugins/ionRangeSlider/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Ion.RangeSlider - test 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 |
19 | 20 |
21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /js/plugins/jquery-cookies/jquery.cookies.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery Cookie Plugin v1.1 3 | * https://github.com/carhartl/jquery-cookie 4 | * 5 | * Copyright 2011, Klaus Hartl 6 | * Dual licensed under the MIT or GPL Version 2 licenses. 7 | * http://www.opensource.org/licenses/mit-license.php 8 | * http://www.opensource.org/licenses/GPL-2.0 9 | */ 10 | (function(e,t){function r(e){return e}function i(e){return decodeURIComponent(e.replace(n," "))}var n=/\+/g;e.cookie=function(n,s,o){if(arguments.length>1&&(!/Object/.test(Object.prototype.toString.call(s))||s==null)){o=e.extend({},e.cookie.defaults,o);if(s==null){o.expires=-1}if(typeof o.expires==="number"){var u=o.expires,a=o.expires=new Date;a.setDate(a.getDate()+u)}s=String(s);return t.cookie=[encodeURIComponent(n),"=",o.raw?s:encodeURIComponent(s),o.expires?"; expires="+o.expires.toUTCString():"",o.path?"; path="+o.path:"",o.domain?"; domain="+o.domain:"",o.secure?"; secure":""].join("")}o=s||e.cookie.defaults||{};var f=o.raw?r:i;var l=t.cookie.split("; ");for(var c=0,h;h=l[c]&&l[c].split("=");c++){if(f(h.shift())===n){return f(h.join("="))}}return null};e.cookie.defaults={};e.removeCookie=function(t,n){if(e.cookie(t)!==undefined){e.cookie(t,"",e.extend({},n,{expires:-1}));return true}return false}})(jQuery,document) -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ar.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: AR (Arabic; العربية) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "هذا الحقل إلزامي", 15 | remote: "يرجى تصحيح هذا الحقل للمتابعة", 16 | email: "رجاء إدخال عنوان بريد إلكتروني صحيح", 17 | url: "رجاء إدخال عنوان موقع إلكتروني صحيح", 18 | date: "رجاء إدخال تاريخ صحيح", 19 | dateISO: "رجاء إدخال تاريخ صحيح (ISO)", 20 | number: "رجاء إدخال عدد بطريقة صحيحة", 21 | digits: "رجاء إدخال أرقام فقط", 22 | creditcard: "رجاء إدخال رقم بطاقة ائتمان صحيح", 23 | equalTo: "رجاء إدخال نفس القيمة", 24 | extension: "رجاء إدخال ملف بامتداد موافق عليه", 25 | maxlength: $.validator.format("الحد الأقصى لعدد الحروف هو {0}"), 26 | minlength: $.validator.format("الحد الأدنى لعدد الحروف هو {0}"), 27 | rangelength: $.validator.format("عدد الحروف يجب أن يكون بين {0} و {1}"), 28 | range: $.validator.format("رجاء إدخال عدد قيمته بين {0} و {1}"), 29 | max: $.validator.format("رجاء إدخال عدد أقل من أو يساوي (0}"), 30 | min: $.validator.format("رجاء إدخال عدد أكبر من أو يساوي (0}") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ar.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"هذا الحقل إلزامي",remote:"يرجى تصحيح هذا الحقل للمتابعة",email:"رجاء إدخال عنوان بريد إلكتروني صحيح",url:"رجاء إدخال عنوان موقع إلكتروني صحيح",date:"رجاء إدخال تاريخ صحيح",dateISO:"رجاء إدخال تاريخ صحيح (ISO)",number:"رجاء إدخال عدد بطريقة صحيحة",digits:"رجاء إدخال أرقام فقط",creditcard:"رجاء إدخال رقم بطاقة ائتمان صحيح",equalTo:"رجاء إدخال نفس القيمة",extension:"رجاء إدخال ملف بامتداد موافق عليه",maxlength:a.validator.format("الحد الأقصى لعدد الحروف هو {0}"),minlength:a.validator.format("الحد الأدنى لعدد الحروف هو {0}"),rangelength:a.validator.format("عدد الحروف يجب أن يكون بين {0} و {1}"),range:a.validator.format("رجاء إدخال عدد قيمته بين {0} و {1}"),max:a.validator.format("رجاء إدخال عدد أقل من أو يساوي (0}"),min:a.validator.format("رجاء إدخال عدد أكبر من أو يساوي (0}")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_bg.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: BG (Bulgarian; български език) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Полето е задължително.", 15 | remote: "Моля, въведете правилната стойност.", 16 | email: "Моля, въведете валиден email.", 17 | url: "Моля, въведете валидно URL.", 18 | date: "Моля, въведете валидна дата.", 19 | dateISO: "Моля, въведете валидна дата (ISO).", 20 | number: "Моля, въведете валиден номер.", 21 | digits: "Моля, въведете само цифри.", 22 | creditcard: "Моля, въведете валиден номер на кредитна карта.", 23 | equalTo: "Моля, въведете същата стойност отново.", 24 | extension: "Моля, въведете стойност с валидно разширение.", 25 | maxlength: $.validator.format("Моля, въведете повече от {0} символа."), 26 | minlength: $.validator.format("Моля, въведете поне {0} символа."), 27 | rangelength: $.validator.format("Моля, въведете стойност с дължина между {0} и {1} символа."), 28 | range: $.validator.format("Моля, въведете стойност между {0} и {1}."), 29 | max: $.validator.format("Моля, въведете стойност по-малка или равна на {0}."), 30 | min: $.validator.format("Моля, въведете стойност по-голяма или равна на {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_bg.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Полето е задължително.",remote:"Моля, въведете правилната стойност.",email:"Моля, въведете валиден email.",url:"Моля, въведете валидно URL.",date:"Моля, въведете валидна дата.",dateISO:"Моля, въведете валидна дата (ISO).",number:"Моля, въведете валиден номер.",digits:"Моля, въведете само цифри.",creditcard:"Моля, въведете валиден номер на кредитна карта.",equalTo:"Моля, въведете същата стойност отново.",extension:"Моля, въведете стойност с валидно разширение.",maxlength:a.validator.format("Моля, въведете повече от {0} символа."),minlength:a.validator.format("Моля, въведете поне {0} символа."),rangelength:a.validator.format("Моля, въведете стойност с дължина между {0} и {1} символа."),range:a.validator.format("Моля, въведете стойност между {0} и {1}."),max:a.validator.format("Моля, въведете стойност по-малка или равна на {0}."),min:a.validator.format("Моля, въведете стойност по-голяма или равна на {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_bn_BD.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: bn_BD (Bengali, Bangladesh) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "এই তথ্যটি আবশ্যক।", 15 | remote: "এই তথ্যটি ঠিক করুন।", 16 | email: "অনুগ্রহ করে একটি সঠিক মেইল ঠিকানা লিখুন।", 17 | url: "অনুগ্রহ করে একটি সঠিক লিঙ্ক দিন।", 18 | date: "তারিখ সঠিক নয়।", 19 | dateISO: "অনুগ্রহ করে একটি সঠিক (ISO) তারিখ লিখুন।", 20 | number: "অনুগ্রহ করে একটি সঠিক নম্বর লিখুন।", 21 | digits: "এখানে শুধু সংখ্যা ব্যবহার করা যাবে।", 22 | creditcard: "অনুগ্রহ করে একটি ক্রেডিট কার্ডের সঠিক নম্বর লিখুন।", 23 | equalTo: "একই মান আবার লিখুন।", 24 | extension: "সঠিক ধরনের ফাইল আপলোড করুন।", 25 | maxlength: $.validator.format("{0}টির বেশি অক্ষর লেখা যাবে না।"), 26 | minlength: $.validator.format("{0}টির কম অক্ষর লেখা যাবে না।"), 27 | rangelength: $.validator.format("{0} থেকে {1} টি অক্ষর সম্বলিত মান লিখুন।"), 28 | range: $.validator.format("{0} থেকে {1} এর মধ্যে একটি মান ব্যবহার করুন।"), 29 | max: $.validator.format("অনুগ্রহ করে {0} বা তার চাইতে কম মান ব্যবহার করুন।"), 30 | min: $.validator.format("অনুগ্রহ করে {0} বা তার চাইতে বেশি মান ব্যবহার করুন।") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_bn_BD.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"এই তথ্যটি আবশ্যক।",remote:"এই তথ্যটি ঠিক করুন।",email:"অনুগ্রহ করে একটি সঠিক মেইল ঠিকানা লিখুন।",url:"অনুগ্রহ করে একটি সঠিক লিঙ্ক দিন।",date:"তারিখ সঠিক নয়।",dateISO:"অনুগ্রহ করে একটি সঠিক (ISO) তারিখ লিখুন।",number:"অনুগ্রহ করে একটি সঠিক নম্বর লিখুন।",digits:"এখানে শুধু সংখ্যা ব্যবহার করা যাবে।",creditcard:"অনুগ্রহ করে একটি ক্রেডিট কার্ডের সঠিক নম্বর লিখুন।",equalTo:"একই মান আবার লিখুন।",extension:"সঠিক ধরনের ফাইল আপলোড করুন।",maxlength:a.validator.format("{0}টির বেশি অক্ষর লেখা যাবে না।"),minlength:a.validator.format("{0}টির কম অক্ষর লেখা যাবে না।"),rangelength:a.validator.format("{0} থেকে {1} টি অক্ষর সম্বলিত মান লিখুন।"),range:a.validator.format("{0} থেকে {1} এর মধ্যে একটি মান ব্যবহার করুন।"),max:a.validator.format("অনুগ্রহ করে {0} বা তার চাইতে কম মান ব্যবহার করুন।"),min:a.validator.format("অনুগ্রহ করে {0} বা তার চাইতে বেশি মান ব্যবহার করুন।")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ca.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Aquest camp és obligatori.",remote:"Si us plau, omple aquest camp.",email:"Si us plau, escriu una adreça de correu-e vàlida",url:"Si us plau, escriu una URL vàlida.",date:"Si us plau, escriu una data vàlida.",dateISO:"Si us plau, escriu una data (ISO) vàlida.",number:"Si us plau, escriu un número enter vàlid.",digits:"Si us plau, escriu només dígits.",creditcard:"Si us plau, escriu un número de tarjeta vàlid.",equalTo:"Si us plau, escriu el mateix valor de nou.",extension:"Si us plau, escriu un valor amb una extensió acceptada.",maxlength:a.validator.format("Si us plau, no escriguis més de {0} caracters."),minlength:a.validator.format("Si us plau, no escriguis menys de {0} caracters."),rangelength:a.validator.format("Si us plau, escriu un valor entre {0} i {1} caracters."),range:a.validator.format("Si us plau, escriu un valor entre {0} i {1}."),max:a.validator.format("Si us plau, escriu un valor menor o igual a {0}."),min:a.validator.format("Si us plau, escriu un valor major o igual a {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_cs.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: CS (Czech; čeština, český jazyk) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Tento údaj je povinný.", 15 | remote: "Prosím, opravte tento údaj.", 16 | email: "Prosím, zadejte platný e-mail.", 17 | url: "Prosím, zadejte platné URL.", 18 | date: "Prosím, zadejte platné datum.", 19 | dateISO: "Prosím, zadejte platné datum (ISO).", 20 | number: "Prosím, zadejte číslo.", 21 | digits: "Prosím, zadávejte pouze číslice.", 22 | creditcard: "Prosím, zadejte číslo kreditní karty.", 23 | equalTo: "Prosím, zadejte znovu stejnou hodnotu.", 24 | extension: "Prosím, zadejte soubor se správnou příponou.", 25 | maxlength: $.validator.format("Prosím, zadejte nejvíce {0} znaků."), 26 | minlength: $.validator.format("Prosím, zadejte nejméně {0} znaků."), 27 | rangelength: $.validator.format("Prosím, zadejte od {0} do {1} znaků."), 28 | range: $.validator.format("Prosím, zadejte hodnotu od {0} do {1}."), 29 | max: $.validator.format("Prosím, zadejte hodnotu menší nebo rovnu {0}."), 30 | min: $.validator.format("Prosím, zadejte hodnotu větší nebo rovnu {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_cs.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Tento údaj je povinný.",remote:"Prosím, opravte tento údaj.",email:"Prosím, zadejte platný e-mail.",url:"Prosím, zadejte platné URL.",date:"Prosím, zadejte platné datum.",dateISO:"Prosím, zadejte platné datum (ISO).",number:"Prosím, zadejte číslo.",digits:"Prosím, zadávejte pouze číslice.",creditcard:"Prosím, zadejte číslo kreditní karty.",equalTo:"Prosím, zadejte znovu stejnou hodnotu.",extension:"Prosím, zadejte soubor se správnou příponou.",maxlength:a.validator.format("Prosím, zadejte nejvíce {0} znaků."),minlength:a.validator.format("Prosím, zadejte nejméně {0} znaků."),rangelength:a.validator.format("Prosím, zadejte od {0} do {1} znaků."),range:a.validator.format("Prosím, zadejte hodnotu od {0} do {1}."),max:a.validator.format("Prosím, zadejte hodnotu menší nebo rovnu {0}."),min:a.validator.format("Prosím, zadejte hodnotu větší nebo rovnu {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_da.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: DA (Danish; dansk) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Dette felt er påkrævet.", 15 | maxlength: $.validator.format("Indtast højst {0} tegn."), 16 | minlength: $.validator.format("Indtast mindst {0} tegn."), 17 | rangelength: $.validator.format("Indtast mindst {0} og højst {1} tegn."), 18 | email: "Indtast en gyldig email-adresse.", 19 | url: "Indtast en gyldig URL.", 20 | date: "Indtast en gyldig dato.", 21 | number: "Indtast et tal.", 22 | digits: "Indtast kun cifre.", 23 | equalTo: "Indtast den samme værdi igen.", 24 | range: $.validator.format("Angiv en værdi mellem {0} og {1}."), 25 | max: $.validator.format("Angiv en værdi der højst er {0}."), 26 | min: $.validator.format("Angiv en værdi der mindst er {0}."), 27 | creditcard: "Indtast et gyldigt kreditkortnummer." 28 | }); 29 | 30 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_da.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Dette felt er påkrævet.",maxlength:a.validator.format("Indtast højst {0} tegn."),minlength:a.validator.format("Indtast mindst {0} tegn."),rangelength:a.validator.format("Indtast mindst {0} og højst {1} tegn."),email:"Indtast en gyldig email-adresse.",url:"Indtast en gyldig URL.",date:"Indtast en gyldig dato.",number:"Indtast et tal.",digits:"Indtast kun cifre.",equalTo:"Indtast den samme værdi igen.",range:a.validator.format("Angiv en værdi mellem {0} og {1}."),max:a.validator.format("Angiv en værdi der højst er {0}."),min:a.validator.format("Angiv en værdi der mindst er {0}."),creditcard:"Indtast et gyldigt kreditkortnummer."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_de.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: DE (German, Deutsch) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Dieses Feld ist ein Pflichtfeld.", 15 | maxlength: $.validator.format("Geben Sie bitte maximal {0} Zeichen ein."), 16 | minlength: $.validator.format("Geben Sie bitte mindestens {0} Zeichen ein."), 17 | rangelength: $.validator.format("Geben Sie bitte mindestens {0} und maximal {1} Zeichen ein."), 18 | email: "Geben Sie bitte eine gültige E-Mail Adresse ein.", 19 | url: "Geben Sie bitte eine gültige URL ein.", 20 | date: "Bitte geben Sie ein gültiges Datum ein.", 21 | number: "Geben Sie bitte eine Nummer ein.", 22 | digits: "Geben Sie bitte nur Ziffern ein.", 23 | equalTo: "Bitte denselben Wert wiederholen.", 24 | range: $.validator.format("Geben Sie bitte einen Wert zwischen {0} und {1} ein."), 25 | max: $.validator.format("Geben Sie bitte einen Wert kleiner oder gleich {0} ein."), 26 | min: $.validator.format("Geben Sie bitte einen Wert größer oder gleich {0} ein."), 27 | creditcard: "Geben Sie bitte eine gültige Kreditkarten-Nummer ein." 28 | }); 29 | 30 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_de.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Dieses Feld ist ein Pflichtfeld.",maxlength:a.validator.format("Geben Sie bitte maximal {0} Zeichen ein."),minlength:a.validator.format("Geben Sie bitte mindestens {0} Zeichen ein."),rangelength:a.validator.format("Geben Sie bitte mindestens {0} und maximal {1} Zeichen ein."),email:"Geben Sie bitte eine gültige E-Mail Adresse ein.",url:"Geben Sie bitte eine gültige URL ein.",date:"Bitte geben Sie ein gültiges Datum ein.",number:"Geben Sie bitte eine Nummer ein.",digits:"Geben Sie bitte nur Ziffern ein.",equalTo:"Bitte denselben Wert wiederholen.",range:a.validator.format("Geben Sie bitte einen Wert zwischen {0} und {1} ein."),max:a.validator.format("Geben Sie bitte einen Wert kleiner oder gleich {0} ein."),min:a.validator.format("Geben Sie bitte einen Wert größer oder gleich {0} ein."),creditcard:"Geben Sie bitte eine gültige Kreditkarten-Nummer ein."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_el.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Αυτό το πεδίο είναι υποχρεωτικό.",remote:"Παρακαλώ διορθώστε αυτό το πεδίο.",email:"Παρακαλώ εισάγετε μια έγκυρη διεύθυνση email.",url:"Παρακαλώ εισάγετε ένα έγκυρο URL.",date:"Παρακαλώ εισάγετε μια έγκυρη ημερομηνία.",dateISO:"Παρακαλώ εισάγετε μια έγκυρη ημερομηνία (ISO).",number:"Παρακαλώ εισάγετε έναν έγκυρο αριθμό.",digits:"Παρακαλώ εισάγετε μόνο αριθμητικά ψηφία.",creditcard:"Παρακαλώ εισάγετε έναν έγκυρο αριθμό πιστωτικής κάρτας.",equalTo:"Παρακαλώ εισάγετε την ίδια τιμή ξανά.",extension:"Παρακαλώ εισάγετε μια τιμή με έγκυρη επέκταση αρχείου.",maxlength:a.validator.format("Παρακαλώ εισάγετε μέχρι και {0} χαρακτήρες."),minlength:a.validator.format("Παρακαλώ εισάγετε τουλάχιστον {0} χαρακτήρες."),rangelength:a.validator.format("Παρακαλώ εισάγετε μια τιμή με μήκος μεταξύ {0} και {1} χαρακτήρων."),range:a.validator.format("Παρακαλώ εισάγετε μια τιμή μεταξύ {0} και {1}."),max:a.validator.format("Παρακαλώ εισάγετε μια τιμή μικρότερη ή ίση του {0}."),min:a.validator.format("Παρακαλώ εισάγετε μια τιμή μεγαλύτερη ή ίση του {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_es.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Este campo es obligatorio.",remote:"Por favor, rellena este campo.",email:"Por favor, escribe una dirección de correo válida.",url:"Por favor, escribe una URL válida.",date:"Por favor, escribe una fecha válida.",dateISO:"Por favor, escribe una fecha (ISO) válida.",number:"Por favor, escribe un número válido.",digits:"Por favor, escribe sólo dígitos.",creditcard:"Por favor, escribe un número de tarjeta válido.",equalTo:"Por favor, escribe el mismo valor de nuevo.",extension:"Por favor, escribe un valor con una extensión aceptada.",maxlength:a.validator.format("Por favor, no escribas más de {0} caracteres."),minlength:a.validator.format("Por favor, no escribas menos de {0} caracteres."),rangelength:a.validator.format("Por favor, escribe un valor entre {0} y {1} caracteres."),range:a.validator.format("Por favor, escribe un valor entre {0} y {1}."),max:a.validator.format("Por favor, escribe un valor menor o igual a {0}."),min:a.validator.format("Por favor, escribe un valor mayor o igual a {0}."),nifES:"Por favor, escribe un NIF válido.",nieES:"Por favor, escribe un NIE válido.",cifES:"Por favor, escribe un CIF válido."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_es_AR.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Este campo es obligatorio.",remote:"Por favor, completá este campo.",email:"Por favor, escribí una dirección de correo válida.",url:"Por favor, escribí una URL válida.",date:"Por favor, escribí una fecha válida.",dateISO:"Por favor, escribí una fecha (ISO) válida.",number:"Por favor, escribí un número entero válido.",digits:"Por favor, escribí sólo dígitos.",creditcard:"Por favor, escribí un número de tarjeta válido.",equalTo:"Por favor, escribí el mismo valor de nuevo.",extension:"Por favor, escribí un valor con una extensión aceptada.",maxlength:a.validator.format("Por favor, no escribas más de {0} caracteres."),minlength:a.validator.format("Por favor, no escribas menos de {0} caracteres."),rangelength:a.validator.format("Por favor, escribí un valor entre {0} y {1} caracteres."),range:a.validator.format("Por favor, escribí un valor entre {0} y {1}."),max:a.validator.format("Por favor, escribí un valor menor o igual a {0}."),min:a.validator.format("Por favor, escribí un valor mayor o igual a {0}."),nifES:"Por favor, escribí un NIF válido.",nieES:"Por favor, escribí un NIE válido.",cifES:"Por favor, escribí un CIF válido."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_es_PE.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Este campo es obligatorio.",remote:"Por favor, llene este campo.",email:"Por favor, escriba un correo electrónico válido.",url:"Por favor, escriba una URL válida.",date:"Por favor, escriba una fecha válida.",dateISO:"Por favor, escriba una fecha (ISO) válida.",number:"Por favor, escriba un número válido.",digits:"Por favor, escriba sólo dígitos.",creditcard:"Por favor, escriba un número de tarjeta válido.",equalTo:"Por favor, escriba el mismo valor de nuevo.",extension:"Por favor, escriba un valor con una extensión permitida.",maxlength:a.validator.format("Por favor, no escriba más de {0} caracteres."),minlength:a.validator.format("Por favor, no escriba menos de {0} caracteres."),rangelength:a.validator.format("Por favor, escriba un valor entre {0} y {1} caracteres."),range:a.validator.format("Por favor, escriba un valor entre {0} y {1}."),max:a.validator.format("Por favor, escriba un valor menor o igual a {0}."),min:a.validator.format("Por favor, escriba un valor mayor o igual a {0}."),nifES:"Por favor, escriba un NIF válido.",nieES:"Por favor, escriba un NIE válido.",cifES:"Por favor, escriba un CIF válido."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_et.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: ET (Estonian; eesti, eesti keel) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "See väli peab olema täidetud.", 15 | maxlength: $.validator.format("Palun sisestage vähem kui {0} tähemärki."), 16 | minlength: $.validator.format("Palun sisestage vähemalt {0} tähemärki."), 17 | rangelength: $.validator.format("Palun sisestage väärtus vahemikus {0} kuni {1} tähemärki."), 18 | email: "Palun sisestage korrektne e-maili aadress.", 19 | url: "Palun sisestage korrektne URL.", 20 | date: "Palun sisestage korrektne kuupäev.", 21 | dateISO: "Palun sisestage korrektne kuupäev (YYYY-MM-DD).", 22 | number: "Palun sisestage korrektne number.", 23 | digits: "Palun sisestage ainult numbreid.", 24 | equalTo: "Palun sisestage sama väärtus uuesti.", 25 | range: $.validator.format("Palun sisestage väärtus vahemikus {0} kuni {1}."), 26 | max: $.validator.format("Palun sisestage väärtus, mis on väiksem või võrdne arvuga {0}."), 27 | min: $.validator.format("Palun sisestage väärtus, mis on suurem või võrdne arvuga {0}."), 28 | creditcard: "Palun sisestage korrektne krediitkaardi number." 29 | }); 30 | 31 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_et.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"See väli peab olema täidetud.",maxlength:a.validator.format("Palun sisestage vähem kui {0} tähemärki."),minlength:a.validator.format("Palun sisestage vähemalt {0} tähemärki."),rangelength:a.validator.format("Palun sisestage väärtus vahemikus {0} kuni {1} tähemärki."),email:"Palun sisestage korrektne e-maili aadress.",url:"Palun sisestage korrektne URL.",date:"Palun sisestage korrektne kuupäev.",dateISO:"Palun sisestage korrektne kuupäev (YYYY-MM-DD).",number:"Palun sisestage korrektne number.",digits:"Palun sisestage ainult numbreid.",equalTo:"Palun sisestage sama väärtus uuesti.",range:a.validator.format("Palun sisestage väärtus vahemikus {0} kuni {1}."),max:a.validator.format("Palun sisestage väärtus, mis on väiksem või võrdne arvuga {0}."),min:a.validator.format("Palun sisestage väärtus, mis on suurem või võrdne arvuga {0}."),creditcard:"Palun sisestage korrektne krediitkaardi number."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_eu.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: EU (Basque; euskara, euskera) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Eremu hau beharrezkoa da.", 15 | remote: "Mesedez, bete eremu hau.", 16 | email: "Mesedez, idatzi baliozko posta helbide bat.", 17 | url: "Mesedez, idatzi baliozko URL bat.", 18 | date: "Mesedez, idatzi baliozko data bat.", 19 | dateISO: "Mesedez, idatzi baliozko (ISO) data bat.", 20 | number: "Mesedez, idatzi baliozko zenbaki oso bat.", 21 | digits: "Mesedez, idatzi digituak soilik.", 22 | creditcard: "Mesedez, idatzi baliozko txartel zenbaki bat.", 23 | equalTo: "Mesedez, idatzi berdina berriro ere.", 24 | extension: "Mesedez, idatzi onartutako luzapena duen balio bat.", 25 | maxlength: $.validator.format("Mesedez, ez idatzi {0} karaktere baino gehiago."), 26 | minlength: $.validator.format("Mesedez, ez idatzi {0} karaktere baino gutxiago."), 27 | rangelength: $.validator.format("Mesedez, idatzi {0} eta {1} karaktere arteko balio bat."), 28 | range: $.validator.format("Mesedez, idatzi {0} eta {1} arteko balio bat."), 29 | max: $.validator.format("Mesedez, idatzi {0} edo txikiagoa den balio bat."), 30 | min: $.validator.format("Mesedez, idatzi {0} edo handiagoa den balio bat.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_eu.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Eremu hau beharrezkoa da.",remote:"Mesedez, bete eremu hau.",email:"Mesedez, idatzi baliozko posta helbide bat.",url:"Mesedez, idatzi baliozko URL bat.",date:"Mesedez, idatzi baliozko data bat.",dateISO:"Mesedez, idatzi baliozko (ISO) data bat.",number:"Mesedez, idatzi baliozko zenbaki oso bat.",digits:"Mesedez, idatzi digituak soilik.",creditcard:"Mesedez, idatzi baliozko txartel zenbaki bat.",equalTo:"Mesedez, idatzi berdina berriro ere.",extension:"Mesedez, idatzi onartutako luzapena duen balio bat.",maxlength:a.validator.format("Mesedez, ez idatzi {0} karaktere baino gehiago."),minlength:a.validator.format("Mesedez, ez idatzi {0} karaktere baino gutxiago."),rangelength:a.validator.format("Mesedez, idatzi {0} eta {1} karaktere arteko balio bat."),range:a.validator.format("Mesedez, idatzi {0} eta {1} arteko balio bat."),max:a.validator.format("Mesedez, idatzi {0} edo txikiagoa den balio bat."),min:a.validator.format("Mesedez, idatzi {0} edo handiagoa den balio bat.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_fa.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"تکمیل این فیلد اجباری است.",remote:"لطفا این فیلد را تصحیح کنید.",email:".لطفا یک ایمیل صحیح وارد کنید",url:"لطفا آدرس صحیح وارد کنید.",date:"لطفا یک تاریخ صحیح وارد کنید",dateFA:"لطفا یک تاریخ صحیح وارد کنید",dateISO:"لطفا تاریخ صحیح وارد کنید (ISO).",number:"لطفا عدد صحیح وارد کنید.",digits:"لطفا تنها رقم وارد کنید",creditcard:"لطفا کریدیت کارت صحیح وارد کنید.",equalTo:"لطفا مقدار برابری وارد کنید",extension:"لطفا مقداری وارد کنید که ",maxlength:a.validator.format("لطفا بیشتر از {0} حرف وارد نکنید."),minlength:a.validator.format("لطفا کمتر از {0} حرف وارد نکنید."),rangelength:a.validator.format("لطفا مقداری بین {0} تا {1} حرف وارد کنید."),range:a.validator.format("لطفا مقداری بین {0} تا {1} حرف وارد کنید."),max:a.validator.format("لطفا مقداری کمتر از {0} حرف وارد کنید."),min:a.validator.format("لطفا مقداری بیشتر از {0} حرف وارد کنید."),minWords:a.validator.format("لطفا حداقل {0} کلمه وارد کنید."),maxWords:a.validator.format("لطفا حداکثر {0} کلمه وارد کنید.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_fi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Tämä kenttä on pakollinen.",email:"Syötä oikea sähköpostiosoite.",url:"Syötä oikea URL-osoite.",date:"Syötä oikea päivämäärä.",dateISO:"Syötä oikea päivämäärä muodossa VVVV-KK-PP.",number:"Syötä luku.",creditcard:"Syötä voimassa oleva luottokorttinumero.",digits:"Syötä pelkästään numeroita.",equalTo:"Syötä sama arvo uudestaan.",maxlength:a.validator.format("Voit syöttää enintään {0} merkkiä."),minlength:a.validator.format("Vähintään {0} merkkiä."),rangelength:a.validator.format("Syötä vähintään {0} ja enintään {1} merkkiä."),range:a.validator.format("Syötä arvo väliltä {0}–{1}."),max:a.validator.format("Syötä arvo, joka on enintään {0}."),min:a.validator.format("Syötä arvo, joka on vähintään {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ge.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /** 10 | * @author @tatocaster 11 | * Translated default messages for the jQuery validation plugin. 12 | * Locale: GE (Georgian; ქართული) 13 | */ 14 | $.extend($.validator.messages, { 15 | required: "ეს ველი სავალდებულოა", 16 | remote: "გთხოვთ შეასწოროთ.", 17 | email: "გთხოვთ შეიყვანოთ სწორი ფორმატით.", 18 | url: "გთხოვთ შეიყვანოთ სწორი ფორმატით.", 19 | date: "გთხოვთ შეიყვანოთ სწორი თარიღი.", 20 | dateISO: "გთხოვთ შეიყვანოთ სწორი ფორმატით ( ISO ).", 21 | number: "გთხოვთ შეიყვანოთ რიცხვი.", 22 | digits: "დაშვებულია მხოლოდ ციფრები.", 23 | creditcard: "გთხოვთ შეიყვანოთ სწორი ფორმატის ბარათის კოდი.", 24 | equalTo: "გთხოვთ შეიყვანოთ იგივე მნიშვნელობა.", 25 | maxlength: $.validator.format( "გთხოვთ შეიყვანოთ არა უმეტეს {0} სიმბოლოსი." ), 26 | minlength: $.validator.format( "შეიყვანეთ მინიმუმ {0} სიმბოლო." ), 27 | rangelength: $.validator.format( "გთხოვთ შეიყვანოთ {0} -დან {1} -მდე რაოდენობის სიმბოლოები." ), 28 | range: $.validator.format( "შეიყვანეთ {0} -სა {1} -ს შორის." ), 29 | max: $.validator.format( "გთხოვთ შეიყვანოთ მნიშვნელობა ნაკლები ან ტოლი {0} -ს." ), 30 | min: $.validator.format( "გთხოვთ შეიყვანოთ მნიშვნელობა მეტი ან ტოლი {0} -ს." ) 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ge.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"ეს ველი სავალდებულოა",remote:"გთხოვთ შეასწოროთ.",email:"გთხოვთ შეიყვანოთ სწორი ფორმატით.",url:"გთხოვთ შეიყვანოთ სწორი ფორმატით.",date:"გთხოვთ შეიყვანოთ სწორი თარიღი.",dateISO:"გთხოვთ შეიყვანოთ სწორი ფორმატით ( ISO ).",number:"გთხოვთ შეიყვანოთ რიცხვი.",digits:"დაშვებულია მხოლოდ ციფრები.",creditcard:"გთხოვთ შეიყვანოთ სწორი ფორმატის ბარათის კოდი.",equalTo:"გთხოვთ შეიყვანოთ იგივე მნიშვნელობა.",maxlength:a.validator.format("გთხოვთ შეიყვანოთ არა უმეტეს {0} სიმბოლოსი."),minlength:a.validator.format("შეიყვანეთ მინიმუმ {0} სიმბოლო."),rangelength:a.validator.format("გთხოვთ შეიყვანოთ {0} -დან {1} -მდე რაოდენობის სიმბოლოები."),range:a.validator.format("შეიყვანეთ {0} -სა {1} -ს შორის."),max:a.validator.format("გთხოვთ შეიყვანოთ მნიშვნელობა ნაკლები ან ტოლი {0} -ს."),min:a.validator.format("გთხოვთ შეიყვანოთ მნიშვნელობა მეტი ან ტოლი {0} -ს.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_gl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){!function(a){a.extend(a.validator.messages,{required:"Este campo é obrigatorio.",remote:"Por favor, cubre este campo.",email:"Por favor, escribe unha dirección de correo válida.",url:"Por favor, escribe unha URL válida.",date:"Por favor, escribe unha data válida.",dateISO:"Por favor, escribe unha data (ISO) válida.",number:"Por favor, escribe un número válido.",digits:"Por favor, escribe só díxitos.",creditcard:"Por favor, escribe un número de tarxeta válido.",equalTo:"Por favor, escribe o mesmo valor de novo.",extension:"Por favor, escribe un valor cunha extensión aceptada.",maxlength:a.validator.format("Por favor, non escribas máis de {0} caracteres."),minlength:a.validator.format("Por favor, non escribas menos de {0} caracteres."),rangelength:a.validator.format("Por favor, escribe un valor entre {0} e {1} caracteres."),range:a.validator.format("Por favor, escribe un valor entre {0} e {1}."),max:a.validator.format("Por favor, escribe un valor menor ou igual a {0}."),min:a.validator.format("Por favor, escribe un valor maior ou igual a {0}."),nifES:"Por favor, escribe un NIF válido.",nieES:"Por favor, escribe un NIE válido.",cifES:"Por favor, escribe un CIF válido."})}(jQuery)}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_he.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: HE (Hebrew; עברית) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "השדה הזה הינו שדה חובה", 15 | remote: "נא לתקן שדה זה", 16 | email: "נא למלא כתובת דוא\"ל חוקית", 17 | url: "נא למלא כתובת אינטרנט חוקית", 18 | date: "נא למלא תאריך חוקי", 19 | dateISO: "נא למלא תאריך חוקי (ISO)", 20 | number: "נא למלא מספר", 21 | digits: "נא למלא רק מספרים", 22 | creditcard: "נא למלא מספר כרטיס אשראי חוקי", 23 | equalTo: "נא למלא את אותו ערך שוב", 24 | extension: "נא למלא ערך עם סיומת חוקית", 25 | maxlength: $.validator.format(".נא לא למלא יותר מ- {0} תווים"), 26 | minlength: $.validator.format("נא למלא לפחות {0} תווים"), 27 | rangelength: $.validator.format("נא למלא ערך בין {0} ל- {1} תווים"), 28 | range: $.validator.format("נא למלא ערך בין {0} ל- {1}"), 29 | max: $.validator.format("נא למלא ערך קטן או שווה ל- {0}"), 30 | min: $.validator.format("נא למלא ערך גדול או שווה ל- {0}") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_he.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"השדה הזה הינו שדה חובה",remote:"נא לתקן שדה זה",email:'נא למלא כתובת דוא"ל חוקית',url:"נא למלא כתובת אינטרנט חוקית",date:"נא למלא תאריך חוקי",dateISO:"נא למלא תאריך חוקי (ISO)",number:"נא למלא מספר",digits:"נא למלא רק מספרים",creditcard:"נא למלא מספר כרטיס אשראי חוקי",equalTo:"נא למלא את אותו ערך שוב",extension:"נא למלא ערך עם סיומת חוקית",maxlength:a.validator.format(".נא לא למלא יותר מ- {0} תווים"),minlength:a.validator.format("נא למלא לפחות {0} תווים"),rangelength:a.validator.format("נא למלא ערך בין {0} ל- {1} תווים"),range:a.validator.format("נא למלא ערך בין {0} ל- {1}"),max:a.validator.format("נא למלא ערך קטן או שווה ל- {0}"),min:a.validator.format("נא למלא ערך גדול או שווה ל- {0}")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_hr.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: HR (Croatia; hrvatski jezik) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Ovo polje je obavezno.", 15 | remote: "Ovo polje treba popraviti.", 16 | email: "Unesite ispravnu e-mail adresu.", 17 | url: "Unesite ispravan URL.", 18 | date: "Unesite ispravan datum.", 19 | dateISO: "Unesite ispravan datum (ISO).", 20 | number: "Unesite ispravan broj.", 21 | digits: "Unesite samo brojeve.", 22 | creditcard: "Unesite ispravan broj kreditne kartice.", 23 | equalTo: "Unesite ponovo istu vrijednost.", 24 | extension: "Unesite vrijednost sa ispravnom ekstenzijom.", 25 | maxlength: $.validator.format("Maksimalni broj znakova je {0} ."), 26 | minlength: $.validator.format("Minimalni broj znakova je {0} ."), 27 | rangelength: $.validator.format("Unesite vrijednost između {0} i {1} znakova."), 28 | range: $.validator.format("Unesite vrijednost između {0} i {1}."), 29 | max: $.validator.format("Unesite vrijednost manju ili jednaku {0}."), 30 | min: $.validator.format("Unesite vrijednost veću ili jednaku {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_hr.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Ovo polje je obavezno.",remote:"Ovo polje treba popraviti.",email:"Unesite ispravnu e-mail adresu.",url:"Unesite ispravan URL.",date:"Unesite ispravan datum.",dateISO:"Unesite ispravan datum (ISO).",number:"Unesite ispravan broj.",digits:"Unesite samo brojeve.",creditcard:"Unesite ispravan broj kreditne kartice.",equalTo:"Unesite ponovo istu vrijednost.",extension:"Unesite vrijednost sa ispravnom ekstenzijom.",maxlength:a.validator.format("Maksimalni broj znakova je {0} ."),minlength:a.validator.format("Minimalni broj znakova je {0} ."),rangelength:a.validator.format("Unesite vrijednost između {0} i {1} znakova."),range:a.validator.format("Unesite vrijednost između {0} i {1}."),max:a.validator.format("Unesite vrijednost manju ili jednaku {0}."),min:a.validator.format("Unesite vrijednost veću ili jednaku {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_hu.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: HU (Hungarian; Magyar) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Kötelező megadni.", 15 | maxlength: $.validator.format("Legfeljebb {0} karakter hosszú legyen."), 16 | minlength: $.validator.format("Legalább {0} karakter hosszú legyen."), 17 | rangelength: $.validator.format("Legalább {0} és legfeljebb {1} karakter hosszú legyen."), 18 | email: "Érvényes e-mail címnek kell lennie.", 19 | url: "Érvényes URL-nek kell lennie.", 20 | date: "Dátumnak kell lennie.", 21 | number: "Számnak kell lennie.", 22 | digits: "Csak számjegyek lehetnek.", 23 | equalTo: "Meg kell egyeznie a két értéknek.", 24 | range: $.validator.format("{0} és {1} közé kell esnie."), 25 | max: $.validator.format("Nem lehet nagyobb, mint {0}."), 26 | min: $.validator.format("Nem lehet kisebb, mint {0}."), 27 | creditcard: "Érvényes hitelkártyaszámnak kell lennie.", 28 | remote: "Kérem javítsa ki ezt a mezőt.", 29 | dateISO: "Kérem írjon be egy érvényes dátumot (ISO)." 30 | }); 31 | 32 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_hu.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Kötelező megadni.",maxlength:a.validator.format("Legfeljebb {0} karakter hosszú legyen."),minlength:a.validator.format("Legalább {0} karakter hosszú legyen."),rangelength:a.validator.format("Legalább {0} és legfeljebb {1} karakter hosszú legyen."),email:"Érvényes e-mail címnek kell lennie.",url:"Érvényes URL-nek kell lennie.",date:"Dátumnak kell lennie.",number:"Számnak kell lennie.",digits:"Csak számjegyek lehetnek.",equalTo:"Meg kell egyeznie a két értéknek.",range:a.validator.format("{0} és {1} közé kell esnie."),max:a.validator.format("Nem lehet nagyobb, mint {0}."),min:a.validator.format("Nem lehet kisebb, mint {0}."),creditcard:"Érvényes hitelkártyaszámnak kell lennie.",remote:"Kérem javítsa ki ezt a mezőt.",dateISO:"Kérem írjon be egy érvényes dátumot (ISO)."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_hy_AM.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: HY_AM (Armenian; հայերեն լեզու) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Պարտադիր լրացման դաշտ", 15 | remote: "Ներմուծեք ճիշտ արժեքը", 16 | email: "Ներմուծեք վավեր էլեկտրոնային փոստի հասցե", 17 | url: "Ներմուծեք վավեր URL", 18 | date: "Ներմուծեք վավեր ամսաթիվ", 19 | dateISO: "Ներմուծեք ISO ֆորմատով վավեր ամսաթիվ։", 20 | number: "Ներմուծեք թիվ", 21 | digits: "Ներմուծեք միայն թվեր", 22 | creditcard: "Ներմուծեք ճիշտ բանկային քարտի համար", 23 | equalTo: "Ներմուծեք միևնուն արժեքը ևս մեկ անգամ", 24 | extension: "Ընտրեք ճիշտ ընդլանումով ֆայլ", 25 | maxlength: $.validator.format("Ներմուծեք ոչ ավել քան {0} նիշ"), 26 | minlength: $.validator.format("Ներմուծեք ոչ պակաս քան {0} նիշ"), 27 | rangelength: $.validator.format("Ներմուծեք {0}֊ից {1} երկարությամբ արժեք"), 28 | range: $.validator.format("Ներմուծեք թիվ {0}֊ից {1} միջակայքում"), 29 | max: $.validator.format("Ներմուծեք թիվ, որը փոքր կամ հավասար է {0}֊ին"), 30 | min: $.validator.format("Ներմուծեք թիվ, որը մեծ կամ հավասար է {0}֊ին") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_hy_AM.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Պարտադիր լրացման դաշտ",remote:"Ներմուծեք ճիշտ արժեքը",email:"Ներմուծեք վավեր էլեկտրոնային փոստի հասցե",url:"Ներմուծեք վավեր URL",date:"Ներմուծեք վավեր ամսաթիվ",dateISO:"Ներմուծեք ISO ֆորմատով վավեր ամսաթիվ։",number:"Ներմուծեք թիվ",digits:"Ներմուծեք միայն թվեր",creditcard:"Ներմուծեք ճիշտ բանկային քարտի համար",equalTo:"Ներմուծեք միևնուն արժեքը ևս մեկ անգամ",extension:"Ընտրեք ճիշտ ընդլանումով ֆայլ",maxlength:a.validator.format("Ներմուծեք ոչ ավել քան {0} նիշ"),minlength:a.validator.format("Ներմուծեք ոչ պակաս քան {0} նիշ"),rangelength:a.validator.format("Ներմուծեք {0}֊ից {1} երկարությամբ արժեք"),range:a.validator.format("Ներմուծեք թիվ {0}֊ից {1} միջակայքում"),max:a.validator.format("Ներմուծեք թիվ, որը փոքր կամ հավասար է {0}֊ին"),min:a.validator.format("Ներմուծեք թիվ, որը մեծ կամ հավասար է {0}֊ին")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_id.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: ID (Indonesia; Indonesian) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Kolom ini diperlukan.", 15 | remote: "Harap benarkan kolom ini.", 16 | email: "Silakan masukkan format email yang benar.", 17 | url: "Silakan masukkan format URL yang benar.", 18 | date: "Silakan masukkan format tanggal yang benar.", 19 | dateISO: "Silakan masukkan format tanggal(ISO) yang benar.", 20 | number: "Silakan masukkan angka yang benar.", 21 | digits: "Harap masukan angka saja.", 22 | creditcard: "Harap masukkan format kartu kredit yang benar.", 23 | equalTo: "Harap masukkan nilai yg sama dengan sebelumnya.", 24 | maxlength: $.validator.format("Input dibatasi hanya {0} karakter."), 25 | minlength: $.validator.format("Input tidak kurang dari {0} karakter."), 26 | rangelength: $.validator.format("Panjang karakter yg diizinkan antara {0} dan {1} karakter."), 27 | range: $.validator.format("Harap masukkan nilai antara {0} dan {1}."), 28 | max: $.validator.format("Harap masukkan nilai lebih kecil atau sama dengan {0}."), 29 | min: $.validator.format("Harap masukkan nilai lebih besar atau sama dengan {0}.") 30 | }); 31 | 32 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_id.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Kolom ini diperlukan.",remote:"Harap benarkan kolom ini.",email:"Silakan masukkan format email yang benar.",url:"Silakan masukkan format URL yang benar.",date:"Silakan masukkan format tanggal yang benar.",dateISO:"Silakan masukkan format tanggal(ISO) yang benar.",number:"Silakan masukkan angka yang benar.",digits:"Harap masukan angka saja.",creditcard:"Harap masukkan format kartu kredit yang benar.",equalTo:"Harap masukkan nilai yg sama dengan sebelumnya.",maxlength:a.validator.format("Input dibatasi hanya {0} karakter."),minlength:a.validator.format("Input tidak kurang dari {0} karakter."),rangelength:a.validator.format("Panjang karakter yg diizinkan antara {0} dan {1} karakter."),range:a.validator.format("Harap masukkan nilai antara {0} dan {1}."),max:a.validator.format("Harap masukkan nilai lebih kecil atau sama dengan {0}."),min:a.validator.format("Harap masukkan nilai lebih besar atau sama dengan {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_is.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: IS (Icelandic; íslenska) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Þessi reitur er nauðsynlegur.", 15 | remote: "Lagaðu þennan reit.", 16 | maxlength: $.validator.format("Sláðu inn mest {0} stafi."), 17 | minlength: $.validator.format("Sláðu inn minnst {0} stafi."), 18 | rangelength: $.validator.format("Sláðu inn minnst {0} og mest {1} stafi."), 19 | email: "Sláðu inn gilt netfang.", 20 | url: "Sláðu inn gilda vefslóð.", 21 | date: "Sláðu inn gilda dagsetningu.", 22 | number: "Sláðu inn tölu.", 23 | digits: "Sláðu inn tölustafi eingöngu.", 24 | equalTo: "Sláðu sama gildi inn aftur.", 25 | range: $.validator.format("Sláðu inn gildi milli {0} og {1}."), 26 | max: $.validator.format("Sláðu inn gildi sem er minna en eða jafnt og {0}."), 27 | min: $.validator.format("Sláðu inn gildi sem er stærra en eða jafnt og {0}."), 28 | creditcard: "Sláðu inn gilt greiðslukortanúmer." 29 | }); 30 | 31 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_is.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Þessi reitur er nauðsynlegur.",remote:"Lagaðu þennan reit.",maxlength:a.validator.format("Sláðu inn mest {0} stafi."),minlength:a.validator.format("Sláðu inn minnst {0} stafi."),rangelength:a.validator.format("Sláðu inn minnst {0} og mest {1} stafi."),email:"Sláðu inn gilt netfang.",url:"Sláðu inn gilda vefslóð.",date:"Sláðu inn gilda dagsetningu.",number:"Sláðu inn tölu.",digits:"Sláðu inn tölustafi eingöngu.",equalTo:"Sláðu sama gildi inn aftur.",range:a.validator.format("Sláðu inn gildi milli {0} og {1}."),max:a.validator.format("Sláðu inn gildi sem er minna en eða jafnt og {0}."),min:a.validator.format("Sláðu inn gildi sem er stærra en eða jafnt og {0}."),creditcard:"Sláðu inn gilt greiðslukortanúmer."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_it.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Campo obbligatorio",remote:"Controlla questo campo",email:"Inserisci un indirizzo email valido",url:"Inserisci un indirizzo web valido",date:"Inserisci una data valida",dateISO:"Inserisci una data valida (ISO)",number:"Inserisci un numero valido",digits:"Inserisci solo numeri",creditcard:"Inserisci un numero di carta di credito valido",equalTo:"Il valore non corrisponde",extension:"Inserisci un valore con un'estensione valida",maxlength:a.validator.format("Non inserire più di {0} caratteri"),minlength:a.validator.format("Inserisci almeno {0} caratteri"),rangelength:a.validator.format("Inserisci un valore compreso tra {0} e {1} caratteri"),range:a.validator.format("Inserisci un valore compreso tra {0} e {1}"),max:a.validator.format("Inserisci un valore minore o uguale a {0}"),min:a.validator.format("Inserisci un valore maggiore o uguale a {0}"),nifES:"Inserisci un NIF valido",nieES:"Inserisci un NIE valido",cifES:"Inserisci un CIF valido",currency:"Inserisci una valuta valida"})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ja.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: JA (Japanese; 日本語) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "このフィールドは必須です。", 15 | remote: "このフィールドを修正してください。", 16 | email: "有効なEメールアドレスを入力してください。", 17 | url: "有効なURLを入力してください。", 18 | date: "有効な日付を入力してください。", 19 | dateISO: "有効な日付(ISO)を入力してください。", 20 | number: "有効な数字を入力してください。", 21 | digits: "数字のみを入力してください。", 22 | creditcard: "有効なクレジットカード番号を入力してください。", 23 | equalTo: "同じ値をもう一度入力してください。", 24 | extension: "有効な拡張子を含む値を入力してください。", 25 | maxlength: $.validator.format("{0} 文字以内で入力してください。"), 26 | minlength: $.validator.format("{0} 文字以上で入力してください。"), 27 | rangelength: $.validator.format("{0} 文字から {1} 文字までの値を入力してください。"), 28 | range: $.validator.format("{0} から {1} までの値を入力してください。"), 29 | max: $.validator.format("{0} 以下の値を入力してください。"), 30 | min: $.validator.format("{0} 以上の値を入力してください。") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ja.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"このフィールドは必須です。",remote:"このフィールドを修正してください。",email:"有効なEメールアドレスを入力してください。",url:"有効なURLを入力してください。",date:"有効な日付を入力してください。",dateISO:"有効な日付(ISO)を入力してください。",number:"有効な数字を入力してください。",digits:"数字のみを入力してください。",creditcard:"有効なクレジットカード番号を入力してください。",equalTo:"同じ値をもう一度入力してください。",extension:"有効な拡張子を含む値を入力してください。",maxlength:a.validator.format("{0} 文字以内で入力してください。"),minlength:a.validator.format("{0} 文字以上で入力してください。"),rangelength:a.validator.format("{0} 文字から {1} 文字までの値を入力してください。"),range:a.validator.format("{0} から {1} までの値を入力してください。"),max:a.validator.format("{0} 以下の値を入力してください。"),min:a.validator.format("{0} 以上の値を入力してください。")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ka.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: KA (Georgian; ქართული) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "ამ ველის შევსება აუცილებელია.", 15 | remote: "გთხოვთ მიუთითოთ სწორი მნიშვნელობა.", 16 | email: "გთხოვთ მიუთითოთ ელ-ფოსტის კორექტული მისამართი.", 17 | url: "გთხოვთ მიუთითოთ კორექტული URL.", 18 | date: "გთხოვთ მიუთითოთ კორექტული თარიღი.", 19 | dateISO: "გთხოვთ მიუთითოთ კორექტული თარიღი ISO ფორმატში.", 20 | number: "გთხოვთ მიუთითოთ ციფრი.", 21 | digits: "გთხოვთ მიუთითოთ მხოლოდ ციფრები.", 22 | creditcard: "გთხოვთ მიუთითოთ საკრედიტო ბარათის კორექტული ნომერი.", 23 | equalTo: "გთხოვთ მიუთითოთ ასეთივე მნიშვნელობა კიდევ ერთხელ.", 24 | extension: "გთხოვთ აირჩიოთ ფაილი კორექტული გაფართოებით.", 25 | maxlength: $.validator.format("დასაშვებია არაუმეტეს {0} სიმბოლო."), 26 | minlength: $.validator.format("აუცილებელია შეიყვანოთ მინიმუმ {0} სიმბოლო."), 27 | rangelength: $.validator.format("ტექსტში სიმბოლოების რაოდენობა უნდა იყოს {0}-დან {1}-მდე."), 28 | range: $.validator.format("გთხოვთ შეიყვანოთ ციფრი {0}-დან {1}-მდე."), 29 | max: $.validator.format("გთხოვთ შეიყვანოთ ციფრი რომელიც ნაკლებია ან უდრის {0}-ს."), 30 | min: $.validator.format("გთხოვთ შეიყვანოთ ციფრი რომელიც მეტია ან უდრის {0}-ს.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ka.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"ამ ველის შევსება აუცილებელია.",remote:"გთხოვთ მიუთითოთ სწორი მნიშვნელობა.",email:"გთხოვთ მიუთითოთ ელ-ფოსტის კორექტული მისამართი.",url:"გთხოვთ მიუთითოთ კორექტული URL.",date:"გთხოვთ მიუთითოთ კორექტული თარიღი.",dateISO:"გთხოვთ მიუთითოთ კორექტული თარიღი ISO ფორმატში.",number:"გთხოვთ მიუთითოთ ციფრი.",digits:"გთხოვთ მიუთითოთ მხოლოდ ციფრები.",creditcard:"გთხოვთ მიუთითოთ საკრედიტო ბარათის კორექტული ნომერი.",equalTo:"გთხოვთ მიუთითოთ ასეთივე მნიშვნელობა კიდევ ერთხელ.",extension:"გთხოვთ აირჩიოთ ფაილი კორექტული გაფართოებით.",maxlength:a.validator.format("დასაშვებია არაუმეტეს {0} სიმბოლო."),minlength:a.validator.format("აუცილებელია შეიყვანოთ მინიმუმ {0} სიმბოლო."),rangelength:a.validator.format("ტექსტში სიმბოლოების რაოდენობა უნდა იყოს {0}-დან {1}-მდე."),range:a.validator.format("გთხოვთ შეიყვანოთ ციფრი {0}-დან {1}-მდე."),max:a.validator.format("გთხოვთ შეიყვანოთ ციფრი რომელიც ნაკლებია ან უდრის {0}-ს."),min:a.validator.format("გთხოვთ შეიყვანოთ ციფრი რომელიც მეტია ან უდრის {0}-ს.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_kk.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Бұл өрісті міндетті түрде толтырыңыз.",remote:"Дұрыс мағына енгізуіңізді сұраймыз.",email:"Нақты электронды поштаңызды енгізуіңізді сұраймыз.",url:"Нақты URL-ды енгізуіңізді сұраймыз.",date:"Нақты URL-ды енгізуіңізді сұраймыз.",dateISO:"Нақты ISO форматымен сәйкес датасын енгізуіңізді сұраймыз.",number:"Күнді енгізуіңізді сұраймыз.",digits:"Тек қана сандарды енгізуіңізді сұраймыз.",creditcard:"Несие картасының нөмірін дұрыс енгізуіңізді сұраймыз.",equalTo:"Осы мәнді қайта енгізуіңізді сұраймыз.",extension:"Файлдың кеңейтуін дұрыс таңдаңыз.",maxlength:a.validator.format("Ұзындығы {0} символдан көр болмасын."),minlength:a.validator.format("Ұзындығы {0} символдан аз болмасын."),rangelength:a.validator.format("Ұзындығы {0}-{1} дейін мән енгізуіңізді сұраймыз."),range:a.validator.format("Пожалуйста, введите число от {0} до {1}. - {0} - {1} санын енгізуіңізді сұраймыз."),max:a.validator.format("{0} аз немесе тең санын енгізуіңіді сұраймыз."),min:a.validator.format("{0} көп немесе тең санын енгізуіңізді сұраймыз.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ko.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: KO (Korean; 한국어) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "필수 항목입니다.", 15 | remote: "항목을 수정하세요.", 16 | email: "유효하지 않은 E-Mail주소입니다.", 17 | url: "유효하지 않은 URL입니다.", 18 | date: "올바른 날짜를 입력하세요.", 19 | dateISO: "올바른 날짜(ISO)를 입력하세요.", 20 | number: "유효한 숫자가 아닙니다.", 21 | digits: "숫자만 입력 가능합니다.", 22 | creditcard: "신용카드 번호가 바르지 않습니다.", 23 | equalTo: "같은 값을 다시 입력하세요.", 24 | extension: "올바른 확장자가 아닙니다.", 25 | maxlength: $.validator.format("{0}자를 넘을 수 없습니다. "), 26 | minlength: $.validator.format("{0}자 이상 입력하세요."), 27 | rangelength: $.validator.format("문자 길이가 {0} 에서 {1} 사이의 값을 입력하세요."), 28 | range: $.validator.format("{0} 에서 {1} 사이의 값을 입력하세요."), 29 | max: $.validator.format("{0} 이하의 값을 입력하세요."), 30 | min: $.validator.format("{0} 이상의 값을 입력하세요.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ko.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"필수 항목입니다.",remote:"항목을 수정하세요.",email:"유효하지 않은 E-Mail주소입니다.",url:"유효하지 않은 URL입니다.",date:"올바른 날짜를 입력하세요.",dateISO:"올바른 날짜(ISO)를 입력하세요.",number:"유효한 숫자가 아닙니다.",digits:"숫자만 입력 가능합니다.",creditcard:"신용카드 번호가 바르지 않습니다.",equalTo:"같은 값을 다시 입력하세요.",extension:"올바른 확장자가 아닙니다.",maxlength:a.validator.format("{0}자를 넘을 수 없습니다. "),minlength:a.validator.format("{0}자 이상 입력하세요."),rangelength:a.validator.format("문자 길이가 {0} 에서 {1} 사이의 값을 입력하세요."),range:a.validator.format("{0} 에서 {1} 사이의 값을 입력하세요."),max:a.validator.format("{0} 이하의 값을 입력하세요."),min:a.validator.format("{0} 이상의 값을 입력하세요.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_lt.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: LT (Lithuanian; lietuvių kalba) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Šis laukas yra privalomas.", 15 | remote: "Prašau pataisyti šį lauką.", 16 | email: "Prašau įvesti teisingą elektroninio pašto adresą.", 17 | url: "Prašau įvesti teisingą URL.", 18 | date: "Prašau įvesti teisingą datą.", 19 | dateISO: "Prašau įvesti teisingą datą (ISO).", 20 | number: "Prašau įvesti teisingą skaičių.", 21 | digits: "Prašau naudoti tik skaitmenis.", 22 | creditcard: "Prašau įvesti teisingą kreditinės kortelės numerį.", 23 | equalTo: "Prašau įvestį tą pačią reikšmę dar kartą.", 24 | extension: "Prašau įvesti reikšmę su teisingu plėtiniu.", 25 | maxlength: $.validator.format("Prašau įvesti ne daugiau kaip {0} simbolių."), 26 | minlength: $.validator.format("Prašau įvesti bent {0} simbolius."), 27 | rangelength: $.validator.format("Prašau įvesti reikšmes, kurių ilgis nuo {0} iki {1} simbolių."), 28 | range: $.validator.format("Prašau įvesti reikšmę intervale nuo {0} iki {1}."), 29 | max: $.validator.format("Prašau įvesti reikšmę mažesnę arba lygią {0}."), 30 | min: $.validator.format("Prašau įvesti reikšmę didesnę arba lygią {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_lt.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Šis laukas yra privalomas.",remote:"Prašau pataisyti šį lauką.",email:"Prašau įvesti teisingą elektroninio pašto adresą.",url:"Prašau įvesti teisingą URL.",date:"Prašau įvesti teisingą datą.",dateISO:"Prašau įvesti teisingą datą (ISO).",number:"Prašau įvesti teisingą skaičių.",digits:"Prašau naudoti tik skaitmenis.",creditcard:"Prašau įvesti teisingą kreditinės kortelės numerį.",equalTo:"Prašau įvestį tą pačią reikšmę dar kartą.",extension:"Prašau įvesti reikšmę su teisingu plėtiniu.",maxlength:a.validator.format("Prašau įvesti ne daugiau kaip {0} simbolių."),minlength:a.validator.format("Prašau įvesti bent {0} simbolius."),rangelength:a.validator.format("Prašau įvesti reikšmes, kurių ilgis nuo {0} iki {1} simbolių."),range:a.validator.format("Prašau įvesti reikšmę intervale nuo {0} iki {1}."),max:a.validator.format("Prašau įvesti reikšmę mažesnę arba lygią {0}."),min:a.validator.format("Prašau įvesti reikšmę didesnę arba lygią {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_lv.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: LV (Latvian; latviešu valoda) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Šis lauks ir obligāts.", 15 | remote: "Lūdzu, pārbaudiet šo lauku.", 16 | email: "Lūdzu, ievadiet derīgu e-pasta adresi.", 17 | url: "Lūdzu, ievadiet derīgu URL adresi.", 18 | date: "Lūdzu, ievadiet derīgu datumu.", 19 | dateISO: "Lūdzu, ievadiet derīgu datumu (ISO).", 20 | number: "Lūdzu, ievadiet derīgu numuru.", 21 | digits: "Lūdzu, ievadiet tikai ciparus.", 22 | creditcard: "Lūdzu, ievadiet derīgu kredītkartes numuru.", 23 | equalTo: "Lūdzu, ievadiet to pašu vēlreiz.", 24 | extension: "Lūdzu, ievadiet vērtību ar derīgu paplašinājumu.", 25 | maxlength: $.validator.format("Lūdzu, ievadiet ne vairāk kā {0} rakstzīmes."), 26 | minlength: $.validator.format("Lūdzu, ievadiet vismaz {0} rakstzīmes."), 27 | rangelength: $.validator.format("Lūdzu ievadiet {0} līdz {1} rakstzīmes."), 28 | range: $.validator.format("Lūdzu, ievadiet skaitli no {0} līdz {1}."), 29 | max: $.validator.format("Lūdzu, ievadiet skaitli, kurš ir mazāks vai vienāds ar {0}."), 30 | min: $.validator.format("Lūdzu, ievadiet skaitli, kurš ir lielāks vai vienāds ar {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_lv.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Šis lauks ir obligāts.",remote:"Lūdzu, pārbaudiet šo lauku.",email:"Lūdzu, ievadiet derīgu e-pasta adresi.",url:"Lūdzu, ievadiet derīgu URL adresi.",date:"Lūdzu, ievadiet derīgu datumu.",dateISO:"Lūdzu, ievadiet derīgu datumu (ISO).",number:"Lūdzu, ievadiet derīgu numuru.",digits:"Lūdzu, ievadiet tikai ciparus.",creditcard:"Lūdzu, ievadiet derīgu kredītkartes numuru.",equalTo:"Lūdzu, ievadiet to pašu vēlreiz.",extension:"Lūdzu, ievadiet vērtību ar derīgu paplašinājumu.",maxlength:a.validator.format("Lūdzu, ievadiet ne vairāk kā {0} rakstzīmes."),minlength:a.validator.format("Lūdzu, ievadiet vismaz {0} rakstzīmes."),rangelength:a.validator.format("Lūdzu ievadiet {0} līdz {1} rakstzīmes."),range:a.validator.format("Lūdzu, ievadiet skaitli no {0} līdz {1}."),max:a.validator.format("Lūdzu, ievadiet skaitli, kurš ir mazāks vai vienāds ar {0}."),min:a.validator.format("Lūdzu, ievadiet skaitli, kurš ir lielāks vai vienāds ar {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_my.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: MY (Malay; Melayu) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Medan ini diperlukan.", 15 | remote: "Sila betulkan medan ini.", 16 | email: "Sila masukkan alamat emel yang betul.", 17 | url: "Sila masukkan URL yang betul.", 18 | date: "Sila masukkan tarikh yang betul.", 19 | dateISO: "Sila masukkan tarikh(ISO) yang betul.", 20 | number: "Sila masukkan nombor yang betul.", 21 | digits: "Sila masukkan nilai digit sahaja.", 22 | creditcard: "Sila masukkan nombor kredit kad yang betul.", 23 | equalTo: "Sila masukkan nilai yang sama semula.", 24 | extension: "Sila masukkan nilai yang telah diterima.", 25 | maxlength: $.validator.format("Sila masukkan nilai tidak lebih dari {0} aksara."), 26 | minlength: $.validator.format("Sila masukkan nilai sekurang-kurangnya {0} aksara."), 27 | rangelength: $.validator.format("Sila masukkan panjang nilai antara {0} dan {1} aksara."), 28 | range: $.validator.format("Sila masukkan nilai antara {0} dan {1} aksara."), 29 | max: $.validator.format("Sila masukkan nilai yang kurang atau sama dengan {0}."), 30 | min: $.validator.format("Sila masukkan nilai yang lebih atau sama dengan {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_my.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Medan ini diperlukan.",remote:"Sila betulkan medan ini.",email:"Sila masukkan alamat emel yang betul.",url:"Sila masukkan URL yang betul.",date:"Sila masukkan tarikh yang betul.",dateISO:"Sila masukkan tarikh(ISO) yang betul.",number:"Sila masukkan nombor yang betul.",digits:"Sila masukkan nilai digit sahaja.",creditcard:"Sila masukkan nombor kredit kad yang betul.",equalTo:"Sila masukkan nilai yang sama semula.",extension:"Sila masukkan nilai yang telah diterima.",maxlength:a.validator.format("Sila masukkan nilai tidak lebih dari {0} aksara."),minlength:a.validator.format("Sila masukkan nilai sekurang-kurangnya {0} aksara."),rangelength:a.validator.format("Sila masukkan panjang nilai antara {0} dan {1} aksara."),range:a.validator.format("Sila masukkan nilai antara {0} dan {1} aksara."),max:a.validator.format("Sila masukkan nilai yang kurang atau sama dengan {0}."),min:a.validator.format("Sila masukkan nilai yang lebih atau sama dengan {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_no.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: NO (Norwegian; Norsk) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Dette feltet er obligatorisk.", 15 | maxlength: $.validator.format("Maksimalt {0} tegn."), 16 | minlength: $.validator.format("Minimum {0} tegn."), 17 | rangelength: $.validator.format("Angi minimum {0} og maksimum {1} tegn."), 18 | email: "Oppgi en gyldig epostadresse.", 19 | url: "Angi en gyldig URL.", 20 | date: "Angi en gyldig dato.", 21 | dateISO: "Angi en gyldig dato (&ARING;&ARING;&ARING;&ARING;-MM-DD).", 22 | dateSE: "Angi en gyldig dato.", 23 | number: "Angi et gyldig nummer.", 24 | numberSE: "Angi et gyldig nummer.", 25 | digits: "Skriv kun tall.", 26 | equalTo: "Skriv samme verdi igjen.", 27 | range: $.validator.format("Angi en verdi mellom {0} og {1}."), 28 | max: $.validator.format("Angi en verdi som er mindre eller lik {0}."), 29 | min: $.validator.format("Angi en verdi som er større eller lik {0}."), 30 | creditcard: "Angi et gyldig kredittkortnummer." 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_no.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Dette feltet er obligatorisk.",maxlength:a.validator.format("Maksimalt {0} tegn."),minlength:a.validator.format("Minimum {0} tegn."),rangelength:a.validator.format("Angi minimum {0} og maksimum {1} tegn."),email:"Oppgi en gyldig epostadresse.",url:"Angi en gyldig URL.",date:"Angi en gyldig dato.",dateISO:"Angi en gyldig dato (&ARING;&ARING;&ARING;&ARING;-MM-DD).",dateSE:"Angi en gyldig dato.",number:"Angi et gyldig nummer.",numberSE:"Angi et gyldig nummer.",digits:"Skriv kun tall.",equalTo:"Skriv samme verdi igjen.",range:a.validator.format("Angi en verdi mellom {0} og {1}."),max:a.validator.format("Angi en verdi som er mindre eller lik {0}."),min:a.validator.format("Angi en verdi som er større eller lik {0}."),creditcard:"Angi et gyldig kredittkortnummer."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_pl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"To pole jest wymagane.",remote:"Proszę o wypełnienie tego pola.",email:"Proszę o podanie prawidłowego adresu email.",url:"Proszę o podanie prawidłowego URL.",date:"Proszę o podanie prawidłowej daty.",dateISO:"Proszę o podanie prawidłowej daty (ISO).",number:"Proszę o podanie prawidłowej liczby.",digits:"Proszę o podanie samych cyfr.",creditcard:"Proszę o podanie prawidłowej karty kredytowej.",equalTo:"Proszę o podanie tej samej wartości ponownie.",extension:"Proszę o podanie wartości z prawidłowym rozszerzeniem.",maxlength:a.validator.format("Proszę o podanie nie więcej niż {0} znaków."),minlength:a.validator.format("Proszę o podanie przynajmniej {0} znaków."),rangelength:a.validator.format("Proszę o podanie wartości o długości od {0} do {1} znaków."),range:a.validator.format("Proszę o podanie wartości z przedziału od {0} do {1}."),max:a.validator.format("Proszę o podanie wartości mniejszej bądź równej {0}."),min:a.validator.format("Proszę o podanie wartości większej bądź równej {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ro.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Acest câmp este obligatoriu.",remote:"Te rugăm să completezi acest câmp.",email:"Te rugăm să introduci o adresă de email validă",url:"Te rugăm sa introduci o adresă URL validă.",date:"Te rugăm să introduci o dată corectă.",dateISO:"Te rugăm să introduci o dată (ISO) corectă.",number:"Te rugăm să introduci un număr întreg valid.",digits:"Te rugăm să introduci doar cifre.",creditcard:"Te rugăm să introduci un numar de carte de credit valid.",equalTo:"Te rugăm să reintroduci valoarea.",extension:"Te rugăm să introduci o valoare cu o extensie validă.",maxlength:a.validator.format("Te rugăm să nu introduci mai mult de {0} caractere."),minlength:a.validator.format("Te rugăm să introduci cel puțin {0} caractere."),rangelength:a.validator.format("Te rugăm să introduci o valoare între {0} și {1} caractere."),range:a.validator.format("Te rugăm să introduci o valoare între {0} și {1}."),max:a.validator.format("Te rugăm să introduci o valoare egal sau mai mică decât {0}."),min:a.validator.format("Te rugăm să introduci o valoare egal sau mai mare decât {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_ru.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Это поле необходимо заполнить.",remote:"Пожалуйста, введите правильное значение.",email:"Пожалуйста, введите корректный адрес электронной почты.",url:"Пожалуйста, введите корректный URL.",date:"Пожалуйста, введите корректную дату.",dateISO:"Пожалуйста, введите корректную дату в формате ISO.",number:"Пожалуйста, введите число.",digits:"Пожалуйста, вводите только цифры.",creditcard:"Пожалуйста, введите правильный номер кредитной карты.",equalTo:"Пожалуйста, введите такое же значение ещё раз.",extension:"Пожалуйста, выберите файл с правильным расширением.",maxlength:a.validator.format("Пожалуйста, введите не больше {0} символов."),minlength:a.validator.format("Пожалуйста, введите не меньше {0} символов."),rangelength:a.validator.format("Пожалуйста, введите значение длиной от {0} до {1} символов."),range:a.validator.format("Пожалуйста, введите число от {0} до {1}."),max:a.validator.format("Пожалуйста, введите число, меньшее или равное {0}."),min:a.validator.format("Пожалуйста, введите число, большее или равное {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_si.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: SI (Slovenian) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "To polje je obvezno.", 15 | remote: "Vpis v tem polju ni v pravi obliki.", 16 | email: "Prosimo, vnesite pravi email naslov.", 17 | url: "Prosimo, vnesite pravi URL.", 18 | date: "Prosimo, vnesite pravi datum.", 19 | dateISO: "Prosimo, vnesite pravi datum (ISO).", 20 | number: "Prosimo, vnesite pravo številko.", 21 | digits: "Prosimo, vnesite samo številke.", 22 | creditcard: "Prosimo, vnesite pravo številko kreditne kartice.", 23 | equalTo: "Prosimo, ponovno vnesite enako vsebino.", 24 | extension: "Prosimo, vnesite vsebino z pravo končnico.", 25 | maxlength: $.validator.format("Prosimo, da ne vnašate več kot {0} znakov."), 26 | minlength: $.validator.format("Prosimo, vnesite vsaj {0} znakov."), 27 | rangelength: $.validator.format("Prosimo, vnesite od {0} do {1} znakov."), 28 | range: $.validator.format("Prosimo, vnesite vrednost med {0} in {1}."), 29 | max: $.validator.format("Prosimo, vnesite vrednost manjšo ali enako {0}."), 30 | min: $.validator.format("Prosimo, vnesite vrednost večjo ali enako {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_si.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"To polje je obvezno.",remote:"Vpis v tem polju ni v pravi obliki.",email:"Prosimo, vnesite pravi email naslov.",url:"Prosimo, vnesite pravi URL.",date:"Prosimo, vnesite pravi datum.",dateISO:"Prosimo, vnesite pravi datum (ISO).",number:"Prosimo, vnesite pravo številko.",digits:"Prosimo, vnesite samo številke.",creditcard:"Prosimo, vnesite pravo številko kreditne kartice.",equalTo:"Prosimo, ponovno vnesite enako vsebino.",extension:"Prosimo, vnesite vsebino z pravo končnico.",maxlength:a.validator.format("Prosimo, da ne vnašate več kot {0} znakov."),minlength:a.validator.format("Prosimo, vnesite vsaj {0} znakov."),rangelength:a.validator.format("Prosimo, vnesite od {0} do {1} znakov."),range:a.validator.format("Prosimo, vnesite vrednost med {0} in {1}."),max:a.validator.format("Prosimo, vnesite vrednost manjšo ali enako {0}."),min:a.validator.format("Prosimo, vnesite vrednost večjo ali enako {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sk.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: SK (Slovak; slovenčina, slovenský jazyk) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Povinné zadať.", 15 | maxlength: $.validator.format("Maximálne {0} znakov."), 16 | minlength: $.validator.format("Minimálne {0} znakov."), 17 | rangelength: $.validator.format("Minimálne {0} a Maximálne {1} znakov."), 18 | email: "E-mailová adresa musí byť platná.", 19 | url: "URL musí byť platný.", 20 | date: "Musí byť dátum.", 21 | number: "Musí byť číslo.", 22 | digits: "Môže obsahovať iba číslice.", 23 | equalTo: "Dva hodnoty sa musia rovnať.", 24 | range: $.validator.format("Musí byť medzi {0} a {1}."), 25 | max: $.validator.format("Nemôže byť viac ako{0}."), 26 | min: $.validator.format("Nemôže byť menej ako{0}."), 27 | creditcard: "Číslo platobnej karty musí byť platné." 28 | }); 29 | 30 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sk.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Povinné zadať.",maxlength:a.validator.format("Maximálne {0} znakov."),minlength:a.validator.format("Minimálne {0} znakov."),rangelength:a.validator.format("Minimálne {0} a Maximálne {1} znakov."),email:"E-mailová adresa musí byť platná.",url:"URL musí byť platný.",date:"Musí byť dátum.",number:"Musí byť číslo.",digits:"Môže obsahovať iba číslice.",equalTo:"Dva hodnoty sa musia rovnať.",range:a.validator.format("Musí byť medzi {0} a {1}."),max:a.validator.format("Nemôže byť viac ako{0}."),min:a.validator.format("Nemôže byť menej ako{0}."),creditcard:"Číslo platobnej karty musí byť platné."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sl.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Language: SL (Slovenian; slovenski jezik) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "To polje je obvezno.", 15 | remote: "Prosimo popravite to polje.", 16 | email: "Prosimo vnesite veljaven email naslov.", 17 | url: "Prosimo vnesite veljaven URL naslov.", 18 | date: "Prosimo vnesite veljaven datum.", 19 | dateISO: "Prosimo vnesite veljaven ISO datum.", 20 | number: "Prosimo vnesite veljavno število.", 21 | digits: "Prosimo vnesite samo števila.", 22 | creditcard: "Prosimo vnesite veljavno številko kreditne kartice.", 23 | equalTo: "Prosimo ponovno vnesite vrednost.", 24 | extension: "Prosimo vnesite vrednost z veljavno končnico.", 25 | maxlength: $.validator.format("Prosimo vnesite največ {0} znakov."), 26 | minlength: $.validator.format("Prosimo vnesite najmanj {0} znakov."), 27 | rangelength: $.validator.format("Prosimo vnesite najmanj {0} in največ {1} znakov."), 28 | range: $.validator.format("Prosimo vnesite vrednost med {0} in {1}."), 29 | max: $.validator.format("Prosimo vnesite vrednost manjše ali enako {0}."), 30 | min: $.validator.format("Prosimo vnesite vrednost večje ali enako {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"To polje je obvezno.",remote:"Prosimo popravite to polje.",email:"Prosimo vnesite veljaven email naslov.",url:"Prosimo vnesite veljaven URL naslov.",date:"Prosimo vnesite veljaven datum.",dateISO:"Prosimo vnesite veljaven ISO datum.",number:"Prosimo vnesite veljavno število.",digits:"Prosimo vnesite samo števila.",creditcard:"Prosimo vnesite veljavno številko kreditne kartice.",equalTo:"Prosimo ponovno vnesite vrednost.",extension:"Prosimo vnesite vrednost z veljavno končnico.",maxlength:a.validator.format("Prosimo vnesite največ {0} znakov."),minlength:a.validator.format("Prosimo vnesite najmanj {0} znakov."),rangelength:a.validator.format("Prosimo vnesite najmanj {0} in največ {1} znakov."),range:a.validator.format("Prosimo vnesite vrednost med {0} in {1}."),max:a.validator.format("Prosimo vnesite vrednost manjše ali enako {0}."),min:a.validator.format("Prosimo vnesite vrednost večje ali enako {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sr.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: SR (Serbian; српски језик) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Поље је обавезно.", 15 | remote: "Средите ово поље.", 16 | email: "Унесите исправну и-мејл адресу.", 17 | url: "Унесите исправан URL.", 18 | date: "Унесите исправан датум.", 19 | dateISO: "Унесите исправан датум (ISO).", 20 | number: "Унесите исправан број.", 21 | digits: "Унесите само цифе.", 22 | creditcard: "Унесите исправан број кредитне картице.", 23 | equalTo: "Унесите исту вредност поново.", 24 | extension: "Унесите вредност са одговарајућом екстензијом.", 25 | maxlength: $.validator.format("Унесите мање од {0} карактера."), 26 | minlength: $.validator.format("Унесите барем {0} карактера."), 27 | rangelength: $.validator.format("Унесите вредност дугачку између {0} и {1} карактера."), 28 | range: $.validator.format("Унесите вредност између {0} и {1}."), 29 | max: $.validator.format("Унесите вредност мању или једнаку {0}."), 30 | min: $.validator.format("Унесите вредност већу или једнаку {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sr.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Поље је обавезно.",remote:"Средите ово поље.",email:"Унесите исправну и-мејл адресу.",url:"Унесите исправан URL.",date:"Унесите исправан датум.",dateISO:"Унесите исправан датум (ISO).",number:"Унесите исправан број.",digits:"Унесите само цифе.",creditcard:"Унесите исправан број кредитне картице.",equalTo:"Унесите исту вредност поново.",extension:"Унесите вредност са одговарајућом екстензијом.",maxlength:a.validator.format("Унесите мање од {0} карактера."),minlength:a.validator.format("Унесите барем {0} карактера."),rangelength:a.validator.format("Унесите вредност дугачку између {0} и {1} карактера."),range:a.validator.format("Унесите вредност између {0} и {1}."),max:a.validator.format("Унесите вредност мању или једнаку {0}."),min:a.validator.format("Унесите вредност већу или једнаку {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sr_lat.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: SR (Serbian - Latin alphabet; srpski jezik - latinica) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Polje je obavezno.", 15 | remote: "Sredite ovo polje.", 16 | email: "Unesite ispravnu e-mail adresu", 17 | url: "Unesite ispravan URL.", 18 | date: "Unesite ispravan datum.", 19 | dateISO: "Unesite ispravan datum (ISO).", 20 | number: "Unesite ispravan broj.", 21 | digits: "Unesite samo cifre.", 22 | creditcard: "Unesite ispravan broj kreditne kartice.", 23 | equalTo: "Unesite istu vrednost ponovo.", 24 | extension: "Unesite vrednost sa odgovarajućom ekstenzijom.", 25 | maxlength: $.validator.format("Unesite manje od {0} karaktera."), 26 | minlength: $.validator.format("Unesite barem {0} karaktera."), 27 | rangelength: $.validator.format("Unesite vrednost dugačku između {0} i {1} karaktera."), 28 | range: $.validator.format("Unesite vrednost između {0} i {1}."), 29 | max: $.validator.format("Unesite vrednost manju ili jednaku {0}."), 30 | min: $.validator.format("Unesite vrednost veću ili jednaku {0}.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sr_lat.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Polje je obavezno.",remote:"Sredite ovo polje.",email:"Unesite ispravnu e-mail adresu",url:"Unesite ispravan URL.",date:"Unesite ispravan datum.",dateISO:"Unesite ispravan datum (ISO).",number:"Unesite ispravan broj.",digits:"Unesite samo cifre.",creditcard:"Unesite ispravan broj kreditne kartice.",equalTo:"Unesite istu vrednost ponovo.",extension:"Unesite vrednost sa odgovarajućom ekstenzijom.",maxlength:a.validator.format("Unesite manje od {0} karaktera."),minlength:a.validator.format("Unesite barem {0} karaktera."),rangelength:a.validator.format("Unesite vrednost dugačku između {0} i {1} karaktera."),range:a.validator.format("Unesite vrednost između {0} i {1}."),max:a.validator.format("Unesite vrednost manju ili jednaku {0}."),min:a.validator.format("Unesite vrednost veću ili jednaku {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sv.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: SV (Swedish; Svenska) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Detta fält är obligatoriskt.", 15 | maxlength: $.validator.format("Du får ange högst {0} tecken."), 16 | minlength: $.validator.format("Du måste ange minst {0} tecken."), 17 | rangelength: $.validator.format("Ange minst {0} och max {1} tecken."), 18 | email: "Ange en korrekt e-postadress.", 19 | url: "Ange en korrekt URL.", 20 | date: "Ange ett korrekt datum.", 21 | dateISO: "Ange ett korrekt datum (ÅÅÅÅ-MM-DD).", 22 | number: "Ange ett korrekt nummer.", 23 | digits: "Ange endast siffror.", 24 | equalTo: "Ange samma värde igen.", 25 | range: $.validator.format("Ange ett värde mellan {0} och {1}."), 26 | max: $.validator.format("Ange ett värde som är mindre eller lika med {0}."), 27 | min: $.validator.format("Ange ett värde som är större eller lika med {0}."), 28 | creditcard: "Ange ett korrekt kreditkortsnummer." 29 | }); 30 | 31 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_sv.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Detta fält är obligatoriskt.",maxlength:a.validator.format("Du får ange högst {0} tecken."),minlength:a.validator.format("Du måste ange minst {0} tecken."),rangelength:a.validator.format("Ange minst {0} och max {1} tecken."),email:"Ange en korrekt e-postadress.",url:"Ange en korrekt URL.",date:"Ange ett korrekt datum.",dateISO:"Ange ett korrekt datum (ÅÅÅÅ-MM-DD).",number:"Ange ett korrekt nummer.",digits:"Ange endast siffror.",equalTo:"Ange samma värde igen.",range:a.validator.format("Ange ett värde mellan {0} och {1}."),max:a.validator.format("Ange ett värde som är mindre eller lika med {0}."),min:a.validator.format("Ange ett värde som är större eller lika med {0}."),creditcard:"Ange ett korrekt kreditkortsnummer."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_th.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: TH (Thai; ไทย) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "โปรดระบุ", 15 | remote: "โปรดแก้ไขให้ถูกต้อง", 16 | email: "โปรดระบุที่อยู่อีเมล์ที่ถูกต้อง", 17 | url: "โปรดระบุ URL ที่ถูกต้อง", 18 | date: "โปรดระบุวันที่ ที่ถูกต้อง", 19 | dateISO: "โปรดระบุวันที่ ที่ถูกต้อง (ระบบ ISO).", 20 | number: "โปรดระบุทศนิยมที่ถูกต้อง", 21 | digits: "โปรดระบุจำนวนเต็มที่ถูกต้อง", 22 | creditcard: "โปรดระบุรหัสบัตรเครดิตที่ถูกต้อง", 23 | equalTo: "โปรดระบุค่าเดิมอีกครั้ง", 24 | extension: "โปรดระบุค่าที่มีส่วนขยายที่ถูกต้อง", 25 | maxlength: $.validator.format("โปรดอย่าระบุค่าที่ยาวกว่า {0} อักขระ"), 26 | minlength: $.validator.format("โปรดอย่าระบุค่าที่สั้นกว่า {0} อักขระ"), 27 | rangelength: $.validator.format("โปรดอย่าระบุค่าความยาวระหว่าง {0} ถึง {1} อักขระ"), 28 | range: $.validator.format("โปรดระบุค่าระหว่าง {0} และ {1}"), 29 | max: $.validator.format("โปรดระบุค่าน้อยกว่าหรือเท่ากับ {0}"), 30 | min: $.validator.format("โปรดระบุค่ามากกว่าหรือเท่ากับ {0}") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_th.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"โปรดระบุ",remote:"โปรดแก้ไขให้ถูกต้อง",email:"โปรดระบุที่อยู่อีเมล์ที่ถูกต้อง",url:"โปรดระบุ URL ที่ถูกต้อง",date:"โปรดระบุวันที่ ที่ถูกต้อง",dateISO:"โปรดระบุวันที่ ที่ถูกต้อง (ระบบ ISO).",number:"โปรดระบุทศนิยมที่ถูกต้อง",digits:"โปรดระบุจำนวนเต็มที่ถูกต้อง",creditcard:"โปรดระบุรหัสบัตรเครดิตที่ถูกต้อง",equalTo:"โปรดระบุค่าเดิมอีกครั้ง",extension:"โปรดระบุค่าที่มีส่วนขยายที่ถูกต้อง",maxlength:a.validator.format("โปรดอย่าระบุค่าที่ยาวกว่า {0} อักขระ"),minlength:a.validator.format("โปรดอย่าระบุค่าที่สั้นกว่า {0} อักขระ"),rangelength:a.validator.format("โปรดอย่าระบุค่าความยาวระหว่าง {0} ถึง {1} อักขระ"),range:a.validator.format("โปรดระบุค่าระหว่าง {0} และ {1}"),max:a.validator.format("โปรดระบุค่าน้อยกว่าหรือเท่ากับ {0}"),min:a.validator.format("โปรดระบุค่ามากกว่าหรือเท่ากับ {0}")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_tj.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: TJ (Tajikistan; Забони тоҷикӣ) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Ворид кардани ин филд маҷбури аст.", 15 | remote: "Илтимос, маълумоти саҳеҳ ворид кунед.", 16 | email: "Илтимос, почтаи электронии саҳеҳ ворид кунед.", 17 | url: "Илтимос, URL адреси саҳеҳ ворид кунед.", 18 | date: "Илтимос, таърихи саҳеҳ ворид кунед.", 19 | dateISO: "Илтимос, таърихи саҳеҳи (ISO)ӣ ворид кунед.", 20 | number: "Илтимос, рақамҳои саҳеҳ ворид кунед.", 21 | digits: "Илтимос, танҳо рақам ворид кунед.", 22 | creditcard: "Илтимос, кредит карди саҳеҳ ворид кунед.", 23 | equalTo: "Илтимос, миқдори баробар ворид кунед.", 24 | extension: "Илтимос, қофияи файлро дуруст интихоб кунед", 25 | maxlength: $.validator.format("Илтимос, бештар аз {0} рамз ворид накунед."), 26 | minlength: $.validator.format("Илтимос, камтар аз {0} рамз ворид накунед."), 27 | rangelength: $.validator.format("Илтимос, камтар аз {0} ва зиёда аз {1} рамз ворид кунед."), 28 | range: $.validator.format("Илтимос, аз {0} то {1} рақам зиёд ворид кунед."), 29 | max: $.validator.format("Илтимос, бештар аз {0} рақам ворид накунед."), 30 | min: $.validator.format("Илтимос, камтар аз {0} рақам ворид накунед.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_tj.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Ворид кардани ин филд маҷбури аст.",remote:"Илтимос, маълумоти саҳеҳ ворид кунед.",email:"Илтимос, почтаи электронии саҳеҳ ворид кунед.",url:"Илтимос, URL адреси саҳеҳ ворид кунед.",date:"Илтимос, таърихи саҳеҳ ворид кунед.",dateISO:"Илтимос, таърихи саҳеҳи (ISO)ӣ ворид кунед.",number:"Илтимос, рақамҳои саҳеҳ ворид кунед.",digits:"Илтимос, танҳо рақам ворид кунед.",creditcard:"Илтимос, кредит карди саҳеҳ ворид кунед.",equalTo:"Илтимос, миқдори баробар ворид кунед.",extension:"Илтимос, қофияи файлро дуруст интихоб кунед",maxlength:a.validator.format("Илтимос, бештар аз {0} рамз ворид накунед."),minlength:a.validator.format("Илтимос, камтар аз {0} рамз ворид накунед."),rangelength:a.validator.format("Илтимос, камтар аз {0} ва зиёда аз {1} рамз ворид кунед."),range:a.validator.format("Илтимос, аз {0} то {1} рақам зиёд ворид кунед."),max:a.validator.format("Илтимос, бештар аз {0} рақам ворид накунед."),min:a.validator.format("Илтимос, камтар аз {0} рақам ворид накунед.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_tr.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Bu alanın doldurulması zorunludur.",remote:"Lütfen bu alanı düzeltin.",email:"Lütfen geçerli bir e-posta adresi giriniz.",url:"Lütfen geçerli bir web adresi (URL) giriniz.",date:"Lütfen geçerli bir tarih giriniz.",dateISO:"Lütfen geçerli bir tarih giriniz(ISO formatında)",number:"Lütfen geçerli bir sayı giriniz.",digits:"Lütfen sadece sayısal karakterler giriniz.",creditcard:"Lütfen geçerli bir kredi kartı giriniz.",equalTo:"Lütfen aynı değeri tekrar giriniz.",extension:"Lütfen geçerli uzantıya sahip bir değer giriniz.",maxlength:a.validator.format("Lütfen en fazla {0} karakter uzunluğunda bir değer giriniz."),minlength:a.validator.format("Lütfen en az {0} karakter uzunluğunda bir değer giriniz."),rangelength:a.validator.format("Lütfen en az {0} ve en fazla {1} uzunluğunda bir değer giriniz."),range:a.validator.format("Lütfen {0} ile {1} arasında bir değer giriniz."),max:a.validator.format("Lütfen {0} değerine eşit ya da daha küçük bir değer giriniz."),min:a.validator.format("Lütfen {0} değerine eşit ya da daha büyük bir değer giriniz."),require_from_group:"Lütfen bu alanların en az {0} tanesini doldurunuz."})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_uk.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Це поле необхідно заповнити.",remote:"Будь ласка, введіть правильне значення.",email:"Будь ласка, введіть коректну адресу електронної пошти.",url:"Будь ласка, введіть коректний URL.",date:"Будь ласка, введіть коректну дату.",dateISO:"Будь ласка, введіть коректну дату у форматі ISO.",number:"Будь ласка, введіть число.",digits:"Вводите потрібно лише цифри.",creditcard:"Будь ласка, введіть правильний номер кредитної карти.",equalTo:"Будь ласка, введіть таке ж значення ще раз.",extension:"Будь ласка, виберіть файл з правильним розширенням.",maxlength:a.validator.format("Будь ласка, введіть не більше {0} символів."),minlength:a.validator.format("Будь ласка, введіть не менше {0} символів."),rangelength:a.validator.format("Будь ласка, введіть значення довжиною від {0} до {1} символів."),range:a.validator.format("Будь ласка, введіть число від {0} до {1}."),max:a.validator.format("Будь ласка, введіть число, менше або рівно {0}."),min:a.validator.format("Будь ласка, введіть число, більше або рівно {0}.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_vi.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: VI (Vietnamese; Tiếng Việt) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "Hãy nhập.", 15 | remote: "Hãy sửa cho đúng.", 16 | email: "Hãy nhập email.", 17 | url: "Hãy nhập URL.", 18 | date: "Hãy nhập ngày.", 19 | dateISO: "Hãy nhập ngày (ISO).", 20 | number: "Hãy nhập số.", 21 | digits: "Hãy nhập chữ số.", 22 | creditcard: "Hãy nhập số thẻ tín dụng.", 23 | equalTo: "Hãy nhập thêm lần nữa.", 24 | extension: "Phần mở rộng không đúng.", 25 | maxlength: $.validator.format("Hãy nhập từ {0} kí tự trở xuống."), 26 | minlength: $.validator.format("Hãy nhập từ {0} kí tự trở lên."), 27 | rangelength: $.validator.format("Hãy nhập từ {0} đến {1} kí tự."), 28 | range: $.validator.format("Hãy nhập từ {0} đến {1}."), 29 | max: $.validator.format("Hãy nhập từ {0} trở xuống."), 30 | min: $.validator.format("Hãy nhập từ {1} trở lên.") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_vi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"Hãy nhập.",remote:"Hãy sửa cho đúng.",email:"Hãy nhập email.",url:"Hãy nhập URL.",date:"Hãy nhập ngày.",dateISO:"Hãy nhập ngày (ISO).",number:"Hãy nhập số.",digits:"Hãy nhập chữ số.",creditcard:"Hãy nhập số thẻ tín dụng.",equalTo:"Hãy nhập thêm lần nữa.",extension:"Phần mở rộng không đúng.",maxlength:a.validator.format("Hãy nhập từ {0} kí tự trở xuống."),minlength:a.validator.format("Hãy nhập từ {0} kí tự trở lên."),rangelength:a.validator.format("Hãy nhập từ {0} đến {1} kí tự."),range:a.validator.format("Hãy nhập từ {0} đến {1}."),max:a.validator.format("Hãy nhập từ {0} trở xuống."),min:a.validator.format("Hãy nhập từ {1} trở lên.")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_zh.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: ZH (Chinese, 中文 (Zhōngwén), 汉语, 漢語) 12 | */ 13 | $.extend($.validator.messages, { 14 | required: "这是必填字段", 15 | remote: "请修正此字段", 16 | email: "请输入有效的电子邮件地址", 17 | url: "请输入有效的网址", 18 | date: "请输入有效的日期", 19 | dateISO: "请输入有效的日期 (YYYY-MM-DD)", 20 | number: "请输入有效的数字", 21 | digits: "只能输入数字", 22 | creditcard: "请输入有效的信用卡号码", 23 | equalTo: "你的输入不相同", 24 | extension: "请输入有效的后缀", 25 | maxlength: $.validator.format("最多可以输入 {0} 个字符"), 26 | minlength: $.validator.format("最少要输入 {0} 个字符"), 27 | rangelength: $.validator.format("请输入长度在 {0} 到 {1} 之间的字符串"), 28 | range: $.validator.format("请输入范围在 {0} 到 {1} 之间的数值"), 29 | max: $.validator.format("请输入不大于 {0} 的数值"), 30 | min: $.validator.format("请输入不小于 {0} 的数值") 31 | }); 32 | 33 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_zh.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"这是必填字段",remote:"请修正此字段",email:"请输入有效的电子邮件地址",url:"请输入有效的网址",date:"请输入有效的日期",dateISO:"请输入有效的日期 (YYYY-MM-DD)",number:"请输入有效的数字",digits:"只能输入数字",creditcard:"请输入有效的信用卡号码",equalTo:"你的输入不相同",extension:"请输入有效的后缀",maxlength:a.validator.format("最多可以输入 {0} 个字符"),minlength:a.validator.format("最少要输入 {0} 个字符"),rangelength:a.validator.format("请输入长度在 {0} 到 {1} 之间的字符串"),range:a.validator.format("请输入范围在 {0} 到 {1} 之间的数值"),max:a.validator.format("请输入不大于 {0} 的数值"),min:a.validator.format("请输入不小于 {0} 的数值")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_zh_TW.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Translated default messages for the jQuery validation plugin. 11 | * Locale: ZH (Chinese; 中文 (Zhōngwén), 汉语, 漢語) 12 | * Region: TW (Taiwan) 13 | */ 14 | $.extend($.validator.messages, { 15 | required: "必須填寫", 16 | remote: "請修正此欄位", 17 | email: "請輸入有效的電子郵件", 18 | url: "請輸入有效的網址", 19 | date: "請輸入有效的日期", 20 | dateISO: "請輸入有效的日期 (YYYY-MM-DD)", 21 | number: "請輸入正確的數值", 22 | digits: "只可輸入數字", 23 | creditcard: "請輸入有效的信用卡號碼", 24 | equalTo: "請重複輸入一次", 25 | extension: "請輸入有效的後綴", 26 | maxlength: $.validator.format("最多 {0} 個字"), 27 | minlength: $.validator.format("最少 {0} 個字"), 28 | rangelength: $.validator.format("請輸入長度為 {0} 至 {1} 之間的字串"), 29 | range: $.validator.format("請輸入 {0} 至 {1} 之間的數值"), 30 | max: $.validator.format("請輸入不大於 {0} 的數值"), 31 | min: $.validator.format("請輸入不小於 {0} 的數值") 32 | }); 33 | 34 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/messages_zh_TW.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.messages,{required:"必須填寫",remote:"請修正此欄位",email:"請輸入有效的電子郵件",url:"請輸入有效的網址",date:"請輸入有效的日期",dateISO:"請輸入有效的日期 (YYYY-MM-DD)",number:"請輸入正確的數值",digits:"只可輸入數字",creditcard:"請輸入有效的信用卡號碼",equalTo:"請重複輸入一次",extension:"請輸入有效的後綴",maxlength:a.validator.format("最多 {0} 個字"),minlength:a.validator.format("最少 {0} 個字"),rangelength:a.validator.format("請輸入長度為 {0} 至 {1} 之間的字串"),range:a.validator.format("請輸入 {0} 至 {1} 之間的數值"),max:a.validator.format("請輸入不大於 {0} 的數值"),min:a.validator.format("請輸入不小於 {0} 的數值")})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_de.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: DE 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value); 16 | }, 17 | number: function(value, element) { 18 | return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); 19 | } 20 | }); 21 | 22 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_de.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_es_CL.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: ES_CL 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\-\d\d?\-\d\d\d?\d?$/.test(value); 16 | }, 17 | number: function(value, element) { 18 | return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value); 19 | } 20 | }); 21 | 22 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_es_CL.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\-\d\d?\-\d\d\d?\d?$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_fi.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: FI 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d{1,2}\.\d{1,2}\.\d{4}$/.test(value); 16 | }, 17 | number: function(value, element) { 18 | return this.optional(element) || /^-?(?:\d+)(?:,\d+)?$/.test(value); 19 | } 20 | }); 21 | 22 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_fi.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d{1,2}\.\d{1,2}\.\d{4}$/.test(a)},number:function(a,b){return this.optional(b)||/^-?(?:\d+)(?:,\d+)?$/.test(a)}})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_nl.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: NL 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(value); 16 | } 17 | }); 18 | 19 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_nl.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?[\.\/\-]\d\d?[\.\/\-]\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_pt.js: -------------------------------------------------------------------------------- 1 | (function( factory ) { 2 | if ( typeof define === "function" && define.amd ) { 3 | define( ["jquery", "../jquery.validate"], factory ); 4 | } else { 5 | factory( jQuery ); 6 | } 7 | }(function( $ ) { 8 | 9 | /* 10 | * Localized default methods for the jQuery validation plugin. 11 | * Locale: PT_BR 12 | */ 13 | $.extend($.validator.methods, { 14 | date: function(value, element) { 15 | return this.optional(element) || /^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(value); 16 | } 17 | }); 18 | 19 | })); -------------------------------------------------------------------------------- /js/plugins/jquery-validation/localization/methods_pt.min.js: -------------------------------------------------------------------------------- 1 | /*! jQuery Validation Plugin - v1.14.0 - 6/30/2015 2 | * http://jqueryvalidation.org/ 3 | * Copyright (c) 2015 Jörn Zaefferer; Licensed MIT */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery","../jquery.validate.min"],a):a(jQuery)}(function(a){a.extend(a.validator.methods,{date:function(a,b){return this.optional(b)||/^\d\d?\/\d\d?\/\d\d\d?\d?$/.test(a)}})}); -------------------------------------------------------------------------------- /js/plugins/jvectormap/jquery-jvectormap.css: -------------------------------------------------------------------------------- 1 | .jvectormap-label { 2 | position: absolute; 3 | display: none; 4 | border: solid 1px #000; 5 | -webkit-border-radius: 3px; 6 | -moz-border-radius: 3px; 7 | border-radius: 3px; 8 | background-color: #292929; 9 | background-color: rgba(0,0,0,0.8); 10 | color: white; 11 | font-size: 12px; 12 | padding: 4px 10px; 13 | } 14 | 15 | .jvectormap-zoomin, .jvectormap-zoomout { 16 | position: absolute; 17 | left: 10px; 18 | background: #fff; 19 | border:1px solid #f0f0f0; 20 | box-shadow: 0 1px 1px rgba(0,0,0,0.1); 21 | padding: 0px; 22 | font-weight: bold; 23 | font-size: 20px; 24 | color: #aaa; 25 | width: 24px; 26 | height: 24px; 27 | line-height: 22px; 28 | text-align: center; 29 | cursor: pointer; 30 | } 31 | 32 | .jvectormap-zoomin { 33 | top: 10px; 34 | } 35 | 36 | .jvectormap-zoomout { 37 | top: 33px; 38 | } 39 | -------------------------------------------------------------------------------- /js/plugins/morris-chart/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} 3 | -------------------------------------------------------------------------------- /js/plugins/translator/translate-ch.json: -------------------------------------------------------------------------------- 1 | { 2 | "name-john" : "嘿,我是李四。", 3 | "buy-now" : "现在购买咖啡", 4 | "register-free" : "注册新任务", 5 | "save-publish" : "保存ITEAM并发布", 6 | "create-article" : "创建文章" 7 | } -------------------------------------------------------------------------------- /js/plugins/translator/translate-en.json: -------------------------------------------------------------------------------- 1 | { 2 | "name-john" : "Hey, I am John Doe.", 3 | "buy-now" : "Buy coffee now", 4 | "register-free" : "Register new task", 5 | "save-publish" : "Save your iteam and publish", 6 | "create-article" : "Create article" 7 | } -------------------------------------------------------------------------------- /js/plugins/translator/translate-es.json: -------------------------------------------------------------------------------- 1 | { 2 | "name-john" : "Hola, me llamo John", 3 | "buy-now" : "Comprar ahorra", 4 | "register-free" : "Registrarse gratis", 5 | "save-publish" : "Guardar y publicar", 6 | "create-article" : "Crear un nuevo artículo" 7 | } -------------------------------------------------------------------------------- /js/plugins/translator/translate-fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "name-john" : "Bonjour, mon nom est John", 3 | "buy-now" : "Acheter maintenant", 4 | "register-free" : "M'inscrire gratuitement", 5 | "save-publish" : "Enregistrer et publier", 6 | "create-article" : "Créer un nouvel article" 7 | } -------------------------------------------------------------------------------- /js/plugins/translator/translation-script.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | switchLanguage(); 3 | })(); 4 | 5 | 6 | /**** Automatic Language Translation ****/ 7 | function switchLanguage() { 8 | 9 | var userLang = navigator.language || navigator.userLanguage; 10 | var language = 'en'; 11 | if(userLang == 'fr') language = 'fr'; 12 | if(userLang == 'es') language = 'es'; 13 | 14 | /* If user has selected a language, we apply it */ 15 | if ($.cookie('app-language')) { 16 | var language = $.cookie('app-language'); 17 | } 18 | /* We get current language on page load */ 19 | $("[data-translate]").jqTranslate('js/plugins/translator/translate', { 20 | forceLang: language 21 | }); 22 | 23 | /* Change language on click in a select input for example */ 24 | $('#switch-lang').on('change', function(e) { 25 | e.preventDefault(); 26 | language = $(this).val(); 27 | $("[data-translate]").jqTranslate('js/plugins/translator/translate', { 28 | forceLang: language 29 | }); 30 | 31 | /* We save language inside a cookie */ 32 | $.cookie('app-language', language); 33 | $.cookie('app-language', language, { path: '/' }); 34 | }); 35 | 36 | } -------------------------------------------------------------------------------- /js/plugins/xcharts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012 tenXer, Inc. 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /js/plugins/xcharts/README.md: -------------------------------------------------------------------------------- 1 | # xCharts [![Build Status](https://secure.travis-ci.org/tenXer/xcharts.png?branch=master)](http://travis-ci.org/tenxer/xcharts) 2 | 3 | [xCharts](http://tenxer.github.com/xcharts/) is a D3-based library for building custom charts and graphs. Written and maintained by [tenXer](https://www.tenxer.com). 4 | 5 | ## 6 | 7 | View the [xCharts site](http://tenxer.github.com/xcharts/) for everything you need. 8 | 9 | ## License 10 | 11 | Copyright (c) 2012 tenXer, Inc. 12 | 13 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | -------------------------------------------------------------------------------- /js/products-promo-match.js: -------------------------------------------------------------------------------- 1 | function matchPromos(){ 2 | // 3 | e = getObjectStore('data', 'readwrite').get('bits-merchant-id-'+localStorage.getItem('bits-active-service')); 4 | e.onsuccess = function (event) { 5 | 6 | var x=event.target.result; 7 | console.log(x.pid) 8 | 9 | 10 | } 11 | } 12 | function dropStar(){ 13 | window.navigator.vibrate(200); // vibrate for 200ms 14 | $('.star').removeClass('animated'); 15 | $('.star').removeClass('bounceOutLeft'); 16 | $('.star').removeClass('displayNone'); 17 | $('.star').addClass(' animated bounceInLeft'); 18 | 19 | // $('.star').removeClass(' animated bounceInLeft'), 20 | setTimeout(function(){ $('.star').animate({ 'zoom': 2.2 }, 400);$('.star').addClass(' animated bounceIn')},1000); 21 | $('.star').removeClass(' animated bounceIn'),setTimeout(function(){ $('.star').addClass('animated bounceOutLeft'); $('.star').animate({ 'zoom': 1 }, 400);},1500); 22 | //setTimeout(function(){$('.star').removeClass(' animated fadeInDown')},1000); 23 | //setTimeout(function(){ $(".star").fadeOut();$(".star").fadeIn();},1000); 24 | // 25 | } 26 | -------------------------------------------------------------------------------- /permission-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitsoko-services/bits/3b73030c872386be293a94cd8be92bcb8452d533/permission-dialog.html -------------------------------------------------------------------------------- /sass/components/_carousel.scss: -------------------------------------------------------------------------------- 1 | .carousel { 2 | overflow: hidden; 3 | position: relative; 4 | width: 100%; 5 | height: 400px; 6 | 7 | 8 | @include perspective(500px); 9 | transform-style: preserve-3d; 10 | -webkit-transform-style: preserve-3d; 11 | transform-origin: 0% 50%; 12 | 13 | .carousel-item { 14 | width: 200px; 15 | position: absolute; 16 | top: 0; 17 | left: 0; 18 | 19 | img { 20 | width: 100%; 21 | } 22 | } 23 | 24 | &.carousel-slider { 25 | top: 0; 26 | left: 0; 27 | height: 0; 28 | 29 | .carousel-item { 30 | width: 100%; 31 | height: 100%; 32 | position: absolute; 33 | top: 0; 34 | left: 0; 35 | } 36 | } 37 | } 38 | 39 | -------------------------------------------------------------------------------- /sass/components/_chips.scss: -------------------------------------------------------------------------------- 1 | .chip { 2 | display: inline-block; 3 | height: 32px; 4 | font-size: 13px; 5 | font-weight: 500; 6 | color: rgba(0,0,0,.6); 7 | line-height: 32px; 8 | padding: 0 12px; 9 | border-radius: 16px; 10 | background-color: $chip-bg-color; 11 | 12 | img { 13 | float: left; 14 | margin: 0 8px 0 -12px; 15 | height: 32px; 16 | width: 32px; 17 | border-radius: 50%; 18 | } 19 | 20 | i.material-icons { 21 | cursor: pointer; 22 | float: right; 23 | font-size: 16px; 24 | line-height: 32px; 25 | padding-left: 8px; 26 | } 27 | } -------------------------------------------------------------------------------- /sass/components/_dropdown.scss: -------------------------------------------------------------------------------- 1 | $dropdown-item-height: 35px; 2 | .dropdown-content { 3 | @extend .z-depth-1; 4 | background-color: $dropdown-bg-color; 5 | margin: 0; 6 | display: none; 7 | min-width: 100px; 8 | max-height: 650px; 9 | overflow-y: auto; 10 | opacity: 0; 11 | position: absolute; 12 | z-index: 999; 13 | will-change: width, height; 14 | 15 | li { 16 | clear: both; 17 | color: $off-black; 18 | cursor: pointer; 19 | min-height: $dropdown-item-height; 20 | line-height: 1.5rem; 21 | width: 100%; 22 | text-align: left; 23 | text-transform: none; 24 | 25 | &:hover, &.active, &.selected { 26 | background-color: $dropdown-hover-bg-color; 27 | } 28 | 29 | &.active.selected { 30 | background-color: darken($dropdown-hover-bg-color, 5%); 31 | } 32 | 33 | &.divider { 34 | min-height: 0; 35 | height: 1px; 36 | } 37 | 38 | & > a, & > span { 39 | font-size: 16px; 40 | color: $dropdown-color; 41 | display: block; 42 | line-height: 22px; 43 | padding: (($dropdown-item-height - 22) / 2) 16px; 44 | } 45 | 46 | & > span > label { 47 | top: 1px; 48 | left: 3px; 49 | height: 18px; 50 | } 51 | 52 | // Icon alignment override 53 | & > a > i { 54 | height: inherit; 55 | line-height: inherit; 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /sass/components/_materialbox.scss: -------------------------------------------------------------------------------- 1 | .materialboxed { 2 | display: block; 3 | cursor: zoom-in; 4 | position: relative; 5 | @include transition(opacity .4s); 6 | 7 | &:hover { 8 | &:not(.active) { 9 | opacity: .8; 10 | } 11 | will-change: left, top, width, height; 12 | } 13 | } 14 | 15 | .materialboxed.active { 16 | cursor: zoom-out; 17 | } 18 | 19 | #materialbox-overlay { 20 | position:fixed; 21 | top:0; 22 | left:0; 23 | right: 0; 24 | bottom: 0; 25 | background-color: #292929; 26 | z-index: 999; 27 | 28 | will-change: opacity; 29 | } 30 | .materialbox-caption { 31 | position: fixed; 32 | display: none; 33 | color: #fff; 34 | line-height: 50px; 35 | bottom: 0; 36 | width: 100%; 37 | text-align: center; 38 | padding: 0% 15%; 39 | height: 50px; 40 | z-index: 1000; 41 | -webkit-font-smoothing: antialiased; 42 | } -------------------------------------------------------------------------------- /sass/components/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow-2($args1, $args2) { 2 | -webkit-box-shadow: $args1, $args2; 3 | -moz-box-shadow: $args1, $args2; 4 | box-shadow: $args1, $args2; 5 | } -------------------------------------------------------------------------------- /sass/components/_table_of_contents.scss: -------------------------------------------------------------------------------- 1 | /*************** 2 | Nav List 3 | ***************/ 4 | .table-of-contents { 5 | &.fixed { 6 | position: fixed; 7 | } 8 | 9 | li { 10 | padding: 2px 0; 11 | } 12 | a { 13 | display: inline-block; 14 | font-weight: 300; 15 | color: #757575; 16 | padding-left: 20px; 17 | height: 1.5rem; 18 | line-height: 1.5rem; 19 | letter-spacing: .4; 20 | display: inline-block; 21 | 22 | &:hover { 23 | color: lighten(#757575, 20%); 24 | padding-left: 19px; 25 | border-left: 1px solid lighten(color("materialize-red", "base"),10%); 26 | } 27 | &.active { 28 | font-weight: 500; 29 | padding-left: 18px; 30 | border-left: 2px solid lighten(color("materialize-red", "base"),10%); 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /sass/components/_tabs.scss: -------------------------------------------------------------------------------- 1 | .tabs { 2 | @include flexbox(); 3 | position: relative; 4 | overflow-x: hidden; //MCHANGE 5 | overflow-y: hidden; 6 | height: 48px; 7 | background-color: $tabs-bg-color; 8 | margin: 0 auto; 9 | width: 100%; 10 | white-space: nowrap; 11 | 12 | .tab { 13 | -webkit-box-flex: 1; 14 | -webkit-flex-grow: 1; 15 | -ms-flex-positive: 1; 16 | flex-grow: 1; 17 | display: block; 18 | float: left; 19 | text-align: center; 20 | line-height: 48px; 21 | height: 48px; 22 | padding: 0; 23 | margin: 0; 24 | text-transform: uppercase; 25 | text-overflow: ellipsis; 26 | overflow: hidden; 27 | letter-spacing: .8px; 28 | width: 15%; 29 | min-width: 80px; 30 | 31 | a { 32 | color: $tabs-text-color; 33 | display: block; 34 | width: 100%; 35 | height: 100%; 36 | text-overflow: ellipsis; 37 | overflow: hidden; 38 | @include transition( color .28s ease); 39 | &:hover { 40 | color: lighten($tabs-text-color, 20%); 41 | } 42 | } 43 | 44 | &.disabled a { 45 | color: lighten($tabs-text-color, 20%); 46 | cursor: default; 47 | } 48 | } 49 | .indicator { 50 | position: absolute; 51 | bottom: 0; 52 | height: 2px; 53 | background-color: $tabs-underline-color; 54 | will-change: left, right; 55 | } 56 | } -------------------------------------------------------------------------------- /sass/components/_toast.scss: -------------------------------------------------------------------------------- 1 | #toast-container { 2 | display:block; 3 | position: fixed; 4 | z-index: 10000; 5 | 6 | @media #{$small-and-down} { 7 | min-width: 100%; 8 | bottom: 0%; 9 | } 10 | @media #{$medium-only} { 11 | left: 5%; 12 | bottom: 7%; 13 | max-width: 90%; 14 | } 15 | @media #{$large-and-up} { 16 | top: 10%; 17 | right: 7%; 18 | max-width: 86%; 19 | } 20 | } 21 | 22 | .toast { 23 | @extend .z-depth-1; 24 | border-radius: 2px; 25 | top: 0; 26 | width: auto; 27 | clear: both; 28 | margin-top: 10px; 29 | position: relative; 30 | max-width:100%; 31 | height: auto; 32 | min-height: $toast-height; 33 | line-height: 1.5em; 34 | word-break: break-all; 35 | background-color: $toast-color; 36 | padding: 10px 25px; 37 | font-size: 1.1rem; 38 | font-weight: 300; 39 | color: $toast-text-color; 40 | 41 | display: flex; 42 | align-items: center; 43 | justify-content: space-between; 44 | 45 | .btn, .btn-flat { 46 | margin: 0; 47 | margin-left: 3rem; 48 | } 49 | 50 | &.rounded{ 51 | border-radius: 24px; 52 | } 53 | 54 | @media #{$small-and-down} { 55 | width:100%; 56 | border-radius: 0; 57 | } 58 | @media #{$medium-only} { 59 | float: left; 60 | } 61 | @media #{$large-and-up} { 62 | float: right; 63 | } 64 | 65 | } -------------------------------------------------------------------------------- /sass/components/_tooltip.scss: -------------------------------------------------------------------------------- 1 | .material-tooltip { 2 | padding: 10px 8px; 3 | font-size: 1rem; 4 | z-index: 2000; 5 | background-color: transparent; 6 | border-radius: 2px; 7 | color: #fff; 8 | min-height: 36px; 9 | line-height: 120%; 10 | opacity: 0; 11 | display: none; 12 | position: absolute; 13 | text-align: center; 14 | max-width: calc(100% - 4px); 15 | overflow: hidden; 16 | left:0; 17 | top:0; 18 | will-change: top, left; 19 | } 20 | 21 | .backdrop { 22 | position: absolute; 23 | opacity: 0; 24 | display: none; 25 | height: 7px; 26 | width: 14px; 27 | border-radius: 0 0 14px 14px; 28 | background-color: #323232; 29 | z-index: -1; 30 | @include transform-origin( 50% 10%); 31 | 32 | will-change: transform, opacity; 33 | } 34 | -------------------------------------------------------------------------------- /sass/custom/custom.scss: -------------------------------------------------------------------------------- 1 | /*================================================================================ 2 | Item Name: Materialize - Material Design Admin Template 3 | Version: 3.1 4 | Author: GeeksLabs 5 | Author URL: http://www.themeforest.net/user/geekslabs 6 | ================================================================================ 7 | 8 | NOTE: 9 | ------ 10 | PLACE HERE YOUR OWN CSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS. 11 | WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS. */ 12 | -------------------------------------------------------------------------------- /sass/materialize.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | // Mixins 4 | @import "components/prefixer"; 5 | @import "components/mixins"; 6 | @import "components/color"; 7 | 8 | // Theme; 9 | /* 10 | Tip: You can change the theme name here to generate new default style, you can also create your own ! 11 | */ 12 | @import "themes/default/theme"; 13 | 14 | // Reset 15 | @import "components/normalize"; 16 | 17 | // components 18 | @import "components/global"; 19 | @import "components/icons-material-design"; 20 | @import "components/grid"; 21 | @import "components/navbar"; 22 | @import "components/roboto"; 23 | //@import "themes/default/theme/typography"; 24 | //@import "components/typography"; 25 | @import "components/cards"; 26 | @import "components/toast"; 27 | @import "components/tabs"; 28 | @import "components/tooltip"; 29 | @import "components/buttons"; 30 | @import "components/dropdown"; 31 | @import "components/waves"; 32 | @import "components/modal"; 33 | @import "components/collapsible"; 34 | @import "components/chips"; 35 | @import "components/materialbox"; 36 | @import "components/form"; 37 | @import "components/table_of_contents"; 38 | @import "components/sideNav"; 39 | @import "components/preloader"; 40 | @import "components/slider"; 41 | @import "components/carousel"; 42 | @import "components/date_picker/default.scss"; 43 | @import "components/date_picker/default.date.scss"; 44 | @import "components/date_picker/default.time.scss"; -------------------------------------------------------------------------------- /sass/style.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | // Variables; 4 | @import "theme-components/variables"; 5 | 6 | // Components 7 | @import "theme-components/global"; 8 | @import "theme-components/typography"; 9 | @import "theme-components/preloader"; 10 | @import "theme-components/header"; 11 | 12 | @import "theme-components/sidebar"; 13 | @import "theme-components/slideout"; 14 | 15 | @import "theme-components/breadcrumb"; 16 | @import "theme-components/table"; 17 | @import "theme-components/card"; 18 | @import "theme-components/chart"; 19 | @import "theme-components/calendar"; 20 | 21 | // Miscellaneous 22 | @import "theme-components/miscellaneous"; 23 | 24 | // Pages 25 | @import "theme-components/pages/icon"; 26 | @import "theme-components/pages/error"; 27 | @import "theme-components/pages/login"; 28 | @import "theme-components/pages/email"; 29 | @import "theme-components/pages/blog"; 30 | @import "theme-components/pages/invoice"; 31 | @import "theme-components/pages/product"; 32 | @import "theme-components/pages/gallary"; 33 | @import "theme-components/pages/map"; 34 | @import "theme-components/pages/plan"; 35 | @import "theme-components/pages/profile"; 36 | 37 | // Footer 38 | @import "theme-components/footer"; -------------------------------------------------------------------------------- /sass/theme-components/_breadcrumb.scss: -------------------------------------------------------------------------------- 1 | /* ================================================================================= 2 | Content 3 | ================================================================================= */ 4 | /*---------------------------------------- 5 | Breadcrumb 6 | ------------------------------------------*/ 7 | #breadcrumbs-wrapper { 8 | background: $concrete; 9 | } 10 | h5.breadcrumbs-header { 11 | font-size: 1.64rem; 12 | line-height: 1.804rem; 13 | margin: 1.5rem 0 0 0; 14 | } 15 | .breadcrumbs { 16 | padding: 0; 17 | margin: 15px 0; 18 | list-style: none; 19 | > li { 20 | display: inline-block; 21 | + li:before { 22 | padding: 0 5px; 23 | color: $color_celeste_approx; 24 | content: "/\00a0"; 25 | } 26 | } 27 | a { 28 | // color: $color_robins_egg_blue_approx; 29 | } 30 | .active { 31 | font-weight: normal; 32 | color: $color_mountain_mist_approx; 33 | } 34 | } 35 | .breadcrumbs-title { 36 | font-size: 1.5rem; 37 | line-height: 1.804rem; 38 | margin: 18px 0 0; 39 | } 40 | .breadcrumbs-nav { 41 | margin: 8px 0 9px; 42 | } 43 | 44 | // Breadcrumbs slash 45 | .breadcrumb { 46 | &:before { 47 | content: "\e7c3"; 48 | font-family: "Material-Design-Icons"; 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /sass/theme-components/_calendar.scss: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | Calender 3 | ------------------------------------------*/ 4 | 5 | #full-calendar { 6 | padding-top: 30px; 7 | } 8 | #calendar { 9 | h2 { 10 | font-size: 1.5rem; 11 | text-transform: uppercase; 12 | line-height: 35px; 13 | } 14 | .fc-day-header { 15 | text-transform: uppercase; 16 | font-weight: 400; 17 | } 18 | } 19 | #external-events { 20 | padding-top: 50px; 21 | .fc-event { 22 | color: $white; 23 | text-decoration: none; 24 | padding: 5px; 25 | margin-bottom: 10px; 26 | cursor: all-scroll; 27 | border: none; 28 | } 29 | } 30 | .fc { 31 | button { 32 | background: $white; 33 | } 34 | td { 35 | border-width: 0 !important; 36 | } 37 | th { 38 | border-width: 0 !important; 39 | } 40 | } 41 | .fc-state-active { 42 | color: $color_violet_red_approx !important; 43 | } 44 | .fc-state-down { 45 | color: $color_violet_red_approx !important; 46 | } -------------------------------------------------------------------------------- /sass/theme-components/_footer.scss: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | footer charts 3 | ------------------------------------------*/ 4 | .page-footer .container { 5 | padding: 0 15px; 6 | } 7 | #world-map-markers { 8 | height: 300px; 9 | } 10 | #polar-chart-holder { 11 | padding-top: 20px; 12 | } -------------------------------------------------------------------------------- /sass/theme-components/_slideout.scss: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------------------------- 3 | Right Chat Slideout 4 | ------------------------------------------*/ 5 | #right-search .input-field { 6 | margin-top: 0; 7 | } 8 | #chat-out { 9 | .collapsible-header { 10 | background-color: transparent; 11 | border: none; 12 | line-height: 45px; 13 | height: 45px; 14 | font-weight: 400; 15 | } 16 | .collapsible-header:after{ 17 | color:#fff; 18 | } 19 | .chat-out-list { 20 | padding: 5px; 21 | margin: 0; 22 | border-bottom: 1px solid $color_bon_jour_approx; 23 | } 24 | .favorite-associate-list { 25 | .circle { 26 | -moz-border-radius: 50px; 27 | -webkit-border-radius: 50px; 28 | //Instead of the line below you could use @include border-radius($radius, $vertical-radius) 29 | border-radius: 50px; 30 | border: 2px solid $color_mountain_mist_approx; 31 | padding: 3px; 32 | display: block; 33 | } 34 | .online-user { 35 | border: 2px solid $color_spring_green_approx; 36 | } 37 | p { 38 | padding: 0; 39 | &.place { 40 | font-size: 0.8rem; 41 | } 42 | } 43 | } 44 | .recent-activity-list-icon { 45 | margin-top: 8px; 46 | font-size: 2rem; 47 | } 48 | .recent-activity-list-text { 49 | a { 50 | font-size: 0.8rem; 51 | padding: 0; 52 | font-weight: 600; 53 | } 54 | p { 55 | font-size: 0.9rem; 56 | padding: 0; 57 | } 58 | } 59 | } 60 | .chat-close-collapse { 61 | padding: 5px 15px 0 0; 62 | } 63 | -------------------------------------------------------------------------------- /sass/theme-components/layouts/style-fullscreen.scss: -------------------------------------------------------------------------------- 1 | #main, footer { 2 | padding-left: 0px; 3 | } 4 | @media only screen and(min-width: 992px) { 5 | .sidebar-collapse { 6 | top: -52px; 7 | } 8 | } 9 | 10 | header .brand-logo { 11 | margin: 1px 0px; 12 | padding: 14px 60px; 13 | img { 14 | width: 172px; 15 | } 16 | } 17 | 18 | 19 | 20 | .menu-sidebar-collapse { 21 | margin: 0 10px 0 18px; 22 | } 23 | 24 | .header-search-wrapper { 25 | margin-left: 250px; 26 | } 27 | 28 | .doughnut-chart-status { 29 | top: -85px; 30 | } -------------------------------------------------------------------------------- /sass/theme-components/pages/_gallary.scss: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | Gallary Page 3 | ------------------------------------------*/ 4 | 5 | .gallary-sizer { 6 | width: 20%; 7 | } 8 | .gallary-item img { 9 | width: 20%; 10 | } 11 | .slider .indicators { 12 | z-index: 9999; 13 | } -------------------------------------------------------------------------------- /sass/theme-components/pages/_icon.scss: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | icon page 3 | ------------------------------------------*/ 4 | .icon-demo { 5 | line-height: 50px; 6 | } 7 | .icon-container { 8 | i { 9 | font-size: 3em; 10 | display: block; 11 | margin-bottom: 10px; 12 | } 13 | .icon-preview { 14 | height: 120px; 15 | text-align: center; 16 | } 17 | } 18 | .icon-holder { 19 | display: block; 20 | text-align: center; 21 | width: 150px; 22 | height: 115px; 23 | float: left; 24 | margin: 0 0 15px 0; 25 | p { 26 | margin: 0; 27 | } 28 | } -------------------------------------------------------------------------------- /sass/theme-components/pages/_invoice.scss: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | Invoice Page 3 | ------------------------------------------*/ 4 | 5 | .invoice-table { 6 | padding-top: 40px; 7 | } 8 | .invoice-text { 9 | padding: 18px 0; 10 | } 11 | .invoice-icon i { 12 | font-size: 2rem; 13 | } -------------------------------------------------------------------------------- /sass/theme-components/pages/_login.scss: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | Login Page 3 | ------------------------------------------*/ 4 | 5 | 6 | .login-form { 7 | width: 280px; 8 | } 9 | .login-form-text { 10 | text-transform: uppercase; 11 | letter-spacing: 2px; 12 | font-size: 0.8rem; 13 | } 14 | .profile-image-login { 15 | width: 100px; 16 | height: 100px !important; 17 | } 18 | .login-text { 19 | margin-top: -6px; 20 | margin-left: -6px !important; 21 | } 22 | 23 | -------------------------------------------------------------------------------- /sass/theme-components/pages/_map.scss: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | Contact Page (Map-card) 3 | ------------------------------------------*/ 4 | //@extend-elements 5 | 6 | //original selectors 7 | //.map-card .card .card-content .card-title, .map-card .card .card-reveal .card-title 8 | %map_extend { 9 | font-size: 1.2rem; 10 | line-height: 1.6rem; 11 | font-weight: 400; 12 | } 13 | 14 | /* ---- Map card ----*/ 15 | .map-card { 16 | #map-canvas { 17 | width: 100%; 18 | height: 250px; 19 | } 20 | .card { 21 | .card-content .card-title { 22 | @extend %map_extend; 23 | } 24 | .card-reveal .card-title { 25 | @extend %map_extend; 26 | } 27 | } 28 | .btn-move-up { 29 | top: -38px; 30 | } 31 | } 32 | /* ---- Map Contact Page ----*/ 33 | #map-canvas { 34 | width: 100%; 35 | height: 250px; 36 | } -------------------------------------------------------------------------------- /sass/theme-components/pages/_profile.scss: -------------------------------------------------------------------------------- 1 | /*---------------------------------------- 2 | Profile Page 3 | ------------------------------------------*/ 4 | 5 | 6 | 7 | #profile-page-header { 8 | .card-image { 9 | height: 250px; 10 | } 11 | .card-profile-image { 12 | width: 110px; 13 | position: absolute; 14 | top: 190px; 15 | z-index: 1; 16 | left: 40px; 17 | cursor: pointer; 18 | margin: 0; 19 | } 20 | .card-content { 21 | margin-top: -40px; 22 | .card-title { 23 | margin-bottom: 0; 24 | } 25 | } 26 | } 27 | 28 | /*profile-page-wall*/ 29 | 30 | #profile-page-wall { 31 | .profile-image-post { 32 | width: 60px; 33 | margin: 30px 10px; 34 | } 35 | .tab-content { 36 | padding: 10px; 37 | } 38 | .share-icons { 39 | margin-top: 10px; 40 | i { 41 | padding: 0 5px; 42 | } 43 | } 44 | .tab-profile .tab i { 45 | font-size: 16px; 46 | } 47 | } 48 | 49 | 50 | 51 | #profile-page-wall-posts { 52 | .profile-small { 53 | height: 250px; 54 | overflow: hidden; 55 | } 56 | .profile-medium { 57 | height: 350px; 58 | overflow: hidden; 59 | } 60 | .profile-large { 61 | height: 450px; 62 | overflow: hidden; 63 | } 64 | .card-profile-title { 65 | font-size: 16px; 66 | padding: 20px; 67 | //Instead of the line below you could use @include border-radius($radius, $vertical-radius) 68 | border-radius: 0 0 2px 2px; 69 | } 70 | .card-action-share { 71 | padding: 16px; 72 | } 73 | } -------------------------------------------------------------------------------- /sass/themes/amber/_theme.scss: -------------------------------------------------------------------------------- 1 | 2 | // Variables; 3 | @import "variables"; 4 | 5 | // Typography 6 | @import "typography"; -------------------------------------------------------------------------------- /sass/themes/asher/_theme.scss: -------------------------------------------------------------------------------- 1 | 2 | // Variables; 3 | @import "variables"; 4 | 5 | // Typography 6 | @import "typography"; -------------------------------------------------------------------------------- /sass/themes/brown/_theme.scss: -------------------------------------------------------------------------------- 1 | 2 | // Variables; 3 | @import "variables"; 4 | 5 | // Typography 6 | @import "typography"; -------------------------------------------------------------------------------- /sass/themes/default/_theme.scss: -------------------------------------------------------------------------------- 1 | 2 | // Variables; 3 | @import "variables"; 4 | 5 | // Typography 6 | @import "typography"; -------------------------------------------------------------------------------- /sass/themes/indigo/_theme.scss: -------------------------------------------------------------------------------- 1 | 2 | // Variables; 3 | @import "variables"; 4 | 5 | // Typography 6 | @import "typography"; -------------------------------------------------------------------------------- /sass/themes/jade/_theme.scss: -------------------------------------------------------------------------------- 1 | 2 | // Variables; 3 | @import "variables"; 4 | 5 | // Typography 6 | @import "typography"; -------------------------------------------------------------------------------- /sass/themes/ruby/_theme.scss: -------------------------------------------------------------------------------- 1 | 2 | // Variables; 3 | @import "variables"; 4 | 5 | // Typography 6 | @import "typography"; -------------------------------------------------------------------------------- /sass/themes/skye/_theme.scss: -------------------------------------------------------------------------------- 1 | 2 | // Variables; 3 | @import "variables"; 4 | 5 | // Typography 6 | @import "typography"; -------------------------------------------------------------------------------- /tocken-test.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "short_name": "Bits Wallet", 3 | "name": "Bits Mobile Wallet", 4 | "icons": [ 5 | { 6 | "src": "../bitsAssets/images/icon.png", 7 | "sizes": "128x128", 8 | "type": "image/png" 9 | } 10 | ], 11 | "start_url": "/bits/", 12 | "display": "standalone", 13 | "orientation": "portrait", 14 | "background_color": "#ffffff", 15 | "theme_color": "#0f5f76", 16 | "scope": "/bits/", 17 | "gcm_sender_id": "103953800507", 18 | "gcm_user_visible_only": true 19 | } 20 | --------------------------------------------------------------------------------