diff options
author | Sem <sembrestels@riseup.net> | 2012-01-14 01:14:29 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-01-14 01:14:29 +0100 |
commit | 85086911c89f456885de4f499d59a434c50fd3f8 (patch) | |
tree | 96f5c50831ca306ffebc839409baeab30d646f27 /mod/thewire/languages/en.php | |
download | elgg-85086911c89f456885de4f499d59a434c50fd3f8.tar.gz elgg-85086911c89f456885de4f499d59a434c50fd3f8.tar.bz2 |
Original nnimis' plugin.
Diffstat (limited to 'mod/thewire/languages/en.php')
-rw-r--r-- | mod/thewire/languages/en.php | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/mod/thewire/languages/en.php b/mod/thewire/languages/en.php new file mode 100644 index 000000000..9716fc060 --- /dev/null +++ b/mod/thewire/languages/en.php @@ -0,0 +1,60 @@ +<?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: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); |