接口提示信息国际化, 调用LibreTranslate 离线翻译, 国际化支持

文章目录

背景

将接口返回内容进行翻译, 以适配多语言需求;

实现方式

前端拦截接口返回内容, 调用离线翻译服务进行翻译, 翻译之后再进行相应的提示

参考资料:

离线翻译服务: https://github.com/LibreTranslate/LibreTranslate

步骤

下载并部署离线翻译服务;
  1. 下载链接: https://github.com/jianchang512/ott?tab=readme-ov-file

  2. 解压文件到服务器目录, 已经内置了一部分语言模型, 可以直接使用

  3. 修改 set.ini 为相应的服务地址和端口

  4. 双击 start.exe 启动程序

  5. 使用浏览器访问配置的端口, 检查服务是否正常

    ;第一启动需要下载模型,国内地区需要填写代理地址,比如 v2ray默认地址是 http://127.0.0.1:10809 clash默认http://127.0.0.1:7890
    PROXY=
    ;要绑定到的地址,本机127.0.0.1 或者 192.168.等局域网ip等,默认127.0.0.1
    HOST=127.0.0.1
    ;绑定到的端口
    PORT=9911
    ;使用到的语言模型, zh=中文简 zt=中文繁 en=英语 fr=法语 de=德语 ja=日语 ko=韩语 ru=俄语 es=西班牙语 th=泰国语 it=意大利语 pt=葡萄牙语 ar=阿拉伯语 tr=土耳其语 hi=印度语
    ;如果用不到的语言可以删掉
    LANG=zh,en,zt,fr,de,ja,ko,ru,es,th,it,pt,ar,tr,hi


前端接入
  1. 全局拦截接口响应中的 Message

  2. 调用翻译服务进行翻译

  3. 翻译服务 Api 调用方法

    // 请求示例
    // 翻译错误信息
    const res = fetch('http://xxx:19911/translate', {
    method: 'POST',
    body: JSON.stringify({
    q: error.message, //翻译内容
    source: 'zh', //源语言
    target: locale || 'zh', //目标语言
    format: 'text', // 返回内容的格式, 可选 text | html
    api_key: '' // 默认不开启
    }),
    headers: { 'Content-Type': 'application/json' }
    }).then(res => {
    let resdata = res.json()
    return resdata // 返回值是一个新的promise对象,状态为resolved,所以执行then
    }).then((transResponse) => {
    console.log('transResponse', transResponse)
    if (transResponse && transResponse.translatedText) {
    errMsg = transResponse.translatedText
    }
    }).catch((transError) => {
    console.log(transError)
    }).finally(() => {
    // 失败
    Message({
    message: errMsg,
    type: 'error',
    duration: 5 * 1000,
    onClose: () => {
    msgRecordsMap[errorStatus] = false
    }
    })
    })

    // 响应示例
    {
    "translatedText": "これは間違っています。 書類番号 AdfI 233545756!"
    }

相关推荐
winfredzhang24 分钟前
如何使用 python 中的 Pillow 创建可自定义的图标生成器
python·pillow·图标·png
qq_273900231 小时前
pytorch detach方法介绍
人工智能·pytorch·python
AI狂热爱好者1 小时前
A3超级计算机虚拟机,为大型语言模型LLM和AIGC提供强大算力支持
服务器·人工智能·ai·gpu算力
虞书欣的61 小时前
Python小游戏24——小恐龙躲避游戏
开发语言·python·游戏·小程序·pygame
TN_stark9321 小时前
多进程/线程并发服务器
服务器·算法·php
FHYAAAX1 小时前
【机器学习】任务十:从函数分析到机器学习应用与BP神经网络
开发语言·python
PyAIGCMaster1 小时前
python环境中,敏感数据的存储与读取问题解决方案
服务器·前端·python
何曾参静谧2 小时前
「Py」模块篇 之 PyAutoGUI库自动化图形用户界面库
运维·python·自动化
pumpkin845142 小时前
客户端发送http请求进行流量控制
python·网络协议·http
smj2302_796826522 小时前
用枚举算法解决LeetCode第3348题最小可整除数位乘积II
python·算法·leetcode