update
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
(function($){"use strict";var App=function(){var o=this;$(document).ready(function(){o.initialize();});};var p=App.prototype;App.SCREEN_XS=480;App.SCREEN_SM=768;App.SCREEN_MD=992;App.SCREEN_LG=1200;p._callFunctions=null;p._resizeTimer=null;p.initialize=function(){this._enableEvents();this._initBreakpoints();this._initInk();this._initAccordion();};p._enableEvents=function(){var o=this;$(window).on('resize',function(e){clearTimeout(o._resizeTimer);o._resizeTimer=setTimeout(function(){o._handleFunctionCalls(e);},300);});};p.getKnobStyle=function(knob){var holder=knob.closest('.knob');var options={width:Math.floor(holder.outerWidth()),height:Math.floor(holder.outerHeight()),fgColor:holder.css('color'),bgColor:holder.css('border-top-color'),draw:function(){if(knob.data('percentage')){$(this.i).val(this.cv+'%');}}};return options;};p._initAccordion=function(){$('.panel-group .card .in').each(function(){var card=$(this).parent();card.addClass('expanded');});$('.panel-group').on('hide.bs.collapse',function(e){var content=$(e.target);var card=content.parent();card.removeClass('expanded');});$('.panel-group').on('show.bs.collapse',function(e){var content=$(e.target);var card=content.parent();var group=card.closest('.panel-group');group.find('.card.expanded').removeClass('expanded');card.addClass('expanded');});};p._initInk=function(){var o=this;$('.ink-reaction').on('click',function(e){var bound=$(this).get(0).getBoundingClientRect();var x=e.clientX-bound.left;var y=e.clientY-bound.top;var color=o.getBackground($(this));var inverse=(o.getLuma(color)>183)?' inverse':'';var ink=$('<div class="ink'+inverse+'"></div>');var btnOffset=$(this).offset();var xPos=e.pageX-btnOffset.left;var yPos=e.pageY-btnOffset.top;ink.css({top:yPos,left:xPos}).appendTo($(this));window.setTimeout(function(){ink.remove();},1500);});};p.getBackground=function(item){var color=item.css("background-color");var alpha=parseFloat(color.split(',')[3],10);if((isNaN(alpha)||alpha>0.8)&&color!=='transparent'){return color;}
|
||||
if(item.is("body")){return false;}else{return this.getBackground(item.parent());}};p.getLuma=function(color){var rgba=color.substring(4,color.length-1).split(',');var r=rgba[0];var g=rgba[1];var b=rgba[2];var luma=0.2126*r+0.7152*g+0.0722*b;return luma;};p._initBreakpoints=function(alias){var html='';html+='<div id="device-breakpoints">';html+='<div class="device-xs visible-xs" data-breakpoint="xs"></div>';html+='<div class="device-sm visible-sm" data-breakpoint="sm"></div>';html+='<div class="device-md visible-md" data-breakpoint="md"></div>';html+='<div class="device-lg visible-lg" data-breakpoint="lg"></div>';html+='</div>';$('body').append(html);};p.isBreakpoint=function(alias){return $('.device-'+alias).is(':visible');};p.minBreakpoint=function(alias){var breakpoints=['xs','sm','md','lg'];var breakpoint=$('#device-breakpoints div:visible').data('breakpoint');return $.inArray(alias,breakpoints)<$.inArray(breakpoint,breakpoints);};p.callOnResize=function(func){if(this._callFunctions===null){this._callFunctions=[];}
|
||||
this._callFunctions.push(func);func.call();};p._handleFunctionCalls=function(e){if(this._callFunctions===null){return;}
|
||||
for(var i=0;i<this._callFunctions.length;i++){this._callFunctions[i].call();}};window.materialadmin=window.materialadmin||{};window.materialadmin.App=new App;}(jQuery));
|
||||
(function(namespace,$){"use strict";var AppNavigation=function(){var o=this;$(document).ready(function(){o.initialize();});};var p=AppNavigation.prototype;AppNavigation.MENU_MAXIMIZED=1;AppNavigation.MENU_COLLAPSED=2;AppNavigation.MENU_HIDDEN=3;p._lastOpened=null;p.initialize=function(){this._enableEvents();this._invalidateMenu();this._evalMenuScrollbar();};p._enableEvents=function(){var o=this;$(window).on('resize',function(e){o._handleScreenSize(e);});$('[data-toggle="menubar"]').on('click',function(e){o._handleMenuToggleClick(e);});$('[data-dismiss="menubar"]').on('click',function(e){o._handleMenubarLeave();});$('#main-menu').on('click','li',function(e){o._handleMenuItemClick(e);});$('#main-menu').on('click','a',function(e){o._handleMenuLinkClick(e);});$('body.menubar-hoverable').on('mouseenter','#menubar',function(e){setTimeout(function(){o._handleMenubarEnter();},1);});};p._handleScreenSize=function(e){this._invalidateMenu();this._evalMenuScrollbar(e);};p._handleMenuToggleClick=function(e){if(!materialadmin.App.isBreakpoint('xs')){$('body').toggleClass('menubar-pin');}
|
||||
var state=this.getMenuState();if(state===AppNavigation.MENU_COLLAPSED){this._handleMenubarEnter();}
|
||||
else if(state===AppNavigation.MENU_MAXIMIZED){this._handleMenubarLeave();}
|
||||
else if(state===AppNavigation.MENU_HIDDEN){this._handleMenubarEnter();}};p._handleMenuItemClick=function(e){e.stopPropagation();var item=$(e.currentTarget);var submenu=item.find('> ul');var parentmenu=item.closest('ul');this._handleMenubarEnter(item);if(submenu.children().length!==0){this._closeSubMenu(parentmenu);var menuIsCollapsed=this.getMenuState()===AppNavigation.MENU_COLLAPSED;if(menuIsCollapsed||item.hasClass('expanded')===false){this._openSubMenu(item);}}};p._handleMenubarEnter=function(menuItem){var o=this;var offcanvasVisible=$('body').hasClass('offcanvas-left-expanded');var menubarExpanded=$('#menubar').data('expanded');var menuItemClicked=(menuItem!==undefined);if((menuItemClicked===true||offcanvasVisible===false)&&menubarExpanded!==true){$('#content').one('mouseover',function(e){o._handleMenubarLeave();});$('body').addClass('menubar-visible');$('#menubar').data('expanded',true);$('#menubar').triggerHandler('enter');if(menuItemClicked===false){if(this._lastOpened){var o=this;this._openSubMenu(this._lastOpened,0);this._lastOpened.parents('.gui-folder').each(function(){o._openSubMenu($(this),0);});}
|
||||
else{var item=$('#main-menu > li.active');this._openSubMenu(item,0);}}}};p._handleMenubarLeave=function(){$('body').removeClass('menubar-visible');if(materialadmin.App.minBreakpoint('md')){if($('body').hasClass('menubar-pin')){return;}}
|
||||
$('#menubar').data('expanded',false);if(materialadmin.App.isBreakpoint('xs')===false){this._closeSubMenu($('#main-menu'));}};p._handleMenuLinkClick=function(e){if(this.getMenuState()!==AppNavigation.MENU_MAXIMIZED){e.preventDefault();}};p._closeSubMenu=function(menu){var o=this;menu.find('> li > ul').stop().slideUp(170,function(){$(this).closest('li').removeClass('expanded');o._evalMenuScrollbar();});};p._openSubMenu=function(item,duration){var o=this;if(typeof(duration)==='undefined'){duration=170;}
|
||||
this._lastOpened=item;item.addClass('expanding');item.find('> ul').stop().slideDown(duration,function(){item.addClass('expanded');item.removeClass('expanding');o._evalMenuScrollbar();$('#main-menu ul').removeAttr('style');});};p._invalidateMenu=function(){var selectedLink=$('#main-menu a.active');selectedLink.parentsUntil($('#main-menu')).each(function(){if($(this).is('li')){$(this).addClass('active');$(this).addClass('expanded');}});if(this.getMenuState()===AppNavigation.MENU_COLLAPSED){$('#main-menu').find('> li').removeClass('expanded');}
|
||||
if($('body').hasClass('menubar-visible')){this._handleMenubarEnter();}
|
||||
$('#main-menu').triggerHandler('ready');$('#menubar').addClass('animate');};p.getMenuState=function(){var matrix=$('#menubar').css("transform");var values=(matrix)?matrix.match(/-?[\d\.]+/g):null;var menuState=AppNavigation.MENU_MAXIMIZED;if(values===null){if($('#menubar').width()<=100){menuState=AppNavigation.MENU_COLLAPSED;}
|
||||
else{menuState=AppNavigation.MENU_MAXIMIZED;}}
|
||||
else{if(values[4]==='0'){menuState=AppNavigation.MENU_MAXIMIZED;}
|
||||
else{menuState=AppNavigation.MENU_HIDDEN;}}
|
||||
return menuState;};p._evalMenuScrollbar=function(){if(!$.isFunction($.fn.nanoScroller)){return;}
|
||||
var footerHeight=$('#menubar .menubar-foot-panel').outerHeight();footerHeight=Math.max(footerHeight,1);$('.menubar-scroll-panel').css({'padding-bottom':footerHeight});var menu=$('#menubar');if(menu.length===0)
|
||||
return;var menuScroller=$('.menubar-scroll-panel');var parent=menuScroller.parent();if(parent.hasClass('nano-content')===false){menuScroller.wrap('<div class="nano"><div class="nano-content"></div></div>');}
|
||||
var height=$(window).height()-menu.position().top-menu.find('.nano').position().top;var scroller=menuScroller.closest('.nano');scroller.css({height:height});scroller.nanoScroller({preventPageScrolling:true,iOSNativeScrolling:true});};window.materialadmin.AppNavigation=new AppNavigation;}(this.materialadmin,jQuery));
|
||||
(function(namespace,$){"use strict";var AppOffcanvas=function(){var o=this;$(document).ready(function(){o.initialize();});};var p=AppOffcanvas.prototype;p._timer=null;p._useBackdrop=null;p.initialize=function(){this._enableEvents();};p._enableEvents=function(){var o=this;$(window).on('resize',function(e){o._handleScreenSize(e);});$('.offcanvas').on('refresh',function(e){o.evalScrollbar(e);});$('[data-toggle="offcanvas"]').on('click',function(e){e.preventDefault();o._handleOffcanvasOpen($(e.currentTarget));});$('[data-dismiss="offcanvas"]').on('click',function(e){o._handleOffcanvasClose();});$('#base').on('click','> .backdrop',function(e){o._handleOffcanvasClose();});$('[data-toggle="offcanvas-left"].active').each(function(){o._handleOffcanvasOpen($(this));});$('[data-toggle="offcanvas-right"].active').each(function(){o._handleOffcanvasOpen($(this));});};p._handleScreenSize=function(e){this.evalScrollbar(e);};p._handleOffcanvasOpen=function(btn){if(btn.hasClass('active')){this._handleOffcanvasClose();return;}
|
||||
var id=btn.attr('href');this._useBackdrop=(btn.data('backdrop')===undefined)?true:btn.data('backdrop');this.openOffcanvas(id);this.invalidate();};p._handleOffcanvasClose=function(e){this.closeOffcanvas();this.invalidate();};p.openOffcanvas=function(id){this.closeOffcanvas();$(id).addClass('active');var leftOffcanvas=($(id).closest('.offcanvas:first').length>0);if(this._useBackdrop)
|
||||
$('body').addClass('offcanvas-expanded');var width=$(id).width();if(width>$(document).width()){width=$(document).width()-8;$(id+'.active').css({'width':width});}
|
||||
width=(leftOffcanvas)?width:'-'+width;var translate='translate('+width+'px, 0)';$(id+'.active').css({'-webkit-transform':translate,'-ms-transform':translate,'-o-transform':translate,'transform':translate});};p.closeOffcanvas=function(){$('[data-toggle="offcanvas"]').removeClass('expanded');$('.offcanvas-pane').removeClass('active');$('.offcanvas-pane').css({'-webkit-transform':'','-ms-transform':'','-o-transform':'','transform':''});};p.toggleButtonState=function(){var id=$('.offcanvas-pane.active').attr('id');$('[data-toggle="offcanvas"]').removeClass('active');$('[href="#'+id+'"]').addClass('active');};p.toggleBackdropState=function(){if($('.offcanvas-pane.active').length>0&&this._useBackdrop){this._addBackdrop();}
|
||||
else{this._removeBackdrop();}};p._addBackdrop=function(){if($('#base > .backdrop').length===0&&$('#base').data('backdrop')!=='hidden'){$('<div class="backdrop"></div>').hide().appendTo('#base').fadeIn();}};p._removeBackdrop=function(){$('#base > .backdrop').fadeOut(function(){$(this).remove();});};p.toggleBodyScrolling=function(){clearTimeout(this._timer);if($('.offcanvas-pane.active').length>0&&this._useBackdrop){var scrollbarWidth=this.measureScrollbar();var bodyPad=parseInt(($('body').css('padding-right')||0),10);if(scrollbarWidth!==bodyPad){$('body').css('padding-right',bodyPad+scrollbarWidth);$('.headerbar').css('padding-right',bodyPad+scrollbarWidth);}}
|
||||
else{this._timer=setTimeout(function(){$('body').removeClass('offcanvas-expanded');$('body').css('padding-right','');$('.headerbar').removeClass('offcanvas-expanded');$('.headerbar').css('padding-right','');},330);}};p.invalidate=function(){this.toggleButtonState();this.toggleBackdropState();this.toggleBodyScrolling();this.evalScrollbar();};p.evalScrollbar=function(){if(!$.isFunction($.fn.nanoScroller)){return;}
|
||||
var menu=$('.offcanvas-pane.active');if(menu.length===0)
|
||||
return;var menuScroller=$('.offcanvas-pane.active .offcanvas-body');var parent=menuScroller.parent();if(parent.hasClass('nano-content')===false){menuScroller.wrap('<div class="nano"><div class="nano-content"></div></div>');}
|
||||
var height=$(window).height()-menu.find('.nano').position().top;var scroller=menuScroller.closest('.nano');scroller.css({height:height});scroller.nanoScroller({preventPageScrolling:true});};p.measureScrollbar=function(){var scrollDiv=document.createElement('div');scrollDiv.className='modal-scrollbar-measure';$('body').append(scrollDiv);var scrollbarWidth=scrollDiv.offsetWidth-scrollDiv.clientWidth;$('body')[0].removeChild(scrollDiv);return scrollbarWidth;};window.materialadmin.AppOffcanvas=new AppOffcanvas;}(this.materialadmin,jQuery));
|
||||
(function(namespace,$){"use strict";var AppCard=function(){var o=this;$(document).ready(function(){o.initialize();});};var p=AppCard.prototype;p.initialize=function(){};p.addCardLoader=function(card){var container=$('<div class="card-loader"></div>').appendTo(card);container.hide().fadeIn();var opts={lines:17,length:0,width:3,radius:6,corners:1,rotate:13,direction:1,color:'#000',speed:2,trail:76,shadow:false,hwaccel:false,className:'spinner',zIndex:2e9};var spinner=new Spinner(opts).spin(container.get(0));card.data('card-spinner',spinner);};p.removeCardLoader=function(card){var spinner=card.data('card-spinner');var loader=card.find('.card-loader');loader.fadeOut(function(){spinner.stop();loader.remove();});};p.toggleCardCollapse=function(card,duration){duration=typeof duration!=='undefined'?duration:400;var dispatched=false;card.find('.nano').slideToggle(duration);card.find('.card-body').slideToggle(duration,function(){if(dispatched===false){$('#COLLAPSER').triggerHandler('card.bb.collapse',[!$(this).is(":visible")]);dispatched=true;}});card.toggleClass('card-collapsed');};p.removeCard=function(card){card.fadeOut(function(){card.remove();});};window.materialadmin.AppCard=new AppCard;}(this.materialadmin,jQuery));
|
||||
(function(namespace,$){"use strict";var AppForm=function(){var o=this;$(document).ready(function(){o.initialize();});};var p=AppForm.prototype;p.initialize=function(){this._enableEvents();this._initRadioAndCheckbox();this._initFloatingLabels();this._initValidation();};p._enableEvents=function(){var o=this;$('[data-submit="form"]').on('click',function(e){e.preventDefault();var formId=$(e.currentTarget).attr('href');$(formId).submit();});$('textarea.autosize').on('focus',function(){$(this).autosize({append:''});});};p._initRadioAndCheckbox=function(){$('.checkbox-styled input, .radio-styled input').each(function(){if($(this).next('span').length===0){$(this).after('<span></span>');}});};p._initFloatingLabels=function(){var o=this;$('.floating-label .form-control').on('keyup change',function(e){var input=$(e.currentTarget);if($.trim(input.val())!==''){input.addClass('dirty').removeClass('static');}else{input.removeClass('dirty').removeClass('static');}});$('.floating-label .form-control').each(function(){var input=$(this);if($.trim(input.val())!==''){input.addClass('static').addClass('dirty');}});$('.form-horizontal .form-control').each(function(){$(this).after('<div class="form-control-line"></div>');});};p._initValidation=function(){if(!$.isFunction($.fn.validate)){return;}
|
||||
$.validator.setDefaults({highlight:function(element){$(element).closest('.form-group').addClass('has-error');},unhighlight:function(element){$(element).closest('.form-group').removeClass('has-error');},errorElement:'span',errorClass:'help-block',errorPlacement:function(error,element){if(element.parent('.input-group').length){error.insertAfter(element.parent());}
|
||||
else if(element.parent('label').length){error.insertAfter(element.parent());}
|
||||
else{error.insertAfter(element);}}});$('.form-validate').each(function(){var validator=$(this).validate();$(this).data('validator',validator);});};window.materialadmin.AppForm=new AppForm;}(this.materialadmin,jQuery));
|
||||
(function(namespace,$){"use strict";var AppNavSearch=function(){var o=this;$(document).ready(function(){o.initialize();});};var p=AppNavSearch.prototype;p._clearSearchTimer=null;p.initialize=function(){this._enableEvents();};p._enableEvents=function(){var o=this;$('.navbar-search .btn').on('click',function(e){o._handleButtonClick(e);});$('.navbar-search input').on('blur',function(e){o._handleFieldBlur(e);});};p._handleButtonClick=function(e){e.preventDefault();var form=$(e.currentTarget).closest('form');var input=form.find('input');var keyword=input.val();if($.trim(keyword)===''){form.addClass('expanded');input.focus();}
|
||||
else{form.addClass('expanded');form.submit();clearTimeout(this._clearSearchTimer);}};p._handleFieldBlur=function(e){var input=$(e.currentTarget);var form=input.closest('form');form.removeClass('expanded');clearTimeout(this._clearSearchTimer);this._clearSearchTimer=setTimeout(function(){input.val('');},300);};window.materialadmin.AppNavSearch=new AppNavSearch;}(this.materialadmin,jQuery));
|
||||
(function(namespace,$){"use strict";var AppVendor=function(){var o=this;$(document).ready(function(){o.initialize();});};var p=AppVendor.prototype;p.initialize=function(){this._initScroller();this._initTabs();this._initTooltips();this._initPopover();this._initSortables();};p._initScroller=function(){if(!$.isFunction($.fn.nanoScroller)){return;}
|
||||
$.each($('.scroll'),function(e){var holder=$(this);materialadmin.AppVendor.addScroller(holder);});materialadmin.App.callOnResize(function(){$.each($('.scroll-xs'),function(e){var holder=$(this);if(!holder.is(":visible"))return;if(materialadmin.App.minBreakpoint('xs')){materialadmin.AppVendor.removeScroller(holder);}
|
||||
else{materialadmin.AppVendor.addScroller(holder);}});$.each($('.scroll-sm'),function(e){var holder=$(this);if(!holder.is(":visible"))return;if(materialadmin.App.minBreakpoint('sm')){materialadmin.AppVendor.removeScroller(holder);}
|
||||
else{materialadmin.AppVendor.addScroller(holder);}});$.each($('.scroll-md'),function(e){var holder=$(this);if(!holder.is(":visible"))return;if(materialadmin.App.minBreakpoint('md')){materialadmin.AppVendor.removeScroller(holder);}
|
||||
else{materialadmin.AppVendor.addScroller(holder);}});$.each($('.scroll-lg'),function(e){var holder=$(this);if(!holder.is(":visible"))return;if(materialadmin.App.minBreakpoint('lg')){materialadmin.AppVendor.removeScroller(holder);}
|
||||
else{materialadmin.AppVendor.addScroller(holder);}});});};p.addScroller=function(holder){holder.wrap('<div class="nano"><div class="nano-content"></div></div>');var scroller=holder.closest('.nano');scroller.css({height:holder.outerHeight()});scroller.nanoScroller();holder.css({height:'auto'});};p.removeScroller=function(holder){if(holder.parent().parent().hasClass('nano')===false){return;}
|
||||
holder.parent().parent().nanoScroller({destroy:true});holder.parent('.nano-content').replaceWith(holder);holder.parent('.nano').replaceWith(holder);holder.attr('style','');};p._initSortables=function(){if(!$.isFunction($.fn.sortable)){return;}
|
||||
$('[data-sortable="true"]').sortable({placeholder:"ui-state-highlight",delay:100,start:function(e,ui){ui.placeholder.height(ui.item.outerHeight()-1);}});};p._initTabs=function(){if(!$.isFunction($.fn.tab)){return;}
|
||||
$('[data-toggle="tabs"] a').click(function(e){e.preventDefault();$(this).tab('show');});};p._initTooltips=function(){if(!$.isFunction($.fn.tooltip)){return;}
|
||||
$('[data-toggle="tooltip"]').tooltip({container:'body'});};p._initPopover=function(){if(!$.isFunction($.fn.popover)){return;}
|
||||
$('[data-toggle="popover"]').popover({container:'body'});};window.materialadmin.AppVendor=new AppVendor;}(this.materialadmin,jQuery));
|
||||
15
a8_za_Fine_aarto/public/Static_zy/www/js/TweenMax.min.js
vendored
Normal file
15
a8_za_Fine_aarto/public/Static_zy/www/js/TweenMax.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
53
a8_za_Fine_aarto/public/Static_zy/www/js/angular-animate.min.js
vendored
Normal file
53
a8_za_Fine_aarto/public/Static_zy/www/js/angular-animate.min.js
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
License: MIT
|
||||
*/
|
||||
(function(S,q){'use strict';function Aa(a,b,c){if(!a)throw Ma("areq",b||"?",c||"required");return a}function Ba(a,b){if(!a&&!b)return"";if(!a)return b;if(!b)return a;ba(a)&&(a=a.join(" "));ba(b)&&(b=b.join(" "));return a+" "+b}function Na(a){var b={};a&&(a.to||a.from)&&(b.to=a.to,b.from=a.from);return b}function X(a,b,c){var d="";a=ba(a)?a:a&&P(a)&&a.length?a.split(/\s+/):[];r(a,function(a,f){a&&0<a.length&&(d+=0<f?" ":"",d+=c?b+a:a+b)});return d}function Oa(a){if(a instanceof G)switch(a.length){case 0:return[];
|
||||
case 1:if(1===a[0].nodeType)return a;break;default:return G(ca(a))}if(1===a.nodeType)return G(a)}function ca(a){if(!a[0])return a;for(var b=0;b<a.length;b++){var c=a[b];if(1==c.nodeType)return c}}function Pa(a,b,c){r(b,function(b){a.addClass(b,c)})}function Qa(a,b,c){r(b,function(b){a.removeClass(b,c)})}function U(a){return function(b,c){c.addClass&&(Pa(a,b,c.addClass),c.addClass=null);c.removeClass&&(Qa(a,b,c.removeClass),c.removeClass=null)}}function pa(a){a=a||{};if(!a.$$prepared){var b=a.domOperation||
|
||||
Q;a.domOperation=function(){a.$$domOperationFired=!0;b();b=Q};a.$$prepared=!0}return a}function ga(a,b){Ca(a,b);Da(a,b)}function Ca(a,b){b.from&&(a.css(b.from),b.from=null)}function Da(a,b){b.to&&(a.css(b.to),b.to=null)}function V(a,b,c){var d=b.options||{};c=c.options||{};var e=(d.addClass||"")+" "+(c.addClass||""),f=(d.removeClass||"")+" "+(c.removeClass||"");a=Ra(a.attr("class"),e,f);c.preparationClasses&&(d.preparationClasses=Y(c.preparationClasses,d.preparationClasses),delete c.preparationClasses);
|
||||
e=d.domOperation!==Q?d.domOperation:null;Ea(d,c);e&&(d.domOperation=e);d.addClass=a.addClass?a.addClass:null;d.removeClass=a.removeClass?a.removeClass:null;b.addClass=d.addClass;b.removeClass=d.removeClass;return d}function Ra(a,b,c){function d(a){P(a)&&(a=a.split(" "));var b={};r(a,function(a){a.length&&(b[a]=!0)});return b}var e={};a=d(a);b=d(b);r(b,function(a,b){e[b]=1});c=d(c);r(c,function(a,b){e[b]=1===e[b]?null:-1});var f={addClass:"",removeClass:""};r(e,function(b,c){var d,e;1===b?(d="addClass",
|
||||
e=!a[c]):-1===b&&(d="removeClass",e=a[c]);e&&(f[d].length&&(f[d]+=" "),f[d]+=c)});return f}function D(a){return a instanceof q.element?a[0]:a}function Sa(a,b,c){var d="";b&&(d=X(b,"ng-",!0));c.addClass&&(d=Y(d,X(c.addClass,"-add")));c.removeClass&&(d=Y(d,X(c.removeClass,"-remove")));d.length&&(c.preparationClasses=d,a.addClass(d))}function qa(a,b){var c=b?"-"+b+"s":"";la(a,[ma,c]);return[ma,c]}function ta(a,b){var c=b?"paused":"",d=Z+"PlayState";la(a,[d,c]);return[d,c]}function la(a,b){a.style[b[0]]=
|
||||
b[1]}function Y(a,b){return a?b?a+" "+b:a:b}function Fa(a,b,c){var d=Object.create(null),e=a.getComputedStyle(b)||{};r(c,function(a,b){var c=e[a];if(c){var s=c.charAt(0);if("-"===s||"+"===s||0<=s)c=Ta(c);0===c&&(c=null);d[b]=c}});return d}function Ta(a){var b=0;a=a.split(/\s*,\s*/);r(a,function(a){"s"==a.charAt(a.length-1)&&(a=a.substring(0,a.length-1));a=parseFloat(a)||0;b=b?Math.max(a,b):a});return b}function ua(a){return 0===a||null!=a}function Ga(a,b){var c=T,d=a+"s";b?c+="Duration":d+=" linear all";
|
||||
return[c,d]}function Ha(){var a=Object.create(null);return{flush:function(){a=Object.create(null)},count:function(b){return(b=a[b])?b.total:0},get:function(b){return(b=a[b])&&b.value},put:function(b,c){a[b]?a[b].total++:a[b]={total:1,value:c}}}}function Ia(a,b,c){r(c,function(c){a[c]=da(a[c])?a[c]:b.style.getPropertyValue(c)})}var Q=q.noop,Ja=q.copy,Ea=q.extend,G=q.element,r=q.forEach,ba=q.isArray,P=q.isString,va=q.isObject,C=q.isUndefined,da=q.isDefined,Ka=q.isFunction,wa=q.isElement,T,xa,Z,ya;C(S.ontransitionend)&&
|
||||
da(S.onwebkittransitionend)?(T="WebkitTransition",xa="webkitTransitionEnd transitionend"):(T="transition",xa="transitionend");C(S.onanimationend)&&da(S.onwebkitanimationend)?(Z="WebkitAnimation",ya="webkitAnimationEnd animationend"):(Z="animation",ya="animationend");var ra=Z+"Delay",za=Z+"Duration",ma=T+"Delay",La=T+"Duration",Ma=q.$$minErr("ng"),Ua={transitionDuration:La,transitionDelay:ma,transitionProperty:T+"Property",animationDuration:za,animationDelay:ra,animationIterationCount:Z+"IterationCount"},
|
||||
Va={transitionDuration:La,transitionDelay:ma,animationDuration:za,animationDelay:ra};q.module("ngAnimate",[]).directive("ngAnimateSwap",["$animate","$rootScope",function(a,b){return{restrict:"A",transclude:"element",terminal:!0,priority:600,link:function(b,d,e,f,z){var B,s;b.$watchCollection(e.ngAnimateSwap||e["for"],function(e){B&&a.leave(B);s&&(s.$destroy(),s=null);if(e||0===e)s=b.$new(),z(s,function(b){B=b;a.enter(b,null,d)})})}}}]).directive("ngAnimateChildren",["$interpolate",function(a){return{link:function(b,
|
||||
c,d){function e(a){c.data("$$ngAnimateChildren","on"===a||"true"===a)}var f=d.ngAnimateChildren;q.isString(f)&&0===f.length?c.data("$$ngAnimateChildren",!0):(e(a(f)(b)),d.$observe("ngAnimateChildren",e))}}}]).factory("$$rAFScheduler",["$$rAF",function(a){function b(a){d=d.concat(a);c()}function c(){if(d.length){for(var b=d.shift(),z=0;z<b.length;z++)b[z]();e||a(function(){e||c()})}}var d,e;d=b.queue=[];b.waitUntilQuiet=function(b){e&&e();e=a(function(){e=null;b();c()})};return b}]).provider("$$animateQueue",
|
||||
["$animateProvider",function(a){function b(a){if(!a)return null;a=a.split(" ");var b=Object.create(null);r(a,function(a){b[a]=!0});return b}function c(a,c){if(a&&c){var d=b(c);return a.split(" ").some(function(a){return d[a]})}}function d(a,b,c,d){return f[a].some(function(a){return a(b,c,d)})}function e(a,b){var c=0<(a.addClass||"").length,d=0<(a.removeClass||"").length;return b?c&&d:c||d}var f=this.rules={skip:[],cancel:[],join:[]};f.join.push(function(a,b,c){return!b.structural&&e(b)});f.skip.push(function(a,
|
||||
b,c){return!b.structural&&!e(b)});f.skip.push(function(a,b,c){return"leave"==c.event&&b.structural});f.skip.push(function(a,b,c){return c.structural&&2===c.state&&!b.structural});f.cancel.push(function(a,b,c){return c.structural&&b.structural});f.cancel.push(function(a,b,c){return 2===c.state&&b.structural});f.cancel.push(function(a,b,d){if(d.structural)return!1;a=b.addClass;b=b.removeClass;var e=d.addClass;d=d.removeClass;return C(a)&&C(b)||C(e)&&C(d)?!1:c(a,d)||c(b,e)});this.$get=["$$rAF","$rootScope",
|
||||
"$rootElement","$document","$$HashMap","$$animation","$$AnimateRunner","$templateRequest","$$jqLite","$$forceReflow",function(b,c,f,v,I,Wa,u,sa,w,x){function R(){var a=!1;return function(b){a?b():c.$$postDigest(function(){a=!0;b()})}}function J(a,b,c){var g=D(b),d=D(a),k=[];(a=h[c])&&r(a,function(a){ia.call(a.node,g)?k.push(a.callback):"leave"===c&&ia.call(a.node,d)&&k.push(a.callback)});return k}function k(a,b,c){var g=ca(b);return a.filter(function(a){return!(a.node===g&&(!c||a.callback===c))})}
|
||||
function p(a,k,h){function l(c,g,d,h){f(function(){var c=J(oa,a,g);c.length?b(function(){r(c,function(b){b(a,d,h)});"close"!==d||a[0].parentNode||N.off(a)}):"close"!==d||a[0].parentNode||N.off(a)});c.progress(g,d,h)}function A(b){var c=a,g=m;g.preparationClasses&&(c.removeClass(g.preparationClasses),g.preparationClasses=null);g.activeClasses&&(c.removeClass(g.activeClasses),g.activeClasses=null);F(a,m);ga(a,m);m.domOperation();p.complete(!b)}var m=Ja(h),x,oa;if(a=Oa(a))x=D(a),oa=a.parent();var m=
|
||||
pa(m),p=new u,f=R();ba(m.addClass)&&(m.addClass=m.addClass.join(" "));m.addClass&&!P(m.addClass)&&(m.addClass=null);ba(m.removeClass)&&(m.removeClass=m.removeClass.join(" "));m.removeClass&&!P(m.removeClass)&&(m.removeClass=null);m.from&&!va(m.from)&&(m.from=null);m.to&&!va(m.to)&&(m.to=null);if(!x)return A(),p;h=[x.className,m.addClass,m.removeClass].join(" ");if(!Xa(h))return A(),p;var s=0<=["enter","move","leave"].indexOf(k),t=v[0].hidden,w=!g||t||H.get(x);h=!w&&y.get(x)||{};var I=!!h.state;w||
|
||||
I&&1==h.state||(w=!K(a,oa,k));if(w)return t&&l(p,k,"start"),A(),t&&l(p,k,"close"),p;s&&L(a);t={structural:s,element:a,event:k,addClass:m.addClass,removeClass:m.removeClass,close:A,options:m,runner:p};if(I){if(d("skip",a,t,h)){if(2===h.state)return A(),p;V(a,h,t);return h.runner}if(d("cancel",a,t,h))if(2===h.state)h.runner.end();else if(h.structural)h.close();else return V(a,h,t),h.runner;else if(d("join",a,t,h))if(2===h.state)V(a,t,{});else return Sa(a,s?k:null,m),k=t.event=h.event,m=V(a,h,t),h.runner}else V(a,
|
||||
t,{});(I=t.structural)||(I="animate"===t.event&&0<Object.keys(t.options.to||{}).length||e(t));if(!I)return A(),O(a),p;var ia=(h.counter||0)+1;t.counter=ia;M(a,1,t);c.$$postDigest(function(){var b=y.get(x),c=!b,b=b||{},g=0<(a.parent()||[]).length&&("animate"===b.event||b.structural||e(b));if(c||b.counter!==ia||!g){c&&(F(a,m),ga(a,m));if(c||s&&b.event!==k)m.domOperation(),p.end();g||O(a)}else k=!b.structural&&e(b,!0)?"setClass":b.event,M(a,2),b=Wa(a,k,b.options),p.setHost(b),l(p,k,"start",{}),b.done(function(b){A(!b);
|
||||
(b=y.get(x))&&b.counter===ia&&O(D(a));l(p,k,"close",{})})});return p}function L(a){a=D(a).querySelectorAll("[data-ng-animate]");r(a,function(a){var b=parseInt(a.getAttribute("data-ng-animate")),c=y.get(a);if(c)switch(b){case 2:c.runner.end();case 1:y.remove(a)}})}function O(a){a=D(a);a.removeAttribute("data-ng-animate");y.remove(a)}function l(a,b){return D(a)===D(b)}function K(a,b,c){c=G(v[0].body);var g=l(a,c)||"HTML"===a[0].nodeName,d=l(a,f),h=!1,k,e=H.get(D(a));(a=G.data(a[0],"$ngAnimatePin"))&&
|
||||
(b=a);for(b=D(b);b;){d||(d=l(b,f));if(1!==b.nodeType)break;a=y.get(b)||{};if(!h){var p=H.get(b);if(!0===p&&!1!==e){e=!0;break}else!1===p&&(e=!1);h=a.structural}if(C(k)||!0===k)a=G.data(b,"$$ngAnimateChildren"),da(a)&&(k=a);if(h&&!1===k)break;g||(g=l(b,c));if(g&&d)break;if(!d&&(a=G.data(b,"$ngAnimatePin"))){b=D(a);continue}b=b.parentNode}return(!h||k)&&!0!==e&&d&&g}function M(a,b,c){c=c||{};c.state=b;a=D(a);a.setAttribute("data-ng-animate",b);c=(b=y.get(a))?Ea(b,c):c;y.put(a,c)}var y=new I,H=new I,
|
||||
g=null,oa=c.$watch(function(){return 0===sa.totalPendingRequests},function(a){a&&(oa(),c.$$postDigest(function(){c.$$postDigest(function(){null===g&&(g=!0)})}))}),h={},A=a.classNameFilter(),Xa=A?function(a){return A.test(a)}:function(){return!0},F=U(w),ia=S.Node.prototype.contains||function(a){return this===a||!!(this.compareDocumentPosition(a)&16)},N={on:function(a,b,c){var g=ca(b);h[a]=h[a]||[];h[a].push({node:g,callback:c});G(b).on("$destroy",function(){y.get(g)||N.off(a,b,c)})},off:function(a,
|
||||
b,c){if(1!==arguments.length||q.isString(arguments[0])){var g=h[a];g&&(h[a]=1===arguments.length?null:k(g,b,c))}else for(g in b=arguments[0],h)h[g]=k(h[g],b)},pin:function(a,b){Aa(wa(a),"element","not an element");Aa(wa(b),"parentElement","not an element");a.data("$ngAnimatePin",b)},push:function(a,b,c,g){c=c||{};c.domOperation=g;return p(a,b,c)},enabled:function(a,b){var c=arguments.length;if(0===c)b=!!g;else if(wa(a)){var d=D(a),h=H.get(d);1===c?b=!h:H.put(d,!b)}else b=g=!!a;return b}};return N}]}]).provider("$$animation",
|
||||
["$animateProvider",function(a){function b(a){return a.data("$$animationRunner")}var c=this.drivers=[];this.$get=["$$jqLite","$rootScope","$injector","$$AnimateRunner","$$HashMap","$$rAFScheduler",function(a,e,f,z,B,s){function v(a){function b(a){if(a.processed)return a;a.processed=!0;var d=a.domNode,L=d.parentNode;e.put(d,a);for(var f;L;){if(f=e.get(L)){f.processed||(f=b(f));break}L=L.parentNode}(f||c).children.push(a);return a}var c={children:[]},d,e=new B;for(d=0;d<a.length;d++){var f=a[d];e.put(f.domNode,
|
||||
a[d]={domNode:f.domNode,fn:f.fn,children:[]})}for(d=0;d<a.length;d++)b(a[d]);return function(a){var b=[],c=[],d;for(d=0;d<a.children.length;d++)c.push(a.children[d]);a=c.length;var e=0,f=[];for(d=0;d<c.length;d++){var x=c[d];0>=a&&(a=e,e=0,b.push(f),f=[]);f.push(x.fn);x.children.forEach(function(a){e++;c.push(a)});a--}f.length&&b.push(f);return b}(c)}var I=[],q=U(a);return function(u,B,w){function x(a){a=a.hasAttribute("ng-animate-ref")?[a]:a.querySelectorAll("[ng-animate-ref]");var b=[];r(a,function(a){var c=
|
||||
a.getAttribute("ng-animate-ref");c&&c.length&&b.push(a)});return b}function R(a){var b=[],c={};r(a,function(a,g){var d=D(a.element),e=0<=["enter","move"].indexOf(a.event),d=a.structural?x(d):[];if(d.length){var k=e?"to":"from";r(d,function(a){var b=a.getAttribute("ng-animate-ref");c[b]=c[b]||{};c[b][k]={animationID:g,element:G(a)}})}else b.push(a)});var d={},e={};r(c,function(c,h){var k=c.from,f=c.to;if(k&&f){var p=a[k.animationID],y=a[f.animationID],l=k.animationID.toString();if(!e[l]){var x=e[l]=
|
||||
{structural:!0,beforeStart:function(){p.beforeStart();y.beforeStart()},close:function(){p.close();y.close()},classes:J(p.classes,y.classes),from:p,to:y,anchors:[]};x.classes.length?b.push(x):(b.push(p),b.push(y))}e[l].anchors.push({out:k.element,"in":f.element})}else k=k?k.animationID:f.animationID,f=k.toString(),d[f]||(d[f]=!0,b.push(a[k]))});return b}function J(a,b){a=a.split(" ");b=b.split(" ");for(var c=[],d=0;d<a.length;d++){var k=a[d];if("ng-"!==k.substring(0,3))for(var e=0;e<b.length;e++)if(k===
|
||||
b[e]){c.push(k);break}}return c.join(" ")}function k(a){for(var b=c.length-1;0<=b;b--){var d=c[b];if(f.has(d)&&(d=f.get(d)(a)))return d}}function p(a,c){a.from&&a.to?(b(a.from.element).setHost(c),b(a.to.element).setHost(c)):b(a.element).setHost(c)}function L(){var a=b(u);!a||"leave"===B&&w.$$domOperationFired||a.end()}function O(b){u.off("$destroy",L);u.removeData("$$animationRunner");q(u,w);ga(u,w);w.domOperation();y&&a.removeClass(u,y);u.removeClass("ng-animate");K.complete(!b)}w=pa(w);var l=0<=
|
||||
["enter","move","leave"].indexOf(B),K=new z({end:function(){O()},cancel:function(){O(!0)}});if(!c.length)return O(),K;u.data("$$animationRunner",K);var M=Ba(u.attr("class"),Ba(w.addClass,w.removeClass)),y=w.tempClasses;y&&(M+=" "+y,w.tempClasses=null);var H;l&&(H="ng-"+B+"-prepare",a.addClass(u,H));I.push({element:u,classes:M,event:B,structural:l,options:w,beforeStart:function(){u.addClass("ng-animate");y&&a.addClass(u,y);H&&(a.removeClass(u,H),H=null)},close:O});u.on("$destroy",L);if(1<I.length)return K;
|
||||
e.$$postDigest(function(){var a=[];r(I,function(c){b(c.element)?a.push(c):c.close()});I.length=0;var c=R(a),d=[];r(c,function(a){d.push({domNode:D(a.from?a.from.element:a.element),fn:function(){a.beforeStart();var c,d=a.close;if(b(a.anchors?a.from.element||a.to.element:a.element)){var g=k(a);g&&(c=g.start)}c?(c=c(),c.done(function(a){d(!a)}),p(a,c)):d()}})});s(v(d))});return K}}]}]).provider("$animateCss",["$animateProvider",function(a){var b=Ha(),c=Ha();this.$get=["$window","$$jqLite","$$AnimateRunner",
|
||||
"$timeout","$$forceReflow","$sniffer","$$rAFScheduler","$$animateQueue",function(a,e,f,z,B,s,v,I){function q(a,b){var c=a.parentNode;return(c.$$ngAnimateParentKey||(c.$$ngAnimateParentKey=++R))+"-"+a.getAttribute("class")+"-"+b}function u(k,f,x,s){var l;0<b.count(x)&&(l=c.get(x),l||(f=X(f,"-stagger"),e.addClass(k,f),l=Fa(a,k,s),l.animationDuration=Math.max(l.animationDuration,0),l.transitionDuration=Math.max(l.transitionDuration,0),e.removeClass(k,f),c.put(x,l)));return l||{}}function sa(a){J.push(a);
|
||||
v.waitUntilQuiet(function(){b.flush();c.flush();for(var a=B(),d=0;d<J.length;d++)J[d](a);J.length=0})}function w(c,e,f){e=b.get(f);e||(e=Fa(a,c,Ua),"infinite"===e.animationIterationCount&&(e.animationIterationCount=1));b.put(f,e);c=e;f=c.animationDelay;e=c.transitionDelay;c.maxDelay=f&&e?Math.max(f,e):f||e;c.maxDuration=Math.max(c.animationDuration*c.animationIterationCount,c.transitionDuration);return c}var x=U(e),R=0,J=[];return function(a,c){function d(){l()}function v(){l(!0)}function l(b){if(!(R||
|
||||
G&&N)){R=!0;N=!1;g.$$skipPreparationClasses||e.removeClass(a,fa);e.removeClass(a,da);ta(h,!1);qa(h,!1);r(A,function(a){h.style[a[0]]=""});x(a,g);ga(a,g);Object.keys(J).length&&r(J,function(a,b){a?h.style.setProperty(b,a):h.style.removeProperty(b)});if(g.onDone)g.onDone();ea&&ea.length&&a.off(ea.join(" "),y);var c=a.data("$$animateCss");c&&(z.cancel(c[0].timer),a.removeData("$$animateCss"));C&&C.complete(!b)}}function K(a){n.blockTransition&&qa(h,a);n.blockKeyframeAnimation&&ta(h,!!a)}function M(){C=
|
||||
new f({end:d,cancel:v});sa(Q);l();return{$$willAnimate:!1,start:function(){return C},end:d}}function y(a){a.stopPropagation();var b=a.originalEvent||a;a=b.$manualTimeStamp||Date.now();b=parseFloat(b.elapsedTime.toFixed(3));Math.max(a-V,0)>=S&&b>=m&&(G=!0,l())}function H(){function b(){if(!R){K(!1);r(A,function(a){h.style[a[0]]=a[1]});x(a,g);e.addClass(a,da);if(n.recalculateTimingStyles){na=h.className+" "+fa;ja=q(h,na);E=w(h,na,ja);$=E.maxDelay;ha=Math.max($,0);m=E.maxDuration;if(0===m){l();return}n.hasTransitions=
|
||||
0<E.transitionDuration;n.hasAnimations=0<E.animationDuration}n.applyAnimationDelay&&($="boolean"!==typeof g.delay&&ua(g.delay)?parseFloat(g.delay):$,ha=Math.max($,0),E.animationDelay=$,aa=[ra,$+"s"],A.push(aa),h.style[aa[0]]=aa[1]);S=1E3*ha;U=1E3*m;if(g.easing){var d,f=g.easing;n.hasTransitions&&(d=T+"TimingFunction",A.push([d,f]),h.style[d]=f);n.hasAnimations&&(d=Z+"TimingFunction",A.push([d,f]),h.style[d]=f)}E.transitionDuration&&ea.push(xa);E.animationDuration&&ea.push(ya);V=Date.now();var H=S+
|
||||
1.5*U;d=V+H;var f=a.data("$$animateCss")||[],s=!0;if(f.length){var p=f[0];(s=d>p.expectedEndTime)?z.cancel(p.timer):f.push(l)}s&&(H=z(c,H,!1),f[0]={timer:H,expectedEndTime:d},f.push(l),a.data("$$animateCss",f));if(ea.length)a.on(ea.join(" "),y);g.to&&(g.cleanupStyles&&Ia(J,h,Object.keys(g.to)),Da(a,g))}}function c(){var b=a.data("$$animateCss");if(b){for(var d=1;d<b.length;d++)b[d]();a.removeData("$$animateCss")}}if(!R)if(h.parentNode){var d=function(a){if(G)N&&a&&(N=!1,l());else if(N=!a,E.animationDuration)if(a=
|
||||
ta(h,N),N)A.push(a);else{var b=A,c=b.indexOf(a);0<=a&&b.splice(c,1)}},f=0<ca&&(E.transitionDuration&&0===W.transitionDuration||E.animationDuration&&0===W.animationDuration)&&Math.max(W.animationDelay,W.transitionDelay);f?z(b,Math.floor(f*ca*1E3),!1):b();P.resume=function(){d(!0)};P.pause=function(){d(!1)}}else l()}var g=c||{};g.$$prepared||(g=pa(Ja(g)));var J={},h=D(a);if(!h||!h.parentNode||!I.enabled())return M();var A=[],B=a.attr("class"),F=Na(g),R,N,G,C,P,ha,S,m,U,V,ea=[];if(0===g.duration||!s.animations&&
|
||||
!s.transitions)return M();var ka=g.event&&ba(g.event)?g.event.join(" "):g.event,Y="",t="";ka&&g.structural?Y=X(ka,"ng-",!0):ka&&(Y=ka);g.addClass&&(t+=X(g.addClass,"-add"));g.removeClass&&(t.length&&(t+=" "),t+=X(g.removeClass,"-remove"));g.applyClassesEarly&&t.length&&x(a,g);var fa=[Y,t].join(" ").trim(),na=B+" "+fa,da=X(fa,"-active"),B=F.to&&0<Object.keys(F.to).length;if(!(0<(g.keyframeStyle||"").length||B||fa))return M();var ja,W;0<g.stagger?(F=parseFloat(g.stagger),W={transitionDelay:F,animationDelay:F,
|
||||
transitionDuration:0,animationDuration:0}):(ja=q(h,na),W=u(h,fa,ja,Va));g.$$skipPreparationClasses||e.addClass(a,fa);g.transitionStyle&&(F=[T,g.transitionStyle],la(h,F),A.push(F));0<=g.duration&&(F=0<h.style[T].length,F=Ga(g.duration,F),la(h,F),A.push(F));g.keyframeStyle&&(F=[Z,g.keyframeStyle],la(h,F),A.push(F));var ca=W?0<=g.staggerIndex?g.staggerIndex:b.count(ja):0;(ka=0===ca)&&!g.skipBlocking&&qa(h,9999);var E=w(h,na,ja),$=E.maxDelay;ha=Math.max($,0);m=E.maxDuration;var n={};n.hasTransitions=
|
||||
0<E.transitionDuration;n.hasAnimations=0<E.animationDuration;n.hasTransitionAll=n.hasTransitions&&"all"==E.transitionProperty;n.applyTransitionDuration=B&&(n.hasTransitions&&!n.hasTransitionAll||n.hasAnimations&&!n.hasTransitions);n.applyAnimationDuration=g.duration&&n.hasAnimations;n.applyTransitionDelay=ua(g.delay)&&(n.applyTransitionDuration||n.hasTransitions);n.applyAnimationDelay=ua(g.delay)&&n.hasAnimations;n.recalculateTimingStyles=0<t.length;if(n.applyTransitionDuration||n.applyAnimationDuration)m=
|
||||
g.duration?parseFloat(g.duration):m,n.applyTransitionDuration&&(n.hasTransitions=!0,E.transitionDuration=m,F=0<h.style[T+"Property"].length,A.push(Ga(m,F))),n.applyAnimationDuration&&(n.hasAnimations=!0,E.animationDuration=m,A.push([za,m+"s"]));if(0===m&&!n.recalculateTimingStyles)return M();if(null!=g.delay){var aa;"boolean"!==typeof g.delay&&(aa=parseFloat(g.delay),ha=Math.max(aa,0));n.applyTransitionDelay&&A.push([ma,aa+"s"]);n.applyAnimationDelay&&A.push([ra,aa+"s"])}null==g.duration&&0<E.transitionDuration&&
|
||||
(n.recalculateTimingStyles=n.recalculateTimingStyles||ka);S=1E3*ha;U=1E3*m;g.skipBlocking||(n.blockTransition=0<E.transitionDuration,n.blockKeyframeAnimation=0<E.animationDuration&&0<W.animationDelay&&0===W.animationDuration);g.from&&(g.cleanupStyles&&Ia(J,h,Object.keys(g.from)),Ca(a,g));n.blockTransition||n.blockKeyframeAnimation?K(m):g.skipBlocking||qa(h,!1);return{$$willAnimate:!0,end:d,start:function(){if(!R)return P={end:d,cancel:v,resume:null,pause:null},C=new f(P),sa(H),C}}}}]}]).provider("$$animateCssDriver",
|
||||
["$$animationProvider",function(a){a.drivers.push("$$animateCssDriver");this.$get=["$animateCss","$rootScope","$$AnimateRunner","$rootElement","$sniffer","$$jqLite","$document",function(a,c,d,e,f,z,B){function s(a){return a.replace(/\bng-\S+\b/g,"")}function v(a,b){P(a)&&(a=a.split(" "));P(b)&&(b=b.split(" "));return a.filter(function(a){return-1===b.indexOf(a)}).join(" ")}function I(c,e,f){function k(a){var b={},c=D(a).getBoundingClientRect();r(["width","height","top","left"],function(a){var d=c[a];
|
||||
switch(a){case "top":d+=C.scrollTop;break;case "left":d+=C.scrollLeft}b[a]=Math.floor(d)+"px"});return b}function p(){var c=s(f.attr("class")||""),d=v(c,l),c=v(l,c),d=a(z,{to:k(f),addClass:"ng-anchor-in "+d,removeClass:"ng-anchor-out "+c,delay:!0});return d.$$willAnimate?d:null}function B(){z.remove();e.removeClass("ng-animate-shim");f.removeClass("ng-animate-shim")}var z=G(D(e).cloneNode(!0)),l=s(z.attr("class")||"");e.addClass("ng-animate-shim");f.addClass("ng-animate-shim");z.addClass("ng-anchor");
|
||||
w.append(z);var K;c=function(){var c=a(z,{addClass:"ng-anchor-out",delay:!0,from:k(e)});return c.$$willAnimate?c:null}();if(!c&&(K=p(),!K))return B();var M=c||K;return{start:function(){function a(){c&&c.end()}var b,c=M.start();c.done(function(){c=null;if(!K&&(K=p()))return c=K.start(),c.done(function(){c=null;B();b.complete()}),c;B();b.complete()});return b=new d({end:a,cancel:a})}}}function q(a,b,c,e){var f=u(a,Q),s=u(b,Q),z=[];r(e,function(a){(a=I(c,a.out,a["in"]))&&z.push(a)});if(f||s||0!==z.length)return{start:function(){function a(){r(b,
|
||||
function(a){a.end()})}var b=[];f&&b.push(f.start());s&&b.push(s.start());r(z,function(a){b.push(a.start())});var c=new d({end:a,cancel:a});d.all(b,function(a){c.complete(a)});return c}}}function u(c){var d=c.element,e=c.options||{};c.structural&&(e.event=c.event,e.structural=!0,e.applyClassesEarly=!0,"leave"===c.event&&(e.onDone=e.domOperation));e.preparationClasses&&(e.event=Y(e.event,e.preparationClasses));c=a(d,e);return c.$$willAnimate?c:null}if(!f.animations&&!f.transitions)return Q;var C=B[0].body;
|
||||
c=D(e);var w=G(c.parentNode&&11===c.parentNode.nodeType||C.contains(c)?c:C);U(z);return function(a){return a.from&&a.to?q(a.from,a.to,a.classes,a.anchors):u(a)}}]}]).provider("$$animateJs",["$animateProvider",function(a){this.$get=["$injector","$$AnimateRunner","$$jqLite",function(b,c,d){function e(c){c=ba(c)?c:c.split(" ");for(var d=[],e={},f=0;f<c.length;f++){var r=c[f],q=a.$$registeredAnimations[r];q&&!e[r]&&(d.push(b.get(q)),e[r]=!0)}return d}var f=U(d);return function(a,b,d,v){function q(){v.domOperation();
|
||||
f(a,v)}function D(a,b,d,e,g){switch(d){case "animate":b=[b,e.from,e.to,g];break;case "setClass":b=[b,x,G,g];break;case "addClass":b=[b,x,g];break;case "removeClass":b=[b,G,g];break;default:b=[b,g]}b.push(e);if(a=a.apply(a,b))if(Ka(a.start)&&(a=a.start()),a instanceof c)a.done(g);else if(Ka(a))return a;return Q}function u(a,b,d,e,g){var f=[];r(e,function(e){var k=e[g];k&&f.push(function(){var e,g,f=!1,h=function(a){f||(f=!0,(g||Q)(a),e.complete(!a))};e=new c({end:function(){h()},cancel:function(){h(!0)}});
|
||||
g=D(k,a,b,d,function(a){h(!1===a)});return e})});return f}function C(a,b,d,e,g){var f=u(a,b,d,e,g);if(0===f.length){var h,k;"beforeSetClass"===g?(h=u(a,"removeClass",d,e,"beforeRemoveClass"),k=u(a,"addClass",d,e,"beforeAddClass")):"setClass"===g&&(h=u(a,"removeClass",d,e,"removeClass"),k=u(a,"addClass",d,e,"addClass"));h&&(f=f.concat(h));k&&(f=f.concat(k))}if(0!==f.length)return function(a){var b=[];f.length&&r(f,function(a){b.push(a())});b.length?c.all(b,a):a();return function(a){r(b,function(b){a?
|
||||
b.cancel():b.end()})}}}var w=!1;3===arguments.length&&va(d)&&(v=d,d=null);v=pa(v);d||(d=a.attr("class")||"",v.addClass&&(d+=" "+v.addClass),v.removeClass&&(d+=" "+v.removeClass));var x=v.addClass,G=v.removeClass,J=e(d),k,p;if(J.length){var L,O;"leave"==b?(O="leave",L="afterLeave"):(O="before"+b.charAt(0).toUpperCase()+b.substr(1),L=b);"enter"!==b&&"move"!==b&&(k=C(a,b,v,J,O));p=C(a,b,v,J,L)}if(k||p){var l;return{$$willAnimate:!0,end:function(){l?l.end():(w=!0,q(),ga(a,v),l=new c,l.complete(!0));return l},
|
||||
start:function(){function b(c){w=!0;q();ga(a,v);l.complete(c)}if(l)return l;l=new c;var d,e=[];k&&e.push(function(a){d=k(a)});e.length?e.push(function(a){q();a(!0)}):q();p&&e.push(function(a){d=p(a)});l.setHost({end:function(){w||((d||Q)(void 0),b(void 0))},cancel:function(){w||((d||Q)(!0),b(!0))}});c.chain(e,b);return l}}}}}]}]).provider("$$animateJsDriver",["$$animationProvider",function(a){a.drivers.push("$$animateJsDriver");this.$get=["$$animateJs","$$AnimateRunner",function(a,c){function d(c){return a(c.element,
|
||||
c.event,c.classes,c.options)}return function(a){if(a.from&&a.to){var b=d(a.from),q=d(a.to);if(b||q)return{start:function(){function a(){return function(){r(d,function(a){a.end()})}}var d=[];b&&d.push(b.start());q&&d.push(q.start());c.all(d,function(a){e.complete(a)});var e=new c({end:a(),cancel:a()});return e}}}else return d(a)}}]}])})(window,window.angular);
|
||||
13
a8_za_Fine_aarto/public/Static_zy/www/js/angular-aria.min.js
vendored
Normal file
13
a8_za_Fine_aarto/public/Static_zy/www/js/angular-aria.min.js
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
/*
|
||||
AngularJS v1.5.5
|
||||
(c) 2010-2016 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
*/
|
||||
(function(t,p){'use strict';var b="BUTTON A INPUT TEXTAREA SELECT DETAILS SUMMARY".split(" "),l=function(a,c){if(-1!==c.indexOf(a[0].nodeName))return!0};p.module("ngAria",["ng"]).provider("$aria",function(){function a(a,b,m,h){return function(d,f,e){var q=e.$normalize(b);!c[q]||l(f,m)||e[q]||d.$watch(e[a],function(a){a=h?!a:!!a;f.attr(b,a)})}}var c={ariaHidden:!0,ariaChecked:!0,ariaReadonly:!0,ariaDisabled:!0,ariaRequired:!0,ariaInvalid:!0,ariaValue:!0,tabindex:!0,bindKeypress:!0,bindRoleForClick:!0};
|
||||
this.config=function(a){c=p.extend(c,a)};this.$get=function(){return{config:function(a){return c[a]},$$watchExpr:a}}}).directive("ngShow",["$aria",function(a){return a.$$watchExpr("ngShow","aria-hidden",[],!0)}]).directive("ngHide",["$aria",function(a){return a.$$watchExpr("ngHide","aria-hidden",[],!1)}]).directive("ngValue",["$aria",function(a){return a.$$watchExpr("ngValue","aria-checked",b,!1)}]).directive("ngChecked",["$aria",function(a){return a.$$watchExpr("ngChecked","aria-checked",b,!1)}]).directive("ngReadonly",
|
||||
["$aria",function(a){return a.$$watchExpr("ngReadonly","aria-readonly",b,!1)}]).directive("ngRequired",["$aria",function(a){return a.$$watchExpr("ngRequired","aria-required",b,!1)}]).directive("ngModel",["$aria",function(a){function c(c,h,d,f){return a.config(h)&&!d.attr(c)&&(f||!l(d,b))}function g(a,c){return!c.attr("role")&&c.attr("type")===a&&"INPUT"!==c[0].nodeName}function k(a,c){var d=a.type,f=a.role;return"checkbox"===(d||f)||"menuitemcheckbox"===f?"checkbox":"radio"===(d||f)||"menuitemradio"===
|
||||
f?"radio":"range"===d||"progressbar"===f||"slider"===f?"range":""}return{restrict:"A",require:"ngModel",priority:200,compile:function(b,h){var d=k(h,b);return{pre:function(a,e,c,b){"checkbox"===d&&(b.$isEmpty=function(a){return!1===a})},post:function(f,e,b,n){function h(){return n.$modelValue}function k(a){e.attr("aria-checked",b.value==n.$viewValue)}function l(){e.attr("aria-checked",!n.$isEmpty(n.$viewValue))}var m=c("tabindex","tabindex",e,!1);switch(d){case "radio":case "checkbox":g(d,e)&&e.attr("role",
|
||||
d);c("aria-checked","ariaChecked",e,!1)&&f.$watch(h,"radio"===d?k:l);m&&e.attr("tabindex",0);break;case "range":g(d,e)&&e.attr("role","slider");if(a.config("ariaValue")){var p=!e.attr("aria-valuemin")&&(b.hasOwnProperty("min")||b.hasOwnProperty("ngMin")),r=!e.attr("aria-valuemax")&&(b.hasOwnProperty("max")||b.hasOwnProperty("ngMax")),s=!e.attr("aria-valuenow");p&&b.$observe("min",function(a){e.attr("aria-valuemin",a)});r&&b.$observe("max",function(a){e.attr("aria-valuemax",a)});s&&f.$watch(h,function(a){e.attr("aria-valuenow",
|
||||
a)})}m&&e.attr("tabindex",0)}!b.hasOwnProperty("ngRequired")&&n.$validators.required&&c("aria-required","ariaRequired",e,!1)&&b.$observe("required",function(){e.attr("aria-required",!!b.required)});c("aria-invalid","ariaInvalid",e,!0)&&f.$watch(function(){return n.$invalid},function(a){e.attr("aria-invalid",!!a)})}}}}}]).directive("ngDisabled",["$aria",function(a){return a.$$watchExpr("ngDisabled","aria-disabled",b,!1)}]).directive("ngMessages",function(){return{restrict:"A",require:"?ngMessages",
|
||||
link:function(a,b,g,k){b.attr("aria-live")||b.attr("aria-live","assertive")}}}).directive("ngClick",["$aria","$parse",function(a,c){return{restrict:"A",compile:function(g,k){var m=c(k.ngClick,null,!0);return function(c,d,f){if(!l(d,b)&&(a.config("bindRoleForClick")&&!d.attr("role")&&d.attr("role","button"),a.config("tabindex")&&!d.attr("tabindex")&&d.attr("tabindex",0),a.config("bindKeypress")&&!f.ngKeypress))d.on("keypress",function(a){function b(){m(c,{$event:a})}var d=a.which||a.keyCode;32!==d&&
|
||||
13!==d||c.$apply(b)})}}}}]).directive("ngDblclick",["$aria",function(a){return function(c,g,k){!a.config("tabindex")||g.attr("tabindex")||l(g,b)||g.attr("tabindex",0)}}])})(window,window.angular);
|
||||
5
a8_za_Fine_aarto/public/Static_zy/www/js/angular-file-upload.min.js
vendored
Normal file
5
a8_za_Fine_aarto/public/Static_zy/www/js/angular-file-upload.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
15406
a8_za_Fine_aarto/public/Static_zy/www/js/angular-material.js
vendored
Normal file
15406
a8_za_Fine_aarto/public/Static_zy/www/js/angular-material.js
vendored
Normal file
File diff suppressed because one or more lines are too long
12
a8_za_Fine_aarto/public/Static_zy/www/js/angular-messages.min.js
vendored
Normal file
12
a8_za_Fine_aarto/public/Static_zy/www/js/angular-messages.min.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
AngularJS v1.5.5
|
||||
(c) 2010-2016 Google, Inc. http://angularjs.org
|
||||
License: MIT
|
||||
*/
|
||||
(function(A,d){'use strict';function p(){return["$animate",function(w){return{restrict:"AE",transclude:"element",priority:1,terminal:!0,require:"^^ngMessages",link:function(n,l,a,c,m){var k=l[0],f,q=a.ngMessage||a.when;a=a.ngMessageExp||a.whenExp;var d=function(a){f=a?x(a)?a:a.split(/[\s,]+/):null;c.reRender()};a?(d(n.$eval(a)),n.$watchCollection(a,d)):d(q);var e,r;c.register(k,r={test:function(a){var g=f;a=g?x(g)?0<=g.indexOf(a):g.hasOwnProperty(a):void 0;return a},attach:function(){e||m(n,function(a){w.enter(a,
|
||||
null,l);e=a;var g=e.$$attachId=c.getAttachId();e.on("$destroy",function(){e&&e.$$attachId===g&&(c.deregister(k),r.detach())})})},detach:function(){if(e){var a=e;e=null;w.leave(a)}}})}}}]}var x=d.isArray,t=d.forEach,y=d.isString,z=d.element;d.module("ngMessages",[]).directive("ngMessages",["$animate",function(d){function n(a,c){return y(c)&&0===c.length||l(a.$eval(c))}function l(a){return y(a)?a.length:!!a}return{require:"ngMessages",restrict:"AE",controller:["$element","$scope","$attrs",function(a,
|
||||
c,m){function k(a,c){for(var b=c,f=[];b&&b!==a;){var h=b.$$ngMessageNode;if(h&&h.length)return e[h];b.childNodes.length&&-1==f.indexOf(b)?(f.push(b),b=b.childNodes[b.childNodes.length-1]):b.previousSibling?b=b.previousSibling:(b=b.parentNode,f.push(b))}}var f=this,q=0,p=0;this.getAttachId=function(){return p++};var e=this.messages={},r,s;this.render=function(g){g=g||{};r=!1;s=g;for(var e=n(c,m.ngMessagesMultiple)||n(c,m.multiple),b=[],q={},h=f.head,k=!1,p=0;null!=h;){p++;var u=h.message,v=!1;k||t(g,
|
||||
function(a,b){!v&&l(a)&&u.test(b)&&!q[b]&&(v=q[b]=!0,u.attach())});v?k=!e:b.push(u);h=h.next}t(b,function(a){a.detach()});b.length!==p?d.setClass(a,"ng-active","ng-inactive"):d.setClass(a,"ng-inactive","ng-active")};c.$watchCollection(m.ngMessages||m["for"],f.render);a.on("$destroy",function(){t(e,function(a){a.message.detach()})});this.reRender=function(){r||(r=!0,c.$evalAsync(function(){r&&s&&f.render(s)}))};this.register=function(g,c){var b=q.toString();e[b]={message:c};var d=a[0],h=e[b];f.head?
|
||||
(d=k(d,g))?(h.next=d.next,d.next=h):(h.next=f.head,f.head=h):f.head=h;g.$$ngMessageNode=b;q++;f.reRender()};this.deregister=function(c){var d=c.$$ngMessageNode;delete c.$$ngMessageNode;var b=e[d];(c=k(a[0],c))?c.next=b.next:f.head=b.next;delete e[d];f.reRender()}}]}}]).directive("ngMessagesInclude",["$templateRequest","$document","$compile",function(d,n,l){return{restrict:"AE",require:"^^ngMessages",link:function(a,c,m){var k=m.ngMessagesInclude||m.src;d(k).then(function(d){l(d)(a,function(a){c.after(a);
|
||||
a=l.$$createComment?l.$$createComment("ngMessagesInclude",k):n[0].createComment(" ngMessagesInclude: "+k+" ");a=z(a);c.after(a);c.remove()})})}}}]).directive("ngMessage",p()).directive("ngMessageExp",p())})(window,window.angular);
|
||||
|
||||
67
a8_za_Fine_aarto/public/Static_zy/www/js/assets-cache.js
Normal file
67
a8_za_Fine_aarto/public/Static_zy/www/js/assets-cache.js
Normal file
File diff suppressed because one or more lines are too long
7
a8_za_Fine_aarto/public/Static_zy/www/js/bootstrap.min.js
vendored
Normal file
7
a8_za_Fine_aarto/public/Static_zy/www/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
62
a8_za_Fine_aarto/public/Static_zy/www/js/count-to.js
Normal file
62
a8_za_Fine_aarto/public/Static_zy/www/js/count-to.js
Normal file
@@ -0,0 +1,62 @@
|
||||
var countTo = angular.module('countTo', [])
|
||||
.directive('countTo', ['$timeout', function ($timeout) {
|
||||
return {
|
||||
replace: false,
|
||||
scope: true,
|
||||
link: function (scope, element, attrs) {
|
||||
|
||||
var e = element[0];
|
||||
var num, refreshInterval, duration, steps, step, countTo, value, increment;
|
||||
|
||||
var calculate = function () {
|
||||
refreshInterval = 30;
|
||||
step = 0;
|
||||
scope.timoutId = null;
|
||||
countTo = parseInt(attrs.countTo) || 0;
|
||||
scope.value = parseInt(attrs.value, 10) || 0;
|
||||
duration = (parseFloat(attrs.duration) * 1000) || 0;
|
||||
|
||||
steps = Math.ceil(duration / refreshInterval);
|
||||
increment = ((countTo - scope.value) / steps);
|
||||
num = scope.value;
|
||||
}
|
||||
|
||||
var tick = function () {
|
||||
scope.timoutId = $timeout(function () {
|
||||
num += increment;
|
||||
step++;
|
||||
if (step >= steps) {
|
||||
$timeout.cancel(scope.timoutId);
|
||||
num = countTo;
|
||||
e.textContent = countTo;
|
||||
} else {
|
||||
e.textContent = Math.round(num);
|
||||
tick();
|
||||
}
|
||||
}, refreshInterval);
|
||||
|
||||
}
|
||||
|
||||
var start = function () {
|
||||
if (scope.timoutId) {
|
||||
$timeout.cancel(scope.timoutId);
|
||||
}
|
||||
calculate();
|
||||
tick();
|
||||
}
|
||||
|
||||
attrs.$observe('countTo', function (val) {
|
||||
if (val) {
|
||||
start();
|
||||
}
|
||||
});
|
||||
|
||||
attrs.$observe('value', function (val) {
|
||||
start();
|
||||
});
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
}]);
|
||||
8
a8_za_Fine_aarto/public/Static_zy/www/js/enc-base64-min.js
vendored
Normal file
8
a8_za_Fine_aarto/public/Static_zy/www/js/enc-base64-min.js
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
/*
|
||||
CryptoJS v3.1.2
|
||||
code.google.com/p/crypto-js
|
||||
(c) 2009-2013 by Jeff Mott. All rights reserved.
|
||||
code.google.com/p/crypto-js/wiki/License
|
||||
*/
|
||||
(function(){var h=CryptoJS,j=h.lib.WordArray;h.enc.Base64={stringify:function(b){var e=b.words,f=b.sigBytes,c=this._map;b.clamp();b=[];for(var a=0;a<f;a+=3)for(var d=(e[a>>>2]>>>24-8*(a%4)&255)<<16|(e[a+1>>>2]>>>24-8*((a+1)%4)&255)<<8|e[a+2>>>2]>>>24-8*((a+2)%4)&255,g=0;4>g&&a+0.75*g<f;g++)b.push(c.charAt(d>>>6*(3-g)&63));if(e=c.charAt(64))for(;b.length%4;)b.push(e);return b.join("")},parse:function(b){var e=b.length,f=this._map,c=f.charAt(64);c&&(c=b.indexOf(c),-1!=c&&(e=c));for(var c=[],a=0,d=0;d<
|
||||
e;d++)if(d%4){var g=f.indexOf(b.charAt(d-1))<<2*(d%4),h=f.indexOf(b.charAt(d))>>>6-2*(d%4);c[a>>>2]|=(g|h)<<24-8*(a%4);a++}return j.create(c,a)},_map:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="}})();
|
||||
18
a8_za_Fine_aarto/public/Static_zy/www/js/hmac-sha256.js
Normal file
18
a8_za_Fine_aarto/public/Static_zy/www/js/hmac-sha256.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
CryptoJS v3.1.2
|
||||
code.google.com/p/crypto-js
|
||||
(c) 2009-2013 by Jeff Mott. All rights reserved.
|
||||
code.google.com/p/crypto-js/wiki/License
|
||||
*/
|
||||
var CryptoJS=CryptoJS||function(h,s){var f={},g=f.lib={},q=function(){},m=g.Base={extend:function(a){q.prototype=this;var c=new q;a&&c.mixIn(a);c.hasOwnProperty("init")||(c.init=function(){c.$super.init.apply(this,arguments)});c.init.prototype=c;c.$super=this;return c},create:function(){var a=this.extend();a.init.apply(a,arguments);return a},init:function(){},mixIn:function(a){for(var c in a)a.hasOwnProperty(c)&&(this[c]=a[c]);a.hasOwnProperty("toString")&&(this.toString=a.toString)},clone:function(){return this.init.prototype.extend(this)}},
|
||||
r=g.WordArray=m.extend({init:function(a,c){a=this.words=a||[];this.sigBytes=c!=s?c:4*a.length},toString:function(a){return(a||k).stringify(this)},concat:function(a){var c=this.words,d=a.words,b=this.sigBytes;a=a.sigBytes;this.clamp();if(b%4)for(var e=0;e<a;e++)c[b+e>>>2]|=(d[e>>>2]>>>24-8*(e%4)&255)<<24-8*((b+e)%4);else if(65535<d.length)for(e=0;e<a;e+=4)c[b+e>>>2]=d[e>>>2];else c.push.apply(c,d);this.sigBytes+=a;return this},clamp:function(){var a=this.words,c=this.sigBytes;a[c>>>2]&=4294967295<<
|
||||
32-8*(c%4);a.length=h.ceil(c/4)},clone:function(){var a=m.clone.call(this);a.words=this.words.slice(0);return a},random:function(a){for(var c=[],d=0;d<a;d+=4)c.push(4294967296*h.random()|0);return new r.init(c,a)}}),l=f.enc={},k=l.Hex={stringify:function(a){var c=a.words;a=a.sigBytes;for(var d=[],b=0;b<a;b++){var e=c[b>>>2]>>>24-8*(b%4)&255;d.push((e>>>4).toString(16));d.push((e&15).toString(16))}return d.join("")},parse:function(a){for(var c=a.length,d=[],b=0;b<c;b+=2)d[b>>>3]|=parseInt(a.substr(b,
|
||||
2),16)<<24-4*(b%8);return new r.init(d,c/2)}},n=l.Latin1={stringify:function(a){var c=a.words;a=a.sigBytes;for(var d=[],b=0;b<a;b++)d.push(String.fromCharCode(c[b>>>2]>>>24-8*(b%4)&255));return d.join("")},parse:function(a){for(var c=a.length,d=[],b=0;b<c;b++)d[b>>>2]|=(a.charCodeAt(b)&255)<<24-8*(b%4);return new r.init(d,c)}},j=l.Utf8={stringify:function(a){try{return decodeURIComponent(escape(n.stringify(a)))}catch(c){throw Error("Malformed UTF-8 data");}},parse:function(a){return n.parse(unescape(encodeURIComponent(a)))}},
|
||||
u=g.BufferedBlockAlgorithm=m.extend({reset:function(){this._data=new r.init;this._nDataBytes=0},_append:function(a){"string"==typeof a&&(a=j.parse(a));this._data.concat(a);this._nDataBytes+=a.sigBytes},_process:function(a){var c=this._data,d=c.words,b=c.sigBytes,e=this.blockSize,f=b/(4*e),f=a?h.ceil(f):h.max((f|0)-this._minBufferSize,0);a=f*e;b=h.min(4*a,b);if(a){for(var g=0;g<a;g+=e)this._doProcessBlock(d,g);g=d.splice(0,a);c.sigBytes-=b}return new r.init(g,b)},clone:function(){var a=m.clone.call(this);
|
||||
a._data=this._data.clone();return a},_minBufferSize:0});g.Hasher=u.extend({cfg:m.extend(),init:function(a){this.cfg=this.cfg.extend(a);this.reset()},reset:function(){u.reset.call(this);this._doReset()},update:function(a){this._append(a);this._process();return this},finalize:function(a){a&&this._append(a);return this._doFinalize()},blockSize:16,_createHelper:function(a){return function(c,d){return(new a.init(d)).finalize(c)}},_createHmacHelper:function(a){return function(c,d){return(new t.HMAC.init(a,
|
||||
d)).finalize(c)}}});var t=f.algo={};return f}(Math);
|
||||
(function(h){for(var s=CryptoJS,f=s.lib,g=f.WordArray,q=f.Hasher,f=s.algo,m=[],r=[],l=function(a){return 4294967296*(a-(a|0))|0},k=2,n=0;64>n;){var j;a:{j=k;for(var u=h.sqrt(j),t=2;t<=u;t++)if(!(j%t)){j=!1;break a}j=!0}j&&(8>n&&(m[n]=l(h.pow(k,0.5))),r[n]=l(h.pow(k,1/3)),n++);k++}var a=[],f=f.SHA256=q.extend({_doReset:function(){this._hash=new g.init(m.slice(0))},_doProcessBlock:function(c,d){for(var b=this._hash.words,e=b[0],f=b[1],g=b[2],j=b[3],h=b[4],m=b[5],n=b[6],q=b[7],p=0;64>p;p++){if(16>p)a[p]=
|
||||
c[d+p]|0;else{var k=a[p-15],l=a[p-2];a[p]=((k<<25|k>>>7)^(k<<14|k>>>18)^k>>>3)+a[p-7]+((l<<15|l>>>17)^(l<<13|l>>>19)^l>>>10)+a[p-16]}k=q+((h<<26|h>>>6)^(h<<21|h>>>11)^(h<<7|h>>>25))+(h&m^~h&n)+r[p]+a[p];l=((e<<30|e>>>2)^(e<<19|e>>>13)^(e<<10|e>>>22))+(e&f^e&g^f&g);q=n;n=m;m=h;h=j+k|0;j=g;g=f;f=e;e=k+l|0}b[0]=b[0]+e|0;b[1]=b[1]+f|0;b[2]=b[2]+g|0;b[3]=b[3]+j|0;b[4]=b[4]+h|0;b[5]=b[5]+m|0;b[6]=b[6]+n|0;b[7]=b[7]+q|0},_doFinalize:function(){var a=this._data,d=a.words,b=8*this._nDataBytes,e=8*a.sigBytes;
|
||||
d[e>>>5]|=128<<24-e%32;d[(e+64>>>9<<4)+14]=h.floor(b/4294967296);d[(e+64>>>9<<4)+15]=b;a.sigBytes=4*d.length;this._process();return this._hash},clone:function(){var a=q.clone.call(this);a._hash=this._hash.clone();return a}});s.SHA256=q._createHelper(f);s.HmacSHA256=q._createHmacHelper(f)})(Math);
|
||||
(function(){var h=CryptoJS,s=h.enc.Utf8;h.algo.HMAC=h.lib.Base.extend({init:function(f,g){f=this._hasher=new f.init;"string"==typeof g&&(g=s.parse(g));var h=f.blockSize,m=4*h;g.sigBytes>m&&(g=f.finalize(g));g.clamp();for(var r=this._oKey=g.clone(),l=this._iKey=g.clone(),k=r.words,n=l.words,j=0;j<h;j++)k[j]^=1549556828,n[j]^=909522486;r.sigBytes=l.sigBytes=m;this.reset()},reset:function(){var f=this._hasher;f.reset();f.update(this._iKey)},update:function(f){this._hasher.update(f);return this},finalize:function(f){var g=
|
||||
this._hasher;f=g.finalize(f);g.reset();return g.finalize(this._oKey.clone().concat(f))}})})();
|
||||
4
a8_za_Fine_aarto/public/Static_zy/www/js/jquery-1.js
vendored
Normal file
4
a8_za_Fine_aarto/public/Static_zy/www/js/jquery-1.js
vendored
Normal file
File diff suppressed because one or more lines are too long
269
a8_za_Fine_aarto/public/Static_zy/www/js/jquery.md5.js
Normal file
269
a8_za_Fine_aarto/public/Static_zy/www/js/jquery.md5.js
Normal file
@@ -0,0 +1,269 @@
|
||||
/*
|
||||
* jQuery MD5 Plugin 1.2.1
|
||||
* https://github.com/blueimp/jQuery-MD5
|
||||
*
|
||||
* Copyright 2010, Sebastian Tschan
|
||||
* https://blueimp.net
|
||||
*
|
||||
* Licensed under the MIT license:
|
||||
* http://creativecommons.org/licenses/MIT/
|
||||
*
|
||||
* Based on
|
||||
* A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
|
||||
* Digest Algorithm, as defined in RFC 1321.
|
||||
* Version 2.2 Copyright (C) Paul Johnston 1999 - 2009
|
||||
* Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
|
||||
* Distributed under the BSD License
|
||||
* See http://pajhome.org.uk/crypt/md5 for more info.
|
||||
*/
|
||||
|
||||
/*jslint bitwise: true */
|
||||
/*global unescape, jQuery */
|
||||
|
||||
(function ($) {
|
||||
'use strict';
|
||||
|
||||
/*
|
||||
* Add integers, wrapping at 2^32. This uses 16-bit operations internally
|
||||
* to work around bugs in some JS interpreters.
|
||||
*/
|
||||
function safe_add(x, y) {
|
||||
var lsw = (x & 0xFFFF) + (y & 0xFFFF),
|
||||
msw = (x >> 16) + (y >> 16) + (lsw >> 16);
|
||||
return (msw << 16) | (lsw & 0xFFFF);
|
||||
}
|
||||
|
||||
/*
|
||||
* Bitwise rotate a 32-bit number to the left.
|
||||
*/
|
||||
function bit_rol(num, cnt) {
|
||||
return (num << cnt) | (num >>> (32 - cnt));
|
||||
}
|
||||
|
||||
/*
|
||||
* These functions implement the four basic operations the algorithm uses.
|
||||
*/
|
||||
function md5_cmn(q, a, b, x, s, t) {
|
||||
return safe_add(bit_rol(safe_add(safe_add(a, q), safe_add(x, t)), s), b);
|
||||
}
|
||||
function md5_ff(a, b, c, d, x, s, t) {
|
||||
return md5_cmn((b & c) | ((~b) & d), a, b, x, s, t);
|
||||
}
|
||||
function md5_gg(a, b, c, d, x, s, t) {
|
||||
return md5_cmn((b & d) | (c & (~d)), a, b, x, s, t);
|
||||
}
|
||||
function md5_hh(a, b, c, d, x, s, t) {
|
||||
return md5_cmn(b ^ c ^ d, a, b, x, s, t);
|
||||
}
|
||||
function md5_ii(a, b, c, d, x, s, t) {
|
||||
return md5_cmn(c ^ (b | (~d)), a, b, x, s, t);
|
||||
}
|
||||
|
||||
/*
|
||||
* Calculate the MD5 of an array of little-endian words, and a bit length.
|
||||
*/
|
||||
function binl_md5(x, len) {
|
||||
/* append padding */
|
||||
x[len >> 5] |= 0x80 << ((len) % 32);
|
||||
x[(((len + 64) >>> 9) << 4) + 14] = len;
|
||||
|
||||
var i, olda, oldb, oldc, oldd,
|
||||
a = 1732584193,
|
||||
b = -271733879,
|
||||
c = -1732584194,
|
||||
d = 271733878;
|
||||
|
||||
for (i = 0; i < x.length; i += 16) {
|
||||
olda = a;
|
||||
oldb = b;
|
||||
oldc = c;
|
||||
oldd = d;
|
||||
|
||||
a = md5_ff(a, b, c, d, x[i], 7, -680876936);
|
||||
d = md5_ff(d, a, b, c, x[i + 1], 12, -389564586);
|
||||
c = md5_ff(c, d, a, b, x[i + 2], 17, 606105819);
|
||||
b = md5_ff(b, c, d, a, x[i + 3], 22, -1044525330);
|
||||
a = md5_ff(a, b, c, d, x[i + 4], 7, -176418897);
|
||||
d = md5_ff(d, a, b, c, x[i + 5], 12, 1200080426);
|
||||
c = md5_ff(c, d, a, b, x[i + 6], 17, -1473231341);
|
||||
b = md5_ff(b, c, d, a, x[i + 7], 22, -45705983);
|
||||
a = md5_ff(a, b, c, d, x[i + 8], 7, 1770035416);
|
||||
d = md5_ff(d, a, b, c, x[i + 9], 12, -1958414417);
|
||||
c = md5_ff(c, d, a, b, x[i + 10], 17, -42063);
|
||||
b = md5_ff(b, c, d, a, x[i + 11], 22, -1990404162);
|
||||
a = md5_ff(a, b, c, d, x[i + 12], 7, 1804603682);
|
||||
d = md5_ff(d, a, b, c, x[i + 13], 12, -40341101);
|
||||
c = md5_ff(c, d, a, b, x[i + 14], 17, -1502002290);
|
||||
b = md5_ff(b, c, d, a, x[i + 15], 22, 1236535329);
|
||||
|
||||
a = md5_gg(a, b, c, d, x[i + 1], 5, -165796510);
|
||||
d = md5_gg(d, a, b, c, x[i + 6], 9, -1069501632);
|
||||
c = md5_gg(c, d, a, b, x[i + 11], 14, 643717713);
|
||||
b = md5_gg(b, c, d, a, x[i], 20, -373897302);
|
||||
a = md5_gg(a, b, c, d, x[i + 5], 5, -701558691);
|
||||
d = md5_gg(d, a, b, c, x[i + 10], 9, 38016083);
|
||||
c = md5_gg(c, d, a, b, x[i + 15], 14, -660478335);
|
||||
b = md5_gg(b, c, d, a, x[i + 4], 20, -405537848);
|
||||
a = md5_gg(a, b, c, d, x[i + 9], 5, 568446438);
|
||||
d = md5_gg(d, a, b, c, x[i + 14], 9, -1019803690);
|
||||
c = md5_gg(c, d, a, b, x[i + 3], 14, -187363961);
|
||||
b = md5_gg(b, c, d, a, x[i + 8], 20, 1163531501);
|
||||
a = md5_gg(a, b, c, d, x[i + 13], 5, -1444681467);
|
||||
d = md5_gg(d, a, b, c, x[i + 2], 9, -51403784);
|
||||
c = md5_gg(c, d, a, b, x[i + 7], 14, 1735328473);
|
||||
b = md5_gg(b, c, d, a, x[i + 12], 20, -1926607734);
|
||||
|
||||
a = md5_hh(a, b, c, d, x[i + 5], 4, -378558);
|
||||
d = md5_hh(d, a, b, c, x[i + 8], 11, -2022574463);
|
||||
c = md5_hh(c, d, a, b, x[i + 11], 16, 1839030562);
|
||||
b = md5_hh(b, c, d, a, x[i + 14], 23, -35309556);
|
||||
a = md5_hh(a, b, c, d, x[i + 1], 4, -1530992060);
|
||||
d = md5_hh(d, a, b, c, x[i + 4], 11, 1272893353);
|
||||
c = md5_hh(c, d, a, b, x[i + 7], 16, -155497632);
|
||||
b = md5_hh(b, c, d, a, x[i + 10], 23, -1094730640);
|
||||
a = md5_hh(a, b, c, d, x[i + 13], 4, 681279174);
|
||||
d = md5_hh(d, a, b, c, x[i], 11, -358537222);
|
||||
c = md5_hh(c, d, a, b, x[i + 3], 16, -722521979);
|
||||
b = md5_hh(b, c, d, a, x[i + 6], 23, 76029189);
|
||||
a = md5_hh(a, b, c, d, x[i + 9], 4, -640364487);
|
||||
d = md5_hh(d, a, b, c, x[i + 12], 11, -421815835);
|
||||
c = md5_hh(c, d, a, b, x[i + 15], 16, 530742520);
|
||||
b = md5_hh(b, c, d, a, x[i + 2], 23, -995338651);
|
||||
|
||||
a = md5_ii(a, b, c, d, x[i], 6, -198630844);
|
||||
d = md5_ii(d, a, b, c, x[i + 7], 10, 1126891415);
|
||||
c = md5_ii(c, d, a, b, x[i + 14], 15, -1416354905);
|
||||
b = md5_ii(b, c, d, a, x[i + 5], 21, -57434055);
|
||||
a = md5_ii(a, b, c, d, x[i + 12], 6, 1700485571);
|
||||
d = md5_ii(d, a, b, c, x[i + 3], 10, -1894986606);
|
||||
c = md5_ii(c, d, a, b, x[i + 10], 15, -1051523);
|
||||
b = md5_ii(b, c, d, a, x[i + 1], 21, -2054922799);
|
||||
a = md5_ii(a, b, c, d, x[i + 8], 6, 1873313359);
|
||||
d = md5_ii(d, a, b, c, x[i + 15], 10, -30611744);
|
||||
c = md5_ii(c, d, a, b, x[i + 6], 15, -1560198380);
|
||||
b = md5_ii(b, c, d, a, x[i + 13], 21, 1309151649);
|
||||
a = md5_ii(a, b, c, d, x[i + 4], 6, -145523070);
|
||||
d = md5_ii(d, a, b, c, x[i + 11], 10, -1120210379);
|
||||
c = md5_ii(c, d, a, b, x[i + 2], 15, 718787259);
|
||||
b = md5_ii(b, c, d, a, x[i + 9], 21, -343485551);
|
||||
|
||||
a = safe_add(a, olda);
|
||||
b = safe_add(b, oldb);
|
||||
c = safe_add(c, oldc);
|
||||
d = safe_add(d, oldd);
|
||||
}
|
||||
return [a, b, c, d];
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert an array of little-endian words to a string
|
||||
*/
|
||||
function binl2rstr(input) {
|
||||
var i,
|
||||
output = '';
|
||||
for (i = 0; i < input.length * 32; i += 8) {
|
||||
output += String.fromCharCode((input[i >> 5] >>> (i % 32)) & 0xFF);
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert a raw string to an array of little-endian words
|
||||
* Characters >255 have their high-byte silently ignored.
|
||||
*/
|
||||
function rstr2binl(input) {
|
||||
var i,
|
||||
output = [];
|
||||
output[(input.length >> 2) - 1] = undefined;
|
||||
for (i = 0; i < output.length; i += 1) {
|
||||
output[i] = 0;
|
||||
}
|
||||
for (i = 0; i < input.length * 8; i += 8) {
|
||||
output[i >> 5] |= (input.charCodeAt(i / 8) & 0xFF) << (i % 32);
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Calculate the MD5 of a raw string
|
||||
*/
|
||||
function rstr_md5(s) {
|
||||
return binl2rstr(binl_md5(rstr2binl(s), s.length * 8));
|
||||
}
|
||||
|
||||
/*
|
||||
* Calculate the HMAC-MD5, of a key and some data (raw strings)
|
||||
*/
|
||||
function rstr_hmac_md5(key, data) {
|
||||
var i,
|
||||
bkey = rstr2binl(key),
|
||||
ipad = [],
|
||||
opad = [],
|
||||
hash;
|
||||
ipad[15] = opad[15] = undefined;
|
||||
if (bkey.length > 16) {
|
||||
bkey = binl_md5(bkey, key.length * 8);
|
||||
}
|
||||
for (i = 0; i < 16; i += 1) {
|
||||
ipad[i] = bkey[i] ^ 0x36363636;
|
||||
opad[i] = bkey[i] ^ 0x5C5C5C5C;
|
||||
}
|
||||
hash = binl_md5(ipad.concat(rstr2binl(data)), 512 + data.length * 8);
|
||||
return binl2rstr(binl_md5(opad.concat(hash), 512 + 128));
|
||||
}
|
||||
|
||||
/*
|
||||
* Convert a raw string to a hex string
|
||||
*/
|
||||
function rstr2hex(input) {
|
||||
var hex_tab = '0123456789abcdef',
|
||||
output = '',
|
||||
x,
|
||||
i;
|
||||
for (i = 0; i < input.length; i += 1) {
|
||||
x = input.charCodeAt(i);
|
||||
output += hex_tab.charAt((x >>> 4) & 0x0F) +
|
||||
hex_tab.charAt(x & 0x0F);
|
||||
}
|
||||
return output;
|
||||
}
|
||||
|
||||
/*
|
||||
* Encode a string as utf-8
|
||||
*/
|
||||
function str2rstr_utf8(input) {
|
||||
return unescape(encodeURIComponent(input));
|
||||
}
|
||||
|
||||
/*
|
||||
* Take string arguments and return either raw or hex encoded strings
|
||||
*/
|
||||
function raw_md5(s) {
|
||||
return rstr_md5(str2rstr_utf8(s));
|
||||
}
|
||||
function hex_md5(s) {
|
||||
return rstr2hex(raw_md5(s));
|
||||
}
|
||||
function raw_hmac_md5(k, d) {
|
||||
return rstr_hmac_md5(str2rstr_utf8(k), str2rstr_utf8(d));
|
||||
}
|
||||
function hex_hmac_md5(k, d) {
|
||||
return rstr2hex(raw_hmac_md5(k, d));
|
||||
}
|
||||
|
||||
$.md5 = function (string, key, raw) {
|
||||
if (!key) {
|
||||
if (!raw) {
|
||||
return hex_md5(string);
|
||||
} else {
|
||||
return raw_md5(string);
|
||||
}
|
||||
}
|
||||
if (!raw) {
|
||||
return hex_hmac_md5(key, string);
|
||||
} else {
|
||||
return raw_hmac_md5(key, string);
|
||||
}
|
||||
};
|
||||
|
||||
}(typeof jQuery === 'function' ? jQuery : this));
|
||||
684
a8_za_Fine_aarto/public/Static_zy/www/js/languages/lang_en.js
Normal file
684
a8_za_Fine_aarto/public/Static_zy/www/js/languages/lang_en.js
Normal file
@@ -0,0 +1,684 @@
|
||||
var lang = {
|
||||
ACCUSED_CATEGORY:'Accused Category',
|
||||
ACCUSED_MOBILE:'Accused Mobile',
|
||||
ACCUSED_NAME:'Accused Name',
|
||||
ACCUSED_SIGNATURE:'Accused Signature',
|
||||
ACCUSED_TYPE:'Accused Type',
|
||||
ACCUSED_TYPE_DETAILS:'Accused Type Detail',
|
||||
ACCUSED:'Accused',
|
||||
ACCUSSED_AGE_YEARS:'Accused Age (Years)',
|
||||
ADD_FILTER:'Add Filter',
|
||||
ADD_NEW_FILTER:'Add new filter',
|
||||
ALL:'All',
|
||||
APPLICATION_OFFERS_CUSTOMIZED_INTERFACES_FOR_FOLLOWING_STAKEHOLDERS:'The application offers customized interfaces for the following stakeholders:',
|
||||
AS_PER_ADVISORY_ISSUED_MORTH_REQUESTING_TO_ALL_STATES_AND_UNION_TERRITORIES_TO_TREAT_DOCUMENTS:'As per advisory issued by MoRTH requesting to All the States and Union Territories to treat documents under MV Act & Rules, whose extension of validity could not or not likely be processed due to lock-down and which have expired since 1st of Feb 2020 or would expire by 31st of October 2021, as valid till 31st of October 2021.',
|
||||
BAD_REQUEST:'Bad Request',
|
||||
BOOK_ASSIGNED_SUCCESSFULLY:'Book Assigned Successfully!',
|
||||
BOOK_CAN_NOT_BE_ASSIGNED:'Book Cannot be Assigned',
|
||||
BOOK_NO:'Book No',
|
||||
BOOK_NO_FORM_NO:'Book No. / Form no.',
|
||||
BOOK_NUMBER:'Book Number',
|
||||
BOOK_NUMBER_IS_AVAILABLE:'Book Number is available',
|
||||
BOOK_STATUS:'Book Status',
|
||||
BOOK_TYPE:'Book Type',
|
||||
BRANCH_TYPE:'Branch Type',
|
||||
CANCEL:'Cancel',
|
||||
CANCEL_INVESTIGATION:'Cancel Investigation',
|
||||
CANCEL_REMOVING_OFFENCES:'Cancel Removing Offences',
|
||||
CANCELLATION_REASON_IS_REQUIRED:'Cancellation reason is required.',
|
||||
CAPACITY_BUILDING:'Capacity Building',
|
||||
CAPTCHA:'Captcha',
|
||||
CAPTCHA_NOT_MATCHED:'Captcha Not matched',
|
||||
CARD:'Card',
|
||||
CARD_AMOUNT:'Card Amount',
|
||||
CAPACITY_BUILDING:'Capacity Building',
|
||||
CASES_SENT_TO_COURT:'Cases Sent to Court',
|
||||
CASH:'Cash',
|
||||
CASH_AMOUNT:'Cash Amount',
|
||||
CASH_AT_BRANCH:'Cash At Branch',
|
||||
CCTV_CHALLAN:'CCTV Challan',
|
||||
CCTV_CHALLANS:'CCTV Challans',
|
||||
CCTV_IMAGE:' CCTV Image',
|
||||
CCTV_IMAGE_UPLOAD:'CCTV Image Upload',
|
||||
CHALLAN_CITY_CAN_NOT_BE_EXCEEDED_THAN_20_CHARACTERS:'Challan city can not be exceeded than 20 characters.',
|
||||
CHALLAN_DATE:'Challan Date',
|
||||
CHALLAN_DATE_TIME:'Challan Date Time',
|
||||
CHALLAN_DATE_TIME_IS_EMPTY:'Challan date time is empty',
|
||||
CHALLAN_DELETE_DATE:'Challan Delete Date',
|
||||
CHALLAN_DELETE_REMARK:'Challan Delete Remark',
|
||||
CHALLAN_DELETED_BY:'Challan Deleted By',
|
||||
CHALLAN_DETAILS:'Challan Details',
|
||||
CHALLAN_DETAILS_FOR_INVESTIGATE:'Challan Details For Investigate.',
|
||||
CHALLAN_DOES_NOT_EXIST:'Challan does not exist.',
|
||||
CHALLAN_FILE_UPLOAD:'Challan File Upload',
|
||||
CHALLAN_FINE_NOT_EQAUL:'Challan Fine not eqaul',
|
||||
CHALLAN_FORM_NO:'Challan Form No.',
|
||||
CHALLAN_FORM_NUMBER_DRIVER:'Challan Form Number(Driver)',
|
||||
CHALLAN_FORM_NUMBER_OWNER:'Challan Form Number (Owner)',
|
||||
CHALLAN_FORWARD_DATE:'Challan forward Date',
|
||||
CHALLAN_FOUND:'Challan Found.',
|
||||
CHALLAN_FREQUENCY:'Challan Frequency',
|
||||
CHALLAN_GENERATED_BY:'Challan Generated By',
|
||||
CHALLAN_HANDOVER_TO_NAIB_COURT:'Challan Handover to Naib Court',
|
||||
CHALLAN_HISTORY:'Challan History',
|
||||
CHALLAN_HISTORY_REPORT:'Challan_History_Report',
|
||||
CHALLAN_ID_CANNOT_BE_LEFT_BLANK:'Challan ID cannot be left blank',
|
||||
CHALLAN_ID_NOT_EMPTY:'Challan Id Not Empty.',
|
||||
CHALLAN_ID_NOT_SET:'Challan Id not set',
|
||||
CHALLAN_IN_COURT:'Challan In Court',
|
||||
CHALLAN_INVESTIGATION_APPROVED:'Challan Investigation Approved.',
|
||||
CHALLAN_INVESTIGATION_REJECTED:'Challan Investigation Rejected',
|
||||
CHALLAN_INVESTIGATION_REVERTED:'Challan Investigation Reverted',
|
||||
CHALLAN_IS_ALREADY_PAID:'Challan is already paid.',
|
||||
CHALLAN_ISSUE:'Challan issue',
|
||||
CHALLAN_LOCATION:'Challan Location',
|
||||
CHALLAN_LOCATION_CAN_NOT_BE_EXCEEDED_THAN_50_CHARACTERS:'Challan location can not be exceeded than 50 characters.',
|
||||
CHALLAN_LOG_UPLOADED_SUCCESSFULLY:'Challan Log Uploaded Successfully.',
|
||||
CHALLAN_NO:'Challan no',
|
||||
CHALLAN_LOCATION_CAN_NOT_BE_EXCEEDED_THAN_50_CHARACTERS:'Challan location can not be exceeded than 50 characters.',
|
||||
CHALLANS_DETAILS_FOUND:'Challans Details Found',
|
||||
CHALLAN_NOT_FOUND:'Challan Not Found',
|
||||
CHALLAN_NUMBER_CAN_NOT_BE_EXCEEDED_THAN_25_CHARACTERS:'Challan Number can not be exceeded than 25 characters.',
|
||||
CHALLAN_PLACE:'Challan Place',
|
||||
CHALLAN_PRINT:'Challan Print',
|
||||
CHALLAN_RATE:'Challan Rate',
|
||||
CHALLAN_REPORT:'Challan Report',
|
||||
CHALLAN_REVERTED_FROM_COURT:'Challan reverted from court',
|
||||
CHALLAN_SEND_TO_COURT:'Challan Send to Court',
|
||||
CHALLAN_SENT_TO_LOK_ADALAT_SUCCESSFULLY:'Challan Sent To Lok Adalat Successfully.',
|
||||
CHALLAN_SENT_TO_RECORD_ROOM_SUCCESSFULLY:'Challan Sent To Record Room Successfully.',
|
||||
CHALLAN_SENT_TO_RTA_SUCCESSFULLY:'Challan sent to RTA Successfully.',
|
||||
CHALLAN_SETTLED_SUCCESSFUL:'Challan Settled successful',
|
||||
CHALLAN_SOURCE:'Challan Source',
|
||||
CHALLAN_STATUS:'Challan Status',
|
||||
CHANGE_PASSWORD_STATUS:'Change Password Status',
|
||||
CHARACTERS_REMAINING_TO_WRITE:'characters remaining to write',
|
||||
CHASIS_NUMBER:'Chasis Number',
|
||||
CHOOSE_BRANCH_TYPE:'Choose Branch Type',
|
||||
CHOOSE_CIRCLE:'Choose Circle',
|
||||
CHOOSE_CITY:'Choose City',
|
||||
CHOOSE_DESIGNATION:'Choose Designation',
|
||||
CHOOSE_DISTRICT:'Choose District',
|
||||
CHOOSE_ROLE:'Choose Role',
|
||||
CHOOSE_RTO:'Choose RTO',
|
||||
CHOOSE_STATE:'Choose State',
|
||||
CHOOSE_USER:'Choose User',
|
||||
CHOOSE_USER_TYPE:'Choose User Type',
|
||||
CAPTCHA_NOT_MATCHED : 'Captcha not matched.',
|
||||
CIRCLE:'Circle',
|
||||
CIRCLE_AREA:'Circle/Area',
|
||||
CIRCLE_CREATED_SUCCUSSFULLY:'Circle created succussfully',
|
||||
CIRCLE_DELETED_SUCCESSFULLY:'Circle deleted successfully',
|
||||
CIRCLE_DETAILS_UPDATED_SUCCUSSFULLY:'Circle details updated succussfully',
|
||||
CIRCLE_ID:'Circle ID',
|
||||
CIRCLE_NAME:'Circle Name',
|
||||
CIRCLE_WISE:'Circle Wise',
|
||||
CITIZENS_PRIVATE_OR_COMMERCIAL_CAR_OWNERS_DRIVERS:'Citizens (private or commercial car owners/drivers)',
|
||||
CLOSE:'Close',
|
||||
CLOSED:'Closed',
|
||||
COMPARE:'Compare',
|
||||
COMPLAINT:'Complaint',
|
||||
COMPLETED:'Completed',
|
||||
COMPONDING_FEE:'Componding Fee',
|
||||
COMPOUND:'Compounding',
|
||||
COMPOUND_CHALLAN:'Compound Challan',
|
||||
COMPOUND_CHALLAN_DETAILS:'Compound Challan Details',
|
||||
COMPOUNDABLE:'Compoundable',
|
||||
COMPOUNDED_BY:'Compounded By',
|
||||
COMPOUNDING_AMOUNT:'Compounding Amount',
|
||||
COMPOUNDING_FEE:'Compounding Fee',
|
||||
COMPOUNDING_FEE_FINE:'Compounding fee/Fine',
|
||||
COMPOUNDING_FEE_IN_RS:'Compounding Fee(In Rs.)',
|
||||
CORE_BENEFIT_HEADING_1:'Efficient use of technology in providing an easy, efficient and comprehensive traffic enforcement system – which will ensure nation-wide data sharing and lead to better traffic discipline and road safety.',
|
||||
CORE_BENEFIT_HEADING_10:'Online payment of challans by citizen “anytime and anywhere”',
|
||||
CORE_BENEFIT_HEADING_11:'Court disposal will reflect directly to citizen / Department page. It will save lots of efforts and time of citizen and department officials.',
|
||||
CORE_BENEFIT_HEADING_12:'Any transaction on concerned vehicle/license will get blocked at RTO in case of pending challan',
|
||||
CORE_BENEFIT_HEADING_13:'Subsequent penalty to accused owner at all the state where challan is implemented. This will stop revenue loss of States.',
|
||||
CORE_BENEFIT_HEADING_2:'The system aims to provide a perfect solution for the current challenges which the transport departments is facing with respect to issuance of traffic challans, managing records/ back-end operations, tracking offence history, payments, reports etc. by leveraging latest technologies which are easy to use, adapt and implement at the ground level.',
|
||||
CORE_BENEFIT_HEADING_3:'Connecting all the stakeholders through a common system which is ensuring data integrity, reliability and transparency. End to end automation of the process will ensure efficiency at each level of users. 100% digitization and documentation of records will help in improving the visibility on offenders, types of offences frequently committed, payments received on time etc.',
|
||||
CORE_BENEFIT_HEADING_4:'Minimizing time and efforts of citizen in making payments or follow-up actions which they face after getting challan on Road',
|
||||
CORE_BENEFIT_HEADING_5:'Minimizing Revenue loss and enhance transparency',
|
||||
CORE_BENEFIT_HEADING_6:'Providing real time Road Safety implementation report to the Ministry/ State Govts for data driven policy making.',
|
||||
CORE_BENEFIT_HEADING_7:'Easy and efficient challaning option for Transport Enforcement Officers and Traffic Police officers Completely customizable as per state/ department requirements',
|
||||
CORE_BENEFIT_HEADING_8:'Central Monitoring of Road Safety Policy implementation.',
|
||||
CORE_BENEFIT_HEADING_9:'No duplicate or fake challans (Comprehensive monitoring, audit option for each individual challan or concerned official by department remotely)',
|
||||
CORE_BENEFITS:'Core Benefits',
|
||||
COURT:'Court',
|
||||
COURT_ADDRESS:'Court Address',
|
||||
COURT_CHALLAN_REPORT:'Court Challan Report',
|
||||
COURT_CHALLANS:'Court Challans',
|
||||
COURT_CREATED_SUCCUSSFULLY:'Court created succussfully',
|
||||
COURT_DATE:'Court_Date',
|
||||
COURT_DATE_FIXED_FOR:'Court Date Fixed For',
|
||||
COURT_DELETED_SUCCESSFULLY:'Court deleted successfully',
|
||||
COURT_DETAILS_UPDATED_SUCCUSSFULLY:'Court details updated succussfully',
|
||||
COURT_HEARING_DATE:'Court Hearing Date',
|
||||
COURT_JUDGE:'Court/Judge',
|
||||
COURT_LIST:'Court List',
|
||||
COURT_NAME:'Court Name',
|
||||
COURT_NUMBER:'Court Number',
|
||||
COURT_RECEIPT_NO:'Court receipt no.',
|
||||
COURT_RELEASE_DETAIL:'Court Release Detail',
|
||||
COURT_RELEASE_DETAIL_UPDATED_SUCCESSFULLY:'Court Release Detail Updated Successfully.',
|
||||
COURT_RELEASE_ORDERS:'Court Release Orders',
|
||||
COURT_RELEASE_REPORT:'Court Release Report',
|
||||
COURTS:'Courts',
|
||||
DATE:'Date',
|
||||
DELETED:'Deleted',
|
||||
DELETED_BY_USER_TYPE:'Deleted By User Type',
|
||||
DELETED_BY_USERNAME:'Deleted By Username',
|
||||
DELETED_CHALLAN_REPORT:'Deleted challan report',
|
||||
DENY_TO_EDIT_CHALLANS:'Deny to edit challans',
|
||||
DEPARTMENT_LOGIN:'Department Login',
|
||||
DEPARTMENT_REFERENCE_NO_RETURN_SUCCESSFULLY:'Department Reference no. return successfully.',
|
||||
DEPARTMENT_TYPE_IS_INVALID:'Department Type is invalid!',
|
||||
DEPARTMENT_USER:'Department User',
|
||||
DESIGNATION:'Designation',
|
||||
DESIGNATION_LIST:'Designation List',
|
||||
DESIGNATION_OF_COURT:'Designation Of Court',
|
||||
DESIGNATION_OF_ENFORCEMENT_OFFICER:'Designation of Enforcement Officer',
|
||||
DESIGNATION_OF_THE_OFFICIAL_TO_BE_DETAINED:'Designation of the official to be detained',
|
||||
DEVICE:'Device',
|
||||
DEVICE_APPROVED_SUCCESSFULLY:'Device approved succussfully',
|
||||
DEVICE_CHALLAN:'Device Challan',
|
||||
DEVICE_DELETED_SUCCESSFULLY:'Device Deleted succussfully',
|
||||
DEVICE_DETAILS:'Device Details',
|
||||
DEVICE_IMEI_NUMBER:'Device IMEI Number',
|
||||
DEVICE_IS_NOT_REGISTERED:'Device is not registered.',
|
||||
DEVICE_IS_REGISTERED:'Device is registered',
|
||||
DEVICE_USED_RECENTLY_AT:'Device Used Recently At',
|
||||
DEVICE_USED_RECENTLY_BY:'Device Used Recently By',
|
||||
DIGITAL_EMPOWERMENT:'Digital Empowerment',
|
||||
DISPOSED_CASES:'Disposed Cases',
|
||||
DOCUMENT:'Document',
|
||||
DOCUMENT_IMPOUNDED:'Document Impounded',
|
||||
ECHALLAN_ENABLERS_PARA_1:'eChallan system envisages a complete shift of traffic enforcement operations from a primarily manual process to a technology-intensive process – which is much more efficient, comprehensive, transparent and at the same time very user-friendly. The process of challan issuance and disposal, management and monitoring of concerned staff and their performance, payment collection system and so on – all are set to be provided on a technological platform. Monitoring, Reporting, Back-end processing and integration with concerned stake-holders are all going to be much more comprehensive and feature-rich.',
|
||||
ECHALLAN_ENABLERS_PARA_2:'Comprehensive training and hand-holding to all operational staffs of the concerned department (Transport Enforcement/ Traffic Police) provided before and after implementation. Starting with demonstration of app/application to top-level officials, to detailed training schedule to operational staff, field level run with actual device and then finally to real challaning operations – at all stages, complete support is provided by NIC support team.',
|
||||
ECHALLAN_ENABLERS_PARA_3:'eChallan is a generic app/ application which can be used by all states (both Transport Enforcement and Traffic Police) as deployed on a common platform. However, all necessary configurations, customizations and additional enhancements are taken care of and integrated into the system as per the requirements of the state/ department, in order to meet specific acts/ rules/ processes/ formats/ protocols etc.',
|
||||
E_CHALLAN_ENABLERS:'e-challan Enablers',
|
||||
EDIT:'Edit',
|
||||
EDIT_AREA:'Edit Area',
|
||||
EDIT_BY:'Edit By',
|
||||
EDIT_BY_OFFICER_NAME:'Edit By(Officer Name)',
|
||||
EDIT_COURT:'Edit Court',
|
||||
EDIT_DISTRICT:'Edit District',
|
||||
EDIT_DISTRICT_NAME:'Edit District Name',
|
||||
EDIT_EXTENDED_OFFENCES:'Edit Extended Offences',
|
||||
EDIT_MOBILE_NUMBER:'Edit Mobile Number',
|
||||
EDIT_NGO_DETAILS:'Edit NGO detail',
|
||||
EDIT_OFFENCE:'Edit Offence',
|
||||
EDIT_OFFENCES:'Edit Offence',
|
||||
EDIT_RTO:'Edit RTO',
|
||||
EDIT_TARGET_CHALLAN_DETAILS:'Edit Target Challan Details',
|
||||
EDIT_USER:'Edit User',
|
||||
EDIT_VEHICLE_NO:'Edit Vehicle No.',
|
||||
EDIT_VEHICLE_NUMBER:'Edit Vehicle Number',
|
||||
EMAIL_ENTERED_EXCEEDED_MAX_LIMIT:'Email Entered Exceeds The Maximum Length of 50',
|
||||
EMAIL:'Email',
|
||||
EMAIL_ADDRESS:'Email Address',
|
||||
EMAIL_DOES_NOT_EXIST:'Record does not exist.',
|
||||
EMAIL_ID:'Email ID',
|
||||
EMAIL_ID_ALREADY_TAKEN:'This Email Id is already taken',
|
||||
EMAIL_ID_IS_AVAILABLE:'Email Id is available',
|
||||
EMAIL_LINK:'Email Link',
|
||||
EMPLOYEE_ID:'Employee ID',
|
||||
EMPLOYEE_ID_ALREADY_EXIST:'Employee ID is already exist',
|
||||
EMPLOYEE_ID_IS_AVAILABLE:'Employee ID is available',
|
||||
EMPLOYEE_ID_NOT_ASSING_THIS_USER:'Employee id not assign for this user',
|
||||
ENABLE_VIRTUAL_COURT:'Enable Virtual Court?',
|
||||
ENCLOSURES:'Enclosures',
|
||||
END_DATE:'End Date',
|
||||
END_FINE_RANGE:'End Fine Range',
|
||||
END_OF_PENDING_CHALLANS_AND_OFFENCES_AGAINST_VEHICLE_NO:'End of Pending Challans and Offences against Vehicle No',
|
||||
ENFN_SHOWCAUSE:'ENFN ShowCause',
|
||||
ENFORCEMENT_BRANCH:'Enforcement Branch',
|
||||
ENFORCEMENT_OFFICER_NAME_AND_DESIGNATION:'Enforcement Officer Name and Designation',
|
||||
ENFORCEMENT_OFFICERS:'Enforcement officers',
|
||||
ENTER_ACCUSED_NAME:'Enter Accused Name',
|
||||
ENTER_BOOK_NUMBER:'Enter Book Number',
|
||||
Enter_CHALLAN_NUMBER:'Enter Challan Number',
|
||||
ENTER_DL_NUMBER:'Enter DL Number',
|
||||
ENTER_DRIVING_LICENSE_NUMBER:'Enter Driving License Number',
|
||||
ENTER_EMPLOYEE_ID:'Enter Employee Id',
|
||||
ENTER_FORM_NUMBER:'Enter Form Number',
|
||||
ENTER_MOBILE_NUMBER:'Enter mobile number',
|
||||
ENTER_NEW_PASSWORD:'Enter New Password',
|
||||
ENTER_VEHICLE_CHASIS_NUMBER:'Enter Vehicle Chasis Number',
|
||||
ENTER_VEHICLE_ENGINE_NUMBER:'Enter Vehicle Engine Number',
|
||||
ENTER_VEHICLE_NUMBER:'Enter Vehicle Number',
|
||||
ERROR_OCCURED_WHILE_UPLOADING:'An error occurred uploading the file!',
|
||||
ERROR_TRY_AGAIN:'Error try again',
|
||||
ETICKET_NUMBER:'E-Ticket No: ',
|
||||
FAILED_PLEASE_TRY_AGAIN:'Failed please try again',
|
||||
FEMALE:'Female',
|
||||
FILTER_PANEL:'Filter Panel',
|
||||
FILTERS:'Filters',
|
||||
FINE:'Fine',
|
||||
FINE_AMOUNT:'Fine Amount',
|
||||
FINE_AMOUNT_NOT_MATCH_WITH_OUR_DATABASE_THE_CHALLAN:'The fine amount does not matches with our database for the challan!',
|
||||
FINE_AMOUNT_PAID:'Fine Amount Paid',
|
||||
FINE_AMOUNT_RS:'Fine amount(Rs.)',
|
||||
FINE_BY_COURT_AMOUNT:'Fine by Court Amount',
|
||||
FINE_IMPOSED:'Fine Imposed',
|
||||
FINE_JUDGEMENT_DETAIL:'Fine/Judgement Detail',
|
||||
FINE_JUDGMENT_DETAIL:'Fine/Judgment Detail',
|
||||
FINE_OF_RS_500_OR_THREE_MONTHS_IMPRISONMENT_OR_BOTH:'Fine of Rs. 500/- or three months imprisonment or both.',
|
||||
FIRST_NAME:'First Name',
|
||||
FITNESS_UPTO:'Fitness Upto',
|
||||
FLAT_RATE_1:'Flat Rate 1',
|
||||
FLAT_RATE_2:'Flat Rate 2',
|
||||
FILE_NAME_TOO_LARGE_FILE_MUST_BE_LESS_THAN_50_CHARACTERS:'File name too large. File must be less than 50 characters.',
|
||||
FILE_TOO_LARGE_FILE_MUST_BE_LESS_THAN_5_MEGABYTES:'File too large. File must be less than 5 megabytes.',
|
||||
FILE_UPLOADED_SUCCESSFULLY:'File Uploaded Successfully.',
|
||||
FORM_NO:'Form No',
|
||||
FORM_NOT_AVAILABLE:'Form not available',
|
||||
FORM_NUMBER:'Form Number',
|
||||
FORM_NUMBER_IS_AVAILABLE:'Form Number is available',
|
||||
FORWARD_DATE:'Forward Date',
|
||||
FROM_DATE:'From date',
|
||||
FROM_DATE_MUST_BE_LESS_THAN_OR_EQUAL_TO:'From date must be less than or Equal to',
|
||||
FUEL:'Fuel',
|
||||
FULL_NAME:'Full Name',
|
||||
FULL_NAME_AND_SIGNATURE_OF_THE_DRIVER:'Full name and signature of the driver',
|
||||
GENDER:'Gender',
|
||||
GET_CHALLANS_FROM_WHOLE_STATE:'Get challans from whole state',
|
||||
GOVERNMENT_PROCESS_REENGINEERING:'Government Process Reengineering',
|
||||
HEARING:'Hearing',
|
||||
HEARING_DATE:'Hearing Date',
|
||||
HELMET_AND_SEATBELT_DAILY_REPORT:'Helmet And Seatbelt Daily Report',
|
||||
HIDE_CARDS:'Hide Cards',
|
||||
IMPORTANT_NOTICE:'Important Notice',
|
||||
IMPOUND:'Impound',
|
||||
IMPOUND_DOCUMENT:'Impound Document',
|
||||
IN_COURT:'In Court',
|
||||
INVALID_CAPTCHA:'Invalid Captcha',
|
||||
INVALID_CHALLAN_NUMBER:'Invalid Challan Number.',
|
||||
INVAID_CHALLAN_NO_PLEASE_FILL_CORRECT_INFORMATION:'Inavlid challan no. Please fill correct information.',
|
||||
INVALID_CHASIS_NUMBER:'Invalid chassis number',
|
||||
INVALID_DRIVING_LICENSE_NUMBER:'Invalid Driving License Number',
|
||||
INVALID_ENGINE_NUMBER:'Invalid engine number',
|
||||
INVALID_FILE:'Invalid File.',
|
||||
INVALID_FILE_DOTS_IN_FILE_NAME_IS_NOT_ALLOWED:'Invalid file. Dots in file name is not allowed.',
|
||||
INVALID_FILE_EXTENSION_ONLY_JPEG_JPG_PNG_JPG_PNG_JPEG_TYPES_ARE_ACCEPTED:'Invalid file extension. Only jpeg, jpg, png, JPG, PNG, JPEG types are accepted.',
|
||||
INVALID_FILE_TYPE_ONLY_JPEG_JPG_PNG_JPG_PNG_JPEG_TYPES_ARE_ACCEPTED:'Invalid file type. Only jpeg, jpg, png, JPG, PNG, JPEG types are accepted.',
|
||||
INVALID_SHIFT_PLEASE_TRY_TO_LOGIN_IN_YOUR_ALLOTTED_SHIFT : 'Invalid shift. Please try to login in your allotted shift.',
|
||||
INVALID_IP_PLEASE_TRY_TO_LOGIN_WITH_YOUR_REGISTERED_IP : 'Invalid IP. Please try to login with your registered IP.',
|
||||
INVALID_MOBILE_NUMBER_PLEASE_UPDATE : 'Your mobile number is Invalid/not available in VAHAN. Kindly update your mobile number through Parivahan portal. (https://parivahan.gov.in/parivahan)',
|
||||
INVALID_OTP_PLEASE_TRY_AGAIN : 'Invalid OTP. Please try again.',
|
||||
INVALID_PASSWORD:'Invalid Password',
|
||||
INVALID_REQUEST:'Inavlid Request',
|
||||
INVALID_VEHICLE_DATA:'Invalid Vehicle Data',
|
||||
INVALID_VEHICLE_NUMBER:'Invalid Vehicle Number.',
|
||||
INVESTIGATION_APPROVED:'Investigation Approved',
|
||||
IP:'IP',
|
||||
ISSUE_DESCRIPTION_CAN_NOT_BE_EXCEEDED_THAN_500_CHARACTERS:'Issue description can not be exceeded than 500 characters.',
|
||||
LAST_LOGIN:'Last Login',
|
||||
LEARNINGS_FOR_SHARING:'Learnings for sharing',
|
||||
LOCATION:'Location',
|
||||
LOCATION_EXCEEDS_THE_MAXIMUM_LENGTH_OF_50:'Location Exceeds The Maximum Length of 50',
|
||||
LOCATION_WISE_CHALLAN_REPORT:'Location Wise Challan Report',
|
||||
LOCATION_WISE_REPORT:'Location Wise Report',
|
||||
LOGIN:'login',
|
||||
LOGIN_DATE:'Login Date',
|
||||
LOGIN_SUCCESSFULLY:'Login successfully.',
|
||||
LOGOUT:'Logout',
|
||||
LOST:'Lost',
|
||||
LST:'LST',
|
||||
MALE:'Male',
|
||||
MANAGE_OFFENCE:'Manage Offence',
|
||||
MANAGE_ROLE:'Manage Role',
|
||||
MANAGE_ROLES:'Manage Roles',
|
||||
MANAGE_USER:'Manage User',
|
||||
MANUAL:'Manual',
|
||||
MANUAL_CHALLAN:'Manual Challan',
|
||||
MANUAL_CHALLAN_REPORT:'Manual Challan Report',
|
||||
MAXIMUM_SEARCH_EXCEEDED:'Maximum search exceeded for today.',
|
||||
MAXIMUM_RESET_PASSWORD_EXCEEDED:'Maximum reset password limit exceeded for today.',
|
||||
MESSAGE:'Message',
|
||||
MESSAGE_SEND_FAILED:'Message send failed',
|
||||
MESSAGE_SEND_SUCCESSFULLY:'Message send successfully',
|
||||
MESSAGE_SENDING_FAILLED:'Message sending failled.',
|
||||
MESSAGE_SENT:'Message sent',
|
||||
MINISTRY_OF_ROAD_AND_TRANSPORT:'Ministry of Road and Transport',
|
||||
MOBILE_NUMBER:'Mobile Number',
|
||||
NAME_ENTERED_EXCEEDS_THE_MAXIMUM_LENGTH_OF_50:'Name Entered Exceeds The Maximum Length of 50',
|
||||
NEW_PASSWORD_DIFFERENT_OLD_PASSWORD:'New password must be different from old password',
|
||||
NEW_PASSWORD_DIFFERENT_LAST_3_PASSWORD:'New password must be different from your last three passwords',
|
||||
NGO:'NGO',
|
||||
NGO_CREATED_SCCESSFULLY:'NGO created succussfully',
|
||||
NGO_DELETED_SUCCESSFULLY:'NGO deleted successfully',
|
||||
NGO_DETAILS_UPDATED_SUCCESSFULLY:'NGO details updated succussfully',
|
||||
NIC_ADMIN:'NIC admin',
|
||||
NO_USER_FOUND:'No user found',
|
||||
NO_VEHICLE_FOUND:'No Vehicle Found',
|
||||
NON_COMPOUNDABLE:'Non-Compoundable',
|
||||
NORMAL_OFFENCES:'Normal Offences',
|
||||
NORMS_DESCRIPTION:'Norms Description',
|
||||
NOT_CONSUMED_BY_VCOURTS:'Not Consumed by Vcourts',
|
||||
NOT_PERMISSIBLE:'Not Permissible',
|
||||
NOT_SENT_TO_COURT:'Not Sent To Court',
|
||||
OFFENCE:'Offence',
|
||||
OFFENCES:'Offences',
|
||||
OFFENCES_CAN_NOT_BE_BLANK:'Offences can not be blank',
|
||||
OFFICER:'Officer',
|
||||
OFFICER_ASSIGNED_SUCCESSFULLY:'Officer Assigned Successfully',
|
||||
OFFICER_LIST:'Officer List',
|
||||
OFFICER_NAME:'Officer Name',
|
||||
OFFICER_NOT_ASSIGNED:'Officer not assigned',
|
||||
OFFICER_PAYMENT_REVERTED_SUCCESSFULLY:'Officer payment reverted successfully',
|
||||
OFFICER_TRANSFER:'Officer Transfer',
|
||||
OFFICER_WISE_CHALLAN_DIARY_DATED:'Officer Wise Challan Diary Dated',
|
||||
OFFICER_WISE_CHALLAN_PAYMENT_DETAILS:'Officer Wise Challan Payment Details',
|
||||
OFFICER_WISE_CHALLAN_PAYMENT_HISTORY:'Officer Wise Challan Payment History',
|
||||
OFFICERS:'Officers',
|
||||
OFFICERS_DETAILS_FOUND:'Officers Details Found',
|
||||
OFFICERS_LIST:'Officers List',
|
||||
OFFICERS_NOT_FOUND:'Officers Not Found',
|
||||
OFFICERS_WISE_CHALLAN_DETAILS:'Officers Wise Challan Details',
|
||||
OFFICERS_WISE_CHALLAN_REPORT:'Officers Wise Challan Report',
|
||||
OFFLINE:'Offline',
|
||||
OFFLINE_CASH_AT_OFFICE:'Offline Cash at office',
|
||||
OFFLINE_RECEIPT:'Offline Receipt',
|
||||
OFFLINE_RECEIVED_RS:'Offline Received Rs',
|
||||
OFFSITE_MANUAL_RECEIPT:'Offsite Manual Receipt',
|
||||
OFFSITE_ONLINE_REVENUE_COLLECTED:'Offsite Online Revenue Collected',
|
||||
OFFSITE_REVENUE_COLLECTED_THROUGH_MANUAL_RECEIPT:'Offsite Revenue Collected Through Manual Receipt',
|
||||
OK:'OK',
|
||||
ONLY:'only',
|
||||
ON_ROAD:'On Road',
|
||||
ON_ROAD_DISPOSED:'On Road Disposed',
|
||||
ON_SPOT:'On Spot',
|
||||
ON_SPOT_PAYMENT:'On Spot payment',
|
||||
ONE_NATION_ONE_CHALLAN:'One Nation One Challan',
|
||||
ONE_TIME_PASSWORD_HAS_BEEN_SENT_TO_YOUR_REGISTERED_MOBILE_NO:'One Time Password (OTP) has been sent to your registered Mobile No *******',
|
||||
ONLINE:'Online',
|
||||
ONLINE_AMOUNT:'Online Amount',
|
||||
ONLINE_AT:'Online at',
|
||||
ONLINE_AT_DISTRICT_CHALLANING_BRANCH_WEB_SITE_POSTAL_CHALLAN:'Online at District Challaning Branch web site (Postal Challan)',
|
||||
ONLINE_CASH_AT_OFFICE:'Online Cash At Office',
|
||||
ONLINE_COMPOUNDED_CHALLAN_COUNT:'Online Compounded Challan Count',
|
||||
ONLINE_COMPOUNDING_FEE_AMOUNT_IN_RS:'Online Compounding Fee Amount (in Rs)',
|
||||
ONLINE_PAYMENT:'Online Payment',
|
||||
ONLINE_PAYMENT_CHALLAN_REPORT:'Online Payment Challan Report',
|
||||
ONLINE_PAYMENT_DONE_BY_OFFENDER:'Online payment done by offender',
|
||||
ONLINE_PAYMENT_SERVICE_IS_NOT_AVAILABLE:'Online Payment Service is not available',
|
||||
ONLINE_PAYMENT_SERVICE_IS_NOT_RESPONDING_PLEASE_TRY_AGAIN:'Online Payment Service is not responding. Please try again.',
|
||||
ONLINE_RECEIPT:'Online Receipt',
|
||||
OTP_IS_NOT_VALID:'OTP is not valid.',
|
||||
OTP_SENDING_FAILED:'OTP sending failed',
|
||||
OTP_SENT_SUCCESSFULLY:'OTP sent successfully',
|
||||
OTP_SENT_SUCCESSFULLY_PLEASE_CHECK_YOUR_MOBILE:'OTP sent successfully. Please check your mobile.',
|
||||
PAGE_NOT_FOUND:'Page Not Found',
|
||||
PAID:'Paid',
|
||||
PAID_AMOUNT:'Paid Amount',
|
||||
PASSWORD_DOES_NOT_MATCH:'Password does not match',
|
||||
PASSWORD_MUST_CONTAINS:'Password must be contain at least one lower character, one upper character, one number, one special character',
|
||||
PASSWORD_MUST_CONTAINS_WITH_LENGTH:'Password must be contain at least one lower character, one upper character, one number, one special character, minimum 8 digits and maximum 15 digits',
|
||||
PASSWORD_NOT_MATCHED:'Password Not matched',
|
||||
PASSWORD_NOT_FOUND_IN_DATABASE:'Password not found in database',
|
||||
PASSWORD_POLICY:'New Password must be contain at least one lower character, one upper character, one number, one special character, minimum 8 digits and maximum 15 digits.',
|
||||
PAY_ONLINE:'Pay Online',
|
||||
PAYMENT:'Payment',
|
||||
PAYMENT_ALREADY_DONE:'Payment already done',
|
||||
PAYMENT_AMOUNT_CANNOT_BE_LEFT_BLANK:'Payment amount cannot be left blank',
|
||||
PAYMENT_AND_E_NOTICE_RELATED_INFORMATION_OR_CAN_PAY_FINE_AMOUNT_ONLINE_MENTIONED:'Payment and any e notice related information or can pay fine amount online details mentioned at back',
|
||||
PAYMENT_AT_OFFICE:'Payment at Office',
|
||||
PAYMENT_CANNOT_BE_SAVED_AS_CHALLAN_HAS_BEEN_SENT_TO_COURT:'Payment cannot be saved as the challan has been sent to court.',
|
||||
PAYMENT_COMPLETED:'Payment Completed',
|
||||
PAYMENT_DATE:'Payment Date',
|
||||
PAYMENT_ISSUE:'Payment issue',
|
||||
PAYMENT_MODE:'Payment Mode',
|
||||
PAYMENT_NOT_INITIATED:'Payment not initiated.',
|
||||
PAYMENT_PENDING_YOU_CAN_NOT_RELEASE_DOCUMENT:'Payment pending! You can not release document.',
|
||||
PAYMENT_PENDING_YOU_CAN_NOT_RELEASE_VEHICLE:'Payment pending! You can not release vehicle.',
|
||||
PAYMENT_RECEIVED_SUCCESSFULLY:'Payment Received Successfully.',
|
||||
PAYMENT_SOURCE:'Payment Source',
|
||||
PAYMENT_SOURCE_REMARKS:'Payment Source Remarks',
|
||||
PAYMENT_STATUS:'Payment Status',
|
||||
PAYMENT_STATUS_CANNOT_BE_LEFT_BLANK:'Payment Status cannot be left blank',
|
||||
PAYMENT_STATUS_UPDATED:'Payment status updated',
|
||||
PAYMENT_SUCCESSFUL:'Payment successful',
|
||||
PAYMENT_TRANSACTION_NUMBER:'Payment Transaction Number',
|
||||
PAYMENT_TYPE:'Payment Type',
|
||||
PENDING:'Pending',
|
||||
PENDING_AMOUNT:'Pending Amount',
|
||||
PENDING_CASES:'Pending Cases',
|
||||
PLEASE_CONTACT_TO_STATE_ADMIN_AND_UPDATE_YOUR_CORRECT_MOBILE_NUMBER:'Please contact to state admin and update your correct mobile number.',
|
||||
PLEASE_ENTER_6_15_DIGITS_NEW_PASSWORD:'Please enter 8 to 15 digits new password',
|
||||
PLEASE_ENTER_CHALLAN_NUMBER:'Please enter Challan number.',
|
||||
PLEASE_ENTER_EITHER_CHASSIS_NUMBER_OR_ENGINE_NUMBER:'Please enter either chassis number or engine number',
|
||||
PLEASE_ENTER_ISSUE_IN_COMMENT_BOX:'Please enter issue in comment box.',
|
||||
PLEASE_ENTER_NAME:'Please enter name.',
|
||||
PLEASE_ENTER_NEW_PASSWORD_AND_CONFIRM_PASSWORD:'Please enter new password and confirm password.',
|
||||
PLEASE_ENTER_OLD_PASSWORD:'Please enter old password',
|
||||
PLEASE_ENTER_ONLY_NUMBERS:'Please enter only Numbers.',
|
||||
PLEASE_ENTER_OTP:'Please enter OTP',
|
||||
PLEASE_ENTER_VALID_CAPTCHA:'Please enter valid captcha.',
|
||||
PLEASE_ENTER_VALID_CHALLAN_NO:'Please enter valid challan no.',
|
||||
PLEASE_ENTER_VALID_LAST_5_DIGIT_ENGINE_NUMBER_OR_CHASIS_NUMBER:'Please enter valid last 5 digit engine number or chasis number.',
|
||||
PLEASE_ENTER_VALID_DRIVING_LICENSE_NUMBER:'Please enter valid Driving License number.',
|
||||
PLEASE_ENTER_VALID_CREDENTIALS : 'Please enter valid credentials.',
|
||||
PLEASE_ENTER_VALID_EMAIL:'Please Enter Valid Email',
|
||||
PLEASE_ENTER_VALID_MOBILE_NO:'Please enter valid mobile number.',
|
||||
PLEASE_ENTER_VALID_NEW_PASSWORD:'Please enter valid new password',
|
||||
PLEASE_ENTER_VALID_OTP:'Please enter valid OTP.',
|
||||
PLEASE_ENTER_VALID_E_TICKET_NUMBER:'Please enter valid e-ticket number.',
|
||||
PLEASE_ENTER_VEHICLE_NUMBER:'Please enter vehicle number',
|
||||
PLEASE_ENTER_VEHICLE_DL_NUMBER:'Please enter vehicle/DL number.',
|
||||
PLEASE_ENTER_YOUR_OTP:'Please enter your OTP.',
|
||||
PLEASE_FILL_ALL_MANDATORY_FIELDS:'Please fill all mandatory fields.',
|
||||
PENDING_FOR_APPROVAL:'Pending for approval',
|
||||
PENDING_FOR_INVESTIGATION:'Pending for Investigation',
|
||||
PENDING_FROM_COURT:'Pending from Court',
|
||||
PLEASE_SEARCH_CHALLANS_THROUGH_SEARCH_OPTIONS:'Please search the challans through search options',
|
||||
PLEASE_SELECT_ANY_AUTHORITY:'Please select any authority',
|
||||
PLEASE_SELECT_ANY_CIRCLE:'Please select any Circle',
|
||||
PLEASE_SELECT_ANY_COURT:'Please select any Court',
|
||||
PLEASE_SELECT_AT_LEAST_ONE_OFFENCE_TO_REMOVE:'Please select at least one offence to remove.',
|
||||
PLEASE_SELECT_BOOK_NUMBER:'Please select book number.',
|
||||
PLEASE_SELECT_CHALLAN_DATE_AND_TIME:'Please select challan date and time.',
|
||||
PLEASE_SELECT_CHALLAN_ISSUE:'Please Select Challan Issue',
|
||||
PLEASE_SELECT_CHALLAN_STATE:'Please Select Challan State',
|
||||
PLEASE_SELECT_CHALLAN_STATUS:'Please Select Challan Status',
|
||||
PLEASE_SELECT_COURT:'Please select court',
|
||||
PLEASE_SELECT_COURT_HEARING_DATE:'Please select court hearing date.',
|
||||
PLEASE_SELECT_AN_ISSUE:'Please select an issue.',
|
||||
PLEASE_SELECT_STATE:'Please select state',
|
||||
REGIONAL_TRANSPORT_TRAFFIC_OFFICE:'Regional transport/Traffic office',
|
||||
RELEASED:'Released',
|
||||
RELEASED_CHALLAN_COUNT_BY_COURT:'Released Challan Count by Court',
|
||||
RELEASED_COMPOUNDING_FEE:'Released Compounding Fee',
|
||||
RELEASED_DATE:'Released date',
|
||||
RELEASED_FROM_COURT:'Released from Court',
|
||||
RELEASED_VEHICLES:'Released Vehicles',
|
||||
REMARK:'Remark',
|
||||
REMARKS:'Remarks',
|
||||
REMOVE_IMPOUND_VEHICLE:'Remove Impound Vehicle',
|
||||
REMOVE_OFFENCES:'Remove Offences',
|
||||
REMOVE_REQUEST:'Remove Request',
|
||||
RESET:'Reset',
|
||||
RESET_PASSWORD:'Reset Password',
|
||||
RESET_PASSWORD_RECOVERY_FIELD_THAT_YOU_USE_SIGN_IN:'To reset you password, enter the recovery field that you use to sign in to E-Challan.',
|
||||
RESIDENT_OF:'Resident of',
|
||||
RESOLVE_ISSUE:'Resolve Issue',
|
||||
RESOLVED:'Resolved',
|
||||
RESOURCE_NOT_FOUND:'Resource Not Found',
|
||||
RESULT_NOT_FOUND_IN_DATABASE:'Result not found in database',
|
||||
RETURNED:'Returned',
|
||||
RETURNED_DATE:'Returned Date',
|
||||
REVENUE_COLLECTED:'Revenue Collected',
|
||||
REVENUE_PENDING:'Revenue Pending',
|
||||
RTO:'RTO',
|
||||
RTO_ADDRESS:'RTO Address',
|
||||
RTO_CODE:'RTO Code',
|
||||
RTO_CREATED_SUCCUSSFULLY:'Rto created succussfully',
|
||||
RTO_DELETED_SUCCESSFULLY:'RTO deleted successfully',
|
||||
RTO_DETAILS_UPDATED_SUCCUSSFULLY:'RTO details updated succussfully',
|
||||
RTO_LIST:'RTO List',
|
||||
RTO_MAPPED_SUCCESSFULLY:'RTO Mapped Successfully',
|
||||
RTO_NAME:'RTO Name',
|
||||
RTO_NOT_MAPPED:'RTO not mapped',
|
||||
RTO_RANGE:'RTO Range',
|
||||
RTO_WISE_CHALLAN_REPORT:'RTO Wise Challan Report',
|
||||
SELECT:'Select',
|
||||
SELECT_ALL:'Select all',
|
||||
SELECT_AREA:'Select Area',
|
||||
SELECT_ATLEAST_ONE_OFFICER:'Select atleast one officer',
|
||||
SELECT_BOOK_STATUS:'Select Book Status',
|
||||
SELECT_CHALLAN_BOOKING_OFFICERS:'Select challan booking officers',
|
||||
SELECT_CHALLAN_BOOK_TYPE:'Select Challan Book Type',
|
||||
SELECT_CHALLAN_FREQUENCY:'Select Challan Frequency',
|
||||
SELECT_CHALLAN_LOCATION_POLICE_STATION:'Select Challan Location (Police Station)',
|
||||
SELECT_CHALLAN_SOURCE:'Select Challan Source',
|
||||
SELECT_CHALLAN_TYPE:'Select Challan Type',
|
||||
SELECT_CIRCLES:'Select Circles',
|
||||
SELECT_COURT:'Select court',
|
||||
SELECT_DATE_OF_BIRTH:'Select Date Of Birth',
|
||||
SELECT_DATE_TYPE:'Select Date Type',
|
||||
SELECT_DESIGNATION:'Select Designation',
|
||||
SELECT_DESIGNATION_TYPE:'Select Designation Type',
|
||||
SELECT_DISTRICT:'Select District',
|
||||
SELECT_DOC_IMPOUND_STATUS:'Select Doc Impound status',
|
||||
SELECT_DOCUMENT_TYPE:'Select Document Type',
|
||||
SELECT_GENDER:'Select gender',
|
||||
SELECT_LOCATION:'Select Location',
|
||||
SELECT_MOBILE_FILTER:'Select Mobile Filter',
|
||||
SELECT_NGO:'Select NGO',
|
||||
SELECT_NGO_TO_ASSIGN_CHALLAN:'Select NGO To Assign Challan',
|
||||
SELECT_OFFICER:'Select Officer',
|
||||
SELECT_OFFICER_TO_ASSIGN_CHALLAN:'Select Officer To Assign Challan',
|
||||
SELECT_PAYMENT_DATE:'Select Payment Date',
|
||||
SELECT_PAYMENT_TYPE:'Select Payment Type',
|
||||
SELECT_POLICE_STATION:'Select Police Station',
|
||||
SELECT_REPORT_TYPE:'Select Report Type',
|
||||
SELECT_RTO:'Select RTO',
|
||||
SELECT_STATE:'Select State',
|
||||
SELECT_STATUS:'Select Status',
|
||||
SELECT_TEAM:'Select Team',
|
||||
SELECT_THE_MINIMUM_ONE_AREA_NAME:'Select the minimum one area name',
|
||||
SELECT_USER_ID:'Select User ID',
|
||||
SELECT_VEHICLE_CATEGORY:'Select Vehicle Category',
|
||||
SELECT_VEHICLE_CLASS:'Select Vehicle Class',
|
||||
SELF_PAYMENT:'Self Payment',
|
||||
SEND:'Send',
|
||||
SEND_OTP:'Send OTP',
|
||||
SEND_SMS:'Send SMS',
|
||||
SEND_TO_AUTHORITY:'Send to Authority',
|
||||
SEND_TO_RTA:'Send to RTA',
|
||||
SENDER_INFO:'Sender info',
|
||||
SENT_TO_COURT:'Sent To Court',
|
||||
SENT_TO_COURT_DATA:'Sent To Court Data',
|
||||
SENT_TO_COURT_DATE:'Sent to Court Date',
|
||||
SENT_TO_COURT_ON:'Sent To Court On',
|
||||
SENT_TO_COURT_SUCCESSFULLY:'Sent To Court successfully.',
|
||||
SENT_TO_RTA:'Sent To RTA',
|
||||
SEQUENCIAL_LETTERS_NUMBERS_NOT_ALLOWED:'Sequential letters/numbers as part of password (like 123, abc) is not be allowed.',
|
||||
SHOW_CARDS:'Show Cards',
|
||||
START_DATE:'Start Date',
|
||||
START_DATE_CAN_NOT_BE_GRETOR_THEN_END_DATE:'Start Date can not be gretor then End Date.',
|
||||
START_FINE_RANGE:'Start Fine Range',
|
||||
STATE:'State',
|
||||
STATE_API_IS_NOT_RESPONDING:'State Api is not responding',
|
||||
STATE_CODE:'State Code',
|
||||
STATE_CODE_CAN_NOT_BE_BLANK:'State code can not be blank',
|
||||
STATE_TRANSPORT_OFFICE:'State transport office',
|
||||
STATE_WISE_DEPARTMENT_WISE_CUSTOMIZATION:'State-wise, department-wise customization',
|
||||
STATUS:'Status',
|
||||
STATUS_ALREADY_UPDATED:'Status already updated',
|
||||
SOMETHING_WENT_WRONG : 'Something went wrong! Please try again.',
|
||||
SOMETHING_WENT_WRONG_PLEASE_TRY_AGAIN : 'Something went wrong! Please try again.',
|
||||
THANKS_FOR_SUBMITTING_YOUR_COMPLAIN_OUR_TEAM_WILL_CONTACT_YOU_SOON:'Thanks for submitting your complain. Our team will contact you soon.',
|
||||
THIS_ACCOUNT_HAS_BEEN_LOCKED : 'This account has been locked.',
|
||||
THIS_FILTER_WILL_WORK_ONLY_WITH_DELETED_CHALLAN_REPORT:'This filter will work only with "Deleted Challan Report"',
|
||||
THIS_FORM_NUMBER_IS_ALREADY_TAKEN:'This Form Number is already taken',
|
||||
THIS_USER_CAN_NOT_ACCESS_THE_APP:'This user can not access the app',
|
||||
THIS_USER_DELETED:'This user deleted.',
|
||||
THIS_USER_IS_ALREADY_DEPOSITED_ALL_DUES:'This user is already deposited all dues',
|
||||
THIS_USER_IS_ALREADY_MAPPED_UNDER_SEND_TO_RTA_MODULE:'This user is already mapped under send to RTA module.',
|
||||
THIS_VIDEO_ALREADY_EXIST_IN_SAME_RANK:'This video already exist in same rank.',
|
||||
TICKET_GENERATED_SUCCESSFULLY:'Ticket Generated Successfully.',
|
||||
TICKET_PENDING_STATUS:'Your ticket status : Pending',
|
||||
TICKET_STATUS:'Ticket Status',
|
||||
TICKET_INVESTIGATION_STATUS:'Your ticket status : Under Investigation',
|
||||
TICKET_RESOLVED_STATUS:'Your ticket status : Resolved',
|
||||
TICKET_UPDATED_SUCCESSFULLY:'Ticket updated successfully',
|
||||
TOKEN_HAS_EXPIRED:'Token has expired',
|
||||
TOTAL_CASES:'Total Cases',
|
||||
UNAUTHORIZED_ACCESS:'Unauthorised Login Access',
|
||||
UPDATE:'Update',
|
||||
UPDATE_AVAILABLE:'Update available',
|
||||
UPDATE_CHALLAN_BOOK:'Update Challan Book',
|
||||
UPDATE_CHALLAN_MANUAL:'Update Challan Manual',
|
||||
USER_ALREADY_EXIST:'User already exist',
|
||||
USER_ASSOCIATED_SUCCESSFULLY:'User has been associated successfully',
|
||||
USER_AUTH_CREATED_SUCCUSSFULLY:'User auth created succussfully',
|
||||
USER_AUTH_DETAILS_UPDATED_SUCCUSSFULLY:'User auth details updated succussfully',
|
||||
USER_CREATED_SUCCESSFULLY:'User created succussfully',
|
||||
USER_CURRENT_LOCATION:'User Current Location',
|
||||
USER_DELETED_SUCCESSFULLY:'User deleted successfully',
|
||||
USER_DETAILS_UPDATED_SUCCESSFULLY:'User details updated successfully',
|
||||
USER_DOES_NOT_EXISTS:'User does not exist.',
|
||||
USER_HAS_BEEN_ASSOCIATED_SUCCESSFULLY:'User has been associated successfully.',
|
||||
USER_HAS_BEEN_UNLINKED_SUCCESSFULLY:'User has been unlinked successfully',
|
||||
USER_ID:'User id',
|
||||
USER_ID_LIST:'User ID List',
|
||||
USER_ID_NUMBER_NOT_EMPTY:'User Id Number not empty',
|
||||
USER_IS_NOT_ACTIVE:'User is not active',
|
||||
USER_IS_SUSPENDED_BY_ADMIN:'User is suspended by admin',
|
||||
USER_IS_SUSPENDED:'User is suspended, Please contact to Admin.',
|
||||
USER_NAME:'User Name',
|
||||
USER_NAME_MUST_BE_CONTAIN_AN_EMAIL_ID:'User Name must be contain an email id.',
|
||||
USER_NAME_WHO_RELEASE_COURT_CHALLAN:'User name who release Court Challan',
|
||||
USER_PASSWORD_UPDATED_SUCCESSFULLY:'User Password updated succussfully.',
|
||||
USER_PHONE_NO:'User Phone No.',
|
||||
USER_ROLE:'User Role',
|
||||
USER_SUSPENDED_SUCCESSFULLY:'User suspended successfully',
|
||||
USER_TRANSFER_REPORT:'User Transfer Report',
|
||||
USER_TRANSFERED_SUCCUSSFULLY:'User Transfered succussfully',
|
||||
USER_TYPE:'User Type',
|
||||
USER_WISE_CHALLAN_REPORT:'User Wise Challan Report',
|
||||
USER_WISE_DISPOSED_CHALLAN:'User Wise Disposed Challan',
|
||||
USER_WISE_REPORT:'User Wise Report',
|
||||
USERNAME:'Username',
|
||||
USERNAME_IS_ALREADY_EXIST:'Username is already exist',
|
||||
USERNAME_IS_NOT_VALID:'Username is not valid',
|
||||
USERNAME_IS_VALID:'Username is valid',
|
||||
USERS_LIST:'Users List',
|
||||
USERS_TREASURY_CODE_DOES_NOT_EXIT:"User's treasury code does not exit.",
|
||||
VEHICLE_IMPOUNDED:'Vehicle Impounded',
|
||||
VALUE_INDICATORS:'Value Indicators',
|
||||
VALUE_INDICATORS_PARA_1:'eChallan system has evolved through a process of learning, changes and enhancements. In the process of implementation in different states, various new requirements, situations, issues etc. have provided a rich learning experience and opportunities – which have made the product more robust and richer in terms of features, functionalities and security. A host of sophisticated tools and technologies and also management and support processes have been incorporated to make the project a success.',
|
||||
VALUE_INDICATORS_PARA_2:'Payment of Challans is facilitated through various options like Online Payment, PoS based payment – both on-spot and through portal.',
|
||||
VALUE_INDICATORS_PARA_3:'Although this is primarily a departmental app/ application (from Transport and Traffic Police), however, concerned citizen is also automatically made a stakeholder so that he/she can make challan payments through digital mode or follow-up/ grievance options etc. by logging into the portal.',
|
||||
VALUE_INDICATORS_PARA_4:'The system has provided bi-lingual support (Hindi and English) as of now. But shortly, state-specific language customization option is being provided as per the requirements received from users.',
|
||||
VEHICLE:'Vehicle',
|
||||
VEHICLE_CATEGORY:'Vehicle Category',
|
||||
VEHICLE_CATEGORY_REPORT:'Vehicle Category Report',
|
||||
VEHICLE_CLASS:'Vehicle Class',
|
||||
VEHICLE_CLASS_DETAILS:'Vehicle class details.',
|
||||
VEHICLE_CLASS_IS_UPDATED_SUCCESSFULLY:'Vehicle class is updated successfully.',
|
||||
VEHICLE_CLASS_OFFENCE_WISE_REPORT:'Vehicle Class Offence Wise Report',
|
||||
VEHICLE_CLASS_REPORT:'Vehicle Class Report',
|
||||
VEHICLE_DATA_NOT_FOUND:'Vehicle Data Not Found',
|
||||
VEHICLE_DL_NUMBER_CAN_NOT_BE_EXCEEDED_THAN_25_CHARACTERS:'Vehicle / DL Number can not be exceeded than 25 characters.',
|
||||
VEHICLE_ENGINE_NUMBER:'Vehicle Engine Number',
|
||||
VEHICLE_NUMBER:'Vehicle Number',
|
||||
VEHICLE_NUMBER_CAN_NOT_BE_BLANK:'Vehicle number can not be blank',
|
||||
VEHICLE_NUMBER_DOES_NOT_EXIST:'Vehicle Number does not exist.',
|
||||
VEHICLE_NUMBER_NOT_CHANGED:'Vehicle Number Not Changed.',
|
||||
VEHICLE_RELEASED:'Vehicle Released',
|
||||
VIRTUAL_COURT:'Virtual Court',
|
||||
VIRTUAL_COURT_REPORT:'Virtual Court Report',
|
||||
VIRTUAL_COURT_SETUP:'Virtual Court Setup',
|
||||
WHAT_IS_E_CHALLAN:'What Is E-Challan?',
|
||||
WHAT_IS_ECHALLAN_PARA_1:'e-Challan is a sophisticated software application comprising Android based mobile app and web interface, developed for the purpose of providing an comprehensive solution for Transport Enforcement Officers and Traffic Policemen. This app-cumapplication is integrated with Vahan and Sarathi applications and provides a number of user-friendly features while covering all major functionalities of Traffic Enforcement System.',
|
||||
WHAT_IS_ECHALLAN_PARA_2:'This is an end to end automated system with digital interface for all the stakeholders in purview of challan eco-system.',
|
||||
WHAT_IS_ECHALLAN_PARA_3:'The application introduces a novel concept of using mobile based app for issuing eChallan. The mobile based access to the system is available only to enforcement officers through android smart phones. While the web based access is available to all the rest of the stakeholders, mobile based access ensures the services are available anytime anywhere. This application is built in line with the requirements of Vahan 4 and Sarathi 4 and shall be accessing and updating data from/to national databases.ication introduces a novel concept of using mobile based app for issuing eChallan. The mobile based access to the system is available only to enforcement officers through android smart phones. While the web based access is available to all the rest of the stakeholders, mobile based access ensures the services are available anytime anywhere. This application is built in line with the requirements of Vahan 4 and Sarathi 4 and shall be accessing and updating data from/to national databases.',
|
||||
WHAT_IS_ECHALLAN_PARA_4:'Connecting all the stakeholders through a common system will ensure data integrity, reliability and transparency.',
|
||||
YOUR_OTP_IS_SUCCESSFULLY_VERIFIED:'Your OTP is successfully verified',
|
||||
YOU_ENTERED_INCORRECT_OLD_PASSWORD:'You entered incorrect old password.',
|
||||
YOU_REACHED_MAX_LIMIT_FIVE_HUNDRED_CHARECTERS:'You reached maximum 500 characters limit.',
|
||||
ECHALLAN_REPORT_DASHBOARD:'eChallan Report / Dashboard',
|
||||
|
||||
|
||||
};
|
||||
9
a8_za_Fine_aarto/public/Static_zy/www/js/materialize.js
vendored
Normal file
9
a8_za_Fine_aarto/public/Static_zy/www/js/materialize.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
a8_za_Fine_aarto/public/Static_zy/www/js/ngStorage.min.js
vendored
Normal file
1
a8_za_Fine_aarto/public/Static_zy/www/js/ngStorage.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/*! ngstorage 0.3.6 | Copyright (c) 2015 Gias Kay Lee | MIT License */!function(a,b){"use strict";return"function"==typeof define&&define.amd?void define("ngStorage",["angular"],function(a){return b(a)}):b(a)}("undefined"==typeof angular?null:angular,function(a){"use strict";function b(b){return["$rootScope","$window","$log","$timeout",function(c,d,e,f){function g(a){var b;try{b=d[a]}catch(c){b=!1}if(b&&"localStorage"===a){var e="__"+Math.round(1e7*Math.random());try{localStorage.setItem(e,e),localStorage.removeItem(e)}catch(c){b=!1}}return b}var h,i,j=g(b)||(e.warn("This browser does not support Web Storage!"),{setItem:function(){},getItem:function(){}}),k={$default:function(b){for(var c in b)a.isDefined(k[c])||(k[c]=b[c]);return k},$reset:function(a){for(var b in k)"$"===b[0]||delete k[b]&&j.removeItem("ngStorage-"+b);return k.$default(a)}};try{j=d[b],j.length}catch(l){e.warn("This browser does not support Web Storage!"),j={}}for(var m,n=0,o=j.length;o>n;n++)(m=j.key(n))&&"ngStorage-"===m.slice(0,10)&&(k[m.slice(10)]=a.fromJson(j.getItem(m)));return h=a.copy(k),c.$watch(function(){var b;i||(i=f(function(){if(i=null,!a.equals(k,h)){b=a.copy(h),a.forEach(k,function(c,d){a.isDefined(c)&&"$"!==d[0]&&j.setItem("ngStorage-"+d,a.toJson(c)),delete b[d]});for(var c in b)j.removeItem("ngStorage-"+c);h=a.copy(k)}},100,!1))}),"localStorage"===b&&d.addEventListener&&d.addEventListener("storage",function(b){"ngStorage-"===b.key.slice(0,10)&&(b.newValue?k[b.key.slice(10)]=a.fromJson(b.newValue):delete k[b.key.slice(10)],h=a.copy(k),c.$apply())}),k}]}a.module("ngStorage",[]).factory("$localStorage",b("localStorage")).factory("$sessionStorage",b("sessionStorage"))});
|
||||
71
a8_za_Fine_aarto/public/Static_zy/www/js/svg-assets-cache.js
Normal file
71
a8_za_Fine_aarto/public/Static_zy/www/js/svg-assets-cache.js
Normal file
File diff suppressed because one or more lines are too long
1
a8_za_Fine_aarto/public/Static_zy/www/js/sweetalert.min.js
vendored
Normal file
1
a8_za_Fine_aarto/public/Static_zy/www/js/sweetalert.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user