-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFixLanguageType.js
132 lines (132 loc) · 2.4 KB
/
FixLanguageType.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/**
*
* @Name : FixLanguageType.js
* @Version : 1.1
* @Programmer : Max
* @Date : 2018-06-26-2018-07-02
* @Released under : https://github.com/BaseMax/FixLanguageTypeJs/blob/master/LICENSE
* @Repository : https://github.com/BaseMax/FixLanguageTypeJs
*
**/
;(function(window,document)
{
"use strict";
/**
* @function keymap
*
* @goal : Keymap of en , fa
*
* @return array (key=en , value=fa)
**/
var keymap=
[
["q","ض"],
["w","ص"],
["e","ث"],
["r","ق"],
["t","ف"],
["y","غ"],
["u","ع"],
["i","ه"],
["o","خ"],
["p","ح"],
["[","ج"],
["]","چ"],
["a","ش"],
["s","س"],
["d","ی"],
["m","ئ"],
["f","ب"],
["g","ل"],
["h","ا"],
["j","ت"],
["k","ن"],
["l","م"],
[";","ک"],
["\"","گ"],
["z","ظ"],
["x","ط"],
["c","ز"],
["C","ژ"],
["v","ر"],
["b","ذ"],
["n","د"],
["\\","پ"],
["`","پ"],
[",","و"]
];
/**
* @function replaceAll
*
* @goal : Replace All
*
* @return string
**/
var replaceAll=function(input,str1,str2,ignore)
{
return input.replace(new RegExp(str1.replace(/([\/\,\!\\\^\$\{\}\[\]\(\)\.\*\+\?\|\<\>\-\&])/g,"\\$&"),(ignore?"gi":"g")),(typeof(str2)=="string")?str2.replace(/\$/g,"$$$$"):str2);
}
/**
* @function en_fa
*
* @goal : Change `en` character to `fa` character in self keymap!
*
* @return void
**/
var en_fa=function(value)
{
//var keys=Object.keys(keymap);
//var values=Object.values(keymap);
//for(var i=0;i<keys.length;i++)
// value=replaceAll(value,keys[i],values[i]);
for(var i=0;i<keymap.length;i++)
{
//console.log(keymap[i]);
value=replaceAll(value,keymap[i][0],keymap[i][1]);
}
return value;
};
/**
* @function fa_en
*
* @goal : Change `fa` character to `en` character in self keymap!
*
* @return void
**/
var fa_en=function(value)
{
//var keys=Object.values(keymap);
//var values=Object.keys(keymap);
//for(var i=0;i<keys.length;i++)
// value=replaceAll(value,keys[i],values[i]);
for(var i=0;i<keymap.length;i++)
{
//console.log(keymap[i]);
value=replaceAll(value,keymap[i][1],keymap[i][0]);
}
return value;
};
/**
* @struct fixtype
*
* @goal : access to public functions
*
* @return struct
**/
window.fixtype=
{
en_fa:en_fa,
fa_en:fa_en,
};
/**
* @struct onload
*
* @goal : set onclick and events after page load...
*
* @return void
**/
window.addEventListener("load",function()
{
//soon
},false);
}(window,document));