strings.php 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. $translate = array();
  3. $translate["label.userProfile"]="User Profile";
  4. $translate["label.bt_recover"]="Reset Password";
  5. $translate["delete"]="Delete";
  6. $translate["info.noComments"]="There are no comments!";
  7. $translate["signUp.confirmOk"]="Confirmation successful!";
  8. $translate["signUp.invalidPswd"]="Invalid password supplied !";
  9. $translate["signUp.confirmUsr"]="User creation was successful confirmed!";
  10. $translate["signUp.invalidUsr"]="Invalid user specified to be confirmed!";
  11. $translate["signUp.userConfirmed"]="Your user has been already confirmed!";
  12. $translate["msg.secureOldPass"]="Please confirm profile update with the current password";
  13. $translate["productsListTitle"]="Products";
  14. $translate["versionsListTitle"]="Versions";
  15. $translate["unavailableTextTillApproved"]="Text is unavailable until post is approved";
  16. $translate["signUpEmailSubject"]="Sign Up Confirmation";
  17. $translate["signUpLoginConfirmation"]="Your user has been verified!";
  18. $translate["RecoveredEmailSubject"]="Password Recovered";
  19. $translate["RecoverConfirmationEmailSubject"]="Password Recovery Confirmation";
  20. $translate["newCommentAdded"]="Comment Added";
  21. $translate["newCommentToModerate"]="Comment To Moderate";
  22. $translate["newUnmoderatedCommentAdded"]="Non moderated Comment";
  23. $translate["newCommentApproved"]="Comment Posted";
  24. $translate["pwd.invalid"]="Password contains invalid characters!";
  25. $translate["email.duplicate"]="This email is already registered our database!";
  26. $translate["username.duplicate"]="This user name is already taken!";
  27. $translate["pwd.tooShort"]="Password must be at least 5 characters long!";
  28. $translate["input.invalid"]="You have inserted invalid date for:";
  29. $translate["email.user.not.match"]="User and email address does not match any user name in out database!";
  30. $translate["user.name.label"]="Your Name";
  31. $translate["user.status.label"]="Status";
  32. $translate["user.email.label"]="Your E-Mail";
  33. $translate["user.userName.label"]="";
  34. $translate["user.level.label"]="";
  35. $translate["user.company.label"]="";
  36. $translate["user.date.label"]="";
  37. $translate["user.notifyPage.label"]="Page Notification";
  38. $translate["user.notifyAll.label"]="Web Help Notification";
  39. $translate["user.notifyReply.label"]="Reply Notification";
  40. $translate["user.action.label"]="Edit";
  41. $translate["admin.name.label"]="Name";
  42. $translate["admin.status.label"]="Status";
  43. $translate["admin.email.label"]="E-Mail";
  44. $translate["admin.userName.label"]="User Name";
  45. $translate["admin.level.label"]="Level";
  46. $translate["admin.company.label"]="Company";
  47. $translate["admin.date.label"]="Date";
  48. $translate["admin.notifyPage.label"]="Page Notification";
  49. $translate["admin.notifyAll.label"]="Web Help Notification";
  50. $translate["admin.notifyReply.label"]="Reply Notification";
  51. $translate["admin.action.label"]="Action";
  52. $translate["comment.moderate.info"]="Post waiting for approval.";
  53. $translate["approved"]="Approved";
  54. $translate["new"]="New";
  55. $translate["suspended"]="Suspended";
  56. $translate["rejected"]="Rejected";
  57. $translate["approve"]="Approve";
  58. $translate["edit"]="Edit";
  59. $translate["selected"]="Selected";
  60. $translate["suspend"]="Suspend";
  61. $translate["reply"]="Reply";
  62. $translate["noEmailFound"]="Your specified E-mail does not match any user!";
  63. $translate["noEmailSpecified"]="You did not specified any email address!";
  64. $translate["passwordChanged"]="Your new password was generated! You will receive it in an e-mail shortly!";
  65. $translate["confirmationRequired"]="Your password generation must be confirmed, please check your E-mail!";
  66. $translate["label.tc.commentId"]="Id";
  67. $translate["label.tc.text"]="Text";
  68. $translate["label.tc.userId"]="User";
  69. $translate["label.tc.referedComment"]="Ref. Comment";
  70. $translate["label.tc.date"]="Date";
  71. $translate["label.tc.state"]="State";
  72. $translate["label.tc.page"]="Page";
  73. $translate["label.tc.product"]="Product";
  74. $translate["label.tc.version"]="Version";
  75. $translate["label.tc.visible"]="Visible";
  76. $translate["err.notLoggedIn"]="User must be authenticated, in order to execute this operation";
  77. global $translate;
  78. ?>