PluginProbe ʕ •ᴥ•ʔ
WP Fastest Cache – WordPress Cache Plugin / 0.9.5
WP Fastest Cache – WordPress Cache Plugin v0.9.5
1.4.9 1.4.8 trunk 0.8.6.6 0.8.6.7 0.8.6.8 0.8.6.9 0.8.7.0 0.8.7.1 0.8.7.2 0.8.7.3 0.8.7.4 0.8.7.5 0.8.7.6 0.8.7.7 0.8.7.8 0.8.7.9 0.8.8.0 0.8.8.1 0.8.8.2 0.8.8.3 0.8.8.4 0.8.8.5 0.8.8.6 0.8.8.7 0.8.8.8 0.8.8.9 0.8.9.0 0.8.9.1 0.8.9.2 0.8.9.3 0.8.9.4 0.8.9.5 0.8.9.6 0.8.9.7 0.8.9.8 0.8.9.9 0.9.0.0 0.9.0.1 0.9.0.2 0.9.0.3 0.9.0.4 0.9.0.5 0.9.0.6 0.9.0.7 0.9.0.8 0.9.0.9 0.9.1.0 0.9.1.1 0.9.1.2 0.9.1.3 0.9.1.4 0.9.1.5 0.9.1.6 0.9.1.7 0.9.1.8 0.9.1.9 0.9.2 0.9.3 0.9.4 0.9.5 0.9.6 0.9.7 0.9.8 0.9.9 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7
wp-fastest-cache / js / language.js
wp-fastest-cache / js Last commit date
cdn 4 years ago lang 6 years ago button.js 11 years ago column.js 6 years ago db.js 9 years ago dialog.js 8 years ago dialog_new.js 4 years ago index.html 11 years ago language.js 8 years ago schedule.js 11 years ago toolbar.js 5 years ago
language.js
37 lines
1 window.wpfc = {};
2 window.wpfc.translate = function(word){
3 return (typeof window.wpfc.dictionary != "undefined" && typeof window.wpfc.dictionary[word] != "undefined" && window.wpfc.dictionary[word]) ? window.wpfc.dictionary[word] : word;
4 };
5 jQuery.fn.extend({
6 wpfclang: function(){
7 var dictionary = window.wpfc.dictionary || {};
8 var el = jQuery(this);
9 var text = el.attr("type") == "submit" ? el.val().trim() : el.text().trim();
10 var converted = typeof dictionary[text] == "undefined" ? text : dictionary[text];
11
12 if(typeof converted != "undefined" && converted){
13 if(el.attr("type") == "submit"){
14 el.val(converted);
15 }else{
16 el.html(converted);
17 }
18 }
19 }
20 });
21 var Wpfclang = {
22 language : "",
23 init: function(language){
24 this.language = language;
25 this.translate();
26 },
27 translate: function(){
28 if(typeof window.wpfc != "undefined" && typeof window.wpfc.dictionary != "undefined"){
29 var self = this;
30 jQuery('#wpfc-read-tutorial span, #wpfc-plugin-setup-warning h3, #just-h1, #get-now-h1, #new-features-h1, div.wpfc-premium-step-footer ul li a, div.wpfc-premium-step-footer p, div.wpfc-premium-step-content, #wpbody-content label, div.question, .questionCon input[type="submit"], #message p, .wrap h2, #nextVerAct, select option, th, #rule-help-tip h4, #rule-help-tip label, .omni_admin_sidebar h3, #message p, #wpfc-image-static-panel span, #wpfc-statics-right div, #wpfc-image-static-panel p, #container-show-hide-image-list span, #wpfc-image-list th').each(function(){
31 if(jQuery(this).children().length === 0){
32 jQuery(this).wpfclang();
33 }
34 });
35 }
36 }
37 };