Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
masnormen committed Sep 3, 2020
0 parents commit 042b52b
Show file tree
Hide file tree
Showing 5 changed files with 708 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# dependencies
/node_modules
/.pnp
.pnp.js

/.idea

# testing
/coverage

# production
#/build

# misc
._*
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
128 changes: 128 additions & 0 deletions charlist.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,128 @@
export const NGLEGENA = {
"h": "ꦲ",
"n": "ꦤ",
"c": "ꦕ",
"r": "ꦫ",
"k": "ꦏ",
"d": "ꦢ",
"t": "ꦠ",
"s": "ꦱ",
"w": "ꦮ",
"l": "ꦭ",
"p": "ꦥ",
"dh": "ꦝ",
"j": "ꦗ",
"y": "ꦪ",
"ny": "ꦚ",
"m": "ꦩ",
"g": "ꦒ",
"b": "ꦧ",
"th": "ꦛ",
"ng": "ꦔ",
//Aksara Rekan
"z": "ꦗ꦳",
"f": "ꦥ꦳",
"v": "ꦮ꦳",
"kh": "ꦏ꦳",
"dz": "ꦢ꦳",
"gh": "ꦒ꦳",
//Aksara Murda
"N": "ꦟ",
"K": "ꦑ",
"T": "ꦡ",
"S": "ꦯ",
"P": "ꦦ",
"NY": "ꦘ",
"G": "ꦓ",
"B": "ꦨ",
};

export const SWARA = {
"A": "ꦄ",
"I": "ꦅ",
"U": "ꦈ",
"E": "ꦌ",
"O": "ꦎ",
//Pa Ceret, Nga Lelet
"rx": "ꦉ",
"lx": "ꦊ"
};

export const PASANGAN = {
"h": "꧀ꦲ",
"n": "꧀ꦤ",
"c": "꧀ꦕ",
"r": "꧀ꦫ",
"k": "꧀ꦏ",
"d": "꧀ꦢ",
"t": "꧀ꦠ",
"s": "꧀ꦱ",
"w": "꧀ꦮ",
"l": "꧀ꦭ",
"p": "꧀ꦥ",
"dh": "꧀ꦓ",
"j": "꧀ꦗ",
"y": "꧀ꦪ",
"ny": "꧀ꦚ",
"m": "꧀ꦩ",
"g": "꧀ꦒ",
"b": "꧀ꦧ",
"th": "꧀ꦛ",
"ng": "꧀ꦔ",
//Aksara Rekan
"z": "꧀ꦗ꦳",
"f": "꧀ꦥ꦳",
"v": "꧀ꦮ꦳",
"kh": "꧀ꦏ꦳",
"dz": "꧀ꦢ꦳",
"gh": "꧀ꦒ꦳",
//Aksara Murda
"N": "꧀ꦟ",
"K": "꧀ꦑ",
"T": "꧀ꦡ",
"S": "꧀ꦯ",
"P": "꧀ꦦ",
"NY": "꧀ꦘ",
"G": "꧀ꦓ",
"B": "꧀ꦨ",
};

export const SANDHANGAN = {
"wulu": "ꦶ",
"suku": "ꦸ",
"taling": "ꦺ",
"talingTarung": "ꦺꦴ",
"pepet": "ꦼ",
"cecak": "ꦁ",
"wignyan": "ꦃ",
"layar": "ꦂ",
"cakra": "ꦿ",
"keret": "ꦽ",
"pengkal": "ꦾ",
"pangkon": "꧀",
};

export const PADA = {
"lingsa": "꧈",
"lungsi": "꧉",
"pangkat": "꧇",
"adeg": "꧊",
"adegadeg": "꧋",
"piseleh": "꧌",
"piselehwalik": "꧍",
"rerengankiwa": "꧁",
"rerengantengen": "꧂",
};

export const ANGKA = {
"1": "꧑",
"2": "꧒",
"3": "꧓",
"4": "꧔",
"5": "꧕",
"6": "꧖",
"7": "꧗",
"8": "꧘",
"9": "꧙",
"0": "꧐",
};
Loading

0 comments on commit 042b52b

Please sign in to comment.