EmailTemplates.english.php 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070
  1. <?php
  2. // Version: 2.1 Alpha 1; EmailTemplates
  3. // Since all of these strings are being used in emails, numeric entities should be used.
  4. // Do not translate anything that is between {}, they are used as replacement variables and MUST remain exactly how they are.
  5. // Additionally do not translate the @additioinal_parmas: line or the variable names in the lines that follow it. You may
  6. // translate the description of the variable. Do not translate @description:, however you may translate the rest of that line.
  7. // Do not use block comments in this file, they will have special meaning.
  8. global $context, $txtBirthdayEmails;
  9. $txt['scheduled_approval_email_topic'] = 'The following topics are awaiting approval:';
  10. $txt['scheduled_approval_email_msg'] = 'The following posts are awaiting approval:';
  11. $txt['scheduled_approval_email_attach'] = 'The following attachments are awaiting approval:';
  12. $txt['scheduled_approval_email_event'] = 'The following events are awaiting approval:';
  13. /**
  14. @additional_params: resend_activate_message
  15. REALNAME: The display name for the member receiving the email.
  16. USERNAME: The user name for the member receiving the email.
  17. ACTIVATIONLINK: The url link to activate the member's account.
  18. ACTIVATIONCODE: The code needed to activate the member's account.
  19. ACTIVATIONLINKWITHOUTCODE: The url to the page where the activation code can be entered.
  20. FORGOTPASSWORDLINK: The url to the "forgot password" page.
  21. @description:
  22. */
  23. $txt['resend_activate_message_subject'] = 'Welcome to {FORUMNAME}';
  24. $txt['resend_activate_message_body'] = 'Thank you for registering at {FORUMNAME}. Your username is {USERNAME}. If you forget your password, you can reset it by visiting {FORGOTPASSWORDLINK}.
  25. Before you can login, you must first activate your account by selecting the following link:
  26. {ACTIVATIONLINK}
  27. Should you have any problems with the activation, please visit {ACTIVATIONLINKWITHOUTCODE} and enter the code "{ACTIVATIONCODE}".
  28. {REGARDS}';
  29. /**
  30. @additional_params: resend_pending_message
  31. REALNAME: The display name for the member receiving the email.
  32. USERNAME: The user name for the member receiving the email.
  33. @description:
  34. */
  35. $txt['resend_pending_message_subject'] = 'Welcome to {FORUMNAME}';
  36. $txt['resend_pending_message_body'] = 'Your registration request at {FORUMNAME} has been received, {REALNAME}.
  37. The username you registered with was {USERNAME}.
  38. Before you can login and start using the forum, your request will be reviewed and approved. When this happens, you will receive another email from this address.
  39. {REGARDS}';
  40. /**
  41. @additional_params: mc_group_approve
  42. USERNAME: The user name for the member receiving the email.
  43. GROUPNAME: The name of the membergroup that the user was accepted into.
  44. @description: The request to join a particular membergroup has been accepted.
  45. */
  46. $txt['mc_group_approve_subject'] = 'Group Membership Approval';
  47. $txt['mc_group_approve_body'] = '{USERNAME},
  48. We\'re pleased to notify you that your application to join the "{GROUPNAME}" group at {FORUMNAME} has been accepted, and your account has been updated to include this new membergroup.
  49. {REGARDS}';
  50. /**
  51. @additional_params: mc_group_reject
  52. USERNAME: The user name for the member receiving the email.
  53. GROUPNAME: The name of the membergroup that the user was rejected from.
  54. @description: The request to join a particular membergroup has been rejected.
  55. */
  56. $txt['mc_group_reject_subject'] = 'Group Membership Rejection';
  57. $txt['mc_group_reject_body'] = '{USERNAME},
  58. We\'re sorry to notify you that your application to join the "{GROUPNAME}" group at {FORUMNAME} has been rejected.
  59. {REGARDS}';
  60. /**
  61. @additional_params: mc_group_reject_reason
  62. USERNAME: The user name for the member receiving the email.
  63. GROUPNAME: The name of the membergroup that the user was rejected from.
  64. REASON: Reason for the rejection.
  65. @description: The request to join a particular membergroup has been rejected with a reason given.
  66. */
  67. $txt['mc_group_reject_reason_subject'] = 'Group Membership Rejection';
  68. $txt['mc_group_reject_reason_body'] = '{USERNAME},
  69. We\'re sorry to notify you that your application to join the "{GROUPNAME}" group at {FORUMNAME} has been rejected.
  70. This is due to the following reason: {REASON}
  71. {REGARDS}';
  72. /**
  73. @additional_params: admin_approve_accept
  74. NAME: The display name of the member.
  75. USERNAME: The user name for the member receiving the email.
  76. PROFILELINK: The URL of the profile page.
  77. FORGOTPASSWORDLINK: The URL of the "forgot password" page.
  78. @description:
  79. */
  80. $txt['admin_approve_accept_subject'] = 'Welcome to {FORUMNAME}';
  81. $txt['admin_approve_accept_body'] = 'Welcome, {NAME}
  82. Your account has been activated manually by the admin and you can now login and post. Your username is: {USERNAME}. If you forget your password, you can change it at {FORGOTPASSWORDLINK}.
  83. {REGARDS}';
  84. /**
  85. @additional_params: admin_approve_activation
  86. USERNAME: The user name for the member receiving the email.
  87. ACTIVATIONLINK: The url link to activate the member's account.
  88. ACTIVATIONLINKWITHOUTCODE: The url to the page where the activation code can be entered.
  89. ACTIVATIONCODE: The activation code.
  90. @description:
  91. */
  92. $txt['admin_approve_activation_subject'] = 'Welcome to {FORUMNAME}';
  93. $txt['admin_approve_activation_body'] = 'Welcome, {USERNAME}!
  94. Your account on {FORUMNAME} has been approved by the forum administrator. Before you can login, you must first activate your account by selecting the following link:
  95. {ACTIVATIONLINK}
  96. Should you have any problems with the activation, please visit {ACTIVATIONLINKWITHOUTCODE} and enter the code "{ACTIVATIONCODE}".
  97. {REGARDS}';
  98. /**
  99. @additional_params: admin_approve_reject
  100. USERNAME: The user name for the member receiving the email.
  101. @description:
  102. */
  103. $txt['admin_approve_reject_subject'] = 'Registration Rejected';
  104. $txt['admin_approve_reject_body'] = '{USERNAME},
  105. Regrettably, your application to join {FORUMNAME} has been rejected.
  106. {REGARDS}';
  107. /**
  108. @additional_params: admin_approve_delete
  109. USERNAME: The user name for the member receiving the email.
  110. @description:
  111. */
  112. $txt['admin_approve_delete_subject'] = 'Account Deleted';
  113. $txt['admin_approve_delete_body'] = '{USERNAME},
  114. Your account on {FORUMNAME} has been deleted. This may be because you never activated your account, in which case you should be able to register again.
  115. {REGARDS}';
  116. /**
  117. @additional_params: admin_approve_remind
  118. USERNAME: The user name for the member receiving the email.
  119. ACTIVATIONLINK: The url link to activate the member's account.
  120. ACTIVATIONLINKWITHOUTCODE: The url to the page where the activation code can be entered.
  121. ACTIVATIONCODE: The activation code.
  122. @description:
  123. */
  124. $txt['admin_approve_remind_subject'] = 'Registration Reminder';
  125. $txt['admin_approve_remind_body'] = '{USERNAME},
  126. You still have not activated your account at {FORUMNAME}.
  127. Please use the link below to activate your account:
  128. {ACTIVATIONLINK}
  129. Should you have any problems with the activation, please visit {ACTIVATIONLINKWITHOUTCODE} and enter the code "{ACTIVATIONCODE}".
  130. {REGARDS}';
  131. /**
  132. @additional_params:
  133. USERNAME: The user name for the member receiving the email.
  134. ACTIVATIONLINK: The url link to activate the member's account.
  135. ACTIVATIONLINKWITHOUTCODE: The url to the page where the activation code can be entered.
  136. ACTIVATIONCODE: The activation code.
  137. @description:
  138. */
  139. $txt['admin_register_activate_subject'] = 'Welcome to {FORUMNAME}';
  140. $txt['admin_register_activate_body'] = 'Thank you for registering at {FORUMNAME}. Your username is {USERNAME} and your password is {PASSWORD}.
  141. Before you can login, you must first activate your account by selecting the following link:
  142. {ACTIVATIONLINK}
  143. Should you have any problems with the activation, please visit {ACTIVATIONLINKWITHOUTCODE} and enter the code "{ACTIVATIONCODE}".
  144. {REGARDS}';
  145. $txt['admin_register_immediate_subject'] = 'Welcome to {FORUMNAME}';
  146. $txt['admin_register_immediate_body'] = 'Thank you for registering at {FORUMNAME}. Your username is {USERNAME} and your password is {PASSWORD}.
  147. {REGARDS}';
  148. /**
  149. @additional_params: new_announcement
  150. TOPICSUBJECT: The subject of the topic being announced.
  151. MESSAGE: The message body of the first post of the announced topic.
  152. TOPICLINK: A link to the topic being announced.
  153. @description:
  154. */
  155. $txt['new_announcement_subject'] = 'New announcement: {TOPICSUBJECT}';
  156. $txt['new_announcement_body'] = '{MESSAGE}
  157. To unsubscribe from these announcements, login to the forum and uncheck "Receive forum announcements and important notifications by email." in your profile.
  158. You can view the full announcement by following this link:
  159. {TOPICLINK}
  160. {REGARDS}';
  161. /**
  162. @additional_params: notify_boards_once_body
  163. TOPICSUBJECT: The subject of the topic causing the notification
  164. TOPICLINK: A link to the topic.
  165. MESSAGE: This is the body of the message.
  166. UNSUBSCRIBELINK: Link to unsubscribe from notifications.
  167. @description:
  168. */
  169. $txt['notify_boards_once_body_subject'] = 'New Topic: {TOPICSUBJECT}';
  170. $txt['notify_boards_once_body_body'] = 'A new topic, \'{TOPICSUBJECT}\', has been made on a board you are watching.
  171. You can see it at
  172. {TOPICLINK}
  173. More topics may be posted, but you won\'t receive more email notifications until you return to the board and read some of them.
  174. The text of the topic is shown below:
  175. {MESSAGE}
  176. Unsubscribe to new topics from this board by using this link:
  177. {UNSUBSCRIBELINK}
  178. {REGARDS}';
  179. /**
  180. @additional_params: notify_boards_once
  181. TOPICSUBJECT: The subject of the topic causing the notification
  182. TOPICLINK: A link to the topic.
  183. UNSUBSCRIBELINK: Link to unsubscribe from notifications.
  184. @description:
  185. */
  186. $txt['notify_boards_once_subject'] = 'New Topic: {TOPICSUBJECT}';
  187. $txt['notify_boards_once_body'] = 'A new topic, \'{TOPICSUBJECT}\', has been made on a board you are watching.
  188. You can see it at
  189. {TOPICLINK}
  190. More topics may be posted, but you won\'t receive more email notifications until you return to the board and read some of them.
  191. Unsubscribe to new topics from this board by using this link:
  192. {UNSUBSCRIBELINK}
  193. {REGARDS}';
  194. /**
  195. @additional_params: notify_boards_body
  196. TOPICSUBJECT: The subject of the topic causing the notification
  197. TOPICLINK: A link to the topic.
  198. MESSAGE: This is the body of the message.
  199. UNSUBSCRIBELINK: Link to unsubscribe from notifications.
  200. @description:
  201. */
  202. $txt['notify_boards_body_subject'] = 'New Topic: {TOPICSUBJECT}';
  203. $txt['notify_boards_body_body'] = 'A new topic, \'{TOPICSUBJECT}\', has been made on a board you are watching.
  204. You can see it at
  205. {TOPICLINK}
  206. The text of the topic is shown below:
  207. {MESSAGE}
  208. Unsubscribe to new topics from this board by using this link:
  209. {UNSUBSCRIBELINK}
  210. {REGARDS}';
  211. /**
  212. @additional_params: notify_boards
  213. TOPICSUBJECT: The subject of the topic causing the notification
  214. TOPICLINK: A link to the topic.
  215. UNSUBSCRIBELINK: Link to unsubscribe from notifications.
  216. @description:
  217. */
  218. $txt['notify_boards_subject'] = 'New Topic: {TOPICSUBJECT}';
  219. $txt['notify_boards_body'] = 'A new topic, \'{TOPICSUBJECT}\', has been made on a board you are watching.
  220. You can see it at
  221. {TOPICLINK}
  222. Unsubscribe to new topics from this board by using this link:
  223. {UNSUBSCRIBELINK}
  224. {REGARDS}';
  225. /**
  226. @additional_params: request_membership
  227. RECPNAME: The name of the person recieving the email
  228. APPYNAME: The name of the person applying for group membership
  229. GROUPNAME: The name of the group being applied to.
  230. REASON: The reason given by the applicant for wanting to join the group.
  231. MODLINK: Link to the group moderation page.
  232. @description:
  233. */
  234. $txt['request_membership_subject'] = 'New Group Application';
  235. $txt['request_membership_body'] = '{RECPNAME},
  236. {APPYNAME} has requested membership to the "{GROUPNAME}" group. The user has given the following reason:
  237. {REASON}
  238. You can approve or reject this application by clicking the link below:
  239. {MODLINK}
  240. {REGARDS}';
  241. /**
  242. @additional_params: scheduled_approval
  243. REALNAME: The real (display) name of the person receiving the email.
  244. PROFILE_LINK: Link to profile of member receiving email where can renew.
  245. SUBSCRIPTION: Name of the subscription.
  246. END_DATE: Date it expires.
  247. @description:
  248. */
  249. $txt['paid_subscription_reminder_subject'] = 'Subscription about to expire at {FORUMNAME}';
  250. $txt['paid_subscription_reminder_body'] = '{REALNAME},
  251. A subscription you are subscribed to at {FORUMNAME} is about to expire. If when you took out the subscription you selected to auto-renew you need take no action - otherwise you may wish to consider subscribing once more. Details are below:
  252. Subscription Name: {SUBSCRIPTION}
  253. Expires: {END_DATE}
  254. To edit your subscriptions visit the following URL:
  255. {PROFILE_LINK}
  256. {REGARDS}';
  257. /**
  258. @additional_params: activate_reactivate
  259. ACTIVATIONLINK: The url link to reactivate the member's account.
  260. ACTIVATIONCODE: The code needed to reactivate the member's account.
  261. ACTIVATIONLINKWITHOUTCODE: The url to the page where the activation code can be entered.
  262. @description:
  263. */
  264. $txt['activate_reactivate_subject'] = 'Welcome back to {FORUMNAME}';
  265. $txt['activate_reactivate_body'] = 'In order to re-validate your email address, your account has been deactivated. Click the following link to activate it again:
  266. {ACTIVATIONLINK}
  267. Should you have any problems with activation, please visit {ACTIVATIONLINKWITHOUTCODE} and use the code "{ACTIVATIONCODE}".
  268. {REGARDS}';
  269. /**
  270. @additional_params: forgot_password
  271. REALNAME: The real (display) name of the person receiving the reminder.
  272. REMINDLINK: The link to reset the password.
  273. IP: The IP address of the requester.
  274. MEMBERNAME:
  275. @description:
  276. */
  277. $txt['forgot_password_subject'] = 'New password for {FORUMNAME}';
  278. $txt['forgot_password_body'] = 'Dear {REALNAME},
  279. This mail was sent because the \'forgot password\' function has been applied to your account. To set a new password, click the following link:
  280. {REMINDLINK}
  281. IP: {IP}
  282. Username: {MEMBERNAME}
  283. {REGARDS}';
  284. /**
  285. @additional_params: forgot_password
  286. REALNAME: The real (display) name of the person receiving the reminder.
  287. IP: The IP address of the requester.
  288. OPENID: The members OpenID identity.
  289. @description:
  290. */
  291. $txt['forgot_openid_subject'] = 'OpenID reminder for {FORUMNAME}';
  292. $txt['forgot_openid_body'] = 'Dear {REALNAME},
  293. This mail was sent because the \'forgot OpenID\' function has been applied to your account. Below is the OpenID that your account is associated with:
  294. {OPENID}
  295. IP: {IP}
  296. Username: {MEMBERNAME}
  297. {REGARDS}';
  298. /**
  299. @additional_params: scheduled_approval
  300. REALNAME: The real (display) name of the person receiving the email.
  301. BODY: The generated body of the mail.
  302. @description:
  303. */
  304. $txt['scheduled_approval_subject'] = 'Summary of posts awaiting approval at {FORUMNAME}';
  305. $txt['scheduled_approval_body'] = '{REALNAME},
  306. This email contains a summary of all items awaiting approval at {FORUMNAME}.
  307. {BODY}
  308. Please log in to the forum to review these items.
  309. {SCRIPTURL}
  310. {REGARDS}';
  311. /**
  312. @additional_params: send_topic
  313. TOPICSUBJECT: The subject of the topic being sent.
  314. SENDERNAME: The name of the member sending the topic.
  315. RECPNAME: The name of the person receiving the email.
  316. TOPICLINK: A link to the topic being sent.
  317. @description:
  318. */
  319. $txt['send_topic_subject'] = 'Topic: {TOPICSUBJECT} (From: {SENDERNAME})';
  320. $txt['send_topic_body'] = 'Dear {RECPNAME},
  321. I want you to check out "{TOPICSUBJECT}" on {FORUMNAME}. To view it, please click this link:
  322. {TOPICLINK}
  323. Thanks,
  324. {SENDERNAME}';
  325. /**
  326. @additional_params: send_topic_comment
  327. TOPICSUBJECT: The subject of the topic being sent.
  328. SENDERNAME: The name of the member sending the topic.
  329. RECPNAME: The name of the person receiving the email.
  330. TOPICLINK: A link to the topic being sent.
  331. COMMENT: A comment left by the sender.
  332. @description:
  333. */
  334. $txt['send_topic_comment_subject'] = 'Topic: {TOPICSUBJECT} (From: {SENDERNAME})';
  335. $txt['send_topic_comment_body'] = 'Dear {RECPNAME},
  336. I want you to check out "{TOPICSUBJECT}" on {FORUMNAME}. To view it, please click this link:
  337. {TOPICLINK}
  338. A comment has also been added regarding this topic:
  339. {COMMENT}
  340. Thanks,
  341. {SENDERNAME}';
  342. /**
  343. @additional_params: send_email
  344. EMAILSUBJECT: The subject the user wants to email.
  345. EMAILBODY: The body the user wants to email.
  346. SENDERNAME: The name of the member sending the email.
  347. RECPNAME: The name of the person receiving the email.
  348. @description:
  349. */
  350. $txt['send_email_subject'] = '{EMAILSUBJECT}';
  351. $txt['send_email_body'] = '{EMAILBODY}';
  352. /**
  353. @additional_params: report_to_moderator
  354. TOPICSUBJECT: The subject of the reported post.
  355. POSTERNAME: The report post's author's name.
  356. REPORTERNAME: The name of the person reporting the post.
  357. TOPICLINK: The url of the post that is being reported.
  358. REPORTLINK: The url of the moderation center report.
  359. COMMENT: The comment left by the reporter, hopefully to explain why they are reporting the post.
  360. @description: When a user reports a post this email is sent out to moderators and admins of that board.
  361. */
  362. $txt['report_to_moderator_subject'] = 'Reported post: {TOPICSUBJECT} by {POSTERNAME}';
  363. $txt['report_to_moderator_body'] = 'The following post, "{TOPICSUBJECT}" by {POSTERNAME} has been reported by {REPORTERNAME} on a board you moderate:
  364. The topic: {TOPICLINK}
  365. Moderation center: {REPORTLINK}
  366. The reporter has made the following comment:
  367. {COMMENT}
  368. {REGARDS}';
  369. /**
  370. @additional_params: change_password
  371. USERNAME: The user name for the member receiving the email.
  372. PASSWORD: The password for the member.
  373. @description:
  374. */
  375. $txt['change_password_subject'] = 'New Password Details';
  376. $txt['change_password_body'] = 'Dear, {USERNAME}
  377. Your login details at {FORUMNAME} have been changed and your password reset. Below are your new login details.
  378. Your username is "{USERNAME}" and your password is "{PASSWORD}".
  379. You may change it after you login by going to the profile page, or by visiting this page after you login:
  380. {SCRIPTURL}?action=profile
  381. {REGARDS}';
  382. /**
  383. @additional_params: register_activate
  384. REALNAME: The display name for the member receiving the email.
  385. USERNAME: The user name for the member receiving the email.
  386. PASSWORD: The password for the member.
  387. ACTIVATIONLINK: The url link to reactivate the member's account.
  388. ACTIVATIONLINKWITHOUTCODE: The url to the page where the activation code can be entered.
  389. ACTIVATIONCODE: The code needed to reactivate the member's account.
  390. FORGOTPASSWORDLINK: The url to the "forgot password" page.
  391. @description:
  392. */
  393. $txt['register_activate_subject'] = 'Welcome to {FORUMNAME}';
  394. $txt['register_activate_body'] = 'Thank you for registering at {FORUMNAME}. Your username is {USERNAME}. If you forget your password, you can reset it by visiting {FORGOTPASSWORDLINK}.
  395. Before you can login, you first need to activate your account. To do so, please follow this link:
  396. {ACTIVATIONLINK}
  397. Should you have any problems with activation, please visit {ACTIVATIONLINKWITHOUTCODE} use the code "{ACTIVATIONCODE}".
  398. {REGARDS}';
  399. /**
  400. @additional_params: register_activate
  401. REALNAME: The display name for the member receiving the email.
  402. USERNAME: The user name for the member receiving the email.
  403. OPENID: The openID identity for the member.
  404. ACTIVATIONLINK: The url link to reactivate the member's account.
  405. ACTIVATIONLINKWITHOUTCODE: The url to the page where the activation code can be entered.
  406. ACTIVATIONCODE: The code needed to reactivate the member's account.
  407. @description:
  408. */
  409. $txt['register_openid_activate_subject'] = 'Welcome to {FORUMNAME}';
  410. $txt['register_openid_activate_body'] = 'Thank you for registering at {FORUMNAME}. Your username is {USERNAME}. You have chosen to authenticate using the following OpenID identity:
  411. {OPENID}
  412. Before you can login, you first need to activate your account. To do so, please follow this link:
  413. {ACTIVATIONLINK}
  414. Should you have any problems with activation, please visit {ACTIVATIONLINKWITHOUTCODE} and use the code "{ACTIVATIONCODE}".
  415. {REGARDS}';
  416. /**
  417. @additional_params: register_coppa
  418. REALNAME: The display name for the member receiving the email.
  419. USERNAME: The user name for the member receiving the email.
  420. PASSWORD: The password for the member.
  421. COPPALINK: The url link to the coppa form.
  422. FORGOTPASSWORDLINK: The url to the "forgot password" page.
  423. @description:
  424. */
  425. $txt['register_coppa_subject'] = 'Welcome to {FORUMNAME}';
  426. $txt['register_coppa_body'] = 'Thank you for registering at {FORUMNAME}. Your username is {USERNAME}. If you forget your password, you can change it at {FORGOTPASSWORDLINK}
  427. Before you can login, the admin requires consent from your parent/guardian for you to join the community. You can obtain more information at the link below:
  428. {COPPALINK}
  429. {REGARDS}';
  430. /**
  431. @additional_params: register_coppa
  432. REALNAME: The display name for the member receiving the email.
  433. USERNAME: The user name for the member receiving the email.
  434. OPENID: The openID identity for the member.
  435. COPPALINK: The url link to the coppa form.
  436. @description:
  437. */
  438. $txt['register_openid_coppa_subject'] = 'Welcome to {FORUMNAME}';
  439. $txt['register_openid_coppa_body'] = 'Thank you for registering at {FORUMNAME}. Your username is {USERNAME}.
  440. You have chosen to authenticate using the following OpenID identity:
  441. {OPENID}
  442. Before you can login, the admin requires consent from your parent/guardian for you to join the community. You can obtain more information at the link below:
  443. {COPPALINK}
  444. {REGARDS}';
  445. /**
  446. @additional_params: register_immediate
  447. REALNAME: The display name for the member receiving the email.
  448. USERNAME: The user name for the member receiving the email.
  449. PASSWORD: The password for the member.
  450. FORGOTPASSWORDLINK: The url to the "forgot password" page.
  451. @description:
  452. */
  453. $txt['register_immediate_subject'] = 'Welcome to {FORUMNAME}';
  454. $txt['register_immediate_body'] = 'Thank you for registering at {FORUMNAME}. Your username is {USERNAME}. If you forget your password, you may change it at {FORGOTPASSWORDLINK}.
  455. {REGARDS}';
  456. /**
  457. @additional_params: register_immediate
  458. REALNAME: The display name for the member receiving the email.
  459. USERNAME: The user name for the member receiving the email.
  460. OPENID: The openID identity for the member.
  461. @description:
  462. */
  463. $txt['register_openid_immediate_subject'] = 'Welcome to {FORUMNAME}';
  464. $txt['register_openid_immediate_body'] = 'Thank you for registering at {FORUMNAME}. Your username is {USERNAME}.
  465. You have chosen to authenticate using the following OpenID identity:
  466. {OPENID}
  467. You may update your profile by visiting this page after you login:
  468. {SCRIPTURL}?action=profile
  469. {REGARDS}';
  470. /**
  471. @additional_params: register_pending
  472. REALNAME: The display name for the member receiving the email.
  473. USERNAME: The user name for the member receiving the email.
  474. PASSWORD: The password for the member.
  475. FORGOTPASSWORDLINK: The url to the "forgot password" page.
  476. @description:
  477. */
  478. $txt['register_pending_subject'] = 'Welcome to {FORUMNAME}';
  479. $txt['register_pending_body'] = 'Your registration request at {FORUMNAME} has been received, {REALNAME}.
  480. The username you registered with was {USERNAME}. If you forget your password, you can change it at {FORGOTPASSWORDLINK}.
  481. Before you can login and start using the forum, your request will be reviewed and approved. When this happens, you will receive another email from this address.
  482. {REGARDS}';
  483. /**
  484. @additional_params: register_pending
  485. REALNAME: The display name for the member receiving the email.
  486. USERNAME: The user name for the member receiving the email.
  487. OPENID: The openID identity for the member.
  488. @description:
  489. */
  490. $txt['register_openid_pending_subject'] = 'Welcome to {FORUMNAME}';
  491. $txt['register_openid_pending_body'] = 'Your registration request at {FORUMNAME} has been received, {REALNAME}.
  492. The username you registered with was {USERNAME}.
  493. You have chosen to authenticate using the following OpenID identity:
  494. {OPENID}
  495. Before you can login and start using the forum, your request will be reviewed and approved. When this happens, you will receive another email from this address.
  496. {REGARDS}';
  497. /**
  498. @additional_params: notification_reply
  499. TOPICSUBJECT:
  500. POSTERNAME:
  501. TOPICLINK:
  502. UNSUBSCRIBELINK:
  503. @description:
  504. */
  505. $txt['notification_reply_subject'] = 'Topic reply: {TOPICSUBJECT}';
  506. $txt['notification_reply_body'] = 'A reply has been posted to a topic you are watching by {POSTERNAME}.
  507. View the reply at: {TOPICLINK}
  508. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  509. {REGARDS}';
  510. /**
  511. @additional_params: notification_reply_body
  512. TOPICSUBJECT:
  513. POSTERNAME:
  514. TOPICLINK:
  515. UNSUBSCRIBELINK:
  516. MESSAGE:
  517. @description:
  518. */
  519. $txt['notification_reply_body_subject'] = 'Topic reply: {TOPICSUBJECT}';
  520. $txt['notification_reply_body_body'] = 'A reply has been posted to a topic you are watching by {POSTERNAME}.
  521. View the reply at: {TOPICLINK}
  522. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  523. The text of the reply is shown below:
  524. {MESSAGE}
  525. {REGARDS}';
  526. /**
  527. @additional_params: notification_reply_once
  528. TOPICSUBJECT:
  529. POSTERNAME:
  530. TOPICLINK:
  531. UNSUBSCRIBELINK:
  532. @description:
  533. */
  534. $txt['notification_reply_once_subject'] = 'Topic reply: {TOPICSUBJECT}';
  535. $txt['notification_reply_once_body'] = 'A reply has been posted to a topic you are watching by {POSTERNAME}.
  536. View the reply at: {TOPICLINK}
  537. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  538. More replies may be posted, but you won\'t receive any more notifications until you read the topic.
  539. {REGARDS}';
  540. /**
  541. @additional_params: notification_reply_body_once
  542. TOPICSUBJECT:
  543. POSTERNAME:
  544. TOPICLINK:
  545. UNSUBSCRIBELINK:
  546. MESSAGE:
  547. @description:
  548. */
  549. $txt['notification_reply_body_once_subject'] = 'Topic reply: {TOPICSUBJECT}';
  550. $txt['notification_reply_body_once_body'] = 'A reply has been posted to a topic you are watching by {POSTERNAME}.
  551. View the reply at: {TOPICLINK}
  552. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  553. The text of the reply is shown below:
  554. {MESSAGE}
  555. More replies may be posted, but you won\'t receive any more notifications until you read the topic.
  556. {REGARDS}';
  557. /**
  558. @additional_params: notification_sticky
  559. @description:
  560. */
  561. $txt['notification_sticky_subject'] = 'Topic stickied: {TOPICSUBJECT}';
  562. $txt['notification_sticky_body'] = 'A topic you are watching has been marked as a sticky topic by {POSTERNAME}.
  563. View the topic at: {TOPICLINK}
  564. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  565. {REGARDS}';
  566. /**
  567. @additional_params: notification_lock
  568. @description:
  569. */
  570. $txt['notification_lock_subject'] = 'Topic locked: {TOPICSUBJECT}';
  571. $txt['notification_lock_body'] = 'A topic you are watching has been locked by {POSTERNAME}.
  572. View the topic at: {TOPICLINK}
  573. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  574. {REGARDS}';
  575. /**
  576. @additional_params: notification_unlock
  577. @description:
  578. */
  579. $txt['notification_unlock_subject'] = 'Topic unlocked: {TOPICSUBJECT}';
  580. $txt['notification_unlock_body'] = 'A topic you are watching has been unlocked by {POSTERNAME}.
  581. View the topic at: {TOPICLINK}
  582. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  583. {REGARDS}';
  584. /**
  585. @additional_params: notification_remove
  586. @description:
  587. */
  588. $txt['notification_remove_subject'] = 'Topic removed: {TOPICSUBJECT}';
  589. $txt['notification_remove_body'] = 'A topic you are watching has been removed by {POSTERNAME}.
  590. {REGARDS}';
  591. /**
  592. @additional_params: notification_move
  593. @description:
  594. */
  595. $txt['notification_move_subject'] = 'Topic moved: {TOPICSUBJECT}';
  596. $txt['notification_move_body'] = 'A topic you are watching has been moved to another board by {POSTERNAME}.
  597. View the topic at: {TOPICLINK}
  598. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  599. {REGARDS}';
  600. /**
  601. @additional_params: notification_merged
  602. @description:
  603. */
  604. $txt['notification_merge_subject'] = 'Topic merged: {TOPICSUBJECT}';
  605. $txt['notification_merge_body'] = 'A topic you are watching has been merged with another topic by {POSTERNAME}.
  606. View the new merged topic at: {TOPICLINK}
  607. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  608. {REGARDS}';
  609. /**
  610. @additional_params: notification_split
  611. @description:
  612. */
  613. $txt['notification_split_subject'] = 'Topic split: {TOPICSUBJECT}';
  614. $txt['notification_split_body'] = 'A topic you are watching has been split into two or more topics by {POSTERNAME}.
  615. View what remains of this topic at: {TOPICLINK}
  616. Unsubscribe to this topic by using this link: {UNSUBSCRIBELINK}
  617. {REGARDS}';
  618. /**
  619. @additional_params: admin_notify
  620. USERNAME:
  621. PROFILELINK:
  622. @description:
  623. */
  624. $txt['admin_notify_subject'] = 'A new member has joined';
  625. $txt['admin_notify_body'] = '{USERNAME} has just signed up as a new member of your forum. Click the link below to view their profile.
  626. {PROFILELINK}
  627. {REGARDS}';
  628. /**
  629. @additional_params: admin_notify_approval
  630. USERNAME:
  631. PROFILELINK:
  632. APPROVALLINK:
  633. @description:
  634. */
  635. $txt['admin_notify_approval_subject'] = 'A new member has joined';
  636. $txt['admin_notify_approval_body'] = '{USERNAME} has just signed up as a new member of your forum. Click the link below to view their profile.
  637. {PROFILELINK}
  638. Before this member can begin posting they must first have their account approved. Click the link below to go to the approval screen.
  639. {APPROVALLINK}
  640. {REGARDS}';
  641. /**
  642. @additional_params: admin_attachments_full
  643. REALNAME:
  644. @description:
  645. */
  646. $txt['admin_attachments_full_subject'] = 'Urgent! Attachments directory almost full';
  647. $txt['admin_attachments_full_body'] = '{REALNAME},
  648. The attachments directory at {FORUMNAME} is almost full. Please visit the forum to resolve this problem.
  649. Once the attachments directory reaches it\'s maximum permitted size users will not be able to continue to post attachments or upload custom avatars (If enabled).
  650. {REGARDS}';
  651. /**
  652. @additional_params: paid_subscription_refund
  653. NAME: Subscription title.
  654. REALNAME: Recipients name
  655. REFUNDUSER: Username who took out the subscription.
  656. REFUNDNAME: User's display name who took out the subscription.
  657. DATE: Today's date.
  658. PROFILELINK: Link to members profile.
  659. @description:
  660. */
  661. $txt['paid_subscription_refund_subject'] = 'Refunded Paid Subscription';
  662. $txt['paid_subscription_refund_body'] = '{REALNAME},
  663. A member has received a refund on a paid subscription. Below are the details of this subscription:
  664. Subscription: {NAME}
  665. User Name: {REFUNDNAME} ({REFUNDUSER})
  666. Date: {DATE}
  667. You can view this members profile by clicking the link below:
  668. {PROFILELINK}
  669. {REGARDS}';
  670. /**
  671. @additional_params: paid_subscription_new
  672. NAME: Subscription title.
  673. REALNAME: Recipients name
  674. SUBEMAIL: Email address of the user who took out the subscription
  675. SUBUSER: Username who took out the subscription.
  676. SUBNAME: User's display name who took out the subscription.
  677. DATE: Today's date.
  678. PROFILELINK: Link to members profile.
  679. @description:
  680. */
  681. $txt['paid_subscription_new_subject'] = 'New Paid Subscription';
  682. $txt['paid_subscription_new_body'] = '{REALNAME},
  683. A member has taken out a new paid subscription. Below are the details of this subscription:
  684. Subscription: {NAME}
  685. User Name: {SUBNAME} ({SUBUSER})
  686. User Email: {SUBEMAIL}
  687. Price: {PRICE}
  688. Date: {DATE}
  689. You can view this members profile by clicking the link below:
  690. {PROFILELINK}
  691. {REGARDS}';
  692. /**
  693. @additional_params: paid_subscription_error
  694. ERROR: Error message.
  695. REALNAME: Recipients name
  696. @description:
  697. */
  698. $txt['paid_subscription_error_subject'] = 'Paid Subscription Error Occurred';
  699. $txt['paid_subscription_error_body'] = 'Dear, {REALNAME},
  700. The following error occurred when processing a paid subscription
  701. ---------------------------------------------------------------
  702. {ERROR}
  703. {REGARDS}';
  704. /**
  705. @additional_params: new_pm
  706. SUBJECT: The personal message subject.
  707. SENDER: The user name for the member sending the personal message.
  708. READLINK: The link to directly access the read page.
  709. REPLYLINK: The link to directly access the reply page.
  710. @description: A notification email sent to the receivers of a personal message
  711. */
  712. $txt['new_pm_subject'] = 'New Personal Message: {SUBJECT}';
  713. $txt['new_pm_body'] = 'You have just been sent a personal message by {SENDER} on {FORUMNAME}
  714. IMPORTANT: Remember, this is just a notification. Please do not reply to this email.
  715. Read this Personal Message here: {READLINK}
  716. Reply to this Personal Message here: {REPLYLINK}';
  717. /**
  718. @additional_params: new_pm_body
  719. SUBJECT: The personal message subject.
  720. SENDER: The user name for the member sending the personal message.
  721. MESSAGE: The text of the personal message.
  722. REPLYLINK: The link to directly access the reply page.
  723. @description: A notification email sent to the receivers of a personal message
  724. */
  725. $txt['new_pm_body_subject'] = 'New Personal Message: {SUBJECT}';
  726. $txt['new_pm_body_body'] = 'You have just been sent a personal message by {SENDER} on {FORUMNAME}
  727. IMPORTANT: Remember, this is just a notification. Please do not reply to this email.
  728. The message they sent you was:
  729. {MESSAGE}
  730. Reply to this Personal Message here: {REPLYLINK}';
  731. /**
  732. @additional_params: new_pm_tolist
  733. SUBJECT: The personal message subject.
  734. SENDER: The user name for the member sending the personal message.
  735. READLINK: The link to directly access the read page.
  736. REPLYLINK: The link to directly access the reply page.
  737. TOLIST: The list of users that will receive the personal message.
  738. @description: A notification email sent to the receivers of a personal message
  739. */
  740. $txt['new_pm_tolist_subject'] = 'New Personal Message: {SUBJECT}';
  741. $txt['new_pm_tolist_body'] = 'You and {TOLIST} have just been sent a personal message by {SENDER} on {FORUMNAME}
  742. IMPORTANT: Remember, this is just a notification. Please do not reply to this email.
  743. Read this Personal Message here: {READLINK}
  744. Reply to this Personal Message (to the sender only) here: {REPLYLINK}';
  745. /**
  746. @additional_params: new_pm_body_tolist
  747. SUBJECT: The personal message subject.
  748. SENDER: The user name for the member sending the personal message.
  749. MESSAGE: The text of the personal message.
  750. REPLYLINK: The link to directly access the reply page.
  751. TOLIST: The list of users that will receive the personal message.
  752. @description: A notification email sent to the receivers of a personal message
  753. */
  754. $txt['new_pm_body_tolist_subject'] = 'New Personal Message: {SUBJECT}';
  755. $txt['new_pm_body_tolist_body'] = 'You and {TOLIST} have just been sent a personal message by {SENDER} on {FORUMNAME}
  756. IMPORTANT: Remember, this is just a notification. Please do not reply to this email.
  757. The message they sent you was:
  758. {MESSAGE}
  759. Reply to this Personal Message (to the sender only) here: {REPLYLINK}';
  760. /**
  761. @additional_params: happy_birthday
  762. REALNAME: The real (display) name of the person receiving the birthday message.
  763. @description: A message sent to members on their birthday.
  764. */
  765. $txtBirthdayEmails['happy_birthday_subject'] = 'Happy birthday from {FORUMNAME}.';
  766. $txtBirthdayEmails['happy_birthday_body'] = 'Dear {REALNAME},
  767. We here at {FORUMNAME} would like to wish you a happy birthday. May this day and the year to follow be full of joy.
  768. {REGARDS}';
  769. $txtBirthdayEmails['happy_birthday_author'] = '<a href="http://www.simplemachines.org/community/?action=profile;u=2676">Thantos</a>';
  770. $txtBirthdayEmails['karlbenson1_subject'] = 'On your Birthday...';
  771. $txtBirthdayEmails['karlbenson1_body'] = 'We could have sent you a birthday card. We could have sent you some flowers or a cake.
  772. But we didn\'t.
  773. We could have even sent you one of those automatically generated messages to wish you happy birthday where we don\'t even have to replace INSERT NAME.
  774. But we didn\'t
  775. We wrote this birthday greeting just for you.
  776. We would like to wish you a very special birthday.
  777. {REGARDS}
  778. //:: This message was automatically generated :://';
  779. $txtBirthdayEmails['karlbenson1_author'] = '<a href="http://www.simplemachines.org/community/?action=profile;u=63186">karlbenson</a>';
  780. $txtBirthdayEmails['nite0859_subject'] = 'Happy Birthday!';
  781. $txtBirthdayEmails['nite0859_body'] = 'Your friends at {FORUMNAME} would like to take a moment of your time to wish you a happy birthday, {REALNAME}. If you have not done so recently, please visit our community in order for others to have the opportunity to pass along their warm regards.
  782. Even though today is your birthday, {REALNAME}, we would like to remind you that your membership in our community has been the best gift to us thus far.
  783. Best Wishes,
  784. The Staff of {FORUMNAME}';
  785. $txtBirthdayEmails['nite0859_author'] = '<a href="http://www.simplemachines.org/community/?action=profile;u=46625">nite0859</a>';
  786. $txtBirthdayEmails['zwaldowski_subject'] = 'Birthday Wishes to {REALNAME}';
  787. $txtBirthdayEmails['zwaldowski_body'] = 'Dear {REALNAME},
  788. Another year in your life has passed. We at {FORUMNAME} hope it has been filled with happiness, and wish you luck in the coming one.
  789. {REGARDS}';
  790. $txtBirthdayEmails['zwaldowski_author'] = '<a href="http://www.simplemachines.org/community/?action=profile;u=72038">zwaldowski</a>';
  791. $txtBirthdayEmails['geezmo_subject'] = 'Happy birthday, {REALNAME}!';
  792. $txtBirthdayEmails['geezmo_body'] = 'Do you know who\'s having a birthday today, {REALNAME}?
  793. We know... YOU!
  794. Happy birthday!
  795. You\'re now a year older but we hope you\'re a lot happier than last year.
  796. Enjoy your day today, {REALNAME}!
  797. - From your {FORUMNAME} family';
  798. $txtBirthdayEmails['geezmo_author'] = '<a href="http://www.simplemachines.org/community/?action=profile;u=48671">geezmo</a>';
  799. $txtBirthdayEmails['karlbenson2_subject'] = 'Your Birthday Greeting';
  800. $txtBirthdayEmails['karlbenson2_body'] = 'We hope your birthday is the best ever cloudy, sunny or whatever the weather.
  801. Have lots of birthday cake and fun, and tell us what you have done.
  802. We hope this message brought you cheer, and make it last, until same time same place, next year.
  803. {REGARDS}';
  804. $txtBirthdayEmails['karlbenson2_author'] = '<a href="http://www.simplemachines.org/community/?action=profile;u=63186">karlbenson</a>';
  805. ?>