承接 menarasolutions/fluent-laravel 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

menarasolutions/fluent-laravel

Composer 安装命令:

composer require menarasolutions/fluent-laravel

包简介

Laravel package for Fluent translations (application localisation)

README 文档

README

Build Status Latest Stable Version Total Downloads Code Climate Test Coverage License

Laravel package for Fluent translations (application localisation)

Localization flow of Laravel

Laravel offers two options for localization: key-based texts and plain JSON texts.

Key-based language files: {locale}/{group}.php (PHP array format)

Use: __('auth.please_wait')

Drawbacks: after adding a new key to the main locale, the same key has to be manually added to all other locales.

It's easy for locales to go out of sync. Some texts may be present in the language files but not be in use anywhere.

JSON files: {locale}.json (JSON format)

Use: __('Please wait, authorizing')

Drawbacks: if the same text needs different translations in different contexts, this doesn't work well.

It's hard to say how much of content is translated because there is no original text dictionary.

Localization flow of Fluent

Fluent offers you to store and manage your translations in the "cloud" which makes it trivial to outsource translations to translation market places or colleagues. Even if you translate everything yourself, Fluent interface will be far more convenient for this task (eg. you will see clearly current status, get hints from MTs, find unused texts, etc).

Installation

Use Composer to install this package:

$ composer require menarasolutions/fluent-laravel

Add our service provider to config/app.php:

 'providers' => [
 /// ...
     MenaraSolutions\FluentLaravel\Providers\LaravelServiceProvider::class,
 /// ...
 ],

Create a config file (config/fluent.php):

$ php artisan vendor:publish

Add your Fluent API key and application ID in this config file and you are ready to run!

Uploading original texts

You need to submit your original, untranslated texts to Fluent from time to time so that you or your translators can start working on translations. To do that run scan command:

$ php artisan fluent:scan -v

This command will scan your src and resources/views folders and look for all invocations of __(), trans() and @lang(). Moreover, you will be prompted whether you want to upload your existing translations from resources/lang folder to Fluent.

Updating language files

Run the following command anytime during development or during your CI/CD pipeline:

$ php artisan fluent:fetch

This command will look for any new translations on Fluent and download them to resources/lang-fluent folder.

Note

This package will not alter any of your files. This package creates an extra folder in resources/ - lang-fluent, all new languagae files will be stored here.

You can move back to standard translation implementation at any time. Simply comment out our service provider in config/app.php.

menarasolutions/fluent-laravel 适用场景与选型建议

menarasolutions/fluent-laravel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 27 次下载、GitHub Stars 达 1, 最近一次更新时间为 2017 年 05 月 09 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「php」 「translation」 「laravel」 「localization」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 menarasolutions/fluent-laravel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 menarasolutions/fluent-laravel 我们能提供哪些服务?
定制开发 / 二次开发

基于 menarasolutions/fluent-laravel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 27
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 5
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-05-09