All Projects → franzdumfart → Laravel Nova Localizations

franzdumfart / Laravel Nova Localizations

🌎 Localization files for Laravel Nova

Projects that are alternatives of or similar to Laravel Nova Localizations

Nova Stripe Theme
A Laravel Nova theme closely resembling Stripe.
Stars: ✭ 71 (-55.9%)
Mutual labels:  laravel, nova
Nova Indicator Field
A colour-coded indicator field for Laravel Nova
Stars: ✭ 108 (-32.92%)
Mutual labels:  laravel, nova
Awesome Nova
🎉 A curated list of awesome things related to Laravel Nova
Stars: ✭ 92 (-42.86%)
Mutual labels:  laravel, nova
Nova Custom Email Sender
A Laravel Nova tool that sends ad-hoc email messages from the dashboard.
Stars: ✭ 62 (-61.49%)
Mutual labels:  laravel, nova
Nova Settings Tool
Laravel Nova tool to view and edit application settings.
Stars: ✭ 131 (-18.63%)
Mutual labels:  laravel, nova
Laravel Lang
🌏 75 languages support for Laravel application.
Stars: ✭ 1,134 (+604.35%)
Mutual labels:  laravel, localization
Collapsible Resource Manager
A custom sidebar menu with collapsible groups
Stars: ✭ 100 (-37.89%)
Mutual labels:  laravel, nova
Laravel Multilang
Package to integrate multi language (multi locale) functionality in Laravel 5.x.
Stars: ✭ 47 (-70.81%)
Mutual labels:  laravel, localization
Nova Repeatable Fields
A Laravel Nova field for configuring repeatable sets of fields
Stars: ✭ 126 (-21.74%)
Mutual labels:  laravel, nova
Nova Translatable
Making Nova fields translatable
Stars: ✭ 119 (-26.09%)
Mutual labels:  laravel, nova
Laravel Nova Permission
A Laravel Nova tool for the Spatie Permission package
Stars: ✭ 59 (-63.35%)
Mutual labels:  laravel, nova
Localization
🌐 Localization package for Laravel
Stars: ✭ 142 (-11.8%)
Mutual labels:  laravel, localization
Nova Route Viewer
Route viewer tool for Laravel Nova
Stars: ✭ 54 (-66.46%)
Mutual labels:  laravel, nova
Nova Advanced Image Field
🌄📐 A Laravel Nova advanced image field with cropping and resizing using Cropper.js and Intervention Image
Stars: ✭ 67 (-58.39%)
Mutual labels:  laravel, nova
Nova Mega Filter
Allows you to control the columns and filters shown on any Nova resource index
Stars: ✭ 49 (-69.57%)
Mutual labels:  laravel, nova
Laravel Localize Middleware
Configurable localization middleware for your Laravel >=5.1 application
Stars: ✭ 92 (-42.86%)
Mutual labels:  laravel, localization
Nova Laravel Update Card
Check if you're running the latest Laravel version right from your Nova dashboard.
Stars: ✭ 34 (-78.88%)
Mutual labels:  laravel, nova
Nova Time Field
Laravel Nova Time Field
Stars: ✭ 45 (-72.05%)
Mutual labels:  laravel, nova
Nova Tail Tool
A Laravel Nova tool to display the application log
Stars: ✭ 110 (-31.68%)
Mutual labels:  laravel, nova
Nova Slug Field
Slug field for Laravel Nova
Stars: ✭ 131 (-18.63%)
Mutual labels:  laravel, nova

Laravel Nova Localizations

Laravel Nova Localization Logo

This repository is like Babbel for your Laravel Nova app, without the learning part. It's a curated list of thirty language files for your favorite admin panel. Big thanks to all the great worldwide contributors.

StyleCI Status


Available languages (30 languages)

Language Code LCID Thanks to
Albanian sq sallmin
Arabic ar ar-sy Danyel Alkeddah
Azeri az az-az Energon7
Bengali bn bn-bd iamazik
Bulgarian bg bg suncho26
Catalan ca es-ca lloople
Chinese (China) zh zh-cn jltxwesley, yangliulnn, nighon
Chinese (Traditional) zh zh-tw tinghom, yangliulnn, MilesWuCode
Danish da peterbrinck
Dutch nl Cannonb4ll, patrickbergman, DannyStreur, ovvessem, johanvanhelden
English en en-us Nova folks
Finnish fi joonas1234, SirMathays
French fr fr-fr xel1045, benjamincrozat, electronick86, bmichotte, Manoz
German de de-de franzdumfart, mrmonat, pajoda, dastiii, hofmannsven, renky
Greek gr Erth0
Hungarian hu milli05, drobee
Indonesian id mul14, zeroseed
Italian it it-it s3b4stian
Korean ko getsolaris, namolab
Lithuanian lt girvydas, Justas Maziliauskas
Norwegian nb nb-no LasseHaslev, Marcuzz
Persian (Farsi) fa mehranhadidi
Polish pl aurawindsurfing, JackShev
Portuguese (Brazil) pt pt-br dessimoni
Portuguese (Portugal) pt pt-pt sikrew
Russian ru ru SerhiiStarovoitov, mexoboy, darmen
Slovenian sl sl morpheus7CS, squierll
Spanish es es-es tinthenet, Zerquix18, driade, kennyhorna
Tagalog tl ambengers
Turkish tr emir, EnesCakir
Ukrainian uk ustych, igorbabko

Usage

Manual

Navigate to the lang folder, download your preferred language files, save them to /resources/lang/vendor/nova/. For further details about Nova Localization, please check out the docs.

Automatic

You can make sure that you are always up to date with the latest translations by adding two commands on the pre-update-cmd hook in your composer.json file. Of course, you can do that for as many languages as you want.

{
  "scripts": {
    "pre-update-cmd": [
      "@php -r \"mkdir('./resources/lang/vendor/nova', 0776, true);\"",
      "@php -r \"copy('https://raw.githubusercontent.com/franzdumfart/laravel-nova-localizations/master/lang/fr.json', './resources/lang/vendor/nova/fr.json') || exit (1);\"",
      "@php -r \"mkdir('./resources/lang/vendor/nova/fr', 0776, true);\"",
      "@php -r \"copy('https://raw.githubusercontent.com/franzdumfart/laravel-nova-localizations/master/lang/fr/validation.php', './resources/lang/vendor/nova/fr/validation.php') || exit (1);\""
    ]
  }
}

Don't forget to customize for your needs.

Force Nova localization

If you need to force the localization of Nova, you can add the following lines to NovaServiceProvider.php in the boot method :

Nova::serving(function () {
    App::setLocale('fr');
});

Help

Feel free to submit a pull request, add your desired language or updates.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].