mralgorithm/laravel-js-lang
Composer 安装命令:
composer require mralgorithm/laravel-js-lang
包简介
laravel localization for javascript
README 文档
README
laravel localization for javascript
use laravel __() function in javascript with same syntax
installation
to install this package run:
composer require mralgorithm/laravel-js-lang
then run this command to publish required files:
php artisan vendor:publish --tag=laravel-js-lang
to create json files from your lang directory run this command:
php artisan JsLang:update
for the last step, add this script to your template file eather to use JS functions
<script id="laravel_js_lang_helper" public-url="{{ url('/') }}" lang="{{ App::getLocale() }}" src="{{ url('/laravel-js-lang/js/JsLang.js') }}"><script>
functions
1. __():
function __(key,replace = '',locale = ''){}
as you can see, this function take three parameters(key,replace,locale) that key is necessary and others(replace,locale) is optional. this function return the translation(if exist!) or the key if the translation does not exist.
example
__('auth.failed')__('hello i am mralgorithm!')__('auth.throttle',{seconds:'50'})__('auth.failed','','fa')
for more detail please read Laravel Localization Document
2. lang_getLocale():
take no parameters
return current Locale
example
lang_getLocale()
en
3. lang_setLocale()
take Locale
return void
example
lang_getLocale()
en
lang_setLocale('fa')lang_getLocale()
fa
4. is_locale():
take Locale
return true if Locale equal to Locale parameter and false in otherwise
example
lang_setLocale('en')is_locale('fa')
false
is_locale('en')
true
Commands
1. JsLang:update;
this command convert your Lang directory to JSON files so JavaScript can use them
run this command whenever you make a change in your Lang directory
php artisan JsLang:update
mralgorithm/laravel-js-lang 适用场景与选型建议
mralgorithm/laravel-js-lang 是一款 基于 JavaScript 开发的 Composer 扩展包,目前已累计 2.8k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2022 年 10 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 mralgorithm/laravel-js-lang 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mralgorithm/laravel-js-lang 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 2.8k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-10-03