Laravel localization in Greek Ελληνικά
Everything you need to ship Greek in a Laravel app: the right locale codes,
the exact plural forms trans_choice() expects,
real localized Carbon output and Greek-script considerations.
Every value on this page was generated by running ICU, CLDR and Carbon — not copied from another article.
ISO 639-1
el
Script / Direction
Greek · LTR
Plural forms (Laravel)
2
Text vs English
Expands
Locale codes
Set the base locale in config/app.php. For regional variants,
Greek commonly uses:
el_GR, el_CY
// config/app.php
'locale' => 'el',
'fallback_locale' => 'en',
// Or switch at runtime
App::setLocale('el');
Plural rules: what Greek actually needs
CLDR defines 2 cardinal categories for Greek. The sample numbers below were computed by ICU for this exact locale:
| CLDR category | Numbers that select it |
|---|---|
| one | 1 |
| other | 0, 2–130, 200, 1000, 1000000, 1.5 |
Laravel's trans_choice() maps numbers to
2 pipe-separated
forms for this locale:
| Form index | Numbers that select it |
|---|---|
| 0 | 1 |
| 1 | 0, 2–130, 200, 1000 |
// lang/el/messages.php
'items' => ':count item|:count items'
// Usage
trans_choice('messages.items', $count, ['count' => $count]);
Try any number live in the pluralization tester.
Localized dates with Carbon
Real output for Greek (el locale),
generated by Carbon for March 21, 2026:
$date = now()->locale('el');
$date->translatedFormat('l, j F Y');
// "Σάββατο, 21 Μαρτίου 2026"
$date->isoFormat('LLLL');
// "Σάββατο, 21 Μαρτίου 2026 2:30 ΜΜ"
$date->isoFormat('L');
// "21/03/2026"
$date->subDays(3)->diffForHumans();
// "πριν 3 μήνες"
What to watch out for in Greek
- Uses the Greek alphabet; sigma has a distinct final form (ς) used only at word end.
- Three grammatical genders and case declension change noun endings inside sentences.
- The question mark is a semicolon-like character (;), not "?".
- Decimal comma with dot as thousands separator (1.234,56).
Framework strings already translated
Laravel's own validation, auth and pagination strings are maintained in Greek by the open-source Laravel-Lang project (MIT). Install them, then manage your app's own strings live:
composer require laravel-lang/common --dev
php artisan lang:add el
php artisan lang:update
Translate your app into Greek today
Import your lang files, translate every key into Greek with one AI click, and publish changes live — no deploy. Set up in 5 minutes.