1 | <?php
|
---|
2 | /*
|
---|
3 | $Id: zh-cn_email.php 1641 2006-09-19 08:42:40Z andrewsimpson $
|
---|
4 |
|
---|
5 | WebCollab
|
---|
6 | ---------------------------------------
|
---|
7 | Thi file created 2003 by Andrew Simpson
|
---|
8 |
|
---|
9 | This program is free software; you can redistribute it and/or modify it under the
|
---|
10 | terms of the GNU General Public License as published by the Free Software Foundation;
|
---|
11 | either version 2 of the License, or (at your option) any later version.
|
---|
12 |
|
---|
13 | This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
---|
14 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
---|
15 | PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
---|
16 |
|
---|
17 | You should have received a copy of the GNU General Public License along with this
|
---|
18 | program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
|
---|
19 | Cambridge, MA 02139, USA.
|
---|
20 |
|
---|
21 |
|
---|
22 | Function:
|
---|
23 | ---------
|
---|
24 |
|
---|
25 | Email text language files for 'en' (English)
|
---|
26 |
|
---|
27 | Maintainer: Andrew Simpson <andrew.simpson at paradise.net.nz>
|
---|
28 |
|
---|
29 |
|
---|
30 | NOTE: This file is written in UTF-8 character set
|
---|
31 |
|
---|
32 | */
|
---|
33 |
|
---|
34 | // Get current date/time for emails in a preferred format eg: 01 Apr 2004 9:18 am NZDT
|
---|
35 | $email_date = date("d" )." ".$month_array[(date("n" ) )]." ".date('Y \a\t g:i a T' );
|
---|
36 |
|
---|
37 | $title_file_post = ABBR_MANAGER_NAME.": New file upload: %s";
|
---|
38 | $email_file_post = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a new file has been uploaded on ".$email_date." by %1\$s.\n\n".
|
---|
39 | "File: %2\$s\n".
|
---|
40 | "Description: %3\$s\n\n".
|
---|
41 | "Project: %4\$s\n".
|
---|
42 | "Task: %5\$s\n\n".
|
---|
43 | "Please go to the website for more details.\n\n".BASE_URL."%6\$s\n";
|
---|
44 |
|
---|
45 |
|
---|
46 | $title_forum_post = ABBR_MANAGER_NAME.": New forum post: %s";
|
---|
47 | $email_forum_post = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a new forum post has been made on ".$email_date." by %1\$s:\n\n%2\$s\n\n".
|
---|
48 | "Please go to the website for more details.\n\n".BASE_URL."%3\$s\n";
|
---|
49 | $email_forum_reply = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a new forum post has been made on ".$email_date." by %1\$s.\n\n".
|
---|
50 | "This post is in reply to an earlier post by %2\$s.\n\n".
|
---|
51 | "Original post:\n%3\$s\n\n".
|
---|
52 | "New reply:\n%4\$s\n\n".
|
---|
53 | "Please go to the website for more details.\n\n".BASE_URL."%5\$s\n";
|
---|
54 |
|
---|
55 |
|
---|
56 | $email_list = "Project: %1\$s\n".
|
---|
57 | "Task: %2\$s\n".
|
---|
58 | "Status: %3\$s\n".
|
---|
59 | "Owner: %4\$s ( %5\$s )\n".
|
---|
60 | "Text:\n%6\$s\n\n".
|
---|
61 | "Please go to the website for more details.\n\n".BASE_URL."%7\$s\n";
|
---|
62 |
|
---|
63 |
|
---|
64 | $title_takeover_project = ABBR_MANAGER_NAME.": Your project taken over";
|
---|
65 | $title_takeover_task = ABBR_MANAGER_NAME.": Your task taken over";
|
---|
66 |
|
---|
67 | $email_takeover_task = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a task you own has been taken over by an admin on ".$email_date.".\n\n";
|
---|
68 | $email_takeover_project = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a project you own has been taken over by an admin on ".$email_date.".\n\n";
|
---|
69 |
|
---|
70 |
|
---|
71 | $title_new_owner_project = ABBR_MANAGER_NAME.": New project for you";
|
---|
72 | $title_new_owner_task = ABBR_MANAGER_NAME.": New task for you";
|
---|
73 |
|
---|
74 | $email_new_owner_project = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a project was created on ".$email_date.", and you are the owner of that project.\n\nHere are the details:\n\n";
|
---|
75 | $email_new_owner_task = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a task was created on ".$email_date.", and you are the owner of that task.\n\nHere are the details:\n\n";
|
---|
76 |
|
---|
77 |
|
---|
78 | $title_new_group_project = ABBR_MANAGER_NAME.": New project: %s";
|
---|
79 | $title_new_group_task = ABBR_MANAGER_NAME.": New task: %s";
|
---|
80 |
|
---|
81 | $email_new_group_project = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a new project has been created on ".$email_date."\n\nHere are the details:\n\n";
|
---|
82 | $email_new_group_task = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a new task has been created on ".$email_date."\n\nHere are the details:\n\n";
|
---|
83 |
|
---|
84 |
|
---|
85 | $title_edit_owner_project = ABBR_MANAGER_NAME.": Your project updated";
|
---|
86 | $title_edit_owner_task = ABBR_MANAGER_NAME.": Your task updated";
|
---|
87 |
|
---|
88 | $email_edit_owner_project = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a project you own was changed on ".$email_date.".\n\nHere are the details:\n\n";
|
---|
89 | $email_edit_owner_task = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a task you own was changed on ".$email_date.".\n\nHere are the details:\n\n";
|
---|
90 |
|
---|
91 |
|
---|
92 | $title_edit_group_project = ABBR_MANAGER_NAME.": Project updated";
|
---|
93 | $title_edit_group_task = ABBR_MANAGER_NAME.": Task updated";
|
---|
94 |
|
---|
95 | $email_edit_group_project = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a project that %s owns has changed on ".$email_date.".\n\nHere are the details:\n\n";
|
---|
96 | $email_edit_group_task = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that a task that %s owns has changed on ".$email_date.".\n\nHere are the details:\n\n";
|
---|
97 |
|
---|
98 |
|
---|
99 | $title_delete_project = ABBR_MANAGER_NAME.": Project deleted";
|
---|
100 | $title_delete_task = ABBR_MANAGER_NAME.": Task deleted";
|
---|
101 |
|
---|
102 | $email_delete_project = "Hello,\n\n".
|
---|
103 | "This is the ".MANAGER_NAME." site informing you that a project you did own was deleted on ".$email_date."\n\n".
|
---|
104 | "Thanks for managing the project while it lasted.\n\n";
|
---|
105 | $email_delete_task = "Hello,\n\n".
|
---|
106 | "This is the ".MANAGER_NAME." site informing you that a task you did own was deleted on ".$email_date."\n\n".
|
---|
107 | "Thanks for managing the task while it lasted.\n\n";
|
---|
108 |
|
---|
109 | $delete_list = "Project: %1\$s\n".
|
---|
110 | "Task: %2\$s\n".
|
---|
111 | "Status: %3\$s\n\n".
|
---|
112 | "Text:\n%4\$s\n\n";
|
---|
113 |
|
---|
114 | $title_welcome = "Welcome to the ".ABBR_MANAGER_NAME;
|
---|
115 | $email_welcome = "Hello,\n\nThis is the ".MANAGER_NAME." site welcoming you to me ;) on ".$email_date.".\n\n".
|
---|
116 | "As you are new here I will explain a couple of things to you so that you can quickly start to work\n\n".
|
---|
117 | "First of all this is a project management tool, the main screen will show you the projects that are currently available. ".
|
---|
118 | "If you click on one of the names you will find yourself in the task's part. This is where all the work will go on.\n\n".
|
---|
119 | "Every item you post or task you edit will be shown to other users as 'new' or 'updated'. This also works vice-versa and ".
|
---|
120 | "it enables you to quickly spot where the activity is.\n\n".
|
---|
121 | "You can also take or get ownership of tasks and you will find yourself able to edit them and all the forum posts belonging to it. ".
|
---|
122 | "As you progress with your work please edit your task's text and status so that everybody can keep a track on your progress. ".
|
---|
123 | "\n\nI can only wish you success now and email ".EMAIL_ADMIN." if you are stuck.\n\n --Good luck !\n\n".
|
---|
124 | "Login: %1\$s\n".
|
---|
125 | "Password: %2\$s\n\n".
|
---|
126 | "Usergroups: %3\$s".
|
---|
127 | "Name: %4\$s\n".
|
---|
128 | "Website: ".BASE_URL."\n\n".
|
---|
129 | "%5\$s";
|
---|
130 |
|
---|
131 | $title_user_change1 = ABBR_MANAGER_NAME.": Edit of your account by an Admin";
|
---|
132 | $email_user_change1 = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that your account has been changed on ".$email_date." by %1\$s ( %2\$s ) \n\n".
|
---|
133 | "Login: %3\$s\n".
|
---|
134 | "Password: %4\$s\n\n".
|
---|
135 | "Usergroups: %5\$s".
|
---|
136 | "Name: %6\$s\n\n".
|
---|
137 | "%7\$s";
|
---|
138 |
|
---|
139 | $title_user_change2 = ABBR_MANAGER_NAME.": Edit of your account";
|
---|
140 | $email_user_change2 = "Hello,\n\nThis is the ".MANAGER_NAME." site confirming that you have successfully changed your account on ".$email_date.".\n\n".
|
---|
141 | "Login: %1\$s\n".
|
---|
142 | "Password: %2\$s\n\n".
|
---|
143 | "Name: %3\$s\n";
|
---|
144 |
|
---|
145 | $title_user_change3 = ABBR_MANAGER_NAME.": Edit of your account";
|
---|
146 | $email_user_change3 = "Hello,\n\nThis is the ".MANAGER_NAME." site confirming that you have successfully changed your account on ".$email_date.".\n\n".
|
---|
147 | "Login: %1\$s\n".
|
---|
148 | "Your existing password has not changed.\n\n".
|
---|
149 | "Name: %2\$s\n";
|
---|
150 |
|
---|
151 |
|
---|
152 | $title_revive = ABBR_MANAGER_NAME.": Account reactivated";
|
---|
153 | $email_revive = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that your account has been re-enabled on ".$email_date.".\n\n".
|
---|
154 | "Loginname: %1\$s\n".
|
---|
155 | "Username: %2\$s\n\n".
|
---|
156 | "We cannot send you your password because it is encrypted. \n\n".
|
---|
157 | "If you have forgotten your password email ".EMAIL_ADMIN." for a new password.";
|
---|
158 |
|
---|
159 |
|
---|
160 |
|
---|
161 | $title_delete_user = ABBR_MANAGER_NAME.": Account deactivated.";
|
---|
162 | $email_delete_user = "Hello,\n\nThis is the ".MANAGER_NAME." site informing you that your account has been deactivated on ".$email_date.".\n".
|
---|
163 | "We are sorry that you have left and would like to thank you for your work!\n\n".
|
---|
164 | "If you object to being deactivated, or think that this is an error, send an email to ".EMAIL_ADMIN.".";
|
---|
165 |
|
---|
166 | ?>
|
---|