List of 77 languages for Laravel Framework 4, 5, 6, 7 and 8, Laravel Jetstream , Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova and Laravel Spark.

Overview

Laravel Lang

In this repository, you can find the lang files for the Laravel Framework 4/5/6/7/8, Laravel Jetstream , Laravel Fortify, Laravel Cashier, Laravel Breeze, Laravel Nova and Laravel Spark.

[ Documentation | Completion Status ]

News

  • in version 10.1, one json file by language, but split translation keys for English version (#1761)
  • in version 10, we split translation keys into Laravel packages (#1748, discussion)
  • in version 9.1, we include machine translations, with review by humans for some languages ( see Discussions )
  • in version 9, we propose new structure of files ( see #1606, #1607 )
  • in version 8, we propose new directory names to follow Php Intl ( see #1453 )
  • in version 7, we propose new directory names to follow ISO-15897 ( see #1269 )
  • in version 6.1, we propose a new file by language: validation-inline.php ( see #1268 )

Translation managers

Credits

Comments
  • The future of Laravel-lang

    The future of Laravel-lang

    I started this repository the 30 May 2013, with the help of Evgeny Kovalev, because Taylor Otwell didn't want to manage translations directly in Laravel Framework. We started with French, Russian, Dutch, Polish, Turk and Chinese versions, and now, we have 75 languages in the package.

    I admit that sometimes, I merged pull requests without review ; most of the time, because I didn't understand the language ( I'm French you know ). But I try to check some translations, the homogeneity and coherence of words, but it's not easy. Because some prefer to use this or that word for an expression, or because such a word is better for his project... Sometimes, I ask the review of another person, sometimes, with some authors, I know I can merge immediately. But, it's not optimal for the quality of translations.

    I don't say I want to stop, just take it easy, and I think it's time to detach this project from my Github account, create a new organization to manage it, include persons which will review pull requests and will choice the future of this project.

    So I'm open for proposition about the name of organization ( Laravel-Lang ? ) and who want to join it.

    Migration project

    Ideas :

    • list of referents by language : they are sollicited for a merge
    opened by caouecs 48
  • Laravel 8 - missing paginator translations (tailwind)

    Laravel 8 - missing paginator translations (tailwind)

    Hello, In Laravel 8 Tailwind paginator has new translation keys:

    {!! __('Showing') !!}
    <span class="font-medium">{{ $paginator->firstItem() }}</span>
    {!! __('to') !!}
    <span class="font-medium">{{ $paginator->lastItem() }}</span>
    {!! __('of') !!}
    <span class="font-medium">{{ $paginator->total() }}</span>
    {!! __('results') !!}
    

    I don't see translation in any language.

    opened by xorock 23
  • Roadmap v3

    Roadmap v3

    Hello, the aim of this project is the translation of Laravel files, all Laravel versions, and just translations.

    For the version 3 :

    • [x] new name for Composer : caouecs/laravel-lang
    • [x] translated files in src directory
    • [x] documentation
    opened by caouecs 20
  • Optimizing the location of documentation files

    Optimizing the location of documentation files

    1. Created the directory docs;
    2. Since the file TODO.md reflected the completion status, renamed it to status.md and put it in the folder docs;
    3. All files of statuses by language are generated in the folder docs/statuses;
    4. Cleaned up the README.md file by adding a link to the file docs/index.md;
    5. Split the file docs/index.md into pages.
    6. Made the documentation available in both the repository and GitHub Pages - this is a test link. The main one will be here: https://laravel-lang.github.io/lang.
    7. I renamed the contributing.md file to contributing-to-dev.md because the GitHub Pages compiler considers this word to be a reserved word and does not allow creating a page with such a link.

    image

    image

    image

    image

    image

    PS: The block at the bottom of the page is generated by GitHub Pages itself. When generated in the Laravel-lang project, all links will point to Laravel-lang, and the maintainer will be @caouecs.

    image

    PS2: I reduced the number of columns from 12 to 8 because this is the maximum number at which GitHub Pages correctly renders the table.

    PS3: The "Documentation" link from the README.md page leads to the md file (if necessary, I can replace it with GitHub Pages).

    image

    PS4: Link to GitHub Pages is available from the "environment" block of the repository page:

    image

    image

    After accepting the PR, don't forget to set up the branch to generate:

    image

    opened by andrey-helldar 19
  • Added check for the existence of keys

    Added check for the existence of keys

    What I've done:

    1. Added a script for checking the existence of keys. For example, if we remove the "foo" key from an English file, then it will be removed from all localizations. If you add the "bar" key to an English localization, it will be added to all localizations;
    2. Updated script for GitHub Actions;
    3. In dev-dependencies, added packages for easy work with files (most of the functionality is implemented in them). These packages WILL NOT be installed by users. Local development only. In our case, in GitHub Actions;
    4. Removed the search for unknown keys (: including not present) from the todo.md file generator;
    5. In this PR I included changes only for French localization, so as not to create noise;
    6. Sorting keys under the hood is done;
    7. Added a code that sorts the keys of the English localization (without this, the tests will not work correctly, and it will be easier for us);
    8. Added unit tests for checking keys for all pushes (Tests for PHP are specially divided by file names so that in case of errors we know which file the problem is with (see));

    Now the tests are being executed with an error for the reason that in this PR I did not commit the fixes for other languages.

    image

    image

    @Laravel-Lang/laravel-lang, guys.

    enhancement 
    opened by andrey-helldar 19
  • ISO 15897 format of country specific locales

    ISO 15897 format of country specific locales

    On https://laravel.com/docs/7.x/localization it says:

    For languages that differ by territory, you should name the language directories according to the ISO 15897. For example, "en_GB" should be used for British English rather than "en-gb".

    Wouldn't it be better to rename the country specific folders, e.g. de-CH -> de_CH?

    question 
    opened by bjoerne2 19
  • Splitting projects

    Splitting projects

    Note

    The development is in progress. The structure of localization and script files can change during development. Once it is over, everyone will be able to suggest their own adjustments.

    https://github.com/Laravel-Lang/lang/discussions/1702#discussioncomment-703215

    enhancement 
    opened by andrey-helldar 17
  • [de] Add german json for standard artisan make:auth

    [de] Add german json for standard artisan make:auth

    After running artisan make:auth, there are still translations missing, because the published blade files use translation keys as strings (__('E-Mail Address')).

    The required german translations are added with this commit.

    opened by tpraxl 16
  • Some translations have been lost in the new version (10.0)

    Some translations have been lost in the new version (10.0)

    • Laravel-Lang Version: 10.0.1
    • PHP Version: 8.0.3

    Description:

    Using the translations in a new project I was able to observe that some translations that were already correct have been lost.

    Captura

    Some of them are:

    The above translations were present in the version 9.1.2 in source/en.json

    Everything seems to indicate that they are the translations wrapped in Lang::get('...') and @lang directive that I referred to in this comment

    Steps To Reproduce:

    • Install a new laravel project with a starter kit
    • Set some language
    • Send a reset password email
    bug 
    opened by luisprmat 15
  • Fix: Some translations have been lost in the new version (10.0)

    Fix: Some translations have been lost in the new version (10.0)

    • [x] Recover localization files from version 9;
    • [x] Write and run a script that will find untranslated keys in recovered files and take the translation from files in the locales/{locale}/packages folder;
    • [x] Delete the locales/{locale}/packages folders;
    • [x] Change the key-value object to an array of values in the source/packages folder;
    • [x] Find translatable lines calls in a laravel/framework version 6 project and save them to source/en.json file;
    • [x] Find translatable lines calls in a laravel/framework version 7 project and save them to source/en.json file;
    • [x] Find translatable lines calls in a laravel/framework version 8 project and save them to source/en.json file;
    • [x] Update script app/excludes.php;
    • [x] Update script app/keys.php;
    • [x] Update script app/packages.php;
    • [x] Update script app/status.php;
    • [x] Delete script app/split-packages.php;
    • [x] Update tests.
    bug 
    opened by andrey-helldar 13
  • problem with lang.json

    problem with lang.json

    Hello,

    I am currently using the file json/fr.json from your repository. Everything is translated, except for this line :

    "If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser: [:displayableActionUrl](:actionURL)": "Si vous avez des problèmes en cliquant sur le bouton \":actionText\", faites un copié/collé de l'url ci-dessous dans votre navigateur :\n [:displayableActionUrl](:actionURL)".
    

    do you have any idea for this?

    opened by daltar 13
Releases(12.9.5)
  • 12.9.5(Dec 31, 2022)

    Changed

    • [tr]: Update translations by @slvler in https://github.com/Laravel-Lang/lang/pull/2566

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.9.4...12.9.5

    Source code(tar.gz)
    Source code(zip)
  • 12.9.4(Dec 30, 2022)

    Changed

    • [tr]: Update transactions by @slvler in https://github.com/Laravel-Lang/lang/pull/2565

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.9.3...12.9.4

    Source code(tar.gz)
    Source code(zip)
  • 12.9.3(Dec 29, 2022)

    Changed

    • [pt_BR]: Update translation keys by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2564

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.9.2...12.9.3

    Source code(tar.gz)
    Source code(zip)
  • 12.9.2(Dec 28, 2022)

    Changed

    • [fa]: Translate new keys by @ariaieboy in https://github.com/Laravel-Lang/lang/pull/2559
    • [id]: Update translations by @lakuapik in https://github.com/Laravel-Lang/lang/pull/2560
    • [fa]: Translate 2 missing keys by @ariaieboy in https://github.com/Laravel-Lang/lang/pull/2562
    • [pt_BR]: Update translation keys by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2563
    • [tr]: Update translations by @slvler in https://github.com/Laravel-Lang/lang/pull/2561

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.9.1...12.9.2

    Source code(tar.gz)
    Source code(zip)
  • 12.9.1(Dec 28, 2022)

    Changed

    • [sw]: Translation of added keywords by @Pheogrammer in https://github.com/Laravel-Lang/lang/pull/2557, https://github.com/Laravel-Lang/lang/pull/2558

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.9.0...12.9.1

    Source code(tar.gz)
    Source code(zip)
  • 12.9.0(Dec 27, 2022)

    Added

    • [source]: Projects added: Laravel Spark Aurelius and Aurelius Mollie by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2546
    • [source]: Added missing file from Laravel Spark projects by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2550
    • [source]: Added new keys for Laravel Spark Paddle by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2554
    • [source]: Added new keys for Laravel Spark Stripe by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2555

    Changed

    • Change name of Turkey to new official name Türkiye by @lwohlhart in https://github.com/Laravel-Lang/lang/pull/2545, https://github.com/Laravel-Lang/lang/pull/2552
    • [ru]: Translate Spark Aurelius keys by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2548
    • [pt_BR]: Update translation keys by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2549
    • [ru]: Translation of Laravel Spark Aurelius and Spark Aurelius Mollie keys by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2551
    • [ru]: Translation of new Laravel Spark Stripe and Paddle keys by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2556

    New Contributors

    • @lwohlhart made their first contribution in https://github.com/Laravel-Lang/lang/pull/2545

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.8.2...12.9.0

    Source code(tar.gz)
    Source code(zip)
  • 12.8.2(Dec 21, 2022)

  • 12.8.1(Dec 21, 2022)

    Changed

    • [ar]: Translate new Laravel Framework 9.x keys by @mohamedsabil83 in https://github.com/Laravel-Lang/lang/pull/2544

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.8.0...12.8.1

    Source code(tar.gz)
    Source code(zip)
  • 12.8.0(Dec 21, 2022)

    Added

    • [source]: Added decimal validation rule by @github-actions in https://github.com/Laravel-Lang/lang/pull/2536

    Changed

    • [sw]: Translation of added keywords by @Pheogrammer in https://github.com/Laravel-Lang/lang/pull/2537
    • [vi]: Update translation keys by @datlechin in https://github.com/Laravel-Lang/lang/pull/2539
    • [uk]: Update translations for new keys by @Oleksandr-Moik in https://github.com/Laravel-Lang/lang/pull/2540
    • [es]: Translate decimal validation rule by @luisprmat in https://github.com/Laravel-Lang/lang/pull/2541
    • [hr]: Added missing HR translations by @jure-knezovic in https://github.com/Laravel-Lang/lang/pull/2542
    • [pl]: Decimal key added by @makowskid in https://github.com/Laravel-Lang/lang/pull/2543
    • [ru]: Translate new Laravel 9 keys by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2538

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.7.3...12.8.0

    Source code(tar.gz)
    Source code(zip)
  • 12.7.3(Dec 16, 2022)

    Changed

    • [pt_BR]: Update translation keys by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2531

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.7.2...12.7.3

    Source code(tar.gz)
    Source code(zip)
  • 12.7.2(Dec 15, 2022)

    Changed

    • [az, tr]: Some phrases translated by @slvler in https://github.com/Laravel-Lang/lang/pull/2530

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.7.1...12.7.2

    Source code(tar.gz)
    Source code(zip)
  • 12.7.1(Dec 14, 2022)

    Changed

    • [pl] adding missing keys by @makowskid in https://github.com/Laravel-Lang/lang/pull/2529

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.7.0...12.7.1

    Source code(tar.gz)
    Source code(zip)
  • 12.7.0(Dec 14, 2022)

    Added

    • [source]: Added new ulid and ascii keys to Laravel 9 by @github-actions in https://github.com/Laravel-Lang/lang/pull/2523

    Changed

    • [it]: Update translations by @masterix21 in https://github.com/Laravel-Lang/lang/pull/2522
    • [ru]: Translate new Laravel 9 keys by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2524
    • [nl]: Update translations by @PerryvanderMeer in https://github.com/Laravel-Lang/lang/pull/2510
    • [bn]: Translation update. by @arman-arif in https://github.com/Laravel-Lang/lang/pull/2525
    • [pt]: Updated translations by @imrodrigoalves in https://github.com/Laravel-Lang/lang/pull/2499
    • [es]: Updade new ulid and ascii translations by @luisprmat in https://github.com/Laravel-Lang/lang/pull/2526
    • [ja]: Update translation by @wadakatu in https://github.com/Laravel-Lang/lang/pull/2527
    • [sw]: Translation of newly added keywords by @Pheogrammer in https://github.com/Laravel-Lang/lang/pull/2528

    New Contributors

    • @PerryvanderMeer made their first contribution in https://github.com/Laravel-Lang/lang/pull/2510
    • @imrodrigoalves made their first contribution in https://github.com/Laravel-Lang/lang/pull/2499

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.6.1...12.7.0

    Source code(tar.gz)
    Source code(zip)
  • 12.6.1(Dec 11, 2022)

    Changed

    • [pt_BR]: Add missing translation in json by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2521
    • [ro]: Translation on json.json by @Van4kk in https://github.com/Laravel-Lang/lang/pull/2520

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.6.0...12.6.1

    Source code(tar.gz)
    Source code(zip)
  • 12.6.0(Dec 10, 2022)

    Added

    • [source]: Added Laravel Breeze 1.x key by @github-actions in https://github.com/Laravel-Lang/lang/pull/2513

    Changed

    • [ru]: Translate new keys for Laravel Breeze 1.x by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2514
    • [ar]: Translate new keys for Laravel Breeze 1.x by @mohamedsabil83 in https://github.com/Laravel-Lang/lang/pull/2516
    • [es]: Translate new breeze key by @luisprmat in https://github.com/Laravel-Lang/lang/pull/2517
    • [bn]: New key translation update by @arman-arif in https://github.com/Laravel-Lang/lang/pull/2518
    • [uk]: Update translations by @Oleksandr-Moik in https://github.com/Laravel-Lang/lang/pull/2519

    Fixed

    • [docs]: Document generation bug fixed by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2515

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.5.8...12.6.0

    Source code(tar.gz)
    Source code(zip)
  • 12.5.8(Dec 6, 2022)

    Changed

    • [fr]: Update json.json by @marsuboss in https://github.com/Laravel-Lang/lang/pull/2500
    • [fa]: Improve the translations by @ariaieboy in https://github.com/Laravel-Lang/lang/pull/2511

    New Contributors

    • @marsuboss made their first contribution in https://github.com/Laravel-Lang/lang/pull/2500

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.5.7...12.5.8

    Source code(tar.gz)
    Source code(zip)
  • 12.5.7(Dec 5, 2022)

    Changed

    • [vi]: Update translations by @datlechin in https://github.com/Laravel-Lang/lang/pull/2501

    New Contributors

    • @datlechin made their first contribution in https://github.com/Laravel-Lang/lang/pull/2501

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.5.6...12.5.7

    Source code(tar.gz)
    Source code(zip)
  • 12.5.6(Dec 3, 2022)

    Changed

    • [bn]: Translation updated by @rHafijur in https://github.com/Laravel-Lang/lang/pull/2506
    • [ja]: Update translations by @wadakatu in https://github.com/Laravel-Lang/lang/pull/2509

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.5.5...12.5.6

    Source code(tar.gz)
    Source code(zip)
  • 12.5.5(Dec 1, 2022)

    Changed

    • [th]: Update translation by @pichaya07 in https://github.com/Laravel-Lang/lang/pull/2502
    • [pt_BR]: Add missing translation in json by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2504
    • [bn]: Some corrections made by @rHafijur in https://github.com/Laravel-Lang/lang/pull/2505

    New Contributors

    • @rHafijur made their first contribution in https://github.com/Laravel-Lang/lang/pull/2505

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.5.4...12.5.5

    Source code(tar.gz)
    Source code(zip)
  • 12.5.4(Nov 29, 2022)

    Changed

    • [th]: Updated translations by @pichaya07 in https://github.com/Laravel-Lang/lang/pull/2497
    • [bn]: Update translation keys by @tfevan in https://github.com/Laravel-Lang/lang/pull/2489

    New Contributors

    • @pichaya07 made their first contribution in https://github.com/Laravel-Lang/lang/pull/2497

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.5.3...12.5.4

    Source code(tar.gz)
    Source code(zip)
  • 12.5.3(Nov 25, 2022)

    Changed

    • [uk]: Translate new keys by @Oleksandr-Moik in https://github.com/Laravel-Lang/lang/pull/2498
    • [source]: Updated Laravel Framework master keys by @github-actions in https://github.com/Laravel-Lang/lang/pull/2496

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.5.2...12.5.3

    Source code(tar.gz)
    Source code(zip)
  • 12.5.2(Nov 23, 2022)

    Changed

    • [it]: Update translations by @masterix21 in https://github.com/Laravel-Lang/lang/pull/2493
    • [id]: Updated translations by @prolifel in https://github.com/Laravel-Lang/lang/pull/2494
    • [de]: Add/fix translations by @typingbeaver in https://github.com/Laravel-Lang/lang/pull/2495

    New Contributors

    • @prolifel made their first contribution in https://github.com/Laravel-Lang/lang/pull/2494

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.5.1...12.5.2

    Source code(tar.gz)
    Source code(zip)
  • 12.5.1(Nov 22, 2022)

    Changed

    • [ar]: Add missing translations by @majedamin974 in https://github.com/Laravel-Lang/lang/pull/2488, https://github.com/Laravel-Lang/lang/pull/2491
    • [sq]: Updated translations by @shefi in https://github.com/Laravel-Lang/lang/pull/2492

    New Contributors

    • @majedamin974 made their first contribution in https://github.com/Laravel-Lang/lang/pull/2488

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.5.0...12.5.1

    Source code(tar.gz)
    Source code(zip)
  • 12.5.0(Nov 21, 2022)

    Added

    • [source]: Added Laravel Nova key by 4.9.12 version by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2484

    Changed

    • [es]: Updated translations by @luisprmat in https://github.com/Laravel-Lang/lang/pull/2486
    • [sw]: Translation of added keyword by @Pheogrammer in https://github.com/Laravel-Lang/lang/pull/2490
    • [sq]: Updated translations by @shefi in https://github.com/Laravel-Lang/lang/pull/2487
    • [ru]: Translated new key of Laravel Nova by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2485

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.4.0...12.5.0

    Source code(tar.gz)
    Source code(zip)
  • 12.4.0(Nov 19, 2022)

    Added

    • [source]: Added Laravel Breeze 1.x keys by @github-actions in https://github.com/Laravel-Lang/lang/pull/2477

    Changed

    • [fa]: Update missing keys by @ariaieboy in https://github.com/Laravel-Lang/lang/pull/2478
    • [ru]: Translate new keys for Laravel Breeze 1.x by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2479
    • [es]: Update breeze translations by @luisprmat in https://github.com/Laravel-Lang/lang/pull/2480
    • [bn]: Translation update. by @arman-arif in https://github.com/Laravel-Lang/lang/pull/2481
    • [pt_BR]: Add missing translations by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2482
    • [zh_CN]: Add missing translations by @chuoke in https://github.com/Laravel-Lang/lang/pull/2483
    • [ru]: Improved context perception by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2476

    New Contributors

    • @chuoke made their first contribution in https://github.com/Laravel-Lang/lang/pull/2483

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.3.2...12.3.3

    Source code(tar.gz)
    Source code(zip)
  • 12.3.2(Nov 17, 2022)

    Changed

    • [ru]: Improved context perception by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2474
    • [ar]: Updated Laravel Framework 9.x keys by @mohamedsabil83 in https://github.com/Laravel-Lang/lang/pull/2475

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.3.1...12.3.2

    Source code(tar.gz)
    Source code(zip)
  • 12.3.1(Nov 16, 2022)

    Changed

    • [sw]: Translation updated by @Pheogrammer in https://github.com/Laravel-Lang/lang/pull/2468, https://github.com/Laravel-Lang/lang/pull/2470
    • [ru]: Translate new key by @andrey-helldar in https://github.com/Laravel-Lang/lang/pull/2469
    • [es]: Translated uppercase validation rule. by @luisprmat in https://github.com/Laravel-Lang/lang/pull/2471
    • [ro]: Translate new keys by @Van4kk in https://github.com/Laravel-Lang/lang/pull/2472, https://github.com/Laravel-Lang/lang/pull/2473
    • [de]: Translate missing keys by @julianstark999 in https://github.com/Laravel-Lang/lang/pull/2463

    New Contributors

    • @julianstark999 made their first contribution in https://github.com/Laravel-Lang/lang/pull/2463

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.3.0...12.3.1

    Source code(tar.gz)
    Source code(zip)
  • 12.3.0(Nov 15, 2022)

    Added

    • [source]: Updated Laravel Framework 9.x keys by @github-actions in https://github.com/Laravel-Lang/lang/pull/2467

    Changed

    • [ja]: Update translation by @wadakatu in https://github.com/Laravel-Lang/lang/pull/2464
    • [hr]: Added missing translations by @jure-knezovic in https://github.com/Laravel-Lang/lang/pull/2465
    • [hr]: Added missing translations & updated excludes by @jure-knezovic in https://github.com/Laravel-Lang/lang/pull/2466

    New Contributors

    • @jure-knezovic made their first contribution in https://github.com/Laravel-Lang/lang/pull/2465

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.2.3...12.3.0

    Source code(tar.gz)
    Source code(zip)
  • 12.2.3(Nov 13, 2022)

    Changed

    • [pt_BR]: Add missing translations in php-inline and php files by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2461
    • [ar]: Translate (lowercase) phrase by @mohamedsabil83 in https://github.com/Laravel-Lang/lang/pull/2462

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.2.2...12.2.3

    Source code(tar.gz)
    Source code(zip)
  • 12.2.2(Nov 12, 2022)

    Changed

    • [uk]: Translated new keys by @Oleksandr-Moik in https://github.com/Laravel-Lang/lang/pull/2460

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.2.1...12.2.2

    Source code(tar.gz)
    Source code(zip)
Owner
Laravel Lang
Translation of Laravel Framework
Laravel Lang
This Laravel Nova tool lets you run artisan and bash commands directly from Nova 4 or higher.

Laravel Nova tool for running Artisan & Shell commands. This Nova tool lets you run artisan and bash commands directly from nova. This is an extended

Artem Stepanenko 17 Dec 15, 2022
This Laravel Nova settings tool based on env, using nativ nova fields and resources

Nova Settings Description This Laravel Nova settings tool based on env, using nativ nova fields and resources Features Using native Nova resources Ful

Artem Stepanenko 21 Dec 28, 2022
This Laravel Nova package adds a Trumbowyg field to Nova's arsenal of fields.

Nova Trumbowyg Field This Laravel Nova package adds a Trumbowyg field to Nova's arsenal of fields. Requirements php: >=8.0 laravel/nova: ^4.0 Installa

outl1ne 3 Sep 25, 2022
Laravel breeze is a PHP Laravel library that provides Authentication features such as Login page , Register, Reset Password and creating all Sessions Required.

About Laravel breeze To give you a head start building your new Laravel application, we are happy to offer authentication and application starter kits

null 3 Jul 30, 2022
Laravel Real-time chat app demo with React, Laravel Echo, Breeze, Socket.io, Redis, Inertia.js, TailwindCSS stack.

Laravel Real-time Chat App You can build yours from scratch with the following Medium article https://medium.com/@sinan.bekar/build-a-real-time-chat-a

Sinan Bekar 9 Oct 3, 2022
Vandar Cashier is a Laravel package that allows you to seamlessly implement IPG and Direct Debit on your application

Vandar Cashier is a Laravel package that provides you with a seamless integration with Vandar services. Take a look at Vandar Documentation for more i

Vandar 11 Dec 14, 2022
Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

Introduction Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services. It handles almost all of the boilerpl

The Laravel Framework 2.2k Jan 4, 2023
Laravel Cashier Paddle provides an expressive, fluent interface to Paddle's subscription billing services.

Introduction Laravel Cashier Paddle provides an expressive, fluent interface to Paddle's subscription billing services. It handles almost all of the b

The Laravel Framework 189 Jan 5, 2023
Thunder is an advanced Laravel tool to track user consumption using Cashier's Metered Billing for Stripe. ⚡

⚡ Thunder Thunder is an advanced Laravel tool to track user consumption using Cashier's Metered Billing for Stripe. ⚡ ?? Supporting If you are using o

Renoki Co. 10 Nov 21, 2022
Official Mollie integration for Laravel Cashier

Subscription billing with Laravel Cashier for Mollie Laravel Cashier provides an expressive, fluent interface to subscriptions using Mollie's billing

Mollie 80 Dec 31, 2022
Driver for managing cash payments in the Cashier Provider ecosystem

Cash Driver Provider Installation To get the latest version of Cash Driver Provider, simply require the project using Composer: $ composer require cas

Cashier Provider 4 Aug 30, 2022
Laravel Jetstream is a beautifully designed application scaffolding for Laravel.

Laravel Jetstream is a beautifully designed application scaffolding for Laravel. Jetstream provides the perfect starting point for your next Laravel application and includes login, registration, email verification, two-factor authentication, session management, API support via Laravel Sanctum, and optional team management.

The Laravel Framework 3.5k Jan 8, 2023
Specially customized Laravel jetstream's scaffolding for Frest html + laravel admin Template

frest-html-laravel-jetstream Specially customized Laravel jetstream's scaffolding for Frest html + laravel admin Template. It'll not work with any oth

PIXINVENT CREATIVE STUDIO 0 Apr 5, 2022
A quiz application with laravel 8, spatie permissions, livewire, jetstream, chartjs, tailwindcss and more!

Todo Currently busy with some other important things, will definately would like to imporove the app with 1. Multiple choices selection and mapping to

Baig 67 Nov 21, 2022
A simple Socialite implementation for Laravel Jetstream.

Introduction Socialstream is a third-party package for Laravel Jetstream. It replaces the published authentication and profile scaffolding provided by

Joel Butcher 334 Jan 2, 2023
Utilizamos select2 con MySQL - Laravel 8 - livewire y jetstream

About Laravel Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experie

Informática DP 1 Jan 4, 2022
Links statistics & link tracking for laravel 5, It tracks down browsers, operating systems, languages and more

Links Links statistics for laravel 5 Table Of Contents Installation Configuration Usage Installation To install charts use composer Download composer

Erik C. Forés 52 Jul 31, 2021
Laravel 5 Package to Detect Users Browsers, Devices, Languages and Operating Systems

laravel-identify Laravel 5 Package to identify a User's Browser, Operating System, Language and Device Installation PHP 7.1+ or HHVM 3.3+, and Compose

Prosper Otemuyiwa 183 Nov 30, 2022
Laravel Nova filter for Spatie/laravel-tags

SpatieTagsNovaFilter This package allows you to filter resources by tags. (using the awesome Spatie/laravel-tags and Vue-MultiSelect ) Installation Fi

Mahi-Mahi 3 Aug 4, 2022