Socket
Book a DemoInstallSign in
Socket

@lx-frontend/babel-plugin-auto-i18n

Package Overview
Dependencies
Maintainers
16
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lx-frontend/babel-plugin-auto-i18n

babel plugin for auto i18n

1.0.10
latest
npmnpm
Version published
Weekly downloads
0
Maintainers
16
Weekly downloads
 
Created
Source

babel-plugin-auto-i18n

配置项及使用方式

插件目前有以下配置项:

配置项说明类型是否必填默认值
i18nUrli18N的入口文件路径string必填''
configUrl语言配置文件的路径,基准路径为当前项目根目录string必填''
mode0: 黑名单模式,文件头带/i18n-disable/关闭自动国际化处理
1: 白名单模式,文件头带/i18n-enable/才开启自动国际化处理
int非必填0
enableLog是否开启日志输出(日志文件名为auto-i18N.log)boolean非必填true

使用举例

安装

:::info npm -i babel-plugin-lx-auto-i18n -D :::

配置

babel.config.json配置如下,其他类型的babel配置文件类似

module.exports = {
  presets: [
    xxx
  ],
  plugins: [
    [
      '@lx-frontend/auto-i18n', {
        'i18nUrl': 'src/config/i18n/index.js',
        'configUrl': './template/i18n/lang/cn.js',
        'mode': 1
      }
    ]
  ]
}

以下使用场景均支持自动i18n转换

function App() {
  const title = '立新车市';
  const desc = `立新二手车`;
  // 这是一段注释
  const desc2 = /*i18n-disable*/`温馨提示`;
  const desc3 = `预计${title}${desc}${desc2}分结束`;
  const desc4 = `更新报价${1+1}发卡设计费`;

  return (
    <div
      className="app"
      title={"立新车市"}
      color="立新二手车"
      desc={`预计${title}${desc}${desc2}分结束`}
      desc4={`更新报价${1 + 1}发卡设计费`}
    >
      <img src={Logo} />
      <h1>{`预计${title}月${desc}日${desc2}分结束`}</h1>
      <p>立新二手车 {desc}</p>
      <p>立新二手车</p>
      <div>
        {
            /*i18n-disable*/'中文'
        }
      </div>
    </div>
  );
}

注意事项

  • 在写中文时,请确保本地国际化配置文件中有对应的kv配置。
  • 模板字符串支持分段国际化,比如更新报价${desc}发卡设计费,'更新报价{0}发卡设计费'在配置文件中无对应kv,但是'更新报价'在配置文件中有对应kv,则会对'更新报价'单独做国际化处理。注意,不能写可选链语法,不支持,只能简单变量。
  • 若想单独对某个字符串禁用自动国际化,则在该字符串前面添加/i18n-disable/即可。比如/i18n-disable/'中文'。

后续计划

后续有如下计划

:::info

  • 国际化配置文件的自动维护机制 :::

Keywords

babel-plugin

FAQs

Package last updated on 16 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.