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.
locale-path-loader
Advanced tools
文件编译阶段完成字符串替换, 在业务代码当中无需再编写过多用以加载不同语言包文件的判断语句
图片路径
模板文件中
<img src="/static/images/${locale}/loader.png"/>
编译后 --->>>
<img src="/static/images/en/loader.png"/>
css文件中图片路径
.box {
background: url('/static/images/${locale}/loader.png')
}
编译后 --->>>
.box {
background: url('/static/images/en/loader.png')
}
class属性:
<p class="box ${locale}">
编译后 --->>>
<p class="box en">
module.exports = {
....
loaders: [
{
test: /\.vue$/,
loaders: [
'vue',
'locale-path?local=en'
]
}
]
....
}
module.exports = {
....
module: {
rules: [{
test: /\.vue$/,
use: [{
loader: 'vue-loader',
...
}, {
loader: 'locale-path-loader',
options: {
locale: 'en'
}
}]
}]
}
....
}
FAQs
* 文件编译阶段完成字符串替换, 在业务代码当中无需再编写过多用以加载不同语言包文件的判断语句 * 提供自动维护语言`map`表功能。就近原则,在需要进行翻译的地方,编写好`map`,`loader`会遍历所有的文件去维护最终的`map`表。也可以不启用这个功能,还是单独在语言包文件进行手动的维护
The npm package locale-path-loader receives a total of 2 weekly downloads. As such, locale-path-loader popularity was classified as not popular.
We found that locale-path-loader 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.