Skip to content

DomeenoH/beast_sdk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

兽音译者(兽语翻译)SDK

采用 JavaScriptGoLangPythonPHPLUA 多端实现。

可以自定义字符, 可以相互兼容,具体按照需要自行改造。

使用

翻译到兽语

JavaScript

var str = encode("你好");
console.log(str);

// 呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷

PHP

<?php
include('./beast.php');

$enStr = encode("你好");
echo "兽语:" . $enStr;

// 呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷

GoLang

enStr := encode("你好")
fmt.Print(enStr)

// 呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷

Python

print(encode("你好"))

// 呜嗷嗷嗷啊嗷嗷~啊呜~~呜呜嗷

翻译到人话

JavaScript

var str = decode("呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷");
console.log(str);

// 你好

PHP

<?php
include('./beast.php');

$deStr = decode("呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷");
echo '<br>音译:' . $deStr;

// 你好

GoLang

deStr := decode("呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷")
fmt.Print(deStr)

// 你好 

Python

print(decode("呜嗷嗷嗷啊嗷嗷~啊呜~啊~呜呜嗷"))

// 你好 

自定义字典:

修改beast数组即可~注意不能重复哦!

Demo

兽语 音译


参考

JavaScript原版 sgdrg15rdg/beast_js : https://github.com/sgdrg15rdg/beast_js

Python原版 6DDUU6/beast_python : https://github.com/6DDUU6/beast_python

About

兽音译者(兽语翻译)SDK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 33.5%
  • Lua 27.2%
  • Python 17.2%
  • JavaScript 8.5%
  • Go 8.0%
  • PHP 5.6%