Skip to content

Commit aed545a

Browse files
committed
Merge pull request #53 from Remo/lang-dir
lang strings
2 parents e32647c + 9dbfcdf commit aed545a

36 files changed

+332
-154
lines changed

app/lang/en/admin.php

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?php
2+
3+
return array(
4+
'editing_category' => 'Editing category',
5+
'viewing_category' => 'Viewing category',
6+
'category_for_tricks' => 'Categories for Laravel tricks',
7+
'add_new_category' => 'Add new Category',
8+
'title' => 'Title',
9+
'name' => 'Name',
10+
'description' => 'Description',
11+
'num_of_tricks' => '# of Tricks',
12+
'actions' => 'Actions',
13+
'cancel' => 'Cancel',
14+
'edit' => 'Edit',
15+
'create' => 'Create',
16+
'keep' => 'Keep',
17+
'tag' => 'Tag',
18+
'add_new_tag' => 'Add new Tag',
19+
'viewing_users' => 'Viewing Users',
20+
'tag_will_be_deleted' => 'This Tag will be deleted!',
21+
'all_tags' => 'All Tags',
22+
'adding_new_tag' => 'Adding new Tag',
23+
'delete' => 'Delete',
24+
'viewing_tags' => 'Viewing Tags',
25+
'adding_new_category' => 'Adding new category',
26+
'editing_a_category' => 'Editing a category',
27+
'editing_tag' => 'Editing tag',
28+
'editing_a_tag' => 'Editing a tag',
29+
'save_category' => 'Save category',
30+
'save_tag' => 'Save tag',
31+
'please_fix_errors' => 'Please fix the errors below:',
32+
'are_you_sure' => 'Are you sure?',
33+
'category_will_be_deleted' => 'This Category will be deleted!',
34+
'showing_all_users' => 'Showing all users',
35+
'avatar' => 'Avatar',
36+
'email' => 'Email',
37+
'tricks' => 'Tricks',
38+
'date_registered' => 'Date Registered',
39+
'github_profile' => 'Github Profile?',
40+
41+
);

app/lang/en/emails.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
return array(
4+
'password_reset' => 'Password Reset',
5+
'reset_password_here' => 'To reset your password, complete this form: :form_link',
6+
7+
);

app/lang/en/feeds.php

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
return array(
4+
'title' => 'Laravel-Tricks',
5+
'link' => 'http://www.laravel-tricks.com',
6+
'sub_title' => 'Laravel tricks is a website that aggregates useful tips and tricks for Laravel PHP framework',
7+
'author' => '
8+
<author>
9+
<name>Maks Surguy</name>
10+
<uri>http://twitter.com/msurguy</uri>
11+
</author>
12+
<author>
13+
<name>Stidges</name>
14+
<uri>http://twitter.com/stidges</uri>
15+
</author>',
16+
);
17+

app/lang/en/home.php

Lines changed: 40 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,48 @@
22

33
return array(
44
'about_tricks_website' => 'About Laravel-Tricks website',
5+
'about_title' => 'About Laravel tricks',
56
'error' => 'Error',
7+
'error_title' => 'Whoops... That\'s an error...',
8+
'registration' => 'Registration',
9+
'errors_during_registration' => 'There were errors during registration:',
10+
'password' => 'Password',
11+
'password_placeholder' => 'Password...',
12+
'or' => 'OR',
13+
'already_have_an_account' => 'Already have an account?',
14+
'confirm_password' => 'Confirm Password',
15+
'confirm_password_placeholder' => 'Confirm Password...',
16+
'email' => 'Email',
17+
'email_placeholder' => 'Email...',
18+
'username' => 'Username',
19+
'username_placeholder' => 'Username...',
20+
'password_placeholder' => 'Password...',
21+
'register' => 'Register',
22+
'register_with_github' => 'Register with Github',
23+
'github_mail_not_verified' => 'You don\'t have any verified emails in your Github profile, please register using email',
624
'welcome' => 'Welcome',
25+
'forgot_your_password' => 'Forgot your password?',
26+
'do_not_have_account_yet' => 'Don\'t have an account yet?',
727
'login' => 'Login',
8-
'registration' => 'Registration',
9-
28+
'login_with_github' => 'Login with Github',
29+
'login_title' => 'Login',
30+
'email_or_password_incorrect' => 'E-mail or password was incorrect, please try again',
31+
'password_has_been_reset' => 'Your password has been reset, please log in',
32+
'remember_me' => 'Remember me',
33+
'latest_tricks' => 'Latest tricks',
34+
'share_title' => 'Share &amp; follow',
35+
'share_twitter' => 'Share on Twitter',
36+
'twitter_text' => 'Tips and Tricks for @laravelphp from @laraveltricks #php #dev #tips',
37+
'share_facebook' => 'Share on Facebook',
38+
'facebook_text' => 'Useful Tips and Tricks for Laravel PHP framework',
39+
'about_what_is_this' => '<h2>What is this</h2>
40+
<p>Laravel Tricks was created to help <a href="http://laravel.com" target="_blank">Laravel</a> community find and share interesting ways of using <a href="http://laravel.com" target="_blank">Laravel</a> framework</p>
41+
42+
<p>The idea is simple: When you work with Laravel long enough you find some cool ways of using it, and to other people they might seem as &quot;tricks&quot; so we thought to create a centralized place for all Laravel users to share those findings.</p>',
43+
'about_who' => '<h2>Who?</h2>
44+
<p>Laravel Tricks website was created by <a target="_blank" href="http://twitter.com/stidges">Stidges</a> and <a target="_blank" href="http://twitter.com/msurguy">Maks Surguy</a> in November 2013</p>
45+
46+
<h3>Want the source?</h3>
47+
The source of this website is available on <a target="_blank" href="https://github.com/CodepadME/laravel-tricks" title="Get the source of this site">Github</a>.'
1048
);
1149

app/lang/en/layouts.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
return array(
4+
'meta_description' => 'Laravel tricks is a website that aggregates useful tips and tricks for Laravel PHP framework',
5+
'meta_author' => 'Stidges, @stidges and Maks Surguy, @msurguy',
6+
'site_title' => 'Laravel-Tricks.com',
7+
8+
);
9+
10+

app/lang/en/partials.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
return array(
4+
'credits' => 'Website built with <a href="http://laravel.com">Laravel</a> by <a target="_blank" href="http://twitter.com/stidges">Stidges</a> &amp; <a target="_blank" href="http://twitter.com/msurguy">Maks Surguy</a>',
5+
'about' => 'About',
6+
'register' => 'Register',
7+
'login' => 'Login',
8+
'profile' => 'Profile',
9+
'my_tricks' => 'My Tricks',
10+
'my_profile' => 'My Profile',
11+
'toggle_navigation' => 'Toggle navigation',
12+
'search_placeholder' => 'Search...',
13+
'my_favorites' => 'My Favorites',
14+
'settings' => 'Settings',
15+
'logout' => 'Logout',
16+
'footer_links' => '<a target="_blank" href="http://twitter.com/laraveltricks" title="Follow updates"><i class="fa fa-twitter fa-lg"></i></a>
17+
|
18+
<a target="_blank" href="https://github.com/CodepadME/laravel-tricks" title="Get the source of this site"><i class="fa fa-github fa-lg"></i></a>',
19+
20+
);
21+

app/lang/en/password.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
return array(
44
'reset_password' => 'Reset password',
55
'resetting_password' => 'Resetting password',
6+
'mail_has_been_sent' => 'An e-mail with the password reset link has been sent.',
7+
'email' => 'Email',
8+
'email_reset_placeholder' => 'Email',
9+
'new_password' => 'New Password',
10+
'confirm_password' => 'Confirm New Password',
11+
'reset' => 'Reset password',
12+
'remember_password' => 'Remembered password? Login',
13+
'invalid_password_or_mail' => 'The password reset token or email is invalid',
14+
'resetting_password' => 'Resetting password',
15+
'email_placeholder' => 'E-mail to send password reminder...',
616

717
);
818

app/lang/en/search.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
return array(
44
'search_results_for' => 'Search results for ":term"',
5+
'please_provide_search_term' => 'Please provide a search term',
56

67
);
78

app/lang/en/tricks.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,24 @@
22

33
return array(
44
'trick' => 'Trick',
5+
'submitted' => 'Submitted :timeago :categories',
6+
'are_you_sure' => 'Are you sure?',
7+
'cancel' => 'Cancel',
8+
'creating_new_trick' => 'Creating a new trick',
9+
'update_trick' => 'Update Trick',
10+
'delete' => 'Delete',
11+
'title' => 'Title',
12+
'no_tricks_found' => 'Sorry, but I couldn\'t find any tricks for you!',
13+
'tag_trick_placeholder' => 'Tag this trick',
14+
'categorize_trick_placeholder' => 'Choose Categories for this trick',
15+
'title_placeholder' => 'Name this trick',
16+
'description' => 'Description',
17+
'remove_trick' => 'Remove trick',
18+
'trick_description_placeholder' => 'Give detailed description of the trick',
19+
'trick_code' => 'Trick code:',
20+
'save_trick' => 'Save Trick',
21+
'editing_trick' => 'Editing trick',
22+
'errors_while_editing' => 'There were errors while editing this trick:',
23+
'errors_while_creating' => 'There were errors while creating this trick:',
24+
'are_you_sure_text' => 'Are you sure you want to remove this trick?',
525
);

app/lang/en/user.php

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,34 @@
11
<?php
22

33
return array(
4+
'account_settings' => 'Account Settings',
45
'my_favorites' => 'My Favorites',
56
'profile' => 'Profile',
67
'settings' => 'Settings',
8+
'welcome' => 'Welcome to Laravel tricks!',
9+
'welcome_subtitle' => 'Explore the tricks, create and share some of your own!',
10+
'my_tricks' => 'My tricks',
11+
'create_new' => 'Create new',
12+
'submitted_tricks' => 'Submitted tricks',
13+
'last_trick' => 'Last trick:',
14+
'total_tricks' => 'Total tricks:',
15+
'joined' => 'Joined:',
16+
'upload' => 'Upload',
17+
'crop_picture' => 'Crop the picture',
18+
'reset_form' => 'Reset form',
19+
'update' => 'Update',
20+
'confirm_password' => 'Confirm Password',
21+
'password' => 'Password',
22+
'new_password' => 'New Password,
23+
'uploading' => 'Uploading',
24+
'username' => 'Username',
25+
'user_settings' => 'User settings',
26+
'back_to_profile' => 'Back to profile',
27+
'choose' => 'Choose',
28+
'notice' => 'Notice:',
29+
'notice_password' => 'Please create a password if you\'d like to login with email as well',
30+
'profile_picture' => 'Profile Picture',
31+
'settings_updated' => 'Your settings have been updated!',
32+
'email' => 'Email',
33+
'github_user_already_taken' => 'Your Github username has already been taken on this site, please choose a different username',
734
);

0 commit comments

Comments
 (0)