Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
vite-plugin-i18n-helper
Advanced tools
node version: >=16.0.0
vite version: >=3.0.0
npm i vite-plugin-i18n-helper -D
# or
yarn add vite-plugin-i18n-helper -D
# or
pnpm install vite-plugin-i18n-helper -D
import i18nHelperPlugin from 'vite-plugin-i18n-helper'
import path from 'path'
export default () => {
return {
plugins: [
i18nHelperPlugin({
includes: ["src/*"],
exclude: ["node_modules/*", "src/i18n.js"],
customI18n: "i18nHepler",
customI18nUrl: "/src/i18n",
dictJson: path.resolve(__dirname, "./src/dict.json"),
raw: true,
}),
],
}
}
// 原始代码
const fn = (val) => "(" + val + ")";
const name1 = "一二三"; // 普通字符串
const name2 = `一二三${name1}`; // 模板字符串
const name3 = `${`一二三${name1}`}一二三${fn(name1)}`; // 复杂模板字符串
const name4 = "三" + "2" + "一二三"; // 表达式不参与 只针对字符串和模板字符串
const name5 = "i18n!:一二三"; // i18n!: 开头的内容不参与编译
const name6 = " 一二三 "; // 首尾空格不参与编译 可设置ignorePrefix和ignoreSuffix自定义规则
// 处理后结果
import {i18nHepler} from "/src/i18n.js"
const fn = (val) => "(" + val + ")";
const name1 = i18nHepler("一二三");
const name2 = i18nHepler("一二三{0}",[name1]);
const name3 = i18nHepler("{0}一二三{1}",[i18nHepler("一二三{0}",[name1]),fn(name1)]);
const name4 = i18nHepler("三") + "2" + i18nHepler("一二三");
const name5 = "一二三";
const name6 = ` ${i18nHepler("一二三")} `;
json 内容
{
"一二三": "123",
"一二三{0}": "123{0}",
"{0}一二三{1}": "{0}123{1}"
}
// 处理后结果
import {i18nHepler} from "/src/i18n.js"
const fn = val => '(' + val + ')';
const name1 = i18nHepler("123",null,"一二三");
const name2 = i18nHepler("123{0}",[name1],"一二三{0}");
const name3 = i18nHepler("{0}123{1}",[i18nHepler("123{0}",[name1],"一二三{0}"),fn(name1)],"{0}一二三{1}");
const name4 = "三" + "2" + i18nHepler("123",null,"一二三");
const name5 = "一二三";
const name6 = ` ${i18nHepler("123",null,"一二三")} `;
参数 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
customI18n | string | - | 是 | 自定义 i18n 方法 |
customI18nUrl | string | - | 是 | 自定义i8n 方法导入地址 |
dictJson | string[] | - | 否 | 匹配字典 |
includes | Array<string|RegExp>|string|RegExp | - | 否 | 匹配文件规则 |
exclude | Array<string|RegExp>|string|RegExp | - | 否 | 忽略文件规则 |
ignoreMark | string | i18n!: | 否 | 忽略以该标识开头的内容 |
ignorePrefix | RegExp | /^\s+/ | 否 | 忽略正则匹配的前缀内容 (默认首尾空格会忽略) |
ignoreSuffix | RegExp | /\s+$/ | 否 | 忽略正则匹配的后缀内容 (默认首尾空格会忽略) |
raw | boolean | - | 否 | 是否保留 dictJson 匹配前的 原始值 (是 将作为customI18n 第三个参数传入) |
output | boolean | - | 否 | 是否输出字符串处理的结果 |
FAQs
- 自动查找 包含中文 的字符串和模板字符串,并替换为自定义的国际化方法
The npm package vite-plugin-i18n-helper receives a total of 0 weekly downloads. As such, vite-plugin-i18n-helper popularity was classified as not popular.
We found that vite-plugin-i18n-helper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.