diff options
Diffstat (limited to 'mod/thewire/languages/en.php')
| -rw-r--r-- | mod/thewire/languages/en.php | 140 |
1 files changed, 61 insertions, 79 deletions
diff --git a/mod/thewire/languages/en.php b/mod/thewire/languages/en.php index 205ef010d..3c83d145f 100644 --- a/mod/thewire/languages/en.php +++ b/mod/thewire/languages/en.php @@ -1,79 +1,61 @@ -<?php
-
- $english = array(
-
- /**
- * Menu items and titles
- */
-
- 'thewire' => "The wire",
- 'thewire:user' => "%s's wire",
- 'thewire:posttitle' => "%s's notes on the wire: %s",
- 'thewire:everyone' => "All wire posts",
-
- 'thewire:read' => "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 left",
- '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',
-
-
- /**
- * 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 shows your latest notes posted to the wire',
- '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',
-
-
-
- /**
- * Status messages
- */
-
- 'thewire:posted' => "Your message was successfully posted to the wire.",
- 'thewire:deleted' => "Your note 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 note.",
- 'thewire:notdeleted' => "Sorry; we could not delete this shout.",
-
-
- /**
- * 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);
-
-?>
\ No newline at end of file +<?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 (@%s) who wrote", + 'thewire:thread' => "Thread", + 'thewire:charleft' => "characters remaining", + 'thewire:tags' => "Wire posts tagged with '%s'", + 'thewire:noposts' => "No wire posts yet", + 'item:object:thewire' => "Wire posts", + 'thewire:update' => 'Update', + 'thewire:by' => 'Wire post by %s', + + 'thewire:previous' => "Previous", + 'thewire:hide' => "Hide", + 'thewire:previous:help' => "View previous post", + 'thewire:hide:help' => "Hide previous post", + + /** + * The wire river + */ + 'river:create:object:thewire' => "%s posted to the %s", + 'thewire:wire' => '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 enter some text before we can post this.", + 'thewire:notfound' => "Sorry, we could not find the specified wire post.", + 'thewire:notdeleted' => "Sorry. We could not delete this wire post.", + + /** + * Notifications + */ + 'thewire:notify:subject' => "New wire post", + 'thewire:notify:reply' => '%s responded to %s on the wire:', + 'thewire:notify:post' => '%s posted on the wire:', + +); + +add_translation("en", $english); |
