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
|
<?php
/**
* The Wire English language file
*/
$english = array(
/**
* Menu items and titles
*/
'thewire' => "The Wire",
'thewire:everyone' => "All wire posts",
'thewire:user' => "%s's wire posts",
'thewire:friends' => "Friends' wire posts",
'thewire:reply' => "Reply",
'thewire:replying' => "Replying to %s who wrote",
'thewire:thread' => "Thread",
'thewire:previous' => "Previous",
'thewire:charleft' => "characters remaining",
'thewire:tags' => "Wire posts tagged with '%s'",
'thewire:noposts' => "No wire posts yet",
/**
* The wire river
*/
'thewire:river:create' => "posted to the wire",
/**
* Wire widget
*/
'thewire:widget:desc' => 'Display your latest wire posts',
'thewire:num' => 'Number of posts to display',
'thewire:moreposts' => 'More wire posts',
/**
* Status messages
*/
'thewire:posted' => "Your message was successfully posted to the wire.",
'thewire:deleted' => "The wire post was successfully deleted.",
'thewire:blank' => "Sorry; you need to actually put something in the textbox before we can save it.",
'thewire:notfound' => "Sorry; we could not find the specified wire post.",
'thewire:notdeleted' => "Sorry. We could not delete this wire post.",
);
add_translation("en", $english);
|