forked from Typesetter/Simple-Blog
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathText.php
More file actions
executable file
·35 lines (27 loc) · 803 Bytes
/
Text.php
File metadata and controls
executable file
·35 lines (27 loc) · 803 Bytes
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
<?php
defined('is_running') or die('Not an entry point...');
$texts = array();
$texts[] = 'Blog';
$texts[] = 'Blog Home';
$texts[] = 'Newer Entry';
$texts[] = 'Newer Entries';
$texts[] = 'Older Entry';
$texts[] = 'Older Entries';
$texts[] = 'Read More';
$texts[] = 'More Blog Entries';
$texts[] = 'Name';
$texts[] = 'Website';
$texts[] = 'Categories';
$texts[] = 'Archives';
$texts[] = 'Comments';
$texts[] = 'Comment';
$texts[] = 'Leave Comment';
$texts[] = 'Add Comment';
$texts[] = 'Comments have been closed.';
$texts[] = 'Open Comments';
$texts[] = 'Close Comments';
/* this function can be used to update the addon once changes to the text values have been made */
function OnTextChange(){
gpPlugin_incl('SimpleBlogCommon.php');
new SimpleBlogCommon();//regenerate the gadget and feed
}