Skip to content

codexen/nepali-typing

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Preeti translation

add preeti.js
// <input type="text" class="convert-preeti"> 
$('body').on('input', '.convert-preeti', function (event) {
	var text = this.value;
	var convert = setUnicodePreeti(text);
	this.value = convert;

	return true;
});
// Example: sf]bh]g = कोदजेन

Nepali preeti to unicode

Romanize translation

add romanize.js
// <input type="text" class="convert-romanize">
$('body').on('keypress', '.convert-romanize', function (event) {
	return setUnicode(event,this);
});
// Example: kodejen = कोदजेन

Nepali romanized translation