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

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 and Laravel Nova.

[ Documentation | Completion Status ]

News

  • in version 6.1, we propose a new file by language: validation-inline.php ( see #1268 )
  • in version 7, we propose new directory names to follow ISO-15897 ( see #1269 )
  • in version 8, we propose new directory names to follow Php Intl ( see #1453 )
  • in version 9, we propose new structure of files ( see #1606, #1607 )

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.9)
  • 12.9.9(Jan 7, 2023)

    Changed

    • [pt_BR]: Update translation of missed keywords by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2577

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.9.8...12.9.9

    Source code(tar.gz)
    Source code(zip)
  • 12.9.8(Jan 4, 2023)

    Changed

    • [es]: Updated missing keys for Spark Aurelius by @luisprmat in https://github.com/Laravel-Lang/lang/pull/2574

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.9.7...12.9.8

    Source code(tar.gz)
    Source code(zip)
  • 12.9.7(Jan 3, 2023)

    Changed

    • [pl]: New keys updated by @makowskid in https://github.com/Laravel-Lang/lang/pull/2570
    • [es]: Update json translations. by @luisprmat in https://github.com/Laravel-Lang/lang/pull/2571
    • [cs]: Localization for Laravel9 validation messages by @Kogol1 in https://github.com/Laravel-Lang/lang/pull/2573
    • [ar]: Translate Spark Aurelius keys by @mohamedsabil83 in https://github.com/Laravel-Lang/lang/pull/2572

    New Contributors

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

    Full Changelog: https://github.com/Laravel-Lang/lang/compare/12.9.6...12.9.7

    Source code(tar.gz)
    Source code(zip)
  • 12.9.6(Jan 3, 2023)

    Changed

    • [pt_BR]: Update translation of missed keywords by @EuCarlos in https://github.com/Laravel-Lang/lang/pull/2568
    • [tr]: Update translations by @slvler in https://github.com/Laravel-Lang/lang/pull/2567
    • [es]: Update php and php-inline.json by @luisprmat in https://github.com/Laravel-Lang/lang/pull/2569

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

    Source code(tar.gz)
    Source code(zip)
  • 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)
Owner
Laravel Lang
Translation of Laravel Framework
Laravel Lang
🗓 A library to help you work with dates in multiple languages, based on Carbon.

Date This date library extends Carbon with multi-language support. Methods such as format, diffForHumans, parse, createFromFormat and the new timespan

Jens Segers 1.8k Dec 30, 2022
Extracts translatable strings from source. Identical to xgettext but for template languages.

xgettext-template Extracts translatable strings from source. Identical to xgettext(1) but for template languages. Template language support Handlebars

Guillaume C. Marty 79 Oct 7, 2022
FBT - a internationalization framework for PHP designed to be not just powerful and flexible, but also simple and intuitive

FBT is an internationalization framework for PHP designed to be not just powerful and flexible, but also simple and intuitive. It helps with the follo

Richard Dobroň 4 Dec 23, 2022
Easy multilingual urls and redirection support for the Laravel framework

Linguist - Multilingual urls and redirects for Laravel This package provides an easy multilingual urls and redirection support for the Laravel framewo

Tanel Tammik 189 Jul 18, 2022
Provides support for message translation and localization for dates and numbers.

The I18n library provides a I18n service locator that can be used for setting the current locale, building translation bundles and translating messages. Additionally, it provides the Time and Number classes which can be used to output dates, currencies and any numbers in the right format for the specified locale.

CakePHP 26 Oct 22, 2022
Patchwork UTF-8 for PHP: Extensive, portable and performant handling of UTF-8 and grapheme clusters for PHP

Patchwork UTF-8 for PHP Patchwork UTF-8 gives PHP developpers extensive, portable and performant handling of UTF-8 and grapheme clusters. It provides

Nicolas Grekas 80 Sep 28, 2022
Automatically translate and review your content via Lokalise

This extension will work as a bridge between Pimcore and Lokalise for the purpose of automating the whole translation workflow. Thus eliminating most of the manual steps in the task along with availing quality translation-review service from Lokalise.

Pravin chaudhary 6 Jan 10, 2022
A morphological solution for Russian and English language written completely in PHP.

Morphos A morphological solution for Russian and English language written completely in PHP. Tests & Quality: Features [✓] Inflection of Personal name

Sergey 723 Jan 4, 2023
PHP library to collect and manipulate gettext (.po, .mo, .php, .json, etc)

Gettext Note: this is the documentation of the new 5.x version. Go to 4.x branch if you're looking for the old 4.x version Created by Oscar Otero http

Gettext 651 Dec 29, 2022
Filament Translations - Manage your translation with DB and cache

Filament Translations Manage your translation with DB and cache, you can scan your languages tags like trans(), __(), and get the string inside and tr

Fady Mondy 32 Nov 28, 2022
Easy localization for Laravel

Laravel Localization Easy i18n localization for Laravel, an useful tool to combine with Laravel localization classes. The package offers the following

Marc Cámara 3k Jan 4, 2023
[Deprecated] A Laravel package for multilingual models

This package has been deprecated. But worry not. You can use Astrotomic/laravel-translatable. Laravel-Translatable If you want to store translations o

Dimitris Savvopoulos 2k Dec 25, 2022
Better translation management for Laravel

Better localization management for Laravel Introduction Keeping a project's translations properly updated is cumbersome. Usually translators do not ha

Waavi 354 Dec 18, 2022
Package to manage Laravel translations locally

Translation Manager For Laravel Easy to use package that helps you with the translation of your Laravel application locally. Features ✅ Check all loca

null 5 Jan 8, 2022
Support multiple language resources for Laravel

Laratrans Support multiple language resources for Laravel. Docs Installation composer require lechihuy/laratrans After you install the package success

Lê Chí Huy 3 Dec 21, 2021
Laravel translation made __('simple').

Translation.io client for Laravel 5.5+/6/7/8 Add this package to localize your Laravel application. Use the official Laravel syntax (with PHP or JSON

Translation.io 109 Dec 29, 2022
🎌 Laravel Localization Helper :: Easily add translation variables from Blade templates.

LocalizationHelper Package for convenient work with Laravel's localization features and fast language files generation. Take a look at contributing.md

Awes.io 36 Jul 18, 2022
Manage Laravel translation files

Laravel 5 Translation Manager For Laravel 4, please use the 0.1 branch! This is a package to manage Laravel translation files. It does not replace the

Barry vd. Heuvel 1.5k Jan 4, 2023
A GUI for managing JSON translation files in your laravel projects.

Laravel Language Manager Langman is a GUI for managing your JSON language files in a Laravel project. Installation Begin by installing the package thr

Mohamed Said 515 Nov 30, 2022