Skip to content

Translate Latin into Standard Galactic Alphabet (Enchangint Table Language) and vice versa

License

Notifications You must be signed in to change notification settings

Ryhon0/SGASharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ᓭ⊣ᔑᓭ⍑ᔑ∷!¡ (SGASharp) Build status

Translate Latin into Standard Galactic Alphabet (Minecraft Enchanting Table language) and vice versa in C#

Add to your project

SGASharp can be downloaded from NuGet Use the command bellow or download it from your IDE dotnet add package SGASharp

Alternatively you can add the SGASharp/SGA.cs file to your project or add the SGASharp project to your solution and add a reference to it

Example

Example project can be found in SGASharp.CommandLine

SGASharp can be used by using the methods in the SGA static class or by using string extension methods. Here are some examples:

using SGASharp;

Console.WriteLine("Hello World.".LatinToSGA());
// Prints "⍑ᒷꖎꖎフ ∴フ∷ꖎ↸·-·"

string text = "SGASharp".LatinToSGA();
// Returns "ᓭ⊣ᔑᓭ⍑ᔑ∷!¡"

Console.WriteLine(text.SGAToLatin(true););
// Prints "SGASHARP"

You can also modify the character table

using SGASharp;

"Ryhon".LatinToSGA();
// ∷׀׀⍑フリ

SGA.CharacterTable['y'] = "||";
SGA.CharacterTable['o'] = "J";

"Ryhon".LatinToSGA();
// ∷||⍑Jリ

License

GNU GPLv3

About

Translate Latin into Standard Galactic Alphabet (Enchangint Table Language) and vice versa

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages