Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@cainiaofe/panda-i18n-lite
Advanced tools
引入 panda npm 包,需注意默认$i18n 的翻译来自于的 CDN 资源,请在项目中先加载 CDN 的翻译语言包 **如需脱离语言包使用请参考下述 PandaConfigProvider 的使用
cdn url
https://assets-daily.cainiao-inc.com/upload/pack///lang.js https://cn.alicdn.com/upload/pack///lang.js
import $i18n from '@alife/panda-i18n';
zh-CN / en-US / ja-JP / ru-RU / pt-PT / fr-FR / es-ES ar-SA / as / bn-BD / bn-IN / bho / my-MM / zh-HK / zh-SG / zh-TW / cs-CZ / da-DK / nl-BE / nl-NL / en-BD / en-CA / en-CZ / en-FR / en-HU / en-ID / en-MY / en-MM / en-NP / en-PK / en-PH / en-PL / en-SG / en-ES / en-LK / en-TH / en-GB / en-VN / de-DE / gu / iw-IL / hi-IN / hu / in-ID / it-IT / kn / ko-KR / lo-LA / ms-MY / ml / mni / mr / ne-NP / or / pa / pl-PL / pt-BR / ro / sr / si-LK / sk-SK / sv-SE / tl-PH / ta / te / th-TH / tr-TR / uk-UA / ur-IN / ur-PK / vi-VN
{ 'en-US': { 'Hello': 'hello' }, 'zh-CN': { 'Hello': '你好' } ... }
ts 表述
{ [lang in TLanauage]?: Record<string, string> }
/**
* @param {key:string | {id:string; dm:string; ns?:string}}
文案的key(id)以及默认翻译(dm) 或 文案key(key)
ns为namespace,用于创建i18n实例时,区分多实例,一般不关心
* @param {object} 可选参数,如果文案中存在变量
* @return {string} 根据语言环境渲染的文案
*/
$i18n.get('hello'); // 你好
$i18n.get({ id: 'hello', dm: '你好' }); // 你好
$i18n.get(
{
id: 'totalPage',
dm: '一共 {index} 页',
},
{ index: 20 },
); // 一共20页
/** namespace的使用,主要用于组件内消费 */
$i18n.get(
{
id: 'hello',
dm: '你好',
ns: 'MyComponent',
},
{ index: 20 },
); // 一共20页
/**
* @return {string} 当前环境中的语种的值
*/
$i18n.getLang(); // 'zh-CN' or 'en-US'
/**
* @param {string} 当前需要切换的语种
* @return {void}
*/
$i18n.setLang('en-US');
使用 setConfig api 可以配置 panda 的全局配置 使用 setConfig 保持在应用渲染之前执行,保证 panda 的配置在渲染时即可生效
import { setConfig } from '@alife/panda-i18n';
setConfig({
logLevel: 0
})
...
option | default | description |
---|---|---|
logLevel | 2 | 控制台输出 0 关闭所有 1 仅 error 2 error&warn ,默认 2 |
cookieKey | ||
自定义 cookieKey(优先级高于 CDN 语言包设置) | ||
langList | 设置全局生效的语种列表,如环境语种不在列表中将把第一个作为默认的语种 |
使用 init api 可创建一个$i18n 的实例
option | default | description |
---|---|---|
locale | ||
文案翻译 | ||
lang | ||
自定义 cookieKey(优先级高于 CDN 语言包设置) | ||
langList | 设置全局生效的语种列表,如环境语种不在列表中将把第一个作为默认的语种 | |
componentName |
当前$i18n的处理为多实例的方案处理,默认输出的为cdn的实例,即可获取panda平台的发布的cdn中的文案 可使用 _$i18n.init*** 的 api 生成一个实例,即可使用$i18n 所有的能力 当使用*PandaConfigProvider_时为在内部生成一个 context 作用域,内部可使用 _useI18n**_ 获取生成$i18n 实例 当使用 **withI18n 为组件进行 hoc 包裹时,也会生成一个基于组件配置的实例,内部可使用 props 中获取该实例,也可使用 _useI18n_** **获取该实例
panda 环境语种由多个值的选择决定
权重:
lang > userSearch > cookie(default) > cookie(custom) > defaultLang > DEFAULT_LANG
_如果用户在 __setConfig _设置的 langList(生效的语种) 当筛选出当前的语种时无法在 langList 找到时,会使用 langList 的第一个语种作为当前环境语种,保证语种一定在支持的语种列表中
FAQs
panda sdk lite
We found that @cainiaofe/panda-i18n-lite demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.