定制 repositoriomaster/laravel-translations 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

repositoriomaster/laravel-translations

最新稳定版本:1.1

Composer 安装命令:

composer require repositoriomaster/laravel-translations

包简介

Laravel Translations UI provides a simple way to manage your translations in your Laravel application. It allows you to add, edit, delete and export translations, and it also provides a search functionality to find translations.

README 文档

README

Credits Original developer:

https://github.com/MohmmedAshraf/laravel-translations

Introduction

Laravel Translations UI package provides a user-friendly interface for managing translations in your Laravel application. It simplifies tasks such as adding, editing, deleting, and exporting translations. The package also includes a handy search feature and the ability to invite collaborators for easy translation management. Currently, the package is integrated with the Google Translate API, allowing you to translate your content into any language of your choice.

📺 Watch a 4-minute video by Povilas Korop showcasing the package.

Install from Scratch

After uninstallation, perform a fresh installation of the package.

composer require repositoriomaster/laravel-translations --with-all-dependencies

Before you can access the translations UI, you'll need to publish the package's assets and migrations files by running the following command:

php artisan translations:install

Usage

To import your translations, run the following command:

php artisan translations:import

To import and overwrite all previous translations, use the following command:

php artisan translations:import --fresh

To access the translations UI, visit /translations in your browser. If you are using a production environment, you will need to create owner user first. To do so, run the following command:

php artisan translations:contributor

This command will prompt you to enter the user's name, email, and password. Once you have created the owner user, you can log in to the translations UI dashboard and start managing your translations.

Exporting Translations

You can export your translations from the translations UI dashboard or by running the following command:

php artisan translations:export

Configuration

You can configure the package and set your base language by publishing the configuration file:

php artisan vendor:publish --tag=translations-config

This will publish the translations.php configuration file to your config directory.

Upgrading

When upgrading to a new major version of Laravel Translations UI, it's important that you carefully review the upgrade guide.

In addition, when upgrading to any new Translations UI version, you should re-publish Translations UI assets:

php artisan translations:publish

To keep the assets up-to-date and avoid issues in future updates, you may add the translations:publish command to the post-update-cmd scripts in your application's composer.json file:

{
    "scripts": {
        "post-update-cmd": [
            "@php artisan translations:publish --ansi"
        ]
    }
}

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-04-01