Download the PHP package conedevelopment/i18n without Composer

On this page you can find all versions of the php package conedevelopment/i18n. 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 i18n

I18n

Push your Laravel translations to the front-end and use them easily with JavaScript.

A nice tool for SPAs and front-end heavy applications.

If you have any question how the package works, we suggest to read this post: Using Laravel’s Localization in JS.

Getting started

You can install the package with composer, running the composer require conedevelopment/i18n command.

Translations in view files

You can use the @translations blade directive. This directive automatically wraps the translations to a <script> tag.

You may override the default key for the translations. You can do that by passing a string to the blade directive.

Publishing and using the JavaScript library

Use the php artisan vendor:publish command and choose the Pine\I18n\I18nServiceProvider provider. After publishing you can find your fresh copy in the resources/js/vendor folder.

Using the I18n.js

Then you can import the I18n class and assign it to the window object.

Initializing a translation instance

From this point you can initialize the translation service anywhere from your application.

By default, it uses the translations key in the window object. If you want to use the custom one you set in the blade directive, pass the same key to the constructor.

Using it as a Vue service

If you want to use it from Vue templates directly you can extend Vue with this easily.

You can call it from your template or the script part of your component like below:

Methods

The package comes with two methods on JS side. The trans() and the trans_choice().

trans()

The trans method accepts the key of the translation and the attributes what we want to replace, but it's optional.

trans_choice()

The trans_choice method determines if the translation should be pluralized or nor by the given cout. Also, it accepts the attributes we want to replace.

Let's say we have the following translation line:

[!NOTE] The plural and the singular versions are separated by the | character!

Like in Laravel, you have the ability to set ranges for the pluralization. Also, you can replace placeholders like before.

You can separate more than two choices with the | character.

Transforming replacement parameters

Like in Laravel's functionality, you can transform your parameters to upper case, or convert only the first character to capital letter. All you need to do, to modify your placeholders.

If you want, you can pass the same parameter with different modifiers in one line as well, like :NAME, :name or :Name.

Package translations

Thanks to the idea of Jonathan, package translations are supported by default. You can access to the translations as in Laravel, using the predefined namespace.

Multiple locales

Multiple locales are supported. You can change the application's locale anytime. Behind the scenes the proper translations will be rendered, if it exists.

Fallback locales

If there are no translations is not available in the current language, the package will look for the fallback locale's translations. If there is no translations available in the fallback locale, the missing translations won't appear.

Performance

The translations are generated when the views are compiled. It means they are cached and stored as strings in the compiled views. It's much more performance friendly than generating them on runtime or running and AJAX request to fetch the translations.

Behind the scenes there is a switch - case that determines which translations should be present, based on the current locale. This way only the current translations are pushed to the window object and not all of them.

Note: On local environment the cached views are getting cleared to keep translations fresh.

Contribute

If you found a bug or you have an idea connecting the package, feel free to open an issue.


All versions of i18n with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0 || ^8.1
illuminate/translation Version ^9.0 || ^10.0 || ^11.0
illuminate/config Version ^9.0 || ^10.0 || ^11.0
illuminate/support Version ^9.0 || ^10.0 || ^11.0
illuminate/view Version ^9.0 || ^10.0 || ^11.0
illuminate/filesystem Version ^9.0 || ^10.0 || ^11.0
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 conedevelopment/i18n contains the following files

Loading the files please wait ....