SlideShare a Scribd company logo
1 of 17
LOCALIZATION IN
LARAVEL
Πως μπορούμε να έχουμε
πολλές γλώσσες σε ένα
Laravel app?
FILES LOCATION ?
en/passwords.php
gr/passwords.php
Για την Ελληνική γλώσσα,
Μεταφράζουμε τις τιμές στο
Αντίστοιχο αρχείο γλώσσας.
CONFIGURE THE LOCALE
FALLBACK LOCALE (config/app.php)
'fallback_locale' => 'en',
DETERMINE THE LOCALE
CODE IN LARAVEL BLADE VIEW()
@lang(‘langfile.variable’)
directive
The filename in /resources/lang/en
A ‘key’ name that holds the translated string
ALTERNATIVE SYNTAX
{{
trans(‘langfile.variable’) }}
ALTERNATIVE SYNTAX
{{
Lang::get(‘langfile.variable’
) }}
REPLACE PARAMS
Langfile /el/app.php
‘welcome’ => ‘Γειά σου :ΝΑΜΕ’
Blade view
trans(‘app.welcome’, [‘name’=>’George’)
PLURALIZATION
Langfile /el/app.php
‘invoiceFound’ => ‘Βρέθηκε ένα τιμολόγιο | Βρέθηκαν :invoices τιμολόγια’
Blade view
{{ trans_choice(‘app.invoiceFound’, 2, [‘invoices’=>2) }}
OVERRIDING PACKAGE LANG FILES
resources/lang/vendor/{package}/{locale}
COMPOSER PACKAGES HELPERS
FOR LOCALIZATION IN
LARAVEL
Υπάρχουν δεκάδες πακέτα. Θα
σας δείξω μόνο 2 που
χρησιμοποιώ καθημερινά.
MCAMARA/LARAVEL-LOCALIZATION
https://github.com/mcamara/laravel-localization
BARRYVDH/LARAVEL-TRANSLATION-
MANAGERhttps://github.com/barryvdh/laravel-translation-manager
GEORGE DRAKAKIS
Thank you!
@lollypopgr / github.com/drakakisgeo

More Related Content

Viewers also liked

НОВЫЕ АСПЕКТЫ ИЗУЧЕНИЯ НАРУШЕНИЙ МЫШЛЕНИЯ И ПОВЕДЕНИЯ ПРИ БАС
НОВЫЕ АСПЕКТЫ ИЗУЧЕНИЯ НАРУШЕНИЙ МЫШЛЕНИЯ И ПОВЕДЕНИЯ ПРИ БАСНОВЫЕ АСПЕКТЫ ИЗУЧЕНИЯ НАРУШЕНИЙ МЫШЛЕНИЯ И ПОВЕДЕНИЯ ПРИ БАС
НОВЫЕ АСПЕКТЫ ИЗУЧЕНИЯ НАРУШЕНИЙ МЫШЛЕНИЯ И ПОВЕДЕНИЯ ПРИ БАСALS Association
 
ОРГАНИЗАЦИЯ ПОМОЩИ ПАЦИЕНТАМ ПАЛЛИАТИВНОГО ПРОФИЛЯ В МОСКВЕ
ОРГАНИЗАЦИЯ ПОМОЩИ ПАЦИЕНТАМ ПАЛЛИАТИВНОГО ПРОФИЛЯ В МОСКВЕОРГАНИЗАЦИЯ ПОМОЩИ ПАЦИЕНТАМ ПАЛЛИАТИВНОГО ПРОФИЛЯ В МОСКВЕ
ОРГАНИЗАЦИЯ ПОМОЩИ ПАЦИЕНТАМ ПАЛЛИАТИВНОГО ПРОФИЛЯ В МОСКВЕALS Association
 
НОВОСТИ ИССЛЕДОВАНИЙ: НА ПУТИ К ПОБЕДЕ НАД БАС
НОВОСТИ ИССЛЕДОВАНИЙ: НА ПУТИ К ПОБЕДЕ НАД БАСНОВОСТИ ИССЛЕДОВАНИЙ: НА ПУТИ К ПОБЕДЕ НАД БАС
НОВОСТИ ИССЛЕДОВАНИЙ: НА ПУТИ К ПОБЕДЕ НАД БАСALS Association
 
Soluciones Energéticas de México
Soluciones Energéticas de México Soluciones Energéticas de México
Soluciones Energéticas de México IvnRivero1
 
Lecture 6 & 7 introduction to ethical analysis and clinical consultations
Lecture 6 & 7 introduction to ethical analysis and clinical consultationsLecture 6 & 7 introduction to ethical analysis and clinical consultations
Lecture 6 & 7 introduction to ethical analysis and clinical consultationsDr Ghaiath Hussein
 
Lecture 9 professionalism in medical practice (06.03.2017)
Lecture 9  professionalism in medical practice (06.03.2017)Lecture 9  professionalism in medical practice (06.03.2017)
Lecture 9 professionalism in medical practice (06.03.2017)Dr Ghaiath Hussein
 
Alfabeto para ilustrar
Alfabeto para ilustrarAlfabeto para ilustrar
Alfabeto para ilustrarDário Reis
 

Viewers also liked (7)

НОВЫЕ АСПЕКТЫ ИЗУЧЕНИЯ НАРУШЕНИЙ МЫШЛЕНИЯ И ПОВЕДЕНИЯ ПРИ БАС
НОВЫЕ АСПЕКТЫ ИЗУЧЕНИЯ НАРУШЕНИЙ МЫШЛЕНИЯ И ПОВЕДЕНИЯ ПРИ БАСНОВЫЕ АСПЕКТЫ ИЗУЧЕНИЯ НАРУШЕНИЙ МЫШЛЕНИЯ И ПОВЕДЕНИЯ ПРИ БАС
НОВЫЕ АСПЕКТЫ ИЗУЧЕНИЯ НАРУШЕНИЙ МЫШЛЕНИЯ И ПОВЕДЕНИЯ ПРИ БАС
 
ОРГАНИЗАЦИЯ ПОМОЩИ ПАЦИЕНТАМ ПАЛЛИАТИВНОГО ПРОФИЛЯ В МОСКВЕ
ОРГАНИЗАЦИЯ ПОМОЩИ ПАЦИЕНТАМ ПАЛЛИАТИВНОГО ПРОФИЛЯ В МОСКВЕОРГАНИЗАЦИЯ ПОМОЩИ ПАЦИЕНТАМ ПАЛЛИАТИВНОГО ПРОФИЛЯ В МОСКВЕ
ОРГАНИЗАЦИЯ ПОМОЩИ ПАЦИЕНТАМ ПАЛЛИАТИВНОГО ПРОФИЛЯ В МОСКВЕ
 
НОВОСТИ ИССЛЕДОВАНИЙ: НА ПУТИ К ПОБЕДЕ НАД БАС
НОВОСТИ ИССЛЕДОВАНИЙ: НА ПУТИ К ПОБЕДЕ НАД БАСНОВОСТИ ИССЛЕДОВАНИЙ: НА ПУТИ К ПОБЕДЕ НАД БАС
НОВОСТИ ИССЛЕДОВАНИЙ: НА ПУТИ К ПОБЕДЕ НАД БАС
 
Soluciones Energéticas de México
Soluciones Energéticas de México Soluciones Energéticas de México
Soluciones Energéticas de México
 
Lecture 6 & 7 introduction to ethical analysis and clinical consultations
Lecture 6 & 7 introduction to ethical analysis and clinical consultationsLecture 6 & 7 introduction to ethical analysis and clinical consultations
Lecture 6 & 7 introduction to ethical analysis and clinical consultations
 
Lecture 9 professionalism in medical practice (06.03.2017)
Lecture 9  professionalism in medical practice (06.03.2017)Lecture 9  professionalism in medical practice (06.03.2017)
Lecture 9 professionalism in medical practice (06.03.2017)
 
Alfabeto para ilustrar
Alfabeto para ilustrarAlfabeto para ilustrar
Alfabeto para ilustrar
 

Localization in laravel