📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv2.demodesign.com.tr
/
assets
/
vendor
/
pwstrength-bootstrap
/
src
📝
i18n.js
← Geri Dön
/*jslint browser: true */ /*global */ /* * jQuery Password Strength plugin for Twitter Bootstrap * * Copyright (c) 2008-2013 Tane Piper * Copyright (c) 2013 Alejandro Blanco * Dual licensed under the MIT and GPL licenses. */ var i18n = {}; (function (i18n, i18next) { 'use strict'; i18n.fallback = { "wordMinLength": "Your password is too short", "wordMaxLength": "Your password is too long", "wordInvalidChar": "Your password contains an invalid character", "wordNotEmail": "Do not use your email as your password", "wordSimilarToUsername": "Your password cannot contain your username", "wordTwoCharacterClasses": "Use different character classes", "wordRepetitions": "Too many repetitions", "wordSequences": "Your password contains sequences", "errorList": "Errors:", "veryWeak": "Very Weak", "weak": "Weak", "normal": "Normal", "medium": "Medium", "strong": "Strong", "veryStrong": "Very Strong" }; i18n.t = function (key) { var result = ''; // Try to use i18next.com if (i18next) { result = i18next.t(key); } else { // Fallback to english result = i18n.fallback[key]; } return result === key ? '' : result; }; }(i18n, window.i18next));
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula