aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/languages/en.php
blob: dbccfd98d6309b95770db2e42ce2a3a98a4ff0d9 (plain)
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
<?php

	$english = array(
	
		/**
		 * Menu items and titles
		 */
	
			'blog' => "Blog",
			'blog:user' => "%s's blog",
			'blog:posttitle' => "%s's blog: %s",
	
			'blog:read' => "Read blog",
	
			'blog:addpost' => "Write an entry",
			'blog:editpost' => "Edit entry (%s)",
	
			'blog:text' => "Blog text",
	
			'blog:strapline' => "%s",
	
			'blog:comment:add' => "Add a comment",
			'blog:comment:text' => "Comment text",
	
			'comments' => "Comments",
	
		/**
		 * Status messages
		 */
	
			'blog:posted' => "Your blog post was successfully posted.",
			'comment:success' => "Your comment was successfully added.",
	
		/**
		 * Error messages
		 */
	
			'blog:blank' => "Sorry; you need to fill in both the title and body before you can make a post.",
			'blog:notfound' => "Sorry; we could not find the specified blog post.",
			
			'comment:failure' => "An unexpected error occurred when adding your comment. Please try again.",
	
	);
					
	add_translation("en",$english);

?>