Download the PHP package manadinho/lara-translate without Composer

On this page you can find all versions of the php package manadinho/lara-translate. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package lara-translate

Translation Management and Key Translation in one place. ![Laravel Translation UI](translation.png)

About Lara Translate

Lara Translate is a package that enables you to manage your translations efficiently. One of its remarkable features is the ability to seamlessly translate keys from one language to another directly from the User Interface. More impressive Thing is that it works for free. Behind the scenes, it leverages the MyMemory API to handle key translations.

The package allows you to manage your translations using the native file based translations.

You can add new translation files. You can also add, delete or translate the tranlation keys.

Installation

Install the package via Composer

composer require manadinho/lara-translate

Publish configuration, views and assets

php artisan vendor:publish --provider="Manadinho\LaraTranslate\LaraTranslateServiceProvider"

It will publish a config file laraTranslate.php for the package, views for the package inside views/vendor/lara-translate, It will also publish the assets including css file for the package.

Now just visit this url in browser to see the Lara Translate screen. http://{project-domain}/lara-translate/

Usage

Configuration

We can manage the settings of the package from this file. These are the details.

Here we can define the source language for performing the translation of translation keys. Default source_language is 'en'. Use language code which you want to use as source_language.

You can also control if you want to show the translate button for the translation keys.

You can also control if you want to show the delete button for the translation keys.

Add middlewares that you want to apply on the package routes.

This is the first segment of URI. By default the first segment of URI will be 'lara-translate'. e.g. http://{project-domain}/lara-translate/ . But you can also customize this here.

The methods to use when searching for missing translation keys in project.

Paths of the directories that need to be used to search missing translation keys.

Path to lang files. By default it will use default paths for Laravel 10 or older versions. But if you have some different path you can provide it here.

Artisan Commands

The package includes Artisan commands to manage the translations.

Shows missing translation keys against the translations/locales. Package searches for the missing translation keys from the directories given in scan_paths in config file.

This command will look for the missing translation keys and add the keys in translation files. If you want to sync specific translation file, you can simply provide the file name.


All versions of lara-translate with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package manadinho/lara-translate contains the following files

Loading the files please wait ....