From 492d64b6b90325d4c17c51152813566ada4f3d7f Mon Sep 17 00:00:00 2001 From: Bogdan Covrig Date: Sat, 28 Sep 2019 03:25:06 +0200 Subject: [PATCH] Add RO locale settings --- app/config/locale/ro.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 app/config/locale/ro.php diff --git a/app/config/locale/ro.php b/app/config/locale/ro.php new file mode 100644 index 000000000..c1669e6d2 --- /dev/null +++ b/app/config/locale/ro.php @@ -0,0 +1,21 @@ + '"Arta de a fi înţelept este arta de a intui ce trebuie trecut cu vederea."', // This is the line printed in the homepage and console 'view-source' + 'settings.locale' => 'ro', + 'settings.direction' => 'ltr', + + // Service - Users + 'auth.emails.team' => '%s Echipa', + 'auth.emails.confirm.title' => 'Confirmă Contul', + 'auth.emails.confirm.body' => 'ro.email.auth.confirm.tpl', + 'auth.emails.recovery.title' => 'Resetează Parola', + 'auth.emails.recovery.body' => 'ro.email.auth.recovery.tpl', + 'auth.emails.invitation.title' => 'Invitație în Echipa %s la %s', + 'auth.emails.invitation.body' => 'ro.email.auth.invitation.tpl', + + 'locale.country.unknown' => 'Necunoscut', + + 'countries' => include 'ro.countries.php', + 'continents' => include 'ro.continents.php', +];