Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
Add full en_US.utf-8 lang support
Browse files Browse the repository at this point in the history
Merge branch 'lang-en_US' into development
  • Loading branch information
alariva committed Nov 12, 2015
2 parents c8d07a2 + 4a8d672 commit 1614749
Show file tree
Hide file tree
Showing 20 changed files with 1,561 additions and 0 deletions.
103 changes: 103 additions & 0 deletions resources/lang/en_US.utf8/app.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
<?php
/*************************************************************************
Generated via "php artisan localization:missing" at 2015/08/10 14:35:44
*************************************************************************/

return array (
//============================== New strings to translate ==============================//
// Defined in file /home/alariva/timegrid.io/app/resources/views/_footer.blade.php
'footer' =>
array (
'demo' => 'Remember this is a DEMO version.',
'local' => 'Local environment advice.',
),
// Defined in file /home/alariva/timegrid.io/app/resources/views/_footer.blade.php
//==================================== Translations ====================================//
'btn' =>
array (
'update' => 'Update',
),
'dateformat' =>
array (
'datetimepicker' => 'MM/DD/YYYY',
'carbon' => 'm/d/Y',
),
'label' =>
array (
'select_timezone' => 'TimeZone',
),
'name' => 'timegrid.io',
'nav' =>
array (
'login' => 'Login',
'logout' => 'Logout',
'manager' =>
array (
'business' =>
array (
'list' => 'List',
'menu' => 'My Businesses',
'register' => 'SignUp Business',
),
),
'manual' => 'User Manual',
'register' => 'Register',
'user' =>
array (
'business' =>
array (
'menu' => 'Businesses',
'my_appointments' => 'My Reservations',
'my_suscriptions' => 'Favourites',
'selector' => 'Browse',
'home' => 'Home',
),
),
'wizard' => 'Wizard',
'home' => 'Home',
),
'notifications' =>
array (
'title' => 'Recently',
),
'search' => 'Search',
//================================== Obsolete strings ==================================//
'business' =>
array (
'category' =>
array (
'doctor' => 'Healthcare',
'garage' => 'Car Repair',
'photography' => 'Photography',
),
),
'filter' => 'Filter',
'gender' =>
array (
'F' => 'Female',
'M' => 'Male',
),
'general' =>
array (
'btn' =>
array (
'confirm_deletion' => 'Confirm deletion?',
),
),
'home' =>
array (
'btn' =>
array (
'actions' => 'Actions',
),
),
'welcome' =>
array (
'btn' =>
array (
'enter' => 'Enter',
),
'description' => 'Login the application',
'title' => 'Welcome!',
),
);
26 changes: 26 additions & 0 deletions resources/lang/en_US.utf8/appointments.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?php
/*************************************************************************
Generated via "php artisan localization:missing" at 2015/07/29 12:57:57
*************************************************************************/

return array (
//==================================== Translations ====================================//
'text' =>
array (
'minutes' => 'minutes',
'to' => 'to',
'duration' => 'duration',
),
//================================== Obsolete strings ==================================//
'alert' =>
array (
'annulated' => 'Advice! Reservation was ANNULATED',
),
'status' =>
array (
'annulated' => 'Annulated',
'confirmed' => 'Confirmed',
'reserved' => 'Reserved',
'served' => 'Served',
),
);
57 changes: 57 additions & 0 deletions resources/lang/en_US.utf8/auth.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?php
/*************************************************************************
Generated via "php artisan localization:missing" at 2015/07/29 12:57:57
*************************************************************************/

return array (
//==================================== Translations ====================================//
'btn' =>
array (
'already_registered' => 'Already registered ? Login',
'forgot' => 'Forgot password ? Reset',
'not_registered' => 'Not registered yet ? SignUp',
),
'login' =>
array (
'alert' =>
array (
'message' => 'May I help ?',
'whoops' => 'Whoops!',
),
'email' => 'Email',
'forgot' => 'Forgot password',
'login' => 'Login',
'password' => 'Password',
'remember_me' => 'Remember me',
'title' => 'Login',
),
'register' =>
array (
'btn' =>
array (
'submit' => 'Register',
),
'email' => 'Your Email',
'name' => 'Your name',
'need_help' => 'Need help ?',
'password' => 'A password',
'password_confirmation' => 'Repeat password',
'title' => 'Hi! We are going to build your profile in timegrid.io',
'msg' =>
array (
'errors' => 'Errors',
),
),
'reset' =>
array (
'btn' =>
array (
'reset' => 'Reset password',
'send_link' => 'Send me the reset link',
),
'title' => 'Password reset',
),
//================================== Obsolete strings ==================================//
'failed' => 'These credentials are invalid. Did you forget your password?',
'throttle' => 'Too many attempts! Please try again within :seconds seconds.',
);
15 changes: 15 additions & 0 deletions resources/lang/en_US.utf8/emails.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

return [
'user' => [
'welcome' => [ 'subject' => 'Welcome to timegrid.io' ],
'appointment' => [
'reserved' => [ 'subject' => 'Information of your reservation' ],
],
],
'manager' => [
'appointment' => [
'reserved' => [ 'subject' => 'You have a reservation' ],
],
]
];
18 changes: 18 additions & 0 deletions resources/lang/en_US.utf8/errors.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php
/*************************************************************************
Generated via "php artisan localization:missing" at 2015/08/10 14:35:44
*************************************************************************/

return array (
//============================== New strings to translate ==============================//
// Defined in file /home/alariva/timegrid.io/app/resources/views/errors/403.blade.php
403 =>
array (
'description' => '403.description',
),
// Defined in file /home/alariva/timegrid.io/app/resources/views/errors/404.blade.php
404 =>
array (
'description' => '404.description',
),
);

1 comment on commit 1614749

@alariva
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Translation quality is good enough for development and testing purposes. Still, needs a refactor for reaching a production ready status.

Please sign in to comment.