aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/languages/en.php
blob: 0fb1140285569e12998725c7c4979941d1f41431 (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
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
73
74
75
76
77
78
79
80
81
<?php

	$english = array(
	
		/**
		 * Menu items and titles
		 */
	
			'thewire:title' => "The Wire",
			'thewire:my_posts' => "My wire posts",
			'thewire:user' => "%s's wire posts",
			'thewire:posttitle' => "%s's notes on the wire: %s",
			'thewire:everyone' => "All wire posts",
	
			'thewire:read' => "My wire posts",
			
			'thewire:strapline' => "%s",
	
			'thewire:add' => "Post to the wire",
		    'thewire:text' => "A note on the wire",
			'thewire:reply' => "Reply",
			'thewire:via' => "via",
			'thewire:wired' => "Posted to the wire",
			'thewire:charleft' => "characters remaining",
			'item:object:thewire' => "Wire posts",
			'thewire:notedeleted' => "note deleted",
			'thewire:doing' => "What are you doing? Tell everyone on the wire:",
			'thewire:newpost' => 'New wire post',
			'thewire:addpost' => 'Post to the wire',
			'thewire:by' => "Wire post by %s",

	
        /**
	     * The wire river
	     **/
	        
	        //generic terms to use
	        'thewire:river:created' => "%s posted",
	        
	        //these get inserted into the river links to take the user to the entity
	        'thewire:river:create' => "on the wire.",
	        
	    /**
	     * Wire widget
	     **/
	     
	        'thewire:sitedesc' => 'This widget shows the latest site notes posted to the wire',
	        'thewire:yourdesc' => 'This widget displays your latest wire posts',
	        'thewire:friendsdesc' => 'This widget will show the latest from your friends on the wire',
	        'thewire:friends' => 'Your friends on the wire',
	        'thewire:num' => 'Number of items to display',
	        'thewire:moreposts' => 'More wire posts',
	        
	
		/**
		 * Status messages
		 */
	
			'thewire:posted' => "Your message was successfully posted to the wire.",
			'thewire:deleted' => "Your wire post was successfully deleted.",
	
		/**
		 * Error messages
		 */
	
			'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.",
	
	
		/**
		 * Settings
		 */
			'thewire:smsnumber' => "Your SMS number if different from your mobile number (mobile number must be set to public for the wire to be able to use it). All phone numbers must be in international format.",
			'thewire:channelsms' => "The number to send SMS messages to is <b>%s</b>",
			
	);
					
	add_translation("en",$english);

?>