-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlarablog.php
70 lines (58 loc) · 2.26 KB
/
larablog.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
return [
/*
|--------------------------------------------------------------------------
| Lara(b)log language lines
|--------------------------------------------------------------------------
|
*/
'nav' => [
'menu' => 'Menu',
'home' => 'Home',
'portfolio' => 'Portfolio',
'blog' => 'Blog',
'about' => 'About',
'authors' => 'Authors',
'contact' => 'Contact',
'register' => 'Register',
'login' => 'Login',
'admin' => 'Admin',
'logout' => 'Logout',
],
'blogroll' => [
'postedBy' => 'Posted by <a href=":url">:author</a> on :date',
'tags' => 'Tags: ',
],
'pagination' => [
'nextPost' => 'Older Posts',
'prevPost' => 'Newer Posts',
'noposts' => 'No Posts',
],
'home' => [
'title' => 'Welcome to Larablog',
'description' => 'Larablog is an open source blog built on Laravel and Bootstrap',
],
'tags' => [
'totals' => '{0} No posts tagged with <strong>:tag</strong>.|{1} :count Post tagged with <strong>:tag</strong>.|[2,*] :count Posts tagged with <strong>:tag</strong>.',
],
'authors' => [
'title' => 'Authors',
'subtitle' => 'The people behind the goods.',
'description' => 'A list of authors with published posts.',
'totals' => '{0} No Authors.|{1} :count Author.|[2,*] :count Authors.',
],
'author' => [
'title' => ':author',
'subtitle' => '{0} no posts|{1} :postcount post total|[2,*] :postcount total posts',
'description' => 'All published posts by :author',
],
'footer' => [
'copyright' => '© Lara(b)log 2018 | An <a href="https://github.com./jeremykenedy/larablog" target="_blank" class="text-success">opensource</a> blog platform<br /> Developed with Love <i class="fa fa-heart text-danger"></i> by <a href="https://github.com./jeremykenedy" class="text-muted" target="_blank">Jeremy Kenedy</a>',
],
'contact' => [
'pageTitle' => 'Contact Me',
'pageDesc' => '',
'title' => 'Contact Me',
'subtitle' => 'Need something? I can help (maybe).',
],
];