Laravel localization in Swedish Svenska
Everything you need to ship Swedish in a Laravel app: the right locale codes,
the exact plural forms trans_choice() expects,
real localized Carbon output and Latin-script considerations.
Every value on this page was generated by running ICU, CLDR and Carbon — not copied from another article.
ISO 639-1
sv
Script / Direction
Latin · LTR
Plural forms (Laravel)
2
Text vs English
Similar
Locale codes
Set the base locale in config/app.php. For regional variants,
Swedish commonly uses:
sv_SE, sv_FI
// config/app.php
'locale' => 'sv',
'fallback_locale' => 'en',
// Or switch at runtime
App::setLocale('sv');
Plural rules: what Swedish actually needs
CLDR defines 2 cardinal categories for Swedish. 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/sv/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 Swedish (sv locale),
generated by Carbon for March 21, 2026:
$date = now()->locale('sv');
$date->translatedFormat('l, j F Y');
// "lördag, 21 mars 2026"
$date->isoFormat('LLLL');
// "lördag 21 mars 2026 kl. 14:30"
$date->isoFormat('L');
// "2026-03-21"
$date->subDays(3)->diffForHumans();
// "för 3 månader sedan"
What to watch out for in Swedish
- Definite article is a suffix (boken = "the book"), so "the {noun}" patterns do not map one-to-one.
- Two grammatical genders (en/ett words) affect articles and adjective endings.
- Informal du is universal in modern Swedish, including UI copy.
- Decimal comma with space as thousands separator (1 234,56); dates are commonly written yyyy-mm-dd.
Framework strings already translated
Laravel's own validation, auth and pagination strings are maintained in Swedish 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 sv
php artisan lang:update
Translate your app into Swedish today
Import your lang files, translate every key into Swedish with one AI click, and publish changes live — no deploy. Set up in 5 minutes.