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
71
72
|
<?php
$english = array(
/**
* Menu items and titles
*/
'messageboard:board' => "Message board",
'messageboard:messageboard' => "message board",
'messageboard:viewall' => "View all",
'messageboard:postit' => "Post",
'messageboard:history:title' => "History",
'messageboard:none' => "There is nothing on this message board yet",
'messageboard:num_display' => "Number of messages to display",
'messageboard:desc' => "This is a message board that you can put on your profile where other users can comment.",
'messageboard:user' => "%s's message board",
'messageboard:replyon' => 'reply on',
'messageboard:history' => "history",
'messageboard:owner' => '%s\'s message board',
'messageboard:owner_history' => '%s\'s posts on %s\'s message board',
/**
* Message board widget river
*/
'river:messageboard:user:default' => "%s posted on %s's message board",
/**
* Status messages
*/
'messageboard:posted' => "You successfully posted on the message board.",
'messageboard:deleted' => "You successfully deleted the message.",
/**
* Email messages
*/
'messageboard:email:subject' => 'You have a new message board comment!',
'messageboard:email:body' => "You have a new message board comment from %s. It reads:
%s
To view your message board comments, click here:
%s
To view %s's profile, click here:
%s
You cannot reply to this email.",
/**
* Error messages
*/
'messageboard:blank' => "Sorry; you need to actually put something in the message area before we can save it.",
'messageboard:notfound' => "Sorry; we could not find the specified item.",
'messageboard:notdeleted' => "Sorry; we could not delete this message.",
'messageboard:somethingwentwrong' => "Something went wrong when trying to save your message, make sure you actually wrote a message.",
'messageboard:failure' => "An unexpected error occurred when adding your message. Please try again.",
);
add_translation("en", $english);
|