aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/languages
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-13 10:30:09 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-08-13 10:30:09 +0000
commit4973086aa9dd4d482e54c0e5b177c09251e6a7ec (patch)
tree57ff1b398099ec072857c54033b09cab54f749ed /mod/blog/languages
parent2c0154782f1e84e1bcf2517a910abe2ceab28ae6 (diff)
downloadelgg-4973086aa9dd4d482e54c0e5b177c09251e6a7ec.tar.gz
elgg-4973086aa9dd4d482e54c0e5b177c09251e6a7ec.tar.bz2
Removing some messages
git-svn-id: https://code.elgg.org/elgg/trunk@1879 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/blog/languages')
-rw-r--r--mod/blog/languages/en.php66
1 files changed, 66 insertions, 0 deletions
diff --git a/mod/blog/languages/en.php b/mod/blog/languages/en.php
new file mode 100644
index 000000000..f17ab6045
--- /dev/null
+++ b/mod/blog/languages/en.php
@@ -0,0 +1,66 @@
+<?php
+
+ $english = array(
+
+ /**
+ * Menu items and titles
+ */
+
+ 'blog' => "Blog",
+ 'blogs' => "Blogs",
+ 'blog:user' => "%s's blog",
+ 'blog:user:friends' => "%s's friends' blog",
+ 'blog:your' => "Your blog",
+ 'blog:posttitle' => "%s's blog: %s",
+ 'blog:friends' => "Friends' blogs",
+ 'blog:yourfriends' => "Your friends' latest blogs",
+ 'blog:everyone' => "All site blogs",
+
+ 'blog:read' => "Read blog",
+
+ 'blog:addpost' => "Write a blog post",
+ 'blog:editpost' => "Edit blog post",
+
+ 'blog:text' => "Blog text",
+
+ 'blog:strapline' => "%s",
+
+ 'item:object:blog' => 'Blog posts',
+
+
+ /**
+ * Blog river
+ **/
+
+ //generic terms to use
+ 'blog:river:created' => "%s wrote",
+ 'blog:river:updated' => "%s updated",
+ 'blog:river:posted' => "%s posted",
+
+ //these get inserted into the river links to take the user to the entity
+ 'blog:river:create' => "a new blog post.",
+ 'blog:river:update' => "a blog post.",
+ 'blog:river:annotate:create' => "a comment on a blog post.",
+
+
+ /**
+ * Status messages
+ */
+
+ 'blog:posted' => "Your blog post was successfully posted.",
+ 'blog:deleted' => "Your blog post was successfully deleted.",
+
+ /**
+ * Error messages
+ */
+
+ 'blog:save:failure' => "Your blog post could not be saved. Please try again.",
+ 'blog:blank' => "Sorry; you need to fill in both the title and body before you can make a post.",
+ 'blog:notfound' => "Sorry; we could not find the specified blog post.",
+ 'blog:notdeleted' => "Sorry; we could not delete this blog post.",
+
+ );
+
+ add_translation("en",$english);
+
+?> \ No newline at end of file