PageRenderTime 63ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/languages/en.php

https://github.com/cdegrass/Elgg
PHP | 1436 lines | 1280 code | 109 blank | 47 comment | 18 complexity | 60acf31475535393affec626365d8bac MD5 | raw file
Possible License(s): LGPL-2.1, MPL-2.0-no-copyleft-exception

Large files files are truncated, but you can click here to view the full file

  1. <?php
  2. return array(
  3. /**
  4. * Sites
  5. */
  6. 'item:site' => 'Sites',
  7. /**
  8. * Sessions
  9. */
  10. 'login' => "Log in",
  11. 'loginok' => "You have been logged in.",
  12. 'loginerror' => "We couldn't log you in. Please check your credentials and try again.",
  13. 'login:empty' => "Username/email and password are required.",
  14. 'login:baduser' => "Unable to load your user account.",
  15. 'auth:nopams' => "Internal error. No user authentication method installed.",
  16. 'logout' => "Log out",
  17. 'logoutok' => "You have been logged out.",
  18. 'logouterror' => "We couldn't log you out. Please try again.",
  19. 'session_expired' => "Your session has expired. Please reload the page to log in.",
  20. 'loggedinrequired' => "You must be logged in to view the requested page.",
  21. 'adminrequired' => "You must be an administrator to view the requested page.",
  22. 'membershiprequired' => "You must be a member of this group to view the requested page.",
  23. 'limited_access' => "You do not have permission to view the requested page.",
  24. /**
  25. * Errors
  26. */
  27. 'exception:title' => "Fatal Error.",
  28. 'exception:contact_admin' => 'An unrecoverable error has occurred and has been logged. Contact the site administrator with the following information:',
  29. 'actionundefined' => "The requested action (%s) was not defined in the system.",
  30. 'actionnotfound' => "The action file for %s was not found.",
  31. 'actionloggedout' => "Sorry, you cannot perform this action while logged out.",
  32. 'actionunauthorized' => 'You are unauthorized to perform this action',
  33. 'PluginException:MisconfiguredPlugin' => "%s (guid: %s) is a misconfigured plugin. It has been disabled. Please search the Elgg wiki for possible causes (http://docs.elgg.org/wiki/).",
  34. 'PluginException:CannotStart' => '%s (guid: %s) cannot start and has been deactivated. Reason: %s',
  35. 'PluginException:InvalidID' => "%s is an invalid plugin ID.",
  36. 'PluginException:InvalidPath' => "%s is an invalid plugin path.",
  37. 'PluginException:InvalidManifest' => 'Invalid manifest file for plugin %s',
  38. 'PluginException:InvalidPlugin' => '%s is not a valid plugin.',
  39. 'PluginException:InvalidPlugin:Details' => '%s is not a valid plugin: %s',
  40. 'PluginException:NullInstantiated' => 'ElggPlugin cannot be null instantiated. You must pass a GUID, a plugin ID, or a full path.',
  41. 'ElggPlugin:MissingID' => 'Missing plugin ID (guid %s)',
  42. 'ElggPlugin:NoPluginPackagePackage' => 'Missing ElggPluginPackage for plugin ID %s (guid %s)',
  43. 'ElggPluginPackage:InvalidPlugin:MissingFile' => 'The required file "%s" is missing.',
  44. 'ElggPluginPackage:InvalidPlugin:InvalidId' => 'This plugin\'s directory must be renamed to "%s" to match the ID in its manifest.',
  45. 'ElggPluginPackage:InvalidPlugin:InvalidDependency' => 'Its manifest contains an invalid dependency type "%s".',
  46. 'ElggPluginPackage:InvalidPlugin:InvalidProvides' => 'Its manifest contains an invalid provides type "%s".',
  47. 'ElggPluginPackage:InvalidPlugin:CircularDep' => 'There is an invalid %s dependency "%s" in plugin %s. Plugins cannot conflict with or require something they provide!',
  48. 'ElggPlugin:Exception:CannotIncludeFile' => 'Cannot include %s for plugin %s (guid: %s) at %s.',
  49. 'ElggPlugin:Exception:CannotRegisterViews' => 'Cannot open views dir for plugin %s (guid: %s) at %s.',
  50. 'ElggPlugin:Exception:CannotRegisterLanguages' => 'Cannot register languages for plugin %s (guid: %s) at %s.',
  51. 'ElggPlugin:Exception:NoID' => 'No ID for plugin guid %s!',
  52. 'PluginException:NoPluginName' => "The plugin name could not be found",
  53. 'PluginException:ParserError' => 'Error parsing manifest with API version %s in plugin %s.',
  54. 'PluginException:NoAvailableParser' => 'Cannot find a parser for manifest API version %s in plugin %s.',
  55. 'PluginException:ParserErrorMissingRequiredAttribute' => "Missing required '%s' attribute in manifest for plugin %s.",
  56. 'ElggPlugin:InvalidAndDeactivated' => '%s is an invalid plugin and has been deactivated.',
  57. 'ElggPlugin:Dependencies:Requires' => 'Requires',
  58. 'ElggPlugin:Dependencies:Suggests' => 'Suggests',
  59. 'ElggPlugin:Dependencies:Conflicts' => 'Conflicts',
  60. 'ElggPlugin:Dependencies:Conflicted' => 'Conflicted',
  61. 'ElggPlugin:Dependencies:Provides' => 'Provides',
  62. 'ElggPlugin:Dependencies:Priority' => 'Priority',
  63. 'ElggPlugin:Dependencies:Elgg' => 'Elgg version',
  64. 'ElggPlugin:Dependencies:PhpVersion' => 'PHP version',
  65. 'ElggPlugin:Dependencies:PhpExtension' => 'PHP extension: %s',
  66. 'ElggPlugin:Dependencies:PhpIni' => 'PHP ini setting: %s',
  67. 'ElggPlugin:Dependencies:Plugin' => 'Plugin: %s',
  68. 'ElggPlugin:Dependencies:Priority:After' => 'After %s',
  69. 'ElggPlugin:Dependencies:Priority:Before' => 'Before %s',
  70. 'ElggPlugin:Dependencies:Priority:Uninstalled' => '%s is not installed',
  71. 'ElggPlugin:Dependencies:Suggests:Unsatisfied' => 'Missing',
  72. 'ElggPlugin:Dependencies:ActiveDependent' => 'There are other plugins that list %s as a dependency. You must disable the following plugins before disabling this one: %s',
  73. 'RegistrationException:EmptyPassword' => 'The password fields cannot be empty',
  74. 'RegistrationException:PasswordMismatch' => 'Passwords must match',
  75. 'LoginException:BannedUser' => 'You have been banned from this site and cannot log in',
  76. 'LoginException:UsernameFailure' => 'We could not log you in. Please check your username/email and password.',
  77. 'LoginException:PasswordFailure' => 'We could not log you in. Please check your username/email and password.',
  78. 'LoginException:AccountLocked' => 'Your account has been locked for too many log in failures.',
  79. 'LoginException:ChangePasswordFailure' => 'Failed current password check.',
  80. 'LoginException:Unknown' => 'We could not log you in due to an unknown error.',
  81. 'deprecatedfunction' => 'Warning: This code uses the deprecated function \'%s\' and is not compatible with this version of Elgg',
  82. 'pageownerunavailable' => 'Warning: The page owner %d is not accessible!',
  83. 'viewfailure' => 'There was an internal failure in the view %s',
  84. 'view:missing_param' => "The required parameter '%s' is missing in the view %s",
  85. 'changebookmark' => 'Please change your bookmark for this page',
  86. 'noaccess' => 'The content you were trying to view has been removed or you do not have permission to view it.',
  87. 'error:missing_data' => 'There was some data missing in your request',
  88. 'save:fail' => 'There was a failure saving your data',
  89. 'save:success' => 'Your data was saved',
  90. 'error:default:title' => 'Oops...',
  91. 'error:default:content' => 'Oops... something went wrong.',
  92. 'error:404:title' => 'Page not found',
  93. 'error:404:content' => 'Sorry. We could not find the page that you requested.',
  94. 'upload:error:ini_size' => 'The file you tried to upload is too large.',
  95. 'upload:error:form_size' => 'The file you tried to upload is too large.',
  96. 'upload:error:partial' => 'The file upload did not complete.',
  97. 'upload:error:no_file' => 'No file was selected.',
  98. 'upload:error:no_tmp_dir' => 'Cannot save the uploaded file.',
  99. 'upload:error:cant_write' => 'Cannot save the uploaded file.',
  100. 'upload:error:extension' => 'Cannot save the uploaded file.',
  101. 'upload:error:unknown' => 'The file upload failed.',
  102. /**
  103. * User details
  104. */
  105. 'name' => "Display name",
  106. 'email' => "Email address",
  107. 'username' => "Username",
  108. 'loginusername' => "Username or email",
  109. 'password' => "Password",
  110. 'passwordagain' => "Password (again for verification)",
  111. 'admin_option' => "Make this user an admin?",
  112. /**
  113. * Access
  114. */
  115. 'PRIVATE' => "Private",
  116. 'LOGGED_IN' => "Logged in users",
  117. 'PUBLIC' => "Public",
  118. 'LOGGED_OUT' => "Logged out users",
  119. 'access:friends:label' => "Friends",
  120. 'access' => "Access",
  121. 'access:overridenotice' => "Note: Due to group policy, this content will be accessible only by group members.",
  122. 'access:limited:label' => "Limited",
  123. 'access:help' => "The access level",
  124. 'access:read' => "Read access",
  125. 'access:write' => "Write access",
  126. 'access:admin_only' => "Administrators only",
  127. /**
  128. * Dashboard and widgets
  129. */
  130. 'dashboard' => "Dashboard",
  131. 'dashboard:nowidgets' => "Your dashboard lets you track the activity and content on this site that matters to you.",
  132. 'widgets:add' => 'Add widgets',
  133. 'widgets:add:description' => "Click on any widget button below to add it to the page.",
  134. 'widgets:position:fixed' => '(Fixed position on page)',
  135. 'widget:unavailable' => 'You have already added this widget',
  136. 'widget:numbertodisplay' => 'Number of items to display',
  137. 'widget:delete' => 'Remove %s',
  138. 'widget:edit' => 'Customize this widget',
  139. 'widgets' => "Widgets",
  140. 'widget' => "Widget",
  141. 'item:object:widget' => "Widgets",
  142. 'widgets:save:success' => "The widget was successfully saved.",
  143. 'widgets:save:failure' => "We could not save your widget.",
  144. 'widgets:add:success' => "The widget was successfully added.",
  145. 'widgets:add:failure' => "We could not add your widget.",
  146. 'widgets:move:failure' => "We could not store the new widget position.",
  147. 'widgets:remove:failure' => "Unable to remove this widget",
  148. /**
  149. * Groups
  150. */
  151. 'group' => "Group",
  152. 'item:group' => "Groups",
  153. /**
  154. * Users
  155. */
  156. 'user' => "User",
  157. 'item:user' => "Users",
  158. /**
  159. * Friends
  160. */
  161. 'friends' => "Friends",
  162. 'friends:yours' => "Your friends",
  163. 'friends:owned' => "%s's friends",
  164. 'friend:add' => "Add friend",
  165. 'friend:remove' => "Remove friend",
  166. 'friends:add:successful' => "You have successfully added %s as a friend.",
  167. 'friends:add:failure' => "We couldn't add %s as a friend.",
  168. 'friends:remove:successful' => "You have successfully removed %s from your friends.",
  169. 'friends:remove:failure' => "We couldn't remove %s from your friends.",
  170. 'friends:none' => "No friends yet.",
  171. 'friends:none:you' => "You don't have any friends yet.",
  172. 'friends:none:found' => "No friends were found.",
  173. 'friends:of:none' => "Nobody has added this user as a friend yet.",
  174. 'friends:of:none:you' => "Nobody has added you as a friend yet. Start adding content and fill in your profile to let people find you!",
  175. 'friends:of:owned' => "People who have made %s a friend",
  176. 'friends:of' => "Friends of",
  177. 'friends:collections' => "Friend collections",
  178. 'collections:add' => "New collection",
  179. 'friends:collections:add' => "New friends collection",
  180. 'friends:addfriends' => "Select friends",
  181. 'friends:collectionname' => "Collection name",
  182. 'friends:collectionfriends' => "Friends in collection",
  183. 'friends:collectionedit' => "Edit this collection",
  184. 'friends:nocollections' => "You do not have any collections yet.",
  185. 'friends:collectiondeleted' => "Your collection has been deleted.",
  186. 'friends:collectiondeletefailed' => "We were unable to delete the collection. Either you don't have permission, or some other problem has occurred.",
  187. 'friends:collectionadded' => "Your collection was successfully created",
  188. 'friends:nocollectionname' => "You need to give your collection a name before it can be created.",
  189. 'friends:collections:members' => "Collection members",
  190. 'friends:collections:edit' => "Edit collection",
  191. 'friends:collections:edited' => "Saved collection",
  192. 'friends:collection:edit_failed' => 'Could not save collection.',
  193. 'friendspicker:chararray' => 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
  194. 'avatar' => 'Avatar',
  195. 'avatar:noaccess' => "You're not allowed to edit this user's avatar",
  196. 'avatar:create' => 'Create your avatar',
  197. 'avatar:edit' => 'Edit avatar',
  198. 'avatar:preview' => 'Preview',
  199. 'avatar:upload' => 'Upload a new avatar',
  200. 'avatar:current' => 'Current avatar',
  201. 'avatar:remove' => 'Remove your avatar and set the default icon',
  202. 'avatar:crop:title' => 'Avatar cropping tool',
  203. 'avatar:upload:instructions' => "Your avatar is displayed throughout the site. You can change it as often as you'd like. (File formats accepted: GIF, JPG or PNG)",
  204. 'avatar:create:instructions' => 'Click and drag a square below to match how you want your avatar cropped. A preview will appear in the box on the right. When you are happy with the preview, click \'Create your avatar\'. This cropped version will be used throughout the site as your avatar.',
  205. 'avatar:upload:success' => 'Avatar successfully uploaded',
  206. 'avatar:upload:fail' => 'Avatar upload failed',
  207. 'avatar:resize:fail' => 'Resize of the avatar failed',
  208. 'avatar:crop:success' => 'Cropping the avatar succeeded',
  209. 'avatar:crop:fail' => 'Avatar cropping failed',
  210. 'avatar:remove:success' => 'Removing the avatar succeeded',
  211. 'avatar:remove:fail' => 'Avatar remove failed',
  212. 'profile:edit' => 'Edit profile',
  213. 'profile:aboutme' => "About me",
  214. 'profile:description' => "About me",
  215. 'profile:briefdescription' => "Brief description",
  216. 'profile:location' => "Location",
  217. 'profile:skills' => "Skills",
  218. 'profile:interests' => "Interests",
  219. 'profile:contactemail' => "Contact email",
  220. 'profile:phone' => "Telephone",
  221. 'profile:mobile' => "Mobile phone",
  222. 'profile:website' => "Website",
  223. 'profile:twitter' => "Twitter username",
  224. 'profile:saved' => "Your profile was successfully saved.",
  225. 'profile:field:text' => 'Short text',
  226. 'profile:field:longtext' => 'Large text area',
  227. 'profile:field:tags' => 'Tags',
  228. 'profile:field:url' => 'Web address',
  229. 'profile:field:email' => 'Email address',
  230. 'profile:field:location' => 'Location',
  231. 'profile:field:date' => 'Date',
  232. 'admin:appearance:profile_fields' => 'Edit Profile Fields',
  233. 'profile:edit:default' => 'Edit profile fields',
  234. 'profile:label' => "Profile label",
  235. 'profile:type' => "Profile type",
  236. 'profile:editdefault:delete:fail' => 'Removed default profile item field failed',
  237. 'profile:editdefault:delete:success' => 'Profile field deleted',
  238. 'profile:defaultprofile:reset' => 'Profile fields reset to the system default',
  239. 'profile:resetdefault' => 'Reset profile fields to system defaults',
  240. 'profile:resetdefault:confirm' => 'Are you sure you want to delete your custom profile fields?',
  241. 'profile:explainchangefields' => "You can replace the existing profile fields with your own using the form below. \n\n Give the new profile field a label, for example, 'Favorite team', then select the field type (eg. text, url, tags), and click the 'Add' button. To re-order the fields drag on the handle next to the field label. To edit a field label - click on the label's text to make it editable. \n\n At any time you can revert back to the default profile set up, but you will lose any information already entered into custom fields on profile pages.",
  242. 'profile:editdefault:success' => 'New profile field added',
  243. 'profile:editdefault:fail' => 'Default profile could not be saved',
  244. 'profile:field_too_long' => 'Cannot save your profile information because the "%s" section is too long.',
  245. 'profile:noaccess' => "You do not have permission to edit this profile.",
  246. 'profile:invalid_email' => '%s must be a valid email address.',
  247. /**
  248. * Feeds
  249. */
  250. 'feed:rss' => 'RSS feed for this page',
  251. /**
  252. * Links
  253. */
  254. 'link:view' => 'view link',
  255. 'link:view:all' => 'View all',
  256. /**
  257. * River
  258. */
  259. 'river' => "River",
  260. 'river:friend:user:default' => "%s is now a friend with %s",
  261. 'river:update:user:avatar' => '%s has a new avatar',
  262. 'river:update:user:profile' => '%s has updated their profile',
  263. 'river:noaccess' => 'You do not have permission to view this item.',
  264. 'river:posted:generic' => '%s posted',
  265. 'riveritem:single:user' => 'a user',
  266. 'riveritem:plural:user' => 'some users',
  267. 'river:ingroup' => 'in the group %s',
  268. 'river:none' => 'No activity',
  269. 'river:update' => 'Update for %s',
  270. 'river:delete' => 'Remove this activity item',
  271. 'river:delete:success' => 'River item has been deleted',
  272. 'river:delete:fail' => 'River item could not be deleted',
  273. 'river:subject:invalid_subject' => 'Invalid user',
  274. 'activity:owner' => 'View activity',
  275. 'river:widget:title' => "Activity",
  276. 'river:widget:description' => "Display latest activity",
  277. 'river:widget:type' => "Type of activity",
  278. 'river:widgets:friends' => 'Friends activity',
  279. 'river:widgets:all' => 'All site activity',
  280. /**
  281. * Notifications
  282. */
  283. 'notifications:usersettings' => "Notification settings",
  284. 'notification:method:email' => 'Email',
  285. 'notifications:usersettings:save:ok' => "Notification settings were successfully saved.",
  286. 'notifications:usersettings:save:fail' => "There was a problem saving the notification settings.",
  287. 'notification:subject' => 'Notification about %s',
  288. 'notification:body' => 'View the new activity at %s',
  289. /**
  290. * Search
  291. */
  292. 'search' => "Search",
  293. 'searchtitle' => "Search: %s",
  294. 'users:searchtitle' => "Searching for users: %s",
  295. 'groups:searchtitle' => "Searching for groups: %s",
  296. 'advancedsearchtitle' => "%s with results matching %s",
  297. 'notfound' => "No results found.",
  298. 'next' => "Next",
  299. 'previous' => "Previous",
  300. 'viewtype:change' => "Change list type",
  301. 'viewtype:list' => "List view",
  302. 'viewtype:gallery' => "Gallery",
  303. 'tag:search:startblurb' => "Items with tags matching '%s':",
  304. 'user:search:startblurb' => "Users matching '%s':",
  305. 'user:search:finishblurb' => "To view more, click here.",
  306. 'group:search:startblurb' => "Groups matching '%s':",
  307. 'group:search:finishblurb' => "To view more, click here.",
  308. 'search:go' => 'Go',
  309. 'userpicker:only_friends' => 'Only friends',
  310. /**
  311. * Account
  312. */
  313. 'account' => "Account",
  314. 'settings' => "Settings",
  315. 'tools' => "Tools",
  316. 'settings:edit' => 'Edit settings',
  317. 'register' => "Register",
  318. 'registerok' => "You have successfully registered for %s.",
  319. 'registerbad' => "Your registration was unsuccessful because of an unknown error.",
  320. 'registerdisabled' => "Registration has been disabled by the system administrator",
  321. 'register:fields' => 'All fields are required',
  322. 'registration:notemail' => 'The email address you provided does not appear to be a valid email address.',
  323. 'registration:userexists' => 'That username already exists',
  324. 'registration:usernametooshort' => 'Your username must be a minimum of %u characters long.',
  325. 'registration:usernametoolong' => 'Your username is too long. It can have a maximum of %u characters.',
  326. 'registration:passwordtooshort' => 'The password must be a minimum of %u characters long.',
  327. 'registration:dupeemail' => 'This email address has already been registered.',
  328. 'registration:invalidchars' => 'Sorry, your username contains the character %s which is invalid. The following characters are invalid: %s',
  329. 'registration:emailnotvalid' => 'Sorry, the email address you entered is invalid on this system',
  330. 'registration:passwordnotvalid' => 'Sorry, the password you entered is invalid on this system',
  331. 'registration:usernamenotvalid' => 'Sorry, the username you entered is invalid on this system',
  332. 'adduser' => "Add User",
  333. 'adduser:ok' => "You have successfully added a new user.",
  334. 'adduser:bad' => "The new user could not be created.",
  335. 'user:set:name' => "Account name settings",
  336. 'user:name:label' => "Display name",
  337. 'user:name:success' => "Successfully changed display name on the system.",
  338. 'user:name:fail' => "Could not change display name on the system.",
  339. 'user:set:password' => "Account password",
  340. 'user:current_password:label' => 'Current password',
  341. 'user:password:label' => "New password",
  342. 'user:password2:label' => "New password again",
  343. 'user:password:success' => "Password changed",
  344. 'user:password:fail' => "Could not change your password on the system.",
  345. 'user:password:fail:notsame' => "The two passwords are not the same!",
  346. 'user:password:fail:tooshort' => "Password is too short!",
  347. 'user:password:fail:incorrect_current_password' => 'The current password entered is incorrect.',
  348. 'user:changepassword:unknown_user' => 'Invalid user.',
  349. 'user:changepassword:change_password_confirm' => 'This will change your password.',
  350. 'user:set:language' => "Language settings",
  351. 'user:language:label' => "Language",
  352. 'user:language:success' => "Language settings have been updated.",
  353. 'user:language:fail' => "Language settings could not be saved.",
  354. 'user:username:notfound' => 'Username %s not found.',
  355. 'user:password:lost' => 'Lost password',
  356. 'user:password:changereq:success' => 'Successfully requested a new password, email sent',
  357. 'user:password:changereq:fail' => 'Could not request a new password.',
  358. 'user:password:text' => 'To request a new password, enter your username or email address below and click the Request button.',
  359. 'user:persistent' => 'Remember me',
  360. 'walled_garden:welcome' => 'Welcome to',
  361. /**
  362. * Administration
  363. */
  364. 'menu:page:header:administer' => 'Administer',
  365. 'menu:page:header:configure' => 'Configure',
  366. 'menu:page:header:develop' => 'Develop',
  367. 'menu:page:header:default' => 'Other',
  368. 'admin:view_site' => 'View site',
  369. 'admin:loggedin' => 'Logged in as %s',
  370. 'admin:menu' => 'Menu',
  371. 'admin:configuration:success' => "Your settings have been saved.",
  372. 'admin:configuration:fail' => "Your settings could not be saved.",
  373. 'admin:configuration:dataroot:relative_path' => 'Cannot set "%s" as the dataroot because it is not an absolute path.',
  374. 'admin:unknown_section' => 'Invalid Admin Section.',
  375. 'admin' => "Administration",
  376. 'admin:description' => "The admin panel allows you to control all aspects of the system, from user management to how plugins behave. Choose an option below to get started.",
  377. 'admin:statistics' => "Statistics",
  378. 'admin:statistics:overview' => 'Overview',
  379. 'admin:statistics:server' => 'Server Info',
  380. 'admin:statistics:cron' => 'Cron',
  381. 'admin:cron:record' => 'Latest Cron Jobs',
  382. 'admin:cron:period' => 'Cron period',
  383. 'admin:cron:friendly' => 'Last completed',
  384. 'admin:cron:date' => 'Date and time',
  385. 'admin:appearance' => 'Appearance',
  386. 'admin:administer_utilities' => 'Utilities',
  387. 'admin:develop_utilities' => 'Utilities',
  388. 'admin:configure_utilities' => 'Utilities',
  389. 'admin:configure_utilities:robots' => 'Robots.txt',
  390. 'admin:users' => "Users",
  391. 'admin:users:online' => 'Currently Online',
  392. 'admin:users:newest' => 'Newest',
  393. 'admin:users:admins' => 'Administrators',
  394. 'admin:users:add' => 'Add New User',
  395. 'admin:users:description' => "This admin panel allows you to control user settings for your site. Choose an option below to get started.",
  396. 'admin:users:adduser:label' => "Click here to add a new user...",
  397. 'admin:users:opt:linktext' => "Configure users...",
  398. 'admin:users:opt:description' => "Configure users and account information. ",
  399. 'admin:users:find' => 'Find',
  400. 'admin:administer_utilities:maintenance' => 'Maintenance mode',
  401. 'admin:upgrades' => 'Upgrades',
  402. 'admin:settings' => 'Settings',
  403. 'admin:settings:basic' => 'Basic Settings',
  404. 'admin:settings:advanced' => 'Advanced Settings',
  405. 'admin:site:description' => "This admin panel allows you to control global settings for your site. Choose an option below to get started.",
  406. 'admin:site:opt:linktext' => "Configure site...",
  407. 'admin:settings:in_settings_file' => 'This setting is configured in settings.php',
  408. 'admin:legend:security' => 'Security',
  409. 'admin:site:secret:intro' => 'Elgg uses a key to create security tokens for various purposes.',
  410. 'admin:site:secret_regenerated' => "Your site secret has been regenerated.",
  411. 'admin:site:secret:regenerate' => "Regenerate site secret",
  412. 'admin:site:secret:regenerate:help' => "Note: Regenerating your site secret may inconvenience some users by invalidating tokens used in \"remember me\" cookies, e-mail validation requests, invitation codes, etc.",
  413. 'site_secret:current_strength' => 'Key Strength',
  414. 'site_secret:strength:weak' => "Weak",
  415. 'site_secret:strength_msg:weak' => "We strongly recommend that you regenerate your site secret.",
  416. 'site_secret:strength:moderate' => "Moderate",
  417. 'site_secret:strength_msg:moderate' => "We recommend you regenerate your site secret for the best site security.",
  418. 'site_secret:strength:strong' => "Strong",
  419. 'site_secret:strength_msg:strong' => "Your site secret is sufficiently strong. There is no need to regenerate it.",
  420. 'admin:dashboard' => 'Dashboard',
  421. 'admin:widget:online_users' => 'Online users',
  422. 'admin:widget:online_users:help' => 'Lists the users currently on the site',
  423. 'admin:widget:new_users' => 'New users',
  424. 'admin:widget:new_users:help' => 'Lists the newest users',
  425. 'admin:widget:banned_users' => 'Banned users',
  426. 'admin:widget:banned_users:help' => 'Lists the banned users',
  427. 'admin:widget:content_stats' => 'Content statistics',
  428. 'admin:widget:content_stats:help' => 'Keep track of the content created by your users',
  429. 'widget:content_stats:type' => 'Content type',
  430. 'widget:content_stats:number' => 'Number',
  431. 'admin:widget:admin_welcome' => 'Welcome',
  432. 'admin:widget:admin_welcome:help' => "A short introduction to Elgg's admin area",
  433. 'admin:widget:admin_welcome:intro' =>
  434. 'Welcome to Elgg! Right now you are looking at the administration dashboard. It\'s useful for tracking what\'s happening on the site.',
  435. 'admin:widget:admin_welcome:admin_overview' =>
  436. "Navigation for the administration area is provided by the menu to the right. It is organized into
  437. three sections:
  438. <dl>
  439. <dt>Administer</dt><dd>Everyday tasks like monitoring reported content, checking who is online, and viewing statistics.</dd>
  440. <dt>Configure</dt><dd>Occasional tasks like setting the site name or activating a plugin.</dd>
  441. <dt>Develop</dt><dd>For developers who are building plugins or designing themes. (Requires a developer plugin.)</dd>
  442. </dl>
  443. ",
  444. // argh, this is ugly
  445. 'admin:widget:admin_welcome:outro' => '<br />Be sure to check out the resources available through the footer links and thank you for using Elgg!',
  446. 'admin:widget:control_panel' => 'Control panel',
  447. 'admin:widget:control_panel:help' => "Provides easy access to common controls",
  448. 'admin:cache:flush' => 'Flush the caches',
  449. 'admin:cache:flushed' => "The site's caches have been flushed",
  450. 'admin:footer:faq' => 'Administration FAQ',
  451. 'admin:footer:manual' => 'Administration Manual',
  452. 'admin:footer:community_forums' => 'Elgg Community Forums',
  453. 'admin:footer:blog' => 'Elgg Blog',
  454. 'admin:plugins:category:all' => 'All plugins',
  455. 'admin:plugins:category:active' => 'Active plugins',
  456. 'admin:plugins:category:inactive' => 'Inactive plugins',
  457. 'admin:plugins:category:admin' => 'Admin',
  458. 'admin:plugins:category:bundled' => 'Bundled',
  459. 'admin:plugins:category:nonbundled' => 'Non-bundled',
  460. 'admin:plugins:category:content' => 'Content',
  461. 'admin:plugins:category:development' => 'Development',
  462. 'admin:plugins:category:enhancement' => 'Enhancements',
  463. 'admin:plugins:category:api' => 'Service/API',
  464. 'admin:plugins:category:communication' => 'Communication',
  465. 'admin:plugins:category:security' => 'Security and Spam',
  466. 'admin:plugins:category:social' => 'Social',
  467. 'admin:plugins:category:multimedia' => 'Multimedia',
  468. 'admin:plugins:category:theme' => 'Themes',
  469. 'admin:plugins:category:widget' => 'Widgets',
  470. 'admin:plugins:category:utility' => 'Utilities',
  471. 'admin:plugins:markdown:unknown_plugin' => 'Unknown plugin.',
  472. 'admin:plugins:markdown:unknown_file' => 'Unknown file.',
  473. 'admin:notices:could_not_delete' => 'Could not delete notice.',
  474. 'item:object:admin_notice' => 'Admin notice',
  475. 'admin:options' => 'Admin options',
  476. /**
  477. * Plugins
  478. */
  479. 'plugins:disabled' => 'Plugins are not being loaded because a file named "disabled" is in the mod directory.',
  480. 'plugins:settings:save:ok' => "Settings for the %s plugin were saved successfully.",
  481. 'plugins:settings:save:fail' => "There was a problem saving settings for the %s plugin.",
  482. 'plugins:usersettings:save:ok' => "User settings for the %s plugin were saved successfully.",
  483. 'plugins:usersettings:save:fail' => "There was a problem saving user settings for the %s plugin.",
  484. 'item:object:plugin' => 'Plugins',
  485. 'admin:plugins' => "Plugins",
  486. 'admin:plugins:activate_all' => 'Activate All',
  487. 'admin:plugins:deactivate_all' => 'Deactivate All',
  488. 'admin:plugins:activate' => 'Activate',
  489. 'admin:plugins:deactivate' => 'Deactivate',
  490. 'admin:plugins:description' => "This admin panel allows you to control and configure tools installed on your site.",
  491. 'admin:plugins:opt:linktext' => "Configure tools...",
  492. 'admin:plugins:opt:description' => "Configure the tools installed on the site. ",
  493. 'admin:plugins:label:author' => "Author",
  494. 'admin:plugins:label:copyright' => "Copyright",
  495. 'admin:plugins:label:categories' => 'Categories',
  496. 'admin:plugins:label:licence' => "License",
  497. 'admin:plugins:label:website' => "URL",
  498. 'admin:plugins:label:repository' => "Code",
  499. 'admin:plugins:label:bugtracker' => "Report issue",
  500. 'admin:plugins:label:donate' => "Donate",
  501. 'admin:plugins:label:moreinfo' => 'more info',
  502. 'admin:plugins:label:version' => 'Version',
  503. 'admin:plugins:label:location' => 'Location',
  504. 'admin:plugins:label:contributors' => 'Contributors',
  505. 'admin:plugins:label:contributors:name' => 'Name',
  506. 'admin:plugins:label:contributors:email' => 'E-mail',
  507. 'admin:plugins:label:contributors:website' => 'Website',
  508. 'admin:plugins:label:contributors:username' => 'Community username',
  509. 'admin:plugins:label:contributors:description' => 'Description',
  510. 'admin:plugins:label:dependencies' => 'Dependencies',
  511. 'admin:plugins:warning:elgg_version_unknown' => 'This plugin uses a legacy manifest file and does not specify a compatible Elgg version. It probably will not work!',
  512. 'admin:plugins:warning:unmet_dependencies' => 'This plugin has unmet dependencies and cannot be activated. Check dependencies under more info.',
  513. 'admin:plugins:warning:invalid' => 'This plugin is invalid: %s',
  514. 'admin:plugins:warning:invalid:check_docs' => 'Check <a href="http://docs.elgg.org/Invalid_Plugin">the Elgg documentation</a> for troubleshooting tips.',
  515. 'admin:plugins:cannot_activate' => 'cannot activate',
  516. 'admin:plugins:set_priority:yes' => "Reordered %s.",
  517. 'admin:plugins:set_priority:no' => "Could not reorder %s.",
  518. 'admin:plugins:set_priority:no_with_msg' => "Could not reorder %s. Error: %s",
  519. 'admin:plugins:deactivate:yes' => "Deactivated %s.",
  520. 'admin:plugins:deactivate:no' => "Could not deactivate %s.",
  521. 'admin:plugins:deactivate:no_with_msg' => "Could not deactivate %s. Error: %s",
  522. 'admin:plugins:activate:yes' => "Activated %s.",
  523. 'admin:plugins:activate:no' => "Could not activate %s.",
  524. 'admin:plugins:activate:no_with_msg' => "Could not activate %s. Error: %s",
  525. 'admin:plugins:categories:all' => 'All categories',
  526. 'admin:plugins:plugin_website' => 'Plugin website',
  527. 'admin:plugins:author' => '%s',
  528. 'admin:plugins:version' => 'Version %s',
  529. 'admin:plugin_settings' => 'Plugin Settings',
  530. 'admin:plugins:warning:unmet_dependencies_active' => 'This plugin is active but has unmet dependencies. You may encounter problems. See "more info" below for details.',
  531. 'admin:plugins:dependencies:type' => 'Type',
  532. 'admin:plugins:dependencies:name' => 'Name',
  533. 'admin:plugins:dependencies:expected_value' => 'Expected Value',
  534. 'admin:plugins:dependencies:local_value' => 'Actual value',
  535. 'admin:plugins:dependencies:comment' => 'Comment',
  536. 'admin:statistics:description' => "This is an overview of statistics on your site. If you need more detailed statistics, a professional administration feature is available.",
  537. 'admin:statistics:opt:description' => "View statistical information about users and objects on your site.",
  538. 'admin:statistics:opt:linktext' => "View statistics...",
  539. 'admin:statistics:label:basic' => "Basic site statistics",
  540. 'admin:statistics:label:numentities' => "Entities on site",
  541. 'admin:statistics:label:numusers' => "Number of users",
  542. 'admin:statistics:label:numonline' => "Number of users online",
  543. 'admin:statistics:label:onlineusers' => "Users online now",
  544. 'admin:statistics:label:admins'=>"Admins",
  545. 'admin:statistics:label:version' => "Elgg version",
  546. 'admin:statistics:label:version:release' => "Release",
  547. 'admin:statistics:label:version:version' => "Version",
  548. 'admin:server:label:php' => 'PHP',
  549. 'admin:server:label:web_server' => 'Web Server',
  550. 'admin:server:label:server' => 'Server',
  551. 'admin:server:label:log_location' => 'Log Location',
  552. 'admin:server:label:php_version' => 'PHP version',
  553. 'admin:server:label:php_ini' => 'PHP ini file location',
  554. 'admin:server:label:php_log' => 'PHP Log',
  555. 'admin:server:label:mem_avail' => 'Memory available',
  556. 'admin:server:label:mem_used' => 'Memory used',
  557. 'admin:server:error_log' => "Web server's error log",
  558. 'admin:server:label:post_max_size' => 'POST maximum size',
  559. 'admin:server:label:upload_max_filesize' => 'Upload maximum size',
  560. 'admin:server:warning:post_max_too_small' => '(Note: post_max_size must be larger than this value to support uploads of this size)',
  561. 'admin:user:label:search' => "Find users:",
  562. 'admin:user:label:searchbutton' => "Search",
  563. 'admin:user:ban:no' => "Can not ban user",
  564. 'admin:user:ban:yes' => "User banned.",
  565. 'admin:user:self:ban:no' => "You cannot ban yourself",
  566. 'admin:user:unban:no' => "Can not unban user",
  567. 'admin:user:unban:yes' => "User unbanned.",
  568. 'admin:user:delete:no' => "Can not delete user",
  569. 'admin:user:delete:yes' => "The user %s has been deleted",
  570. 'admin:user:self:delete:no' => "You cannot delete yourself",
  571. 'admin:user:resetpassword:yes' => "Password reset, user notified.",
  572. 'admin:user:resetpassword:no' => "Password could not be reset.",
  573. 'admin:user:makeadmin:yes' => "User is now an admin.",
  574. 'admin:user:makeadmin:no' => "We could not make this user an admin.",
  575. 'admin:user:removeadmin:yes' => "User is no longer an admin.",
  576. 'admin:user:removeadmin:no' => "We could not remove administrator privileges from this user.",
  577. 'admin:user:self:removeadmin:no' => "You cannot remove your own administrator privileges.",
  578. 'admin:appearance:menu_items' => 'Menu Items',
  579. 'admin:menu_items:configure' => 'Configure main menu items',
  580. 'admin:menu_items:description' => 'Select which menu items you want to show as featured links. Unused items will be added as "More" at the end of the list.',
  581. 'admin:menu_items:hide_toolbar_entries' => 'Remove links from tool bar menu?',
  582. 'admin:menu_items:saved' => 'Menu items saved.',
  583. 'admin:add_menu_item' => 'Add a custom menu item',
  584. 'admin:add_menu_item:description' => 'Fill out the Display name and URL to add custom items to your navigation menu.',
  585. 'admin:appearance:default_widgets' => 'Default Widgets',
  586. 'admin:default_widgets:unknown_type' => 'Unknown widget type',
  587. 'admin:default_widgets:instructions' => 'Add, remove, position, and configure default widgets for the selected widget page.
  588. These changes will only affect new users on the site.',
  589. 'admin:robots.txt:instructions' => "Edit this site's robots.txt file below",
  590. 'admin:robots.txt:plugins' => "Plugins are adding the following to the robots.txt file",
  591. 'admin:robots.txt:subdir' => "The robots.txt tool will not work because Elgg is installed in a sub-directory",
  592. 'admin:maintenance_mode:default_message' => 'This site is down for maintenance',
  593. 'admin:maintenance_mode:instructions' => 'Maintenance mode should be used for upgrades and other large changes to the site.
  594. When it is on, only admins can log in and browse the site.',
  595. 'admin:maintenance_mode:mode_label' => 'Maintenance mode',
  596. 'admin:maintenance_mode:message_label' => 'Message displayed to users when maintenance mode is on',
  597. 'admin:maintenance_mode:saved' => 'The maintenance mode settings were saved.',
  598. 'admin:maintenance_mode:indicator_menu_item' => 'The site is in maintenance mode.',
  599. 'admin:login' => 'Admin Login',
  600. /**
  601. * User settings
  602. */
  603. 'usersettings:description' => "The user settings panel allows you to control all your personal settings, from user management to how plugins behave. Choose an option below to get started.",
  604. 'usersettings:statistics' => "Your statistics",
  605. 'usersettings:statistics:opt:description' => "View statistical information about users and objects on your site.",
  606. 'usersettings:statistics:opt:linktext' => "Account statistics",
  607. 'usersettings:user' => "%s's settings",
  608. 'usersettings:user:opt:description' => "This allows you to control user settings.",
  609. 'usersettings:user:opt:linktext' => "Change your settings",
  610. 'usersettings:plugins' => "Tools",
  611. 'usersettings:plugins:opt:description' => "Configure settings (if any) for your active tools.",
  612. 'usersettings:plugins:opt:linktext' => "Configure your tools",
  613. 'usersettings:plugins:description' => "This panel allows you to control and configure the personal settings for the tools installed by your system administrator.",
  614. 'usersettings:statistics:label:numentities' => "Your content",
  615. 'usersettings:statistics:yourdetails' => "Your details",
  616. 'usersettings:statistics:label:name' => "Full name",
  617. 'usersettings:statistics:label:email' => "Email",
  618. 'usersettings:statistics:label:membersince' => "Member since",
  619. 'usersettings:statistics:label:lastlogin' => "Last logged in",
  620. /**
  621. * Activity river
  622. */
  623. 'river:all' => 'All Site Activity',
  624. 'river:mine' => 'My Activity',
  625. 'river:owner' => 'Activity of %s',
  626. 'river:friends' => 'Friends Activity',
  627. 'river:select' => 'Show %s',
  628. 'river:comments:more' => '+%u more',
  629. 'river:generic_comment' => 'commented on %s %s',
  630. 'friends:widget:description' => "Displays some of your friends.",
  631. 'friends:num_display' => "Number of friends to display",
  632. 'friends:icon_size' => "Icon size",
  633. 'friends:tiny' => "tiny",
  634. 'friends:small' => "small",
  635. /**
  636. * Icons
  637. */
  638. 'icon:size' => "Icon size",
  639. 'icon:size:topbar' => "Topbar",
  640. 'icon:size:tiny' => "Tiny",
  641. 'icon:size:small' => "Small",
  642. 'icon:size:medium' => "Medium",
  643. 'icon:size:large' => "Large",
  644. 'icon:size:master' => "Extra Large",
  645. /**
  646. * Generic action words
  647. */
  648. 'save' => "Save",
  649. 'reset' => 'Reset',
  650. 'publish' => "Publish",
  651. 'cancel' => "Cancel",
  652. 'saving' => "Saving ...",
  653. 'update' => "Update",
  654. 'preview' => "Preview",
  655. 'edit' => "Edit",
  656. 'delete' => "Delete",
  657. 'accept' => "Accept",
  658. 'reject' => "Reject",
  659. 'decline' => "Decline",
  660. 'approve' => "Approve",
  661. 'activate' => "Activate",
  662. 'deactivate' => "Deactivate",
  663. 'disapprove' => "Disapprove",
  664. 'revoke' => "Revoke",
  665. 'load' => "Load",
  666. 'upload' => "Upload",
  667. 'download' => "Download",
  668. 'ban' => "Ban",
  669. 'unban' => "Unban",
  670. 'banned' => "Banned",
  671. 'enable' => "Enable",
  672. 'disable' => "Disable",
  673. 'request' => "Request",
  674. 'complete' => "Complete",
  675. 'open' => 'Open',
  676. 'close' => 'Close',
  677. 'hide' => 'Hide',
  678. 'show' => 'Show',
  679. 'reply' => "Reply",
  680. 'more' => 'More',
  681. 'more_info' => 'More info',
  682. 'comments' => 'Comments',
  683. 'import' => 'Import',
  684. 'export' => 'Export',
  685. 'untitled' => 'Untitled',
  686. 'help' => 'Help',
  687. 'send' => 'Send',
  688. 'post' => 'Post',
  689. 'submit' => 'Submit',
  690. 'comment' => 'Comment',
  691. 'upgrade' => 'Upgrade',
  692. 'sort' => 'Sort',
  693. 'filter' => 'Filter',
  694. 'new' => 'New',
  695. 'add' => 'Add',
  696. 'create' => 'Create',
  697. 'remove' => 'Remove',
  698. 'revert' => 'Revert',
  699. 'site' => 'Site',
  700. 'activity' => 'Activity',
  701. 'members' => 'Members',
  702. 'menu' => 'Menu',
  703. 'up' => 'Up',
  704. 'down' => 'Down',
  705. 'top' => 'Top',
  706. 'bottom' => 'Bottom',
  707. 'right' => 'Right',
  708. 'left' => 'Left',
  709. 'back' => 'Back',
  710. 'invite' => "Invite",
  711. 'resetpassword' => "Reset password",
  712. 'changepassword' => "Change password",
  713. 'makeadmin' => "Make admin",
  714. 'removeadmin' => "Remove admin",
  715. 'option:yes' => "Yes",
  716. 'option:no' => "No",
  717. 'unknown' => 'Unknown',
  718. 'never' => 'Never',
  719. 'active' => 'Active',
  720. 'total' => 'Total',
  721. 'ok' => 'OK',
  722. 'any' => 'Any',
  723. 'error' => 'Error',
  724. 'other' => 'Other',
  725. 'options' => 'Options',
  726. 'advanced' => 'Advanced',
  727. 'learnmore' => "Click here to learn more.",
  728. 'unknown_error' => 'Unknown error',
  729. 'content' => "content",
  730. 'content:latest' => 'Latest activity',
  731. 'content:latest:blurb' => 'Alternatively, click here to view the latest content from across the site.',
  732. 'link:text' => 'view link',
  733. /**
  734. * Generic questions
  735. */
  736. 'question:areyousure' => 'Are you sure?',
  737. /**
  738. * Status
  739. */
  740. 'status' => 'Status',
  741. 'status:unsaved_draft' => 'Unsaved Draft',
  742. 'status:draft' => 'Draft',
  743. 'status:unpublished' => 'Unpublished',
  744. 'status:published' => 'Published',
  745. 'status:featured' => 'Featured',
  746. 'status:open' => 'Open',
  747. 'status:closed' => 'Closed',
  748. /**
  749. * Generic sorts
  750. */
  751. 'sort:newest' => 'Newest',
  752. 'sort:popular' => 'Popular',
  753. 'sort:alpha' => 'Alphabetical',
  754. 'sort:priority' => 'Priority',
  755. /**
  756. * Generic data words
  757. */
  758. 'title' => "Title",
  759. 'description' => "Description",
  760. 'tags' => "Tags",
  761. 'spotlight' => "Spotlight",
  762. 'all' => "All",
  763. 'mine' => "Mine",
  764. 'by' => 'by',
  765. 'none' => 'none',
  766. 'annotations' => "Annotations",
  767. 'relationships' => "Relationships",
  768. 'metadata' => "Metadata",
  769. 'tagcloud' => "Tag cloud",
  770. 'tagcloud:allsitetags' => "All site tags",
  771. 'on' => 'On',
  772. 'off' => 'Off',
  773. /**
  774. * Entity actions
  775. */
  776. 'edit:this' => 'Edit this',
  777. 'delete:this' => 'Delete this',
  778. 'comment:this' => 'Comment on this',
  779. /**
  780. * Input / output strings
  781. */
  782. 'deleteconfirm' => "Are you sure you want to delete this item?",
  783. 'deleteconfirm:plural' => "Are you sure you want to delete these items?",
  784. 'fileexists' => "A file has already been uploaded. To replace it, select it below:",
  785. /**
  786. * User add
  787. */
  788. 'useradd:subject' => 'User account created',
  789. 'useradd:body' => '
  790. %s,
  791. A user account has been created for you at %s. To log in, visit:
  792. %s
  793. And log in with these user credentials:
  794. Username: %s
  795. Password: %s
  796. Once you have logged in, we highly recommend that you change your password.
  797. ',
  798. /**
  799. * System messages
  800. */
  801. 'systemmessages:dismiss' => "click to dismiss",
  802. /**
  803. * Import / export
  804. */
  805. 'importsuccess' => "Import of data was successful",
  806. 'importfail' => "OpenDD import of data failed.",
  807. /**
  808. * Time
  809. */
  810. 'friendlytime:justnow' => "just now",
  811. 'friendlytime:minutes' => "%s minutes ago",
  812. 'friendlytime:minutes:singular' => "a minute ago",
  813. 'friendlytime:hours' => "%s hours ago",
  814. 'friendlytime:hours:singular' => "an hour ago",
  815. 'friendlytime:days' => "%s days ago",
  816. 'friendlytime:days:singular' => "yesterday",
  817. 'friendlytime:date_format' => 'j F Y @ g:ia',
  818. 'friendlytime:future:minutes' => "in %s minutes",
  819. 'friendlytime:future:minutes:singular' => "in a minute",
  820. 'friendlytime:future:hours' => "in %s hours",
  821. 'friendlytime:future:hours:singular' => "in an hour",
  822. 'friendlytime:future:days' => "in %s days",
  823. 'friendlytime:future:days:singular' => "tomorrow",
  824. 'date:month:01' => 'January %s',
  825. 'date:month:02' => 'February %s',
  826. 'date:month:03' => 'March %s',
  827. 'date:month:04' => 'April %s',
  828. 'date:month:05' => 'May %s',
  829. 'date:month:06' => 'June %s',
  830. 'date:month:07' => 'July %s',
  831. 'date:month:08' => 'August %s',
  832. 'date:month:09' => 'September %s',
  833. 'date:month:10' => 'October %s',
  834. 'date:month:11' => 'November %s',
  835. 'date:month:12' => 'December %s',
  836. 'date:weekday:0' => 'Sunday',
  837. 'date:weekday:1' => 'Monday',
  838. 'date:weekday:2' => 'Tuesday',
  839. 'date:weekday:3' => 'Wednesday',
  840. 'date:weekday:4' => 'Thursday',
  841. 'date:weekday:5' => 'Friday',
  842. 'date:weekday:6' => 'Saturday',
  843. 'interval:minute' => 'Every minute',
  844. 'interval:fiveminute' => 'Every five minutes',
  845. 'interval:fifteenmin' => 'Every fifteen minutes',
  846. 'interval:halfhour' => 'Every half hour',
  847. 'interval:hourly' => 'Hourly',
  848. 'interval:daily' => 'Daily',
  849. 'interval:weekly' => 'Weekly',
  850. 'interval:monthly' => 'Monthly',
  851. 'interval:yearly' => 'Yearly',
  852. 'interval:reboot' => 'On reboot',
  853. /**
  854. * System settings
  855. */
  856. 'installation:sitename' => "The name of your site:",
  857. 'installation:sitedescription' => "Short description of your site (optional):",
  858. 'installation:wwwroot' => "The site URL:",
  859. 'installation:path' => "The full path of the Elgg installation:",
  860. 'installation:dataroot' => "The full path of the data directory:",
  861. 'installation:dataroot:warning' => "You must create this directory manually. It should be in a different directory to your Elgg installation.",
  862. 'installation:sitepermissions' => "The default access permissions:",
  863. 'installation:language' => "The default language for your site:",
  864. 'installation:debug' => "Control the amount of information written to the server's log.",
  865. 'installation:debug:label' => "Log level:",
  866. 'installation:debug:none' => 'Turn off logging (recommended)',
  867. 'installation:debug:error' => 'Log only critical errors',
  868. 'installation:debug:warning' => 'Log errors and warnings',
  869. 'installation:debug:notice' => 'Log all errors, warnings and notices',
  870. 'installation:debug:info' => 'Log everything',
  871. // Walled Garden support
  872. 'installation:registration:description' => 'User registration is enabled by default. Turn this off if you do not want people to register on their own.',
  873. 'installation:registration:label' => 'Allow new users to register',
  874. 'installation:walled_garden:description' => 'Enable this to prevent non-members from viewing the site except for web pages marked as public (such as login and registration).',
  875. 'installation:walled_garden:label' => 'Restrict pages to logged-in users',
  876. 'installation:httpslogin' => "Enable this to have user logins performed over HTTPS. This requires an HTTPS enabled web server!",
  877. 'installation:httpslogin:label' => "Enable HTTPS logins",
  878. 'installation:view' => "Enter the view which will be used as the default for your site or leave this blank for the default view (if in doubt, leave as default):",
  879. 'installation:siteemail' => "Site email address (used when sending system emails):",
  880. 'admin:site:access:warning' => "This is the privacy setting suggested to users when they create new content. Changing it does not change access to content.",
  881. 'installation:allow_user_default_access:description' => "Enable this to allow users to set their own suggested privacy setting that overrides the system suggestion.",
  882. 'installation:allow_user_default_access:label' => "Allow user default access",
  883. 'installation:simplecache:description' => "The simple cache increases performance by caching static content including some CSS and JavaScript files.",
  884. 'installation:simplecache:label' => "Use simple cache (recommended)",
  885. 'installation:minify:description' => "The simple cache can also improve performance by compressing JavaScript and CSS files. (Requires that simple cache is enabled.)",
  886. 'installation:minify_js:label' => "Compress JavaScript (recommended)",
  887. 'installation:minify_css:label' => "Compress CSS (recommended)",
  888. 'installation:htaccess:needs_upgrade' => "You must update your .htaccess file so that the path is injected into the GET parameter __elgg_uri (you can use htaccess_dist as a guide).",
  889. 'installation:htaccess:localhost:connectionfailed' => "Elgg cannot connect to itself to test rewrite rules properly. Check that curl is working and there are no IP restrictions preventing localhost connections.",
  890. 'installation:systemcache:description' => "The system cache decreases the loading time of Elgg by caching data to files.",
  891. 'installation:systemcache:label' => "Use system cache (recommended)",
  892. 'admin:legend:caching' => 'Caching',
  893. 'admin:legend:content_access' => 'Content Access',
  894. 'admin:legend:site_access' => 'Site Access',
  895. 'admin:legend:debug' => 'Debugging and Logging',
  896. 'upgrading' => 'Upgrading...',
  897. 'upgrade:db' => 'Your database was upgraded.',
  898. 'upgrade:core' => 'Your Elgg installation was upgraded.',
  899. 'upgrade:unlock' => 'Unlock upgrade',
  900. 'upgrade:unlock:confirm' => "The database is locked for another upgrade. Running concurrent upgrades is dangerous. You should only continue if you know there is not another upgrade running. Unlock?",
  901. 'upgrade:locked' => "Cannot upgrade. Another upgrade is running. To clear the upgrade lock, visit the Admin section.",
  902. 'upgrade:unlock:success' => "Upgrade unlocked successfully.",
  903. 'upgrade:unable_to_upgrade' => 'Unable to upgrade.',
  904. 'upgrade:unable_to_upgrade_info' =>
  905. 'This installation cannot be upgraded because legacy views
  906. were detected in the Elgg core views directory. These views have been deprecated and need to be
  907. removed for Elgg to function correctly. If you have not made changes to Elgg core, you can
  908. simply delete the views directory and replace it with the one from the latest
  909. package of Elgg downloaded from <a href="http://elgg.org">elgg.org</a>.<br /><br />
  910. If you need detailed instructions, please visit the <a href="http://docs.elgg.org/wiki/Upgrading_Elgg">
  911. Upgrading Elgg documentation</a>. If you require assistance, please post to the
  912. <a href="http://community.elgg.org/pg/groups/discussion/">Community Support Forums</a>.',
  913. 'update:twitter_api:deactivated' => 'Twitter API (previously Twitter Service) was deactivated during the upgrade. Please activate it manually if required.',
  914. 'update:oauth_api:deactivated' => 'OAuth API (previously OAuth Lib) was deactivated during the upgrade. Please activate it manually if required.',
  915. 'upgrade:site_secret_warning:moderate' => "You are encouraged to regenerate your site key to improve system security. See Configure &gt; Settings &gt; Advanced",
  916. 'upgrade:site_secret_warning:weak' => "You are strongly encouraged to regenerate your site key to improve system security. See Configure &gt; Settings &gt; Advanced",
  917. 'ElggUpgrade:error:url_invalid' => 'Invalid value for URL.',
  918. 'ElggUpgrade:error:url_not_unique' => 'Upgrade URLs must be unique.',
  919. 'ElggUpgrade:error:title_required' => 'ElggUpgrade objects must have a title.',
  920. 'ElggUpgrade:error:description_required' => 'ElggUpgrade objects must have a description.',
  921. 'ElggUpgrade:error:upgrade_url_required' => 'ElggUpgrade objects must have an upgrade URL.',
  922. 'deprecated:function' => '%s() was deprecated by %s()',
  923. 'admin:pending_upgrades' => 'The site has pending upgrades that require your immediate attention.',
  924. 'admin:view_upgrades' => 'View pending upgrades.',
  925. 'admin:upgrades' => 'Upgrades',
  926. 'item:object:elgg_upgrade' => 'Site upgrades',
  927. 'admin:upgrades:none' => 'Your installation is up to date!',
  928. 'upgrade:item_count' => 'There are <b>%s</b> items that need to be upgraded.',
  929. 'upgrade:warning' => '<b>Warning:</b> on a large site this upgrade may take a significantly long time!',
  930. 'upgrade:success_count' => 'Upgraded:',
  931. 'upgrade:error_count' => 'Errors:',
  932. 'upgrade:river_update_failed' => 'Failed to update the river entry for item id %s',
  933. 'upgrade:timestamp_update_failed' => 'Failed to update the timestamps for item id %s',
  934. 'upgrade:finished' => 'Upgrade finished',
  935. 'upgrade:finished_with_errors' => '<p>Upgrade finished with errors. Refresh the page and try running the upgrade again.</p></p><br />If the error recurs, check the server error log for possible cause. You can seek help for fixing the error from the <a href="http://community.elgg.org/groups/profile/1790…

Large files files are truncated, but you can click here to view the full file