ifresh/laravel-enum-translations 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

ifresh/laravel-enum-translations

最新稳定版本:1.0.3

Composer 安装命令:

composer require ifresh/laravel-enum-translations

包简介

README 文档

README

a Laravel package that simplifies the translation of enums in your applications, making it easy to associate enum values with translated labels for multiple languages. It enhances code readability and maintainability by handling enum translations seamlessly.

This makes it super easy to provide your front-end with a list of enum-keys with corresponding labels.

Features

  • Automatically load translated labels for your application Enums
  • Provide a fallback based on the enum key to easily find missing translations
  • Follows the configured locale of your application

Getting started

  1. Use composer to install the package composer require ifresh/laravel-enum-translations
  2. Publish the configuration files ./artisan vendor:publish --tag=laravel-enum-translations
  3. Modify the lang/en/enums.php file OR copy this file to your application's locale folder.

Example

Given the following enum:

namespace App\Enums;

enum Cards: string
{
    case Hearts = 'hearts';
    case Diamonds = 'diamonds';
    case Clubs = 'clubs';
    case Spades = 'spades';
}

You can add translated values by modifying the lang/en/enums.php file:

return [
    'cards' => [
        'hearts' => 'Hearts ❤️',
        'diamonds' => 'Diamonds 💎',
        'clubs' => 'Clubs ♣️',
        'spades' => 'Spades ♠️',
    ],
];

Now to use these translations in your application by using the EnumTranslatorFacade:

If you simply want to get the list of all the translations for a single Enum (for instance when filling a dropdown) you can use the translate method available on the Facade:

use App\Enums\Cards;
use IFresh\EnumTranslations\EnumTranslatorFacade as EnumTranslator;

$translations = EnumTranslator::translate(Cards::class);
/*
 * [
 *   'hearts' => 'Hearts ❤️',
 *   'diamonds' => 'Diamonds 💎',
 *   'clubs' => 'Clubs ♣️',
 *   'spades' => 'Spades ♠️',
 * ]
 */

It is also possible to get the translated value for a single enum value, to do this you can use the translateValue method instead:

EnumTranslator::translateValue(Cards::class, Cards::Hearts); // 'Hearts ❤️'

When you pass null as the selected enum value, an empty string is returned:

EnumTranslator::translateValue(Cards::class, null); // '' 

Contributing

All contributions are welcome! Please open a GitHub Issue or create a Pull-request

License

The Laravel enum translations package is free software released under the MIT License. See LICENSE.txt for details.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-10-09