PageRenderTime 73ms CodeModel.GetById 36ms RepoModel.GetById 0ms app.codeStats 1ms

/languages/en.php

https://github.com/BodhiHu/Elgg
PHP | 1321 lines | 1161 code | 109 blank | 51 comment | 24 complexity | 15527ac952f71d09013a7d13a9d683a1 MD5 | raw file
Possible License(s): MIT, LGPL-2.1
  1. <?php
  2. /**
  3. * Core English Language
  4. *
  5. * @package Elgg.Core
  6. * @subpackage Languages.English
  7. */
  8. return array(
  9. /**
  10. * Sites
  11. */
  12. 'item:site' => 'Sites',
  13. /**
  14. * Sessions
  15. */
  16. 'login' => "Log in",
  17. 'loginok' => "You have been logged in.",
  18. 'loginerror' => "We couldn't log you in. Please check your credentials and try again.",
  19. 'login:empty' => "Username/email and password are required.",
  20. 'login:baduser' => "Unable to load your user account.",
  21. 'auth:nopams' => "Internal error. No user authentication method installed.",
  22. 'logout' => "Log out",
  23. 'logoutok' => "You have been logged out.",
  24. 'logouterror' => "We couldn't log you out. Please try again.",
  25. 'loggedinrequired' => "You must be logged in to view that page.",
  26. 'adminrequired' => "You must be an administrator to view that page.",
  27. 'membershiprequired' => "You must be a member of this group to view that page.",
  28. /**
  29. * Errors
  30. */
  31. 'exception:title' => "Fatal Error.",
  32. 'exception:contact_admin' => 'An unrecoverable error has occurred and has been logged. Contact the site administrator with the following information:',
  33. 'actionundefined' => "The requested action (%s) was not defined in the system.",
  34. 'actionnotfound' => "The action file for %s was not found.",
  35. 'actionloggedout' => "Sorry, you cannot perform this action while logged out.",
  36. 'actionunauthorized' => 'You are unauthorized to perform this action',
  37. '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/).",
  38. 'PluginException:CannotStart' => '%s (guid: %s) cannot start and has been deactivated. Reason: %s',
  39. 'PluginException:InvalidID' => "%s is an invalid plugin ID.",
  40. 'PluginException:InvalidPath' => "%s is an invalid plugin path.",
  41. 'PluginException:InvalidManifest' => 'Invalid manifest file for plugin %s',
  42. 'PluginException:InvalidPlugin' => '%s is not a valid plugin.',
  43. 'PluginException:InvalidPlugin:Details' => '%s is not a valid plugin: %s',
  44. 'PluginException:NullInstantiated' => 'ElggPlugin cannot be null instantiated. You must pass a GUID, a plugin ID, or a full path.',
  45. 'ElggPlugin:MissingID' => 'Missing plugin ID (guid %s)',
  46. 'ElggPlugin:NoPluginPackagePackage' => 'Missing ElggPluginPackage for plugin ID %s (guid %s)',
  47. 'ElggPluginPackage:InvalidPlugin:MissingFile' => 'The required file "%s" is missing.',
  48. 'ElggPluginPackage:InvalidPlugin:InvalidId' => 'This plugin\'s directory must be renamed to "%s" to match the ID in its manifest.',
  49. 'ElggPluginPackage:InvalidPlugin:InvalidDependency' => 'Its manifest contains an invalid dependency type "%s".',
  50. 'ElggPluginPackage:InvalidPlugin:InvalidProvides' => 'Its manifest contains an invalid provides type "%s".',
  51. 'ElggPluginPackage:InvalidPlugin:CircularDep' => 'There is an invalid %s dependency "%s" in plugin %s. Plugins cannot conflict with or require something they provide!',
  52. 'ElggPlugin:Exception:CannotIncludeFile' => 'Cannot include %s for plugin %s (guid: %s) at %s.',
  53. 'ElggPlugin:Exception:CannotRegisterViews' => 'Cannot open views dir for plugin %s (guid: %s) at %s.',
  54. 'ElggPlugin:Exception:CannotRegisterLanguages' => 'Cannot register languages for plugin %s (guid: %s) at %s.',
  55. 'ElggPlugin:Exception:NoID' => 'No ID for plugin guid %s!',
  56. 'PluginException:NoPluginName' => "The plugin name could not be found",
  57. 'PluginException:ParserError' => 'Error parsing manifest with API version %s in plugin %s.',
  58. 'PluginException:NoAvailableParser' => 'Cannot find a parser for manifest API version %s in plugin %s.',
  59. 'PluginException:ParserErrorMissingRequiredAttribute' => "Missing required '%s' attribute in manifest for plugin %s.",
  60. 'ElggPlugin:InvalidAndDeactivated' => '%s is an invalid plugin and has been deactivated.',
  61. 'ElggPlugin:Dependencies:Requires' => 'Requires',
  62. 'ElggPlugin:Dependencies:Suggests' => 'Suggests',
  63. 'ElggPlugin:Dependencies:Conflicts' => 'Conflicts',
  64. 'ElggPlugin:Dependencies:Conflicted' => 'Conflicted',
  65. 'ElggPlugin:Dependencies:Provides' => 'Provides',
  66. 'ElggPlugin:Dependencies:Priority' => 'Priority',
  67. 'ElggPlugin:Dependencies:Elgg' => 'Elgg version',
  68. 'ElggPlugin:Dependencies:PhpVersion' => 'PHP version',
  69. 'ElggPlugin:Dependencies:PhpExtension' => 'PHP extension: %s',
  70. 'ElggPlugin:Dependencies:PhpIni' => 'PHP ini setting: %s',
  71. 'ElggPlugin:Dependencies:Plugin' => 'Plugin: %s',
  72. 'ElggPlugin:Dependencies:Priority:After' => 'After %s',
  73. 'ElggPlugin:Dependencies:Priority:Before' => 'Before %s',
  74. 'ElggPlugin:Dependencies:Priority:Uninstalled' => '%s is not installed',
  75. 'ElggPlugin:Dependencies:Suggests:Unsatisfied' => 'Missing',
  76. 'RegistrationException:EmptyPassword' => 'The password fields cannot be empty',
  77. 'RegistrationException:PasswordMismatch' => 'Passwords must match',
  78. 'LoginException:BannedUser' => 'You have been banned from this site and cannot log in',
  79. 'LoginException:UsernameFailure' => 'We could not log you in. Please check your username/email and password.',
  80. 'LoginException:PasswordFailure' => 'We could not log you in. Please check your username/email and password.',
  81. 'LoginException:AccountLocked' => 'Your account has been locked for too many log in failures.',
  82. 'LoginException:ChangePasswordFailure' => 'Failed current password check.',
  83. 'LoginException:Unknown' => 'We could not log you in due to an unknown error.',
  84. 'deprecatedfunction' => 'Warning: This code uses the deprecated function \'%s\' and is not compatible with this version of Elgg',
  85. 'pageownerunavailable' => 'Warning: The page owner %d is not accessible!',
  86. 'viewfailure' => 'There was an internal failure in the view %s',
  87. 'changebookmark' => 'Please change your bookmark for this page',
  88. 'noaccess' => 'The content you were trying to view has been removed or you do not have permission to view it.',
  89. 'error:missing_data' => 'There was some data missing in your request',
  90. 'error:default' => 'Oops...something went wrong.',
  91. 'error:404' => 'Sorry. We could not find the page that you requested.',
  92. /**
  93. * User details
  94. */
  95. 'name' => "Display name",
  96. 'email' => "Email address",
  97. 'username' => "Username",
  98. 'loginusername' => "Username or email",
  99. 'password' => "Password",
  100. 'passwordagain' => "Password (again for verification)",
  101. 'admin_option' => "Make this user an admin?",
  102. /**
  103. * Access
  104. */
  105. 'PRIVATE' => "Private",
  106. 'LOGGED_IN' => "Logged in users",
  107. 'PUBLIC' => "Public",
  108. 'LOGGED_OUT' => "Logged out users",
  109. 'access:friends:label' => "Friends",
  110. 'access' => "Access",
  111. 'access:limited:label' => "Limited",
  112. 'access:help' => "The access level",
  113. 'access:read' => "Read access",
  114. 'access:write' => "Write access",
  115. 'access:admin_only' => "Administrators only",
  116. /**
  117. * Dashboard and widgets
  118. */
  119. 'dashboard' => "Dashboard",
  120. 'dashboard:nowidgets' => "Your dashboard lets you track the activity and content on this site that matters to you.",
  121. 'widgets:add' => 'Add widgets',
  122. 'widgets:add:description' => "Click on any widget button below to add it to the page.",
  123. 'widgets:position:fixed' => '(Fixed position on page)',
  124. 'widget:unavailable' => 'You have already added this widget',
  125. 'widget:numbertodisplay' => 'Number of items to display',
  126. 'widget:delete' => 'Remove %s',
  127. 'widget:edit' => 'Customize this widget',
  128. 'widgets' => "Widgets",
  129. 'widget' => "Widget",
  130. 'item:object:widget' => "Widgets",
  131. 'widgets:save:success' => "The widget was successfully saved.",
  132. 'widgets:save:failure' => "We could not save your widget.",
  133. 'widgets:add:success' => "The widget was successfully added.",
  134. 'widgets:add:failure' => "We could not add your widget.",
  135. 'widgets:move:failure' => "We could not store the new widget position.",
  136. 'widgets:remove:failure' => "Unable to remove this widget",
  137. /**
  138. * Groups
  139. */
  140. 'group' => "Group",
  141. 'item:group' => "Groups",
  142. /**
  143. * Users
  144. */
  145. 'user' => "User",
  146. 'item:user' => "Users",
  147. /**
  148. * Friends
  149. */
  150. 'friends' => "Friends",
  151. 'friends:yours' => "Your friends",
  152. 'friends:owned' => "%s's friends",
  153. 'friend:add' => "Add friend",
  154. 'friend:remove' => "Remove friend",
  155. 'friends:add:successful' => "You have successfully added %s as a friend.",
  156. 'friends:add:failure' => "We couldn't add %s as a friend.",
  157. 'friends:remove:successful' => "You have successfully removed %s from your friends.",
  158. 'friends:remove:failure' => "We couldn't remove %s from your friends.",
  159. 'friends:none' => "No friends yet.",
  160. 'friends:none:you' => "You don't have any friends yet.",
  161. 'friends:none:found' => "No friends were found.",
  162. 'friends:of:none' => "Nobody has added this user as a friend yet.",
  163. '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!",
  164. 'friends:of:owned' => "People who have made %s a friend",
  165. 'friends:of' => "Friends of",
  166. 'friends:collections' => "Friend collections",
  167. 'collections:add' => "New collection",
  168. 'friends:collections:add' => "New friends collection",
  169. 'friends:addfriends' => "Select friends",
  170. 'friends:collectionname' => "Collection name",
  171. 'friends:collectionfriends' => "Friends in collection",
  172. 'friends:collectionedit' => "Edit this collection",
  173. 'friends:nocollections' => "You do not have any collections yet.",
  174. 'friends:collectiondeleted' => "Your collection has been deleted.",
  175. 'friends:collectiondeletefailed' => "We were unable to delete the collection. Either you don't have permission, or some other problem has occurred.",
  176. 'friends:collectionadded' => "Your collection was successfully created",
  177. 'friends:nocollectionname' => "You need to give your collection a name before it can be created.",
  178. 'friends:collections:members' => "Collection members",
  179. 'friends:collections:edit' => "Edit collection",
  180. 'friends:collections:edited' => "Saved collection",
  181. 'friends:collection:edit_failed' => 'Could not save collection.',
  182. 'friendspicker:chararray' => 'ABCDEFGHIJKLMNOPQRSTUVWXYZ',
  183. 'avatar' => 'Avatar',
  184. 'avatar:create' => 'Create your avatar',
  185. 'avatar:edit' => 'Edit avatar',
  186. 'avatar:preview' => 'Preview',
  187. 'avatar:upload' => 'Upload a new avatar',
  188. 'avatar:current' => 'Current avatar',
  189. 'avatar:remove' => 'Remove your avatar and set the default icon',
  190. 'avatar:crop:title' => 'Avatar cropping tool',
  191. '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)",
  192. '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.',
  193. 'avatar:upload:success' => 'Avatar successfully uploaded',
  194. 'avatar:upload:fail' => 'Avatar upload failed',
  195. 'avatar:resize:fail' => 'Resize of the avatar failed',
  196. 'avatar:crop:success' => 'Cropping the avatar succeeded',
  197. 'avatar:crop:fail' => 'Avatar cropping failed',
  198. 'avatar:remove:success' => 'Removing the avatar succeeded',
  199. 'avatar:remove:fail' => 'Avatar remove failed',
  200. 'profile:edit' => 'Edit profile',
  201. 'profile:aboutme' => "About me",
  202. 'profile:description' => "About me",
  203. 'profile:briefdescription' => "Brief description",
  204. 'profile:location' => "Location",
  205. 'profile:skills' => "Skills",
  206. 'profile:interests' => "Interests",
  207. 'profile:contactemail' => "Contact email",
  208. 'profile:phone' => "Telephone",
  209. 'profile:mobile' => "Mobile phone",
  210. 'profile:website' => "Website",
  211. 'profile:twitter' => "Twitter username",
  212. 'profile:saved' => "Your profile was successfully saved.",
  213. 'profile:field:text' => 'Short text',
  214. 'profile:field:longtext' => 'Large text area',
  215. 'profile:field:tags' => 'Tags',
  216. 'profile:field:url' => 'Web address',
  217. 'profile:field:email' => 'Email address',
  218. 'profile:field:location' => 'Location',
  219. 'profile:field:date' => 'Date',
  220. 'admin:appearance:profile_fields' => 'Edit Profile Fields',
  221. 'profile:edit:default' => 'Edit profile fields',
  222. 'profile:label' => "Profile label",
  223. 'profile:type' => "Profile type",
  224. 'profile:editdefault:delete:fail' => 'Removed default profile item field failed',
  225. 'profile:editdefault:delete:success' => 'Profile field deleted',
  226. 'profile:defaultprofile:reset' => 'Profile fields reset to the system default',
  227. 'profile:resetdefault' => 'Reset profile fields to system defaults',
  228. 'profile:resetdefault:confirm' => 'Are you sure you want to delete your custom profile fields?',
  229. '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.",
  230. 'profile:editdefault:success' => 'New profile field added',
  231. 'profile:editdefault:fail' => 'Default profile could not be saved',
  232. 'profile:field_too_long' => 'Cannot save your profile information because the "%s" section is too long.',
  233. 'profile:noaccess' => "You do not have permission to edit this profile.",
  234. /**
  235. * Feeds
  236. */
  237. 'feed:rss' => 'RSS feed for this page',
  238. /**
  239. * Links
  240. */
  241. 'link:view' => 'view link',
  242. 'link:view:all' => 'View all',
  243. /**
  244. * River
  245. */
  246. 'river' => "River",
  247. 'river:friend:user:default' => "%s is now a friend with %s",
  248. 'river:update:user:avatar' => '%s has a new avatar',
  249. 'river:update:user:profile' => '%s has updated their profile',
  250. 'river:noaccess' => 'You do not have permission to view this item.',
  251. 'river:posted:generic' => '%s posted',
  252. 'riveritem:single:user' => 'a user',
  253. 'riveritem:plural:user' => 'some users',
  254. 'river:ingroup' => 'in the group %s',
  255. 'river:none' => 'No activity',
  256. 'river:update' => 'Update for %s',
  257. 'river:delete:success' => 'River item has been deleted',
  258. 'river:delete:fail' => 'River item could not be deleted',
  259. 'river:subject:invalid_subject' => 'Invalid user',
  260. 'activity:owner' => 'View activity',
  261. 'river:widget:title' => "Activity",
  262. 'river:widget:description' => "Display latest activity",
  263. 'river:widget:type' => "Type of activity",
  264. 'river:widgets:friends' => 'Friends activity',
  265. 'river:widgets:all' => 'All site activity',
  266. /**
  267. * Notifications
  268. */
  269. 'notifications:usersettings' => "Notification settings",
  270. 'notifications:methods' => "Select your notification methods.",
  271. 'notification:method:email' => 'Email',
  272. 'notifications:usersettings:save:ok' => "Your notification settings were successfully saved.",
  273. 'notifications:usersettings:save:fail' => "There was a problem saving your notification settings.",
  274. 'user.notification.get' => 'Return the notification settings for a given user.',
  275. 'user.notification.set' => 'Set the notification settings for a given user.',
  276. /**
  277. * Search
  278. */
  279. 'search' => "Search",
  280. 'searchtitle' => "Search: %s",
  281. 'users:searchtitle' => "Searching for users: %s",
  282. 'groups:searchtitle' => "Searching for groups: %s",
  283. 'advancedsearchtitle' => "%s with results matching %s",
  284. 'notfound' => "No results found.",
  285. 'next' => "Next",
  286. 'previous' => "Previous",
  287. 'viewtype:change' => "Change list type",
  288. 'viewtype:list' => "List view",
  289. 'viewtype:gallery' => "Gallery",
  290. 'tag:search:startblurb' => "Items with tags matching '%s':",
  291. 'user:search:startblurb' => "Users matching '%s':",
  292. 'user:search:finishblurb' => "To view more, click here.",
  293. 'group:search:startblurb' => "Groups matching '%s':",
  294. 'group:search:finishblurb' => "To view more, click here.",
  295. 'search:go' => 'Go',
  296. 'userpicker:only_friends' => 'Only friends',
  297. /**
  298. * Account
  299. */
  300. 'account' => "Account",
  301. 'settings' => "Settings",
  302. 'tools' => "Tools",
  303. 'settings:edit' => 'Edit settings',
  304. 'register' => "Register",
  305. 'registerok' => "You have successfully registered for %s.",
  306. 'registerbad' => "Your registration was unsuccessful because of an unknown error.",
  307. 'registerdisabled' => "Registration has been disabled by the system administrator",
  308. 'register:fields' => 'All fields are required',
  309. 'registration:notemail' => 'The email address you provided does not appear to be a valid email address.',
  310. 'registration:userexists' => 'That username already exists',
  311. 'registration:usernametooshort' => 'Your username must be a minimum of %u characters long.',
  312. 'registration:usernametoolong' => 'Your username is too long. It can have a maximum of %u characters.',
  313. 'registration:passwordtooshort' => 'The password must be a minimum of %u characters long.',
  314. 'registration:dupeemail' => 'This email address has already been registered.',
  315. 'registration:invalidchars' => 'Sorry, your username contains the character %s which is invalid. The following characters are invalid: %s',
  316. 'registration:emailnotvalid' => 'Sorry, the email address you entered is invalid on this system',
  317. 'registration:passwordnotvalid' => 'Sorry, the password you entered is invalid on this system',
  318. 'registration:usernamenotvalid' => 'Sorry, the username you entered is invalid on this system',
  319. 'adduser' => "Add User",
  320. 'adduser:ok' => "You have successfully added a new user.",
  321. 'adduser:bad' => "The new user could not be created.",
  322. 'user:set:name' => "Account name settings",
  323. 'user:name:label' => "My display name",
  324. 'user:name:success' => "Successfully changed your name on the system.",
  325. 'user:name:fail' => "Could not change your name on the system. Please make sure your name isn't too long and try again.",
  326. 'user:set:password' => "Account password",
  327. 'user:current_password:label' => 'Current password',
  328. 'user:password:label' => "Your new password",
  329. 'user:password2:label' => "Your new password again",
  330. 'user:password:success' => "Password changed",
  331. 'user:password:fail' => "Could not change your password on the system.",
  332. 'user:password:fail:notsame' => "The two passwords are not the same!",
  333. 'user:password:fail:tooshort' => "Password is too short!",
  334. 'user:password:fail:incorrect_current_password' => 'The current password entered is incorrect.',
  335. 'user:resetpassword:unknown_user' => 'Invalid user.',
  336. 'user:resetpassword:reset_password_confirm' => 'Resetting your password will email a new password to your registered email address.',
  337. 'user:set:language' => "Language settings",
  338. 'user:language:label' => "Your language",
  339. 'user:language:success' => "Your language settings have been updated.",
  340. 'user:language:fail' => "Your language settings could not be saved.",
  341. 'user:username:notfound' => 'Username %s not found.',
  342. 'user:password:lost' => 'Lost password',
  343. 'user:password:resetreq:success' => 'Successfully requested a new password, email sent',
  344. 'user:password:resetreq:fail' => 'Could not request a new password.',
  345. 'user:password:text' => 'To request a new password, enter your username or email address below and click the Request button.',
  346. 'user:persistent' => 'Remember me',
  347. 'walled_garden:welcome' => 'Welcome to',
  348. /**
  349. * Administration
  350. */
  351. 'menu:page:header:administer' => 'Administer',
  352. 'menu:page:header:configure' => 'Configure',
  353. 'menu:page:header:develop' => 'Develop',
  354. 'menu:page:header:default' => 'Other',
  355. 'admin:view_site' => 'View site',
  356. 'admin:loggedin' => 'Logged in as %s',
  357. 'admin:menu' => 'Menu',
  358. 'admin:configuration:success' => "Your settings have been saved.",
  359. 'admin:configuration:fail' => "Your settings could not be saved.",
  360. 'admin:configuration:dataroot:relative_path' => 'Cannot set "%s" as the dataroot because it is not an absolute path.',
  361. 'admin:unknown_section' => 'Invalid Admin Section.',
  362. 'admin' => "Administration",
  363. '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.",
  364. 'admin:statistics' => "Statistics",
  365. 'admin:statistics:overview' => 'Overview',
  366. 'admin:statistics:server' => 'Server Info',
  367. 'admin:appearance' => 'Appearance',
  368. 'admin:administer_utilities' => 'Utilities',
  369. 'admin:develop_utilities' => 'Utilities',
  370. 'admin:users' => "Users",
  371. 'admin:users:online' => 'Currently Online',
  372. 'admin:users:newest' => 'Newest',
  373. 'admin:users:admins' => 'Administrators',
  374. 'admin:users:add' => 'Add New User',
  375. 'admin:users:description' => "This admin panel allows you to control user settings for your site. Choose an option below to get started.",
  376. 'admin:users:adduser:label' => "Click here to add a new user...",
  377. 'admin:users:opt:linktext' => "Configure users...",
  378. 'admin:users:opt:description' => "Configure users and account information. ",
  379. 'admin:users:find' => 'Find',
  380. 'admin:settings' => 'Settings',
  381. 'admin:settings:basic' => 'Basic Settings',
  382. 'admin:settings:advanced' => 'Advanced Settings',
  383. 'admin:site:description' => "This admin panel allows you to control global settings for your site. Choose an option below to get started.",
  384. 'admin:site:opt:linktext' => "Configure site...",
  385. 'admin:site:access:warning' => "Changing the access setting only affects the permissions on content created in the future.",
  386. 'admin:dashboard' => 'Dashboard',
  387. 'admin:widget:online_users' => 'Online users',
  388. 'admin:widget:online_users:help' => 'Lists the users currently on the site',
  389. 'admin:widget:new_users' => 'New users',
  390. 'admin:widget:new_users:help' => 'Lists the newest users',
  391. 'admin:widget:content_stats' => 'Content statistics',
  392. 'admin:widget:content_stats:help' => 'Keep track of the content created by your users',
  393. 'widget:content_stats:type' => 'Content type',
  394. 'widget:content_stats:number' => 'Number',
  395. 'admin:widget:admin_welcome' => 'Welcome',
  396. 'admin:widget:admin_welcome:help' => "A short introduction to Elgg's admin area",
  397. 'admin:widget:admin_welcome:intro' =>
  398. 'Welcome to Elgg! Right now you are looking at the administration dashboard. It\'s useful for tracking what\'s happening on the site.',
  399. 'admin:widget:admin_welcome:admin_overview' =>
  400. "Navigation for the administration area is provided by the menu to the right. It is organized into"
  401. . " three sections:
  402. <dl>
  403. <dt>Administer</dt><dd>Everyday tasks like monitoring reported content, checking who is online, and viewing statistics.</dd>
  404. <dt>Configure</dt><dd>Occasional tasks like setting the site name or activating a plugin.</dd>
  405. <dt>Develop</dt><dd>For developers who are building plugins or designing themes. (Requires a developer plugin.)</dd>
  406. </dl>
  407. ",
  408. // argh, this is ugly
  409. 'admin:widget:admin_welcome:outro' => '<br />Be sure to check out the resources available through the footer links and thank you for using Elgg!',
  410. 'admin:widget:control_panel' => 'Control panel',
  411. 'admin:widget:control_panel:help' => "Provides easy access to common controls",
  412. 'admin:cache:flush' => 'Flush the caches',
  413. 'admin:cache:flushed' => "The site's caches have been flushed",
  414. 'admin:footer:faq' => 'Administration FAQ',
  415. 'admin:footer:manual' => 'Administration Manual',
  416. 'admin:footer:community_forums' => 'Elgg Community Forums',
  417. 'admin:footer:blog' => 'Elgg Blog',
  418. 'admin:plugins:category:all' => 'All plugins',
  419. 'admin:plugins:category:active' => 'Active plugins',
  420. 'admin:plugins:category:inactive' => 'Inactive plugins',
  421. 'admin:plugins:category:admin' => 'Admin',
  422. 'admin:plugins:category:bundled' => 'Bundled',
  423. 'admin:plugins:category:nonbundled' => 'Non-bundled',
  424. 'admin:plugins:category:content' => 'Content',
  425. 'admin:plugins:category:development' => 'Development',
  426. 'admin:plugins:category:enhancement' => 'Enhancements',
  427. 'admin:plugins:category:api' => 'Service/API',
  428. 'admin:plugins:category:communication' => 'Communication',
  429. 'admin:plugins:category:security' => 'Security and Spam',
  430. 'admin:plugins:category:social' => 'Social',
  431. 'admin:plugins:category:multimedia' => 'Multimedia',
  432. 'admin:plugins:category:theme' => 'Themes',
  433. 'admin:plugins:category:widget' => 'Widgets',
  434. 'admin:plugins:category:utility' => 'Utilities',
  435. 'admin:plugins:sort:priority' => 'Priority',
  436. 'admin:plugins:sort:alpha' => 'Alphabetical',
  437. 'admin:plugins:sort:date' => 'Newest',
  438. 'admin:plugins:markdown:unknown_plugin' => 'Unknown plugin.',
  439. 'admin:plugins:markdown:unknown_file' => 'Unknown file.',
  440. 'admin:notices:could_not_delete' => 'Could not delete notice.',
  441. 'item:object:admin_notice' => 'Admin notice',
  442. 'admin:options' => 'Admin options',
  443. /**
  444. * Plugins
  445. */
  446. 'plugins:disabled' => 'Plugins are not being loaded because a file named "disabled" is in the mod directory.',
  447. 'plugins:settings:save:ok' => "Settings for the %s plugin were saved successfully.",
  448. 'plugins:settings:save:fail' => "There was a problem saving settings for the %s plugin.",
  449. 'plugins:usersettings:save:ok' => "User settings for the %s plugin were saved successfully.",
  450. 'plugins:usersettings:save:fail' => "There was a problem saving user settings for the %s plugin.",
  451. 'item:object:plugin' => 'Plugins',
  452. 'admin:plugins' => "Plugins",
  453. 'admin:plugins:activate_all' => 'Activate All',
  454. 'admin:plugins:deactivate_all' => 'Deactivate All',
  455. 'admin:plugins:activate' => 'Activate',
  456. 'admin:plugins:deactivate' => 'Deactivate',
  457. 'admin:plugins:description' => "This admin panel allows you to control and configure tools installed on your site.",
  458. 'admin:plugins:opt:linktext' => "Configure tools...",
  459. 'admin:plugins:opt:description' => "Configure the tools installed on the site. ",
  460. 'admin:plugins:label:author' => "Author",
  461. 'admin:plugins:label:copyright' => "Copyright",
  462. 'admin:plugins:label:categories' => 'Categories',
  463. 'admin:plugins:label:licence' => "License",
  464. 'admin:plugins:label:website' => "URL",
  465. 'admin:plugins:label:repository' => "Code",
  466. 'admin:plugins:label:bugtracker' => "Report issue",
  467. 'admin:plugins:label:donate' => "Donate",
  468. 'admin:plugins:label:moreinfo' => 'more info',
  469. 'admin:plugins:label:version' => 'Version',
  470. 'admin:plugins:label:location' => 'Location',
  471. 'admin:plugins:label:contributors' => 'Contributors',
  472. 'admin:plugins:label:contributors:name' => 'Name',
  473. 'admin:plugins:label:contributors:email' => 'E-mail',
  474. 'admin:plugins:label:contributors:website' => 'Website',
  475. 'admin:plugins:label:contributors:username' => 'Community username',
  476. 'admin:plugins:label:contributors:description' => 'Description',
  477. 'admin:plugins:label:dependencies' => 'Dependencies',
  478. '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!',
  479. 'admin:plugins:warning:unmet_dependencies' => 'This plugin has unmet dependencies and cannot be activated. Check dependencies under more info.',
  480. 'admin:plugins:warning:invalid' => 'This plugin is invalid: %s',
  481. 'admin:plugins:warning:invalid:check_docs' => 'Check <a href="http://docs.elgg.org/Invalid_Plugin">the Elgg documentation</a> for troubleshooting tips.',
  482. 'admin:plugins:cannot_activate' => 'cannot activate',
  483. 'admin:plugins:set_priority:yes' => "Reordered %s.",
  484. 'admin:plugins:set_priority:no' => "Could not reorder %s.",
  485. 'admin:plugins:set_priority:no_with_msg' => "Could not reorder %s. Error: %s",
  486. 'admin:plugins:deactivate:yes' => "Deactivated %s.",
  487. 'admin:plugins:deactivate:no' => "Could not deactivate %s.",
  488. 'admin:plugins:deactivate:no_with_msg' => "Could not deactivate %s. Error: %s",
  489. 'admin:plugins:activate:yes' => "Activated %s.",
  490. 'admin:plugins:activate:no' => "Could not activate %s.",
  491. 'admin:plugins:activate:no_with_msg' => "Could not activate %s. Error: %s",
  492. 'admin:plugins:categories:all' => 'All categories',
  493. 'admin:plugins:plugin_website' => 'Plugin website',
  494. 'admin:plugins:author' => '%s',
  495. 'admin:plugins:version' => 'Version %s',
  496. 'admin:plugin_settings' => 'Plugin Settings',
  497. 'admin:plugins:warning:unmet_dependencies_active' => 'This plugin is active but has unmet dependencies. You may encounter problems. See "more info" below for details.',
  498. 'admin:plugins:dependencies:type' => 'Type',
  499. 'admin:plugins:dependencies:name' => 'Name',
  500. 'admin:plugins:dependencies:expected_value' => 'Expected Value',
  501. 'admin:plugins:dependencies:local_value' => 'Actual value',
  502. 'admin:plugins:dependencies:comment' => 'Comment',
  503. 'admin:statistics:description' => "This is an overview of statistics on your site. If you need more detailed statistics, a professional administration feature is available.",
  504. 'admin:statistics:opt:description' => "View statistical information about users and objects on your site.",
  505. 'admin:statistics:opt:linktext' => "View statistics...",
  506. 'admin:statistics:label:basic' => "Basic site statistics",
  507. 'admin:statistics:label:numentities' => "Entities on site",
  508. 'admin:statistics:label:numusers' => "Number of users",
  509. 'admin:statistics:label:numonline' => "Number of users online",
  510. 'admin:statistics:label:onlineusers' => "Users online now",
  511. 'admin:statistics:label:admins'=>"Admins",
  512. 'admin:statistics:label:version' => "Elgg version",
  513. 'admin:statistics:label:version:release' => "Release",
  514. 'admin:statistics:label:version:version' => "Version",
  515. 'admin:server:label:php' => 'PHP',
  516. 'admin:server:label:web_server' => 'Web Server',
  517. 'admin:server:label:server' => 'Server',
  518. 'admin:server:label:log_location' => 'Log Location',
  519. 'admin:server:label:php_version' => 'PHP version',
  520. 'admin:server:label:php_ini' => 'PHP ini file location',
  521. 'admin:server:label:php_log' => 'PHP Log',
  522. 'admin:server:label:mem_avail' => 'Memory available',
  523. 'admin:server:label:mem_used' => 'Memory used',
  524. 'admin:server:error_log' => "Web server's error log",
  525. 'admin:server:label:post_max_size' => 'POST maximum size',
  526. 'admin:server:label:upload_max_filesize' => 'Upload maximum size',
  527. 'admin:server:warning:post_max_too_small' => '(Note: post_max_size must be larger than this value to support uploads of this size)',
  528. 'admin:user:label:search' => "Find users:",
  529. 'admin:user:label:searchbutton' => "Search",
  530. 'admin:user:ban:no' => "Can not ban user",
  531. 'admin:user:ban:yes' => "User banned.",
  532. 'admin:user:self:ban:no' => "You cannot ban yourself",
  533. 'admin:user:unban:no' => "Can not unban user",
  534. 'admin:user:unban:yes' => "User unbanned.",
  535. 'admin:user:delete:no' => "Can not delete user",
  536. 'admin:user:delete:yes' => "The user %s has been deleted",
  537. 'admin:user:self:delete:no' => "You cannot delete yourself",
  538. 'admin:user:resetpassword:yes' => "Password reset, user notified.",
  539. 'admin:user:resetpassword:no' => "Password could not be reset.",
  540. 'admin:user:makeadmin:yes' => "User is now an admin.",
  541. 'admin:user:makeadmin:no' => "We could not make this user an admin.",
  542. 'admin:user:removeadmin:yes' => "User is no longer an admin.",
  543. 'admin:user:removeadmin:no' => "We could not remove administrator privileges from this user.",
  544. 'admin:user:self:removeadmin:no' => "You cannot remove your own administrator privileges.",
  545. 'admin:appearance:menu_items' => 'Menu Items',
  546. 'admin:menu_items:configure' => 'Configure main menu items',
  547. '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.',
  548. 'admin:menu_items:hide_toolbar_entries' => 'Remove links from tool bar menu?',
  549. 'admin:menu_items:saved' => 'Menu items saved.',
  550. 'admin:add_menu_item' => 'Add a custom menu item',
  551. 'admin:add_menu_item:description' => 'Fill out the Display name and URL to add custom items to your navigation menu.',
  552. 'admin:appearance:default_widgets' => 'Default Widgets',
  553. 'admin:default_widgets:unknown_type' => 'Unknown widget type',
  554. 'admin:default_widgets:instructions' => 'Add, remove, position, and configure default widgets for the selected widget page.'
  555. . ' These changes will only affect new users on the site.',
  556. /**
  557. * User settings
  558. */
  559. '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.",
  560. 'usersettings:statistics' => "Your statistics",
  561. 'usersettings:statistics:opt:description' => "View statistical information about users and objects on your site.",
  562. 'usersettings:statistics:opt:linktext' => "Account statistics",
  563. 'usersettings:user' => "Your settings",
  564. 'usersettings:user:opt:description' => "This allows you to control user settings.",
  565. 'usersettings:user:opt:linktext' => "Change your settings",
  566. 'usersettings:plugins' => "Tools",
  567. 'usersettings:plugins:opt:description' => "Configure settings (if any) for your active tools.",
  568. 'usersettings:plugins:opt:linktext' => "Configure your tools",
  569. 'usersettings:plugins:description' => "This panel allows you to control and configure the personal settings for the tools installed by your system administrator.",
  570. 'usersettings:statistics:label:numentities' => "Your content",
  571. 'usersettings:statistics:yourdetails' => "Your details",
  572. 'usersettings:statistics:label:name' => "Full name",
  573. 'usersettings:statistics:label:email' => "Email",
  574. 'usersettings:statistics:label:membersince' => "Member since",
  575. 'usersettings:statistics:label:lastlogin' => "Last logged in",
  576. /**
  577. * Activity river
  578. */
  579. 'river:all' => 'All Site Activity',
  580. 'river:mine' => 'My Activity',
  581. 'river:owner' => 'Activity of %s',
  582. 'river:friends' => 'Friends Activity',
  583. 'river:select' => 'Show %s',
  584. 'river:comments:more' => '+%u more',
  585. 'river:generic_comment' => 'commented on %s %s',
  586. 'friends:widget:description' => "Displays some of your friends.",
  587. 'friends:num_display' => "Number of friends to display",
  588. 'friends:icon_size' => "Icon size",
  589. 'friends:tiny' => "tiny",
  590. 'friends:small' => "small",
  591. /**
  592. * Icons
  593. */
  594. 'icon:size' => "Icon size",
  595. 'icon:size:topbar' => "Topbar",
  596. 'icon:size:tiny' => "Tiny",
  597. 'icon:size:small' => "Small",
  598. 'icon:size:medium' => "Medium",
  599. 'icon:size:large' => "Large",
  600. 'icon:size:master' => "Extra Large",
  601. /**
  602. * Generic action words
  603. */
  604. 'save' => "Save",
  605. 'reset' => 'Reset',
  606. 'publish' => "Publish",
  607. 'cancel' => "Cancel",
  608. 'saving' => "Saving ...",
  609. 'update' => "Update",
  610. 'preview' => "Preview",
  611. 'edit' => "Edit",
  612. 'delete' => "Delete",
  613. 'accept' => "Accept",
  614. 'reject' => "Reject",
  615. 'decline' => "Decline",
  616. 'approve' => "Approve",
  617. 'activate' => "Activate",
  618. 'deactivate' => "Deactivate",
  619. 'disapprove' => "Disapprove",
  620. 'revoke' => "Revoke",
  621. 'load' => "Load",
  622. 'upload' => "Upload",
  623. 'download' => "Download",
  624. 'ban' => "Ban",
  625. 'unban' => "Unban",
  626. 'banned' => "Banned",
  627. 'enable' => "Enable",
  628. 'disable' => "Disable",
  629. 'request' => "Request",
  630. 'complete' => "Complete",
  631. 'open' => 'Open',
  632. 'close' => 'Close',
  633. 'hide' => 'Hide',
  634. 'show' => 'Show',
  635. 'reply' => "Reply",
  636. 'more' => 'More',
  637. 'more_info' => 'More info',
  638. 'comments' => 'Comments',
  639. 'import' => 'Import',
  640. 'export' => 'Export',
  641. 'untitled' => 'Untitled',
  642. 'help' => 'Help',
  643. 'send' => 'Send',
  644. 'post' => 'Post',
  645. 'submit' => 'Submit',
  646. 'comment' => 'Comment',
  647. 'upgrade' => 'Upgrade',
  648. 'sort' => 'Sort',
  649. 'filter' => 'Filter',
  650. 'new' => 'New',
  651. 'add' => 'Add',
  652. 'create' => 'Create',
  653. 'remove' => 'Remove',
  654. 'revert' => 'Revert',
  655. 'site' => 'Site',
  656. 'activity' => 'Activity',
  657. 'members' => 'Members',
  658. 'up' => 'Up',
  659. 'down' => 'Down',
  660. 'top' => 'Top',
  661. 'bottom' => 'Bottom',
  662. 'right' => 'Right',
  663. 'left' => 'Left',
  664. 'back' => 'Back',
  665. 'invite' => "Invite",
  666. 'resetpassword' => "Reset password",
  667. 'makeadmin' => "Make admin",
  668. 'removeadmin' => "Remove admin",
  669. 'option:yes' => "Yes",
  670. 'option:no' => "No",
  671. 'unknown' => 'Unknown',
  672. 'active' => 'Active',
  673. 'total' => 'Total',
  674. 'ok' => 'OK',
  675. 'any' => 'Any',
  676. 'error' => 'Error',
  677. 'other' => 'Other',
  678. 'options' => 'Options',
  679. 'advanced' => 'Advanced',
  680. 'learnmore' => "Click here to learn more.",
  681. 'content' => "content",
  682. 'content:latest' => 'Latest activity',
  683. 'content:latest:blurb' => 'Alternatively, click here to view the latest content from across the site.',
  684. 'link:text' => 'view link',
  685. /**
  686. * Generic questions
  687. */
  688. 'question:areyousure' => 'Are you sure?',
  689. /**
  690. * Status
  691. */
  692. 'status' => 'Status',
  693. 'status:unsaved_draft' => 'Unsaved Draft',
  694. 'status:draft' => 'Draft',
  695. 'status:unpublished' => 'Unpublished',
  696. 'status:published' => 'Published',
  697. 'status:featured' => 'Featured',
  698. 'status:open' => 'Open',
  699. 'status:closed' => 'Closed',
  700. /**
  701. * Generic sorts
  702. */
  703. 'sort:newest' => 'Newest',
  704. 'sort:popular' => 'Popular',
  705. 'sort:alpha' => 'Alphabetical',
  706. 'sort:priority' => 'Priority',
  707. /**
  708. * Generic data words
  709. */
  710. 'title' => "Title",
  711. 'description' => "Description",
  712. 'tags' => "Tags",
  713. 'spotlight' => "Spotlight",
  714. 'all' => "All",
  715. 'mine' => "Mine",
  716. 'by' => 'by',
  717. 'none' => 'none',
  718. 'annotations' => "Annotations",
  719. 'relationships' => "Relationships",
  720. 'metadata' => "Metadata",
  721. 'tagcloud' => "Tag cloud",
  722. 'tagcloud:allsitetags' => "All site tags",
  723. 'on' => 'On',
  724. 'off' => 'Off',
  725. /**
  726. * Entity actions
  727. */
  728. 'edit:this' => 'Edit this',
  729. 'delete:this' => 'Delete this',
  730. 'comment:this' => 'Comment on this',
  731. /**
  732. * Input / output strings
  733. */
  734. 'deleteconfirm' => "Are you sure you want to delete this item?",
  735. 'deleteconfirm:plural' => "Are you sure you want to delete these items?",
  736. 'fileexists' => "A file has already been uploaded. To replace it, select it below:",
  737. /**
  738. * User add
  739. */
  740. 'useradd:subject' => 'User account created',
  741. 'useradd:body' => '
  742. %s,
  743. A user account has been created for you at %s. To log in, visit:
  744. %s
  745. And log in with these user credentials:
  746. Username: %s
  747. Password: %s
  748. Once you have logged in, we highly recommend that you change your password.
  749. ',
  750. /**
  751. * System messages
  752. */
  753. 'systemmessages:dismiss' => "click to dismiss",
  754. /**
  755. * Import / export
  756. */
  757. 'importsuccess' => "Import of data was successful",
  758. 'importfail' => "OpenDD import of data failed.",
  759. /**
  760. * Time
  761. */
  762. 'friendlytime:justnow' => "just now",
  763. 'friendlytime:minutes' => "%s minutes ago",
  764. 'friendlytime:minutes:singular' => "a minute ago",
  765. 'friendlytime:hours' => "%s hours ago",
  766. 'friendlytime:hours:singular' => "an hour ago",
  767. 'friendlytime:days' => "%s days ago",
  768. 'friendlytime:days:singular' => "yesterday",
  769. 'friendlytime:date_format' => 'j F Y @ g:ia',
  770. 'friendlytime:future:minutes' => "in %s minutes",
  771. 'friendlytime:future:minutes:singular' => "in a minute",
  772. 'friendlytime:future:hours' => "in %s hours",
  773. 'friendlytime:future:hours:singular' => "in an hour",
  774. 'friendlytime:future:days' => "in %s days",
  775. 'friendlytime:future:days:singular' => "tomorrow",
  776. 'date:month:01' => 'January %s',
  777. 'date:month:02' => 'February %s',
  778. 'date:month:03' => 'March %s',
  779. 'date:month:04' => 'April %s',
  780. 'date:month:05' => 'May %s',
  781. 'date:month:06' => 'June %s',
  782. 'date:month:07' => 'July %s',
  783. 'date:month:08' => 'August %s',
  784. 'date:month:09' => 'September %s',
  785. 'date:month:10' => 'October %s',
  786. 'date:month:11' => 'November %s',
  787. 'date:month:12' => 'December %s',
  788. 'date:weekday:0' => 'Sunday',
  789. 'date:weekday:1' => 'Monday',
  790. 'date:weekday:2' => 'Tuesday',
  791. 'date:weekday:3' => 'Wednesday',
  792. 'date:weekday:4' => 'Thursday',
  793. 'date:weekday:5' => 'Friday',
  794. 'date:weekday:6' => 'Saturday',
  795. 'interval:minute' => 'Every minute',
  796. 'interval:fiveminute' => 'Every five minutes',
  797. 'interval:fifteenmin' => 'Every fifteen minutes',
  798. 'interval:halfhour' => 'Every half hour',
  799. 'interval:hourly' => 'Hourly',
  800. 'interval:daily' => 'Daily',
  801. 'interval:monthly' => 'Monthly',
  802. 'interval:yearly' => 'Yearly',
  803. 'interval:reboot' => 'On reboot',
  804. /**
  805. * System settings
  806. */
  807. 'installation:sitename' => "The name of your site:",
  808. 'installation:sitedescription' => "Short description of your site (optional):",
  809. 'installation:wwwroot' => "The site URL:",
  810. 'installation:path' => "The full path of the Elgg installation:",
  811. 'installation:dataroot' => "The full path of the data directory:",
  812. 'installation:dataroot:warning' => "You must create this directory manually. It should be in a different directory to your Elgg installation.",
  813. 'installation:sitepermissions' => "The default access permissions:",
  814. 'installation:language' => "The default language for your site:",
  815. 'installation:debug' => "Debug mode provides extra information which can be used to diagnose faults. However, it can slow your system down so should only be used if you are having problems:",
  816. 'installation:debug:none' => 'Turn off debug mode (recommended)',
  817. 'installation:debug:error' => 'Display only critical errors',
  818. 'installation:debug:warning' => 'Display errors and warnings',
  819. 'installation:debug:notice' => 'Log all errors, warnings and notices',
  820. // Walled Garden support
  821. 'installation:registration:description' => 'User registration is enabled by default. Turn this off if you do not want new users to be able to register on their own.',
  822. 'installation:registration:label' => 'Allow new users to register',
  823. 'installation:walled_garden:description' => 'Enable the site to run as a private network. This will not allow non logged-in users to view any site pages other than those specifically marked as public.',
  824. 'installation:walled_garden:label' => 'Restrict pages to logged-in users',
  825. 'installation:httpslogin' => "Enable this to have user logins performed over HTTPS. You will need to have https enabled on your server for this to work.",
  826. 'installation:httpslogin:label' => "Enable HTTPS logins",
  827. '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):",
  828. 'installation:siteemail' => "Site email address (used when sending system emails):",
  829. 'installation:allow_user_default_access:description' => "If checked, individual users will be allowed to set their own default access level that can over-ride the system default access level.",
  830. 'installation:allow_user_default_access:label' => "Allow user default access",
  831. 'installation:simplecache:description' => "The simple cache increases performance by caching static content including some CSS and JavaScript files. Normally you will want this on.",
  832. 'installation:simplecache:label' => "Use simple cache (recommended)",
  833. 'installation:minify:description' => "The simple cache can also improve front-end performance by compressing JavaScript and/or CSS content. Normally you will want these on.",
  834. 'installation:minify_js:label' => "Compress JavaScript (recommended)",
  835. 'installation:minify_css:label' => "Compress CSS (recommended)",
  836. 'installation:systemcache:description' => "The system cache decreases the loading time of the Elgg engine by caching data to files.",
  837. 'installation:systemcache:label' => "Use system cache (recommended)",
  838. 'upgrading' => 'Upgrading...',
  839. 'upgrade:db' => 'Your database was upgraded.',
  840. 'upgrade:core' => 'Your Elgg installation was upgraded.',
  841. 'upgrade:unlock' => 'Unlock upgrade',
  842. '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?",
  843. 'upgrade:locked' => "Cannot upgrade. Another upgrade is running. To clear the upgrade lock, visit the Admin section.",
  844. 'upgrade:unlock:success' => "Upgrade unlocked suscessfully.",
  845. 'upgrade:unable_to_upgrade' => 'Unable to upgrade.',
  846. 'upgrade:unable_to_upgrade_info' =>
  847. 'This installation cannot be upgraded because legacy views
  848. were detected in the Elgg core views directory. These views have been deprecated and need to be
  849. removed for Elgg to function correctly. If you have not made changes to Elgg core, you can
  850. simply delete the views directory and replace it with the one from the latest
  851. package of Elgg downloaded from <a href="http://elgg.org">elgg.org</a>.<br /><br />
  852. If you need detailed instructions, please visit the <a href="http://docs.elgg.org/wiki/Upgrading_Elgg">
  853. Upgrading Elgg documentation</a>. If you require assistance, please post to the
  854. <a href="http://community.elgg.org/pg/groups/discussion/">Community Support Forums</a>.',
  855. 'update:twitter_api:deactivated' => 'Twitter API (previously Twitter Service) was deactivated during the upgrade. Please activate it manually if required.',
  856. 'update:oauth_api:deactivated' => 'OAuth API (previously OAuth Lib) was deactivated during the upgrade. Please activate it manually if required.',
  857. 'deprecated:function' => '%s() was deprecated by %s()',
  858. /**
  859. * Welcome
  860. */
  861. 'welcome' => "Welcome",
  862. 'welcome:user' => 'Welcome %s',
  863. /**
  864. * Emails
  865. */
  866. 'email:from' => 'From',
  867. 'email:to' => 'To',
  868. 'email:subject' => 'Subject',
  869. 'email:body' => 'Body',
  870. 'email:settings' => "Email settings",
  871. 'email:address:label' => "Your email address",
  872. 'email:save:success' => "New email address saved. Verification is requested.",
  873. 'email:save:fail' => "Your new email address could not be saved.",
  874. 'friend:newfriend:subject' => "%s has made you a friend!",
  875. 'friend:newfriend:body' => "%s has made you a friend!
  876. To view their profile, click here:
  877. %s
  878. You cannot reply to this email.",
  879. 'email:resetpassword:subject' => "Password reset!",
  880. 'email:resetpassword:body' => "Hi %s,
  881. Your password has been reset to: %s",
  882. 'email:resetreq:subject' => "Request for new password.",
  883. 'email:resetreq:body' => "Hi %s,
  884. Somebody (from the IP address %s) has requested a new password for their account.
  885. If you requested this, click on the link below. Otherwise ignore this email.
  886. %s
  887. ",
  888. /**
  889. * user default access
  890. */
  891. 'default_access:settings' => "Your default access level",
  892. 'default_access:label' => "Default access",
  893. 'user:default_access:success' => "Your new default access level was saved.",
  894. 'user:default_access:failure' => "Your new default access level could not be saved.",
  895. /**
  896. * Comments
  897. */
  898. 'comments:count' => "%s comments",
  899. 'river:comment:object:default' => '%s commented on %s',
  900. 'generic_comments:add' => "Leave a comment",
  901. 'generic_comments:post' => "Post comment",
  902. 'generic_comments:text' => "Comment",
  903. 'generic_comments:latest' => "Latest comments",
  904. 'generic_comment:posted' => "Your comment was successfully posted.",
  905. 'generic_comment:deleted' => "The comment was successfully deleted.",
  906. 'generic_comment:blank' => "Sorry, you need to actually put something in your comment before we can save it.",
  907. 'generic_comment:notfound' => "Sorry, we could not find the specified item.",
  908. 'generic_comment:notdeleted' => "Sorry, we could not delete this comment.",
  909. 'generic_comment:failure' => "An unexpected error occurred when adding your comment.",
  910. 'generic_comment:none' => 'No comments',
  911. 'generic_comment:title' => 'Comment by %s',
  912. 'generic_comment:on' => '%s on %s',
  913. 'generic_comment:email:subject' => 'You have a new comment!',
  914. 'generic_comment:email:body' => "You have a new comment on your item \"%s\" from %s. It reads:
  915. %s
  916. To reply or view the original item, click here:
  917. %s
  918. To view %s's profile, click here:
  919. %s
  920. You cannot reply to this email.",
  921. /**
  922. * Entities
  923. */
  924. 'byline' => 'By %s',
  925. 'entity:default:strapline' => 'Created %s by %s',
  926. 'entity:default:missingsupport:popup' => 'This entity cannot be displayed correctly. This may be because it requires support provided by a plugin that is no longer installed.',
  927. 'entity:delete:success' => 'Entity %s has been deleted',
  928. 'entity:delete:fail' => 'Entity %s could not be deleted',
  929. /**
  930. * Action gatekeeper
  931. */
  932. 'actiongatekeeper:missingfields' => 'Form is missing __token or __ts fields',
  933. 'actiongatekeeper:tokeninvalid' => "The page you were using had expired. Please try again.",
  934. 'actiongatekeeper:timeerror' => 'The page you were using has expired. Please refresh and try again.',
  935. 'actiongatekeeper:pluginprevents' => 'A extension has prevented this form from being submitted.',
  936. 'actiongatekeeper:uploadexceeded' => 'The size of file(s) uploaded exceeded the limit set by your site administrator',
  937. /**
  938. * Word blacklists
  939. */
  940. 'word:blacklist' => 'and, the, then, but, she, his, her, him, one, not, also, about, now, hence, however, still, likewise, otherwise, therefore, conversely, rather, consequently, furthermore, nevertheless, instead, meanwhile, accordingly, this, seems, what, whom, whose, whoever, whomever',
  941. /**
  942. * Tag labels
  943. */
  944. 'tag_names:tags' => 'Tags',
  945. 'tags:site_cloud' => 'Site Tag Cloud',
  946. /**
  947. * Javascript
  948. */
  949. 'js:security:token_refresh_failed' => 'Failed to contact %s. You may experience problems saving content. Please refresh this page.',
  950. 'js:security:token_refreshed' => 'Connection to %s restored!',
  951. 'js:lightbox:current' => "image %s of %s",
  952. /**
  953. * Languages according to ISO 639-1
  954. */
  955. "aa" => "Afar",
  956. "ab" => "Abkhazian",
  957. "af" => "Afrikaans",
  958. "am" => "Amharic",
  959. "ar" => "Arabic",
  960. "as" => "Assamese",
  961. "ay" => "Aymara",
  962. "az" => "Azerbaijani",
  963. "ba" => "Bashkir",
  964. "be" => "Byelorussian",
  965. "bg" => "Bulgarian",
  966. "bh" => "Bihari",
  967. "bi" => "Bislama",
  968. "bn" => "Bengali; Bangla",
  969. "bo" => "Tibetan",
  970. "br" => "Breton",
  971. "ca" => "Catalan",
  972. "co" => "Corsican",
  973. "cs" => "Czech",
  974. "cy" => "Welsh",
  975. "da" => "Danish",
  976. "de" => "German",
  977. "dz" => "Bhutani",
  978. "el" => "Greek",
  979. "en" => "English",
  980. "eo" => "Esperanto",
  981. "es" => "Spanish",
  982. "et" => "Estonian",
  983. "eu" => "Basque",
  984. "fa" => "Persian",
  985. "fi" => "Finnish",
  986. "fj" => "Fiji",
  987. "fo" => "Faeroese",
  988. "fr" => "French",
  989. "fy" => "Frisian",
  990. "ga" => "Irish",
  991. "gd" => "Scots / Gaelic",
  992. "gl" => "Galician",
  993. "gn" => "Guarani",
  994. "gu" => "Gujarati",
  995. "he" => "Hebrew",
  996. "ha" => "Hausa",
  997. "hi" => "Hindi",
  998. "hr" => "Croatian",
  999. "hu" => "Hungarian",
  1000. "hy" => "Armenian",
  1001. "ia" => "Interlingua",
  1002. "id" => "Indonesian",
  1003. "ie" => "Interlingue",
  1004. "ik" => "Inupiak",
  1005. //"in" => "Indonesian",
  1006. "is" => "Icelandic",
  1007. "it" => "Italian",
  1008. "iu" => "Inuktitut",
  1009. "iw" => "Hebrew (obsolete)",
  1010. "ja" => "Japanese",
  1011. "ji" => "Yiddish (obsolete)",
  1012. "jw" => "Javanese",
  1013. "ka" => "Georgian",
  1014. "kk" => "Kazakh",
  1015. "kl" => "Greenlandic",
  1016. "km" => "Cambodian",
  1017. "kn" => "Kannada",
  1018. "ko" => "Korean",
  1019. "ks" => "Kashmiri",
  1020. "ku" => "Kurdish",
  1021. "ky" => "Kirghiz",
  1022. "la" => "Latin",
  1023. "ln" => "Lingala",
  1024. "lo" => "Laothian",
  1025. "lt" => "Lithuanian",
  1026. "lv" => "Latvian/Lettish",
  1027. "mg" => "Malagasy",
  1028. "mi" => "Maori",
  1029. "mk" => "Macedonian",
  1030. "ml" => "Malayalam",
  1031. "mn" => "Mongolian",
  1032. "mo" => "Moldavian",
  1033. "mr" => "Marathi",
  1034. "ms" => "Malay",
  1035. "mt" => "Maltese",
  1036. "my" => "Burmese",
  1037. "na" => "Nauru",
  1038. "ne" => "Nepali",
  1039. "nl" => "Dutch",
  1040. "no" => "Norwegian",
  1041. "oc" => "Occitan",
  1042. "om" => "(Afan) Oromo",
  1043. "or" => "Oriya",
  1044. "pa" => "Punjabi",
  1045. "pl" => "Polish",
  1046. "ps" => "Pashto / Pushto",
  1047. "pt" => "Portuguese",
  1048. "qu" => "Quechua",
  1049. "rm" => "Rhaeto-Romance",
  1050. "rn" => "Kirundi",
  1051. "ro" => "Romanian",
  1052. "ru" => "Russian",
  1053. "rw" => "Kinyarwanda",
  1054. "sa" => "Sanskrit",
  1055. "sd" => "Sindhi",
  1056. "sg" => "Sangro",
  1057. "sh" => "Serbo-Croatian",
  1058. "si" => "Singhalese",
  1059. "sk" => "Slovak",
  1060. "sl" => "Slovenian",
  1061. "sm" => "Samoan",
  1062. "sn" => "Shona",
  1063. "so" => "Somali",
  1064. "sq" => "Albanian",
  1065. "sr" => "Serbian",
  1066. "ss" => "Siswati",
  1067. "st" => "Sesotho",
  1068. "su" => "Sundanese",
  1069. "sv" => "Swedish",
  1070. "sw" => "Swahili",
  1071. "ta" => "Tamil",
  1072. "te" => "Tegulu",
  1073. "tg" => "Tajik",
  1074. "th" => "Thai",
  1075. "ti" => "Tigrinya",
  1076. "tk" => "Turkmen",
  1077. "tl" => "Tagalog",
  1078. "tn" => "Setswana",
  1079. "to" => "Tonga",
  1080. "tr" => "Turkish",
  1081. "ts" => "Tsonga",
  1082. "tt" => "Tatar",
  1083. "tw" => "Twi",
  1084. "ug" => "Uigur",
  1085. "uk" => "Ukrainian",
  1086. "ur" => "Urdu",
  1087. "uz" => "Uzbek",
  1088. "vi" => "Vietnamese",
  1089. "vo" => "Volapuk",
  1090. "wo" => "Wolof",
  1091. "xh" => "Xhosa",
  1092. //"y" => "Yiddish",
  1093. "yi" => "Yiddish",
  1094. "yo" => "Yoruba",
  1095. "za" => "Zuang",
  1096. "zh" => "Chinese",
  1097. "zu" => "Zulu",
  1098. );