aboutsummaryrefslogtreecommitdiff
path: root/mod/blog/languages
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-03 17:53:05 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-03-03 17:53:05 +0000
commit4766f36a4d74924f21ff329c4318ce4e069ffa04 (patch)
tree969b84632f2a8b0db79788a8a6db8e41d63e5cb4 /mod/blog/languages
parent57a217fd6b708844407486046a1faa23b46cac08 (diff)
downloadelgg-4766f36a4d74924f21ff329c4318ce4e069ffa04.tar.gz
elgg-4766f36a4d74924f21ff329c4318ce4e069ffa04.tar.bz2
Pulled in the interface changes.
git-svn-id: http://code.elgg.org/elgg/trunk@5257 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/blog/languages')
-rw-r--r--mod/blog/languages/en.php81
1 files changed, 81 insertions, 0 deletions
diff --git a/mod/blog/languages/en.php b/mod/blog/languages/en.php
new file mode 100644
index 000000000..9496cee00
--- /dev/null
+++ b/mod/blog/languages/en.php
@@ -0,0 +1,81 @@
+<?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:newpost' => "New blog post",
+ 'blog:via' => "via blog",
+ '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:never' => 'never',
+ 'blog:preview' => 'Preview',
+
+ 'blog:draft:save' => 'Save draft',
+ 'blog:draft:saved' => 'Draft last saved',
+ 'blog:comments:allow' => 'Allow comments',
+
+ 'blog:preview:description' => 'This is an unsaved preview of your blog post.',
+ 'blog:preview:description:link' => 'To continue editing or save your post, click here.',
+
+ 'blog:enableblog' => 'Enable group blog',
+
+ 'blog:group' => 'Group blog',
+
+ /**
+ * 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 titled",
+ 'blog:river:update' => "a blog post titled",
+ 'blog:river:annotate' => "a comment on this blog post",
+
+
+ /**
+ * Status messages
+ */
+
+ 'blog:posted' => "Your blog post was successfully posted.",
+ 'blog:deleted' => "Your blog post was successfully deleted.",
+
+ /**
+ * Error messages
+ */
+
+ 'blog:error' => 'Something went wrong. Please try again.',
+ '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