intro.pot 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) 2013, Various
  3. # This file is distributed under the same license as the Elgg package.
  4. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: Elgg 1.12\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2016-03-06 18:02+0200\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. #: ../../intro/development.rst:2
  19. msgid "Developer Overview"
  20. msgstr ""
  21. #: ../../intro/development.rst:4
  22. msgid "This is a quick developer introduction to Elgg. It covers the basic approach to working with Elgg as a framework, and mentions some of the terms and technologies used."
  23. msgstr ""
  24. #: ../../intro/development.rst:7
  25. msgid "See the :doc:`/guides/index` for tutorials or the :doc:`/design/index` for in-depth discussion on design."
  26. msgstr ""
  27. #: ../../intro/development.rst:10
  28. msgid "Database and Persistence"
  29. msgstr ""
  30. #: ../../intro/development.rst:12
  31. msgid "Elgg uses MySQL 5.5 or higher for data persistence, and maps database values into Entities (a representation of an atomic unit of information) and Extenders (additional information and descriptions about Entities). Elgg supports additional information such as relationships between Entities, activity streams, and various types of settings."
  32. msgstr ""
  33. #: ../../intro/development.rst:18
  34. msgid "Plugins"
  35. msgstr ""
  36. #: ../../intro/development.rst:20
  37. msgid "Plugins change the behavior or appearance of Elgg by overriding views, or by handling events and plugin hooks. All changes to an Elgg site should be implemented through plugins to ensure upgrading core is easy."
  38. msgstr ""
  39. #: ../../intro/development.rst:24
  40. msgid "Actions"
  41. msgstr ""
  42. #: ../../intro/development.rst:26
  43. msgid "Actions are the primary way users interact with an Elgg site. Actions are registered by plugins."
  44. msgstr ""
  45. #: ../../intro/development.rst:29
  46. msgid "Events and Plugin Hooks"
  47. msgstr ""
  48. #: ../../intro/development.rst:31
  49. msgid "Events and Plugin Hooks are used in Elgg Plugins to interact with the Elgg engine under certain circumstances. Events and hooks are triggered at strategic times throughout Elgg's boot and execution process, and allows plugins to modify or cancel the default behavior."
  50. msgstr ""
  51. #: ../../intro/development.rst:36
  52. msgid "Views"
  53. msgstr ""
  54. #: ../../intro/development.rst:38
  55. msgid "Views are the primary presentation layer for Elgg. Views can be overridden or extended by Plugins. Views are categories into a Viewtype, which hints at what sort of output should be expected by the view."
  56. msgstr ""
  57. #: ../../intro/development.rst:43
  58. msgid "JavaScript"
  59. msgstr ""
  60. #: ../../intro/development.rst:45
  61. msgid "Elgg uses an AMD-compatible JavaScript system provided by require.js. Bundled with Elgg are jQuery 1.11.0, jQuery UI 1.10.4, jQuery Form v20140304, jQuery jeditable, and jQuery UI Autocomplete."
  62. msgstr ""
  63. #: ../../intro/development.rst:48
  64. msgid "Plugins can load their own JS libs."
  65. msgstr ""
  66. #: ../../intro/development.rst:51
  67. #: ../../intro/features.rst:13
  68. msgid "Internationalization"
  69. msgstr ""
  70. #: ../../intro/development.rst:53
  71. msgid "Elgg's interface supports multiple languages, and uses `Transifex`_ for translation."
  72. msgstr ""
  73. #: ../../intro/development.rst:56
  74. msgid "Caching"
  75. msgstr ""
  76. #: ../../intro/development.rst:58
  77. msgid "Elgg uses two caches to improve performance: a system cache and SimpleCache."
  78. msgstr ""
  79. #: ../../intro/features.rst:2
  80. msgid "Features"
  81. msgstr ""
  82. #: ../../intro/features.rst:4
  83. msgid "Demo: http://demo.elgg.org/"
  84. msgstr ""
  85. #: ../../intro/features.rst:6
  86. msgid "Showcases: https://community.elgg.org/showcase"
  87. msgstr ""
  88. #: ../../intro/features.rst:9
  89. msgid "For developers"
  90. msgstr ""
  91. #: ../../intro/features.rst:11
  92. msgid "Permissive license"
  93. msgstr ""
  94. #: ../../intro/features.rst:12
  95. msgid "Theme framework"
  96. msgstr ""
  97. #: ../../intro/features.rst:14
  98. msgid "Templating engine"
  99. msgstr ""
  100. #: ../../intro/features.rst:15
  101. msgid "Widgets framework"
  102. msgstr ""
  103. #: ../../intro/features.rst:16
  104. msgid "Plugin APIs"
  105. msgstr ""
  106. #: ../../intro/features.rst:17
  107. msgid "Social graph"
  108. msgstr ""
  109. #: ../../intro/features.rst:18
  110. msgid "Web services API"
  111. msgstr ""
  112. #: ../../intro/features.rst:19
  113. msgid "jQuery-based JS framework"
  114. msgstr ""
  115. #: ../../intro/features.rst:20
  116. msgid "Session management"
  117. msgstr ""
  118. #: ../../intro/features.rst:21
  119. msgid "Custom URL routing"
  120. msgstr ""
  121. #: ../../intro/features.rst:24
  122. msgid "For admins"
  123. msgstr ""
  124. #: ../../intro/features.rst:26
  125. msgid "User profiles and avatars"
  126. msgstr ""
  127. #: ../../intro/features.rst:27
  128. msgid "Fine-grained access control lists"
  129. msgstr ""
  130. #: ../../intro/features.rst:28
  131. msgid "Friends and friends lists (ala G+ circles)"
  132. msgstr ""
  133. #: ../../intro/features.rst:29
  134. msgid "Responsive, mobile-friendly design"
  135. msgstr ""
  136. #: ../../intro/features.rst:30
  137. msgid "RSS support"
  138. msgstr ""
  139. #: ../../intro/features.rst:31
  140. msgid "Activity stream"
  141. msgstr ""
  142. #: ../../intro/features.rst:32
  143. msgid "Plugins for common content types like blogs, bookmarks, files, microblogging, private messages, documents, message boards, discussion"
  144. msgstr ""
  145. #: ../../intro/features.rst:33
  146. msgid "User authentication and administration"
  147. msgstr ""
  148. #: ../../intro/features.rst:35
  149. msgid "If you need more functionality than what Elgg offers out-of-the-box there are a couple of options:"
  150. msgstr ""
  151. #: ../../intro/features.rst:37
  152. msgid "Add more by :doc:`installing plugins </admin/plugins>` - for example, blogs, forums, social bookmarks"
  153. msgstr ""
  154. #: ../../intro/features.rst:38
  155. msgid "Develop your own features via plugins"
  156. msgstr ""
  157. #: ../../intro/features.rst:39
  158. msgid "Hire someone to do the above for you"
  159. msgstr ""
  160. #: ../../intro/index.rst:2
  161. msgid "Getting Started"
  162. msgstr ""
  163. #: ../../intro/index.rst:4
  164. msgid "Discover if Elgg is right for your community."
  165. msgstr ""
  166. #: ../../intro/install.rst:2
  167. msgid "Installation"
  168. msgstr ""
  169. #: ../../intro/install.rst:4
  170. msgid "Get your own instance of Elgg running in no time."
  171. msgstr ""
  172. #: ../../intro/install.rst:0
  173. msgid "Contents"
  174. msgstr ""
  175. #: ../../intro/install.rst:11
  176. msgid "Requirements"
  177. msgstr ""
  178. #: ../../intro/install.rst:13
  179. msgid "MySQL 5+"
  180. msgstr ""
  181. #: ../../intro/install.rst:14
  182. msgid "PHP 5.4+ with the following extensions:"
  183. msgstr ""
  184. #: ../../intro/install.rst:16
  185. msgid "GD (for graphics processing)"
  186. msgstr ""
  187. #: ../../intro/install.rst:17
  188. msgid "`Multibyte String support`_ (for i18n)"
  189. msgstr ""
  190. #: ../../intro/install.rst:18
  191. msgid "Proper configuration and ability to send email through an MTA"
  192. msgstr ""
  193. #: ../../intro/install.rst:20
  194. msgid "Web server with support for URL rewriting"
  195. msgstr ""
  196. #: ../../intro/install.rst:22
  197. msgid "Official support is provided for the following configurations:"
  198. msgstr ""
  199. #: ../../intro/install.rst:26
  200. msgid "Apache server"
  201. msgstr ""
  202. #: ../../intro/install.rst:25
  203. msgid "Apache with the `rewrite module`_ enabled"
  204. msgstr ""
  205. #: ../../intro/install.rst:26
  206. msgid "PHP running as an Apache module"
  207. msgstr ""
  208. #: ../../intro/install.rst:29
  209. msgid "Nginx server"
  210. msgstr ""
  211. #: ../../intro/install.rst:29
  212. msgid "Nginx with PHP-FPM using FastCGI"
  213. msgstr ""
  214. #: ../../intro/install.rst:31
  215. msgid "By \"official support\", we mean that:"
  216. msgstr ""
  217. #: ../../intro/install.rst:33
  218. msgid "Most development and testing is performed with these configurations"
  219. msgstr ""
  220. #: ../../intro/install.rst:34
  221. msgid "Much of the installation documentation is written assuming Apache or Nginx is used"
  222. msgstr ""
  223. #: ../../intro/install.rst:35
  224. msgid "Priority on bug reports is given to Apache and Nginx users if the bug is web server specific (but those are rare)."
  225. msgstr ""
  226. #: ../../intro/install.rst:42
  227. msgid "Browser support policy"
  228. msgstr ""
  229. #: ../../intro/install.rst:44
  230. msgid "Feature branches support the latest 2 versions of all major browsers as were available at the time of the first stable release on that branch."
  231. msgstr ""
  232. #: ../../intro/install.rst:47
  233. msgid "Bugfix release will not alter browser support, even if a new version of the browser has since been released."
  234. msgstr ""
  235. #: ../../intro/install.rst:50
  236. msgid "Major browsers here means all of the following, plus their mobile counterparts:"
  237. msgstr ""
  238. #: ../../intro/install.rst:52
  239. msgid "Android Browser"
  240. msgstr ""
  241. #: ../../intro/install.rst:53
  242. msgid "Chrome"
  243. msgstr ""
  244. #: ../../intro/install.rst:54
  245. msgid "Firefox"
  246. msgstr ""
  247. #: ../../intro/install.rst:55
  248. msgid "IE"
  249. msgstr ""
  250. #: ../../intro/install.rst:56
  251. msgid "Safari"
  252. msgstr ""
  253. #: ../../intro/install.rst:58
  254. msgid "\"Support\" may mean that we take advantage of newer, unimplemented technologies but provide a JavaScript polyfill for the browsers that need it."
  255. msgstr ""
  256. #: ../../intro/install.rst:61
  257. msgid "You may find that Elgg happens to work on unsupported browsers, but compatibility may break at any time, even during a bugfix release."
  258. msgstr ""
  259. #: ../../intro/install.rst:65
  260. msgid "Overview"
  261. msgstr ""
  262. #: ../../intro/install.rst:68
  263. msgid "Upload Elgg"
  264. msgstr ""
  265. #: ../../intro/install.rst:70
  266. msgid "Download the `latest version of Elgg`_"
  267. msgstr ""
  268. #: ../../intro/install.rst:71
  269. msgid "Upload the ZIP file with an FTP client to your server"
  270. msgstr ""
  271. #: ../../intro/install.rst:72
  272. msgid "Unzip the files in your domain's document root (/home/username/www)."
  273. msgstr ""
  274. #: ../../intro/install.rst:77
  275. msgid "Create a data folder"
  276. msgstr ""
  277. #: ../../intro/install.rst:79
  278. msgid "Elgg needs a special folder to store uploaded files including profile icons and photos. You will need to create this directory."
  279. msgstr ""
  280. #: ../../intro/install.rst:84
  281. msgid "For security reasons, this folder MUST be stored outside of your document root. If you created it under /www/ or /public_html/, you're doing it wrong."
  282. msgstr ""
  283. #: ../../intro/install.rst:88
  284. msgid "Once this folder has been created, you'll need to make sure the web server Elgg is running on has permission to write to and create directories in it. This shouldn't be a problem on Windows-based servers, but if your server runs Linux, Mac OS X or a UNIX variant, you'll need to `set the permissions on the directory`_."
  285. msgstr ""
  286. #: ../../intro/install.rst:96
  287. msgid "If you are using a graphical FTP client to upload files, you can usually set permissions by right clicking on the folder and selecting 'properties' or 'Get Info'."
  288. msgstr ""
  289. #: ../../intro/install.rst:102
  290. msgid "Directories must be executable to be read and written to. The suggested permissions depend upon the exact server and user configuration. If the data directory is owned by the web server user, the recommended permissions are 770."
  291. msgstr ""
  292. #: ../../intro/install.rst:107
  293. msgid "Setting your data directory to 777 will work, but it is insecure and is not recommended. If you are unsure how to correctly set permissions, contact your host for more information."
  294. msgstr ""
  295. #: ../../intro/install.rst:112
  296. msgid "Create a MySQL database"
  297. msgstr ""
  298. #: ../../intro/install.rst:114
  299. msgid "Using your database administration tool of choice (if you're unsure about this, ask your system administrator), create a new MySQL database for Elgg. You can create a MySQL database with any of the following tools:"
  300. msgstr ""
  301. #: ../../intro/install.rst:119
  302. msgid "Make sure you add a user to the database with all privileges and record the database name, username and password. You will need this information when installing Elgg."
  303. msgstr ""
  304. #: ../../intro/install.rst:124
  305. msgid "Visit your Elgg site"
  306. msgstr ""
  307. #: ../../intro/install.rst:126
  308. msgid "Once you've performed these steps, visit your Elgg site in your web browser. Elgg will take you through the rest of the installation process from there. The first account that you create at the end of the installation process will be an administrator account."
  309. msgstr ""
  310. #: ../../intro/install.rst:133
  311. msgid "A note on settings.php and .htaccess"
  312. msgstr ""
  313. #: ../../intro/install.rst:135
  314. msgid "The Elgg installer will try to create two files for you:"
  315. msgstr ""
  316. #: ../../intro/install.rst:137
  317. msgid "engine/settings.php, which contains the database settings for your installation"
  318. msgstr ""
  319. #: ../../intro/install.rst:139
  320. msgid ".htaccess, which allows Elgg to generate dynamic URLs"
  321. msgstr ""
  322. #: ../../intro/install.rst:141
  323. msgid "If these files can't be automatically generated, for example because the web server doesn't have write permissions in the directories, Elgg will tell you how to create them. You could also temporarily change the permissions on the root directory and the engine directory. Set the permissions on those two directories so that the web server can write those two files, complete the install process, and them change the permissions back to their original settings. If, for some reason, this won't work, you will need to:"
  324. msgstr ""
  325. #: ../../intro/install.rst:150
  326. msgid "Copy engine/settings.example.php to engine/settings.php, open it up in a text editor and fill in your database details"
  327. msgstr ""
  328. #: ../../intro/install.rst:152
  329. msgid "On Apache server, copy ``install/config/htaccess.dist`` to ``.htaccess``"
  330. msgstr ""
  331. #: ../../intro/install.rst:153
  332. msgid "On Nginx server copy ``install/config/nginx.dist`` to ``/etc/nginx/sites-enabled`` and adjust it's contents"
  333. msgstr ""
  334. #: ../../intro/install.rst:156
  335. msgid "Other Configurations"
  336. msgstr ""
  337. #: ../../intro/install.rst:158
  338. msgid ":doc:`Cloud9 <./install/cloud9>`"
  339. msgstr ""
  340. #: ../../intro/install.rst:159
  341. msgid ":doc:`EasyPHP <./install/easyphp>`"
  342. msgstr ""
  343. #: ../../intro/install.rst:160
  344. msgid ":doc:`IIS <./install/iis>`"
  345. msgstr ""
  346. #: ../../intro/install.rst:161
  347. msgid ":doc:`MAMP <./install/mamp>`"
  348. msgstr ""
  349. #: ../../intro/install.rst:162
  350. msgid ":doc:`MariaDB <./install/mariadb>`"
  351. msgstr ""
  352. #: ../../intro/install.rst:163
  353. msgid ":doc:`Nginx <./install/nginx>`"
  354. msgstr ""
  355. #: ../../intro/install.rst:164
  356. msgid ":doc:`Ubuntu <./install/ubuntu>`"
  357. msgstr ""
  358. #: ../../intro/install.rst:165
  359. msgid ":doc:`Virtual hosts <./install/virtual>`"
  360. msgstr ""
  361. #: ../../intro/install.rst:166
  362. msgid ":doc:`XAMPP <./install/xampp>`"
  363. msgstr ""
  364. #: ../../intro/install.rst:169
  365. msgid "Troubleshooting"
  366. msgstr ""
  367. #: ../../intro/install.rst:172
  368. msgid "Help! I'm having trouble installing Elgg"
  369. msgstr ""
  370. #: ../../intro/install.rst:174
  371. msgid "First:"
  372. msgstr ""
  373. #: ../../intro/install.rst:176
  374. msgid "Recheck that your server meets the technical requirements for Elgg."
  375. msgstr ""
  376. #: ../../intro/install.rst:177
  377. msgid "Follow the environment-specific instructions if need be"
  378. msgstr ""
  379. #: ../../intro/install.rst:178
  380. msgid "Have you verified that ``mod_rewrite`` is being loaded?"
  381. msgstr ""
  382. #: ../../intro/install.rst:179
  383. msgid "Is the mysql apache being loaded?"
  384. msgstr ""
  385. #: ../../intro/install.rst:181
  386. msgid "Keep notes on steps that you take to fix the install. Sometimes changing some setting or file to try to fix a problem may cause some other problem later on. If you need to start over, just delete all the files, drop your database, and begin again."
  387. msgstr ""
  388. #: ../../intro/install.rst:187
  389. msgid "I can't save my settings on installation (I get a 404 error when saving settings)"
  390. msgstr ""
  391. #: ../../intro/install.rst:189
  392. msgid "Elgg relies on the ``mod_rewrite`` Apache extension in order to simulate certain URLs. For example, whenever you perform an action in Elgg, or when you visit a user's profile, the URL is translated by the server into something Elgg understands internally. This is done using rules defined in an ``.htaccess`` file, which is Apache's standard way of defining extra configuration for a site."
  393. msgstr ""
  394. #: ../../intro/install.rst:196
  395. msgid "This error suggests that the ``mod_rewrite`` rules aren't being picked up correctly. This may be for several reasons. If you're not comfortable implementing the solutions provided below, we strongly recommend that you contact your system administrator or technical support and forward this page to them."
  396. msgstr ""
  397. #: ../../intro/install.rst:202
  398. msgid "The ``.htaccess``, if not generated automatically (that happens when you have problem with ``mod_rewrite``), you can create it by renaming ``install/config/htaccess.dist`` file you find with elgg package to ``.htaccess``. Also if you find a ``.htaccess`` file inside the installation path, but you are still getting 404 error, make sure the contents of ``.htaccess`` are same as that of ``install/config/htaccess.dist``."
  399. msgstr ""
  400. #: ../../intro/install.rst:209
  401. msgid "**``mod_rewrite`` isn't installed.**"
  402. msgstr ""
  403. #: ../../intro/install.rst:211
  404. msgid "Check your ``httpd.conf`` to make sure that this module is being loaded by Apache. You may have to restart Apache to get it to pick up any changes in configuration. You can also use `PHP info`_ to check to see if the module is being loaded."
  405. msgstr ""
  406. #: ../../intro/install.rst:216
  407. msgid "**The rules in ``.htaccess`` aren't being obeyed.**"
  408. msgstr ""
  409. #: ../../intro/install.rst:220
  410. msgid "In your virtual host configuration settings (which may be contained within ``httpd.conf``), change the AllowOverride setting so that it reads:"
  411. msgstr ""
  412. #: ../../intro/install.rst:224
  413. msgid "``AllowOverride all``"
  414. msgstr ""
  415. #: ../../intro/install.rst:226
  416. msgid "This will tell Apache to pick up the ``mod_rewrite`` rules from ``.htaccess``."
  417. msgstr ""
  418. #: ../../intro/install.rst:229
  419. msgid "**Elgg is not installed in the root of your web directory (ex: http://example.org/elgg/ instead of http://example.org/)**"
  420. msgstr ""
  421. #: ../../intro/install.rst:233
  422. msgid "The install script redirects me to \"action\" when it should be \"actions\""
  423. msgstr ""
  424. #: ../../intro/install.rst:235
  425. msgid "This is a problem with your ``mod_rewrite`` setup. DO NOT, REPEAT, DO NOT change any directory names!"
  426. msgstr ""
  427. #: ../../intro/install.rst:239
  428. msgid "I installed in a subdirectory and my install action isn't working!"
  429. msgstr ""
  430. #: ../../intro/install.rst:241
  431. msgid "If you installed Elgg so that it is reached with an address like http://example.org/mysite/ rather than http://example.org/, there is a small chance that the rewrite rules in .htaccess will not be processed correctly. This is usually due to using an alias with Apache. You may need to give mod\\_rewrite a pointer to where your Elgg installation is."
  432. msgstr ""
  433. #: ../../intro/install.rst:247
  434. msgid "Open up .htaccess in a text editor"
  435. msgstr ""
  436. #: ../../intro/install.rst:249
  437. msgid "Where prompted, add a line like ``RewriteBase /path/to/your/elgg/installation/`` (Don't forget the trailing slash)"
  438. msgstr ""
  439. #: ../../intro/install.rst:252
  440. msgid "Save the file and refresh your browser."
  441. msgstr ""
  442. #: ../../intro/install.rst:254
  443. msgid "Please note that the path you are using is the **web** path, minus the host."
  444. msgstr ""
  445. #: ../../intro/install.rst:257
  446. msgid "For example, if you reach your elgg install at http://example.org/elgg/, you would set the base like this:"
  447. msgstr ""
  448. #: ../../intro/install.rst:260
  449. msgid "``RewriteBase /elgg/``"
  450. msgstr ""
  451. #: ../../intro/install.rst:262
  452. msgid "Please note that installing in a subdirectory does not require using RewriteBase. There are only some rare circumstances when it is needed due to the set up of the server."
  453. msgstr ""
  454. #: ../../intro/install.rst:267
  455. msgid "I did everything! mod\\_rewrite is working fine, but still the 404 error"
  456. msgstr ""
  457. #: ../../intro/install.rst:269
  458. msgid "Maybe there is a problem with the file .htaccess. Sometimes the elgg install routine is unable to create one and unable to tell you that. If you are on this point and tried everything that is written above:"
  459. msgstr ""
  460. #: ../../intro/install.rst:273
  461. msgid "check if it is really the elgg-created .htaccess (not only a dummy provided from the server provider)"
  462. msgstr ""
  463. #: ../../intro/install.rst:276
  464. msgid "if it is not the elgg provided htaccess file, use the htaccess\\_dist (rename it to .htaccess)"
  465. msgstr ""
  466. #: ../../intro/install.rst:280
  467. msgid "I get an error message that the rewrite test failed after the requirements check page"
  468. msgstr ""
  469. #: ../../intro/install.rst:282
  470. msgid "I get the following messages after the requirements check step (step 2) of the install:"
  471. msgstr ""
  472. #: ../../intro/install.rst:284
  473. msgid "We think your server is running the Apache web server."
  474. msgstr ""
  475. #: ../../intro/install.rst:286
  476. msgid "The rewrite test failed and the most likely cause is that AllowOverride is not set to All for Elgg's directory. This prevents Apache from processing the .htaccess file which contains the rewrite rules."
  477. msgstr ""
  478. #: ../../intro/install.rst:289
  479. msgid "A less likely cause is Apache is configured with an alias for your Elgg directory and you need to set the RewriteBase in your .htaccess. There are further instructions in the .htaccess file in your Elgg directory."
  480. msgstr ""
  481. #: ../../intro/install.rst:292
  482. msgid "After this error, everinteraction with the web interface results in a error 500 (Internal Server Error)"
  483. msgstr ""
  484. #: ../../intro/install.rst:294
  485. msgid "This is likely caused by not loading the \"filter module by un-commenting the"
  486. msgstr ""
  487. #: ../../intro/install.rst:296
  488. msgid "#LoadModule filter_module modules/mod_filter.so"
  489. msgstr ""
  490. #: ../../intro/install.rst:298
  491. msgid "line in the \"httpd.conf\" file."
  492. msgstr ""
  493. #: ../../intro/install.rst:300
  494. msgid "the Apache \"error.log\" file will contain an entry similar to:"
  495. msgstr ""
  496. #: ../../intro/install.rst:302
  497. msgid "... .htaccess: Invalid command 'AddOutputFilterByType', perhaps misspelled or defined by a module not included in the server configuration"
  498. msgstr ""
  499. #: ../../intro/install.rst:306
  500. msgid "There is a white page after I submit my database settings"
  501. msgstr ""
  502. #: ../../intro/install.rst:308
  503. msgid "Check that the Apache mysql module is installed and is being loaded."
  504. msgstr ""
  505. #: ../../intro/install.rst:311
  506. msgid "I'm getting a 404 error with a really long url"
  507. msgstr ""
  508. #: ../../intro/install.rst:313
  509. msgid "If you see a 404 error during the install or on the creation of the first user with a url like: ``http://example.com/homepages/26/d147515119/htdocs/elgg/action/register`` that means your site url is incorrect in your sites\\_entity table in your database. This was set by you on the second page of the install. Elgg tries to guess the correct value but has difficulty with shared hosting sites. Use phpMyAdmin to edit this value to the correct base url."
  510. msgstr ""
  511. #: ../../intro/install.rst:323
  512. msgid "I am having trouble setting my data path"
  513. msgstr ""
  514. #: ../../intro/install.rst:325
  515. msgid "This is highly server specific so it is difficult to give specific advice. If you have created a directory for uploading data, make sure your http server can access it. The easiest (but least secure) way to do this is give it permissions 777. It is better to give the web server ownership of the directory and limit the permissions."
  516. msgstr ""
  517. #: ../../intro/install.rst:331
  518. msgid "The top cause of this issue is PHP configured to prevent access to most directories using `open\\_basedir`_. You may want to check with your hosting provider on this."
  519. msgstr ""
  520. #: ../../intro/install.rst:335
  521. msgid "Make sure the path is correct and ends with a /. You can check the path in your database in the datalists table."
  522. msgstr ""
  523. #: ../../intro/install.rst:338
  524. msgid "If you only have ftp access to your server and created a directory but do not know the path of it, you might be able to figure it out from the www file path set in your datalists database table. Asking for help from your hosting help team is recommended at this stage."
  525. msgstr ""
  526. #: ../../intro/install.rst:347
  527. msgid "I can't validate my admin account because I don't have an email server!"
  528. msgstr ""
  529. #: ../../intro/install.rst:349
  530. msgid "While it's true that normal accounts (aside from those created from the admin panel) require their email address to be authenticated before they can log in, the admin account does not."
  531. msgstr ""
  532. #: ../../intro/install.rst:353
  533. msgid "Once you have registered your first account you will be able to log in using the credentials you have provided!"
  534. msgstr ""
  535. #: ../../intro/install.rst:357
  536. msgid "I have tried all of these suggestions and I still cannot install Elgg"
  537. msgstr ""
  538. #: ../../intro/install.rst:359
  539. msgid "It is possible that during the process of debugging your install you have broken something else. Try doing a clean install:"
  540. msgstr ""
  541. #: ../../intro/install.rst:362
  542. msgid "drop your elgg database"
  543. msgstr ""
  544. #: ../../intro/install.rst:363
  545. msgid "delete your data directory"
  546. msgstr ""
  547. #: ../../intro/install.rst:364
  548. msgid "delete the Elgg source files"
  549. msgstr ""
  550. #: ../../intro/install.rst:365
  551. msgid "start over"
  552. msgstr ""
  553. #: ../../intro/install.rst:367
  554. msgid "If that fails, seek the help of the `Elgg community`_. Be sure to mention what version of Elgg you are installing, details of your server platform, and any error messages that you may have received including ones in the error log of your server."
  555. msgstr ""
  556. #: ../../intro/install/cloud9.rst:4
  557. msgid "Installing Elgg on Cloud9 IDE"
  558. msgstr ""
  559. #: ../../intro/install/cloud9.rst:7
  560. msgid "1. Create a c9 workspace"
  561. msgstr ""
  562. #: ../../intro/install/cloud9.rst:9
  563. msgid "Go to http://c9.io"
  564. msgstr ""
  565. #: ../../intro/install/cloud9.rst:10
  566. msgid "Login with GitHub"
  567. msgstr ""
  568. #: ../../intro/install/cloud9.rst:11
  569. msgid "On the Dashboard, click \"Create new workspace\" => \"Create a new workspace\""
  570. msgstr ""
  571. #: ../../intro/install/cloud9.rst:13
  572. msgid "Choose a project name (e.g. \"elgg\")"
  573. msgstr ""
  574. #: ../../intro/install/cloud9.rst:14
  575. msgid "Choose \"PHP\" for project type"
  576. msgstr ""
  577. #: ../../intro/install/cloud9.rst:15
  578. msgid "Click \"Create\""
  579. msgstr ""
  580. #: ../../intro/install/cloud9.rst:16
  581. msgid "Wait... (~1 min for c9 workspace to be ready)"
  582. msgstr ""
  583. #: ../../intro/install/cloud9.rst:17
  584. msgid "Click \"Start editing\" for the workspace"
  585. msgstr ""
  586. #: ../../intro/install/cloud9.rst:20
  587. msgid "2. Set up the workspace for Elgg"
  588. msgstr ""
  589. #: ../../intro/install/cloud9.rst:22
  590. msgid "Run the following in cloud9's terminal:"
  591. msgstr ""
  592. #: ../../intro/install/cloud9.rst:33
  593. msgid "Configure ``engine/settings.php`` to be like so:"
  594. msgstr ""
  595. #: ../../intro/install/cloud9.rst:47
  596. msgid "3. Complete the install process from Elgg's UI"
  597. msgstr ""
  598. #: ../../intro/install/cloud9.rst:49
  599. msgid "Hit \"Run\" at the top of the page to start Apache."
  600. msgstr ""
  601. #: ../../intro/install/cloud9.rst:50
  602. msgid "Go to ``https://{workspace}-{username}.c9.io/install.php?step=database``"
  603. msgstr ""
  604. #: ../../intro/install/cloud9.rst:51
  605. msgid "Change Site URL to ``http://your-workspace.your-username.c9.io/``"
  606. msgstr ""
  607. #: ../../intro/install/cloud9.rst:52
  608. msgid "Put in the data directory path. Should be something like ``/var/..../app-root/data/elgg-data/``."
  609. msgstr ""
  610. #: ../../intro/install/cloud9.rst:54
  611. msgid "Click \"Next\""
  612. msgstr ""
  613. #: ../../intro/install/cloud9.rst:55
  614. msgid "Create the admin account"
  615. msgstr ""
  616. #: ../../intro/install/cloud9.rst:56
  617. msgid "Click \"Go to site\""
  618. msgstr ""
  619. #: ../../intro/install/cloud9.rst:57
  620. msgid "You may have to manually visit ``https://{workspace}-{username}.c9.io/`` and login with the admin credentials you just configured."
  621. msgstr ""
  622. #: ../../intro/install/easyphp.rst:4
  623. msgid "Installing Elgg on EasyPHP"
  624. msgstr ""
  625. #: ../../intro/install/easyphp.rst:6
  626. msgid "You should first be familiar with the :doc:`standard installation instructions <../install>`."
  627. msgstr ""
  628. #: ../../intro/install/easyphp.rst:8
  629. msgid "Assuming no MySQL, PHP or Apache installations exist already."
  630. msgstr ""
  631. #: ../../intro/install/easyphp.rst:9
  632. msgid "Best run as a development/test server"
  633. msgstr ""
  634. #: ../../intro/install/easyphp.rst:11
  635. msgid "Stop IIS running if installed"
  636. msgstr ""
  637. #: ../../intro/install/easyphp.rst:13
  638. msgid "Download and install the latest Easy PHP from http://www.easyphp.org"
  639. msgstr ""
  640. #: ../../intro/install/easyphp.rst:15
  641. msgid "Set up the database and point the web server to your Elgg folder (all done from the EasyPHP tray icon) - Right click EasyPHP tray icon, select \"Administration\" - A new tab is created in your browser for managing Easy PHP - Add your Elgg folder to Apache in \"Alias\" section - Click \"Manage MySQL with PhpMyAdmin\", create a database and account for Elgg"
  642. msgstr ""
  643. #: ../../intro/install/easyphp.rst:21
  644. msgid "(Ignore this step for v5.3 or later) From the tray icon go Configuration/Apache and uncomment this line::"
  645. msgstr ""
  646. #: ../../intro/install/easyphp.rst:26
  647. msgid "(Ignore this step for v5.3 or later) Change ``AllowOverride None`` to ``AllowOverride All`` in the relevant directory entry in Configuration/Apache"
  648. msgstr ""
  649. #: ../../intro/install/easyphp.rst:29
  650. msgid "(Ignore this step for v5.3 or later) From the tray icon fo Configuration/PHP and uncomment this line::"
  651. msgstr ""
  652. #: ../../intro/install/easyphp.rst:34
  653. msgid "A reboot is best Elgg should run via http://127.0.0.1"
  654. msgstr ""
  655. #: ../../intro/install/iis.rst:4
  656. msgid "Installing Elgg on IIS"
  657. msgstr ""
  658. #: ../../intro/install/iis.rst:6
  659. msgid "You can follow the :doc:`standard installation instructions <../install>` with the following caveats:"
  660. msgstr ""
  661. #: ../../intro/install/iis.rst:9
  662. msgid "When installing on IIS, the problem is that the Apache mod\\_rewrite rules will not be recognized, and this breaks the application. You need to convert the mod\\_rewrite rules to the `IIS URL Rewrite`_ module format."
  663. msgstr ""
  664. #: ../../intro/install/iis.rst:14
  665. msgid "You can do this using the IIS 7+ management console, and the \"Import Rules\" feature that will do the conversion, as described in the tutorial \"`importing Apache mod\\_rewrite rules`_\\ \"."
  666. msgstr ""
  667. #: ../../intro/install/mamp.rst:4
  668. msgid "Installing Elgg on MAMP"
  669. msgstr ""
  670. #: ../../intro/install/mamp.rst:6
  671. msgid "Follow the :doc:`standard installation instructions <../install>`."
  672. msgstr ""
  673. #: ../../intro/install/mamp.rst:8
  674. msgid "On certain versions of MAMP, Elgg will either fail to install or have intermittent problems while running."
  675. msgstr ""
  676. #: ../../intro/install/mamp.rst:11
  677. msgid "This is a known issue with MAMP and is related to the Zend Optimizer. Until Zend/MAMP have resolved this issue it is recommended that you **turn off the Zend Optimizer** in your PHP settings."
  678. msgstr ""
  679. #: ../../intro/install/mariadb.rst:4
  680. msgid "Installing Elgg on MariaDB"
  681. msgstr ""
  682. #: ../../intro/install/mariadb.rst:6
  683. msgid "You should be able to follow the :doc:`standard installation instructions <../install>`, since this DBMS is supposed to be a drop-in replacement for MySQL."
  684. msgstr ""
  685. #: ../../intro/install/mariadb.rst:9
  686. msgid "Let us know how it goes!"
  687. msgstr ""
  688. #: ../../intro/install/mariadb.rst:11
  689. msgid "Here is some historical community discussion, for reference: https://community.elgg.org/discussion/view/1455994/alternative-dbmss"
  690. msgstr ""
  691. #: ../../intro/install/nginx.rst:4
  692. msgid "Installing Elgg on Nginx"
  693. msgstr ""
  694. #: ../../intro/install/nginx.rst:6
  695. msgid "To run Elgg on Nginx, you will need to:"
  696. msgstr ""
  697. #: ../../intro/install/nginx.rst:8
  698. msgid "configure Nginx to talk to a PHP process in either CGI or FPM mode"
  699. msgstr ""
  700. #: ../../intro/install/nginx.rst:9
  701. msgid "Port the following rewrite rules"
  702. msgstr ""
  703. #: ../../intro/install/nginx.rst:13
  704. msgid "Other than that, you should be able to follow the :doc:`standard installation instructions <../install>`."
  705. msgstr ""
  706. #: ../../intro/install/ubuntu.rst:4
  707. msgid "Installing Elgg on Ubuntu Linux"
  708. msgstr ""
  709. #: ../../intro/install/ubuntu.rst:6
  710. msgid "Install the dependencies::"
  711. msgstr ""
  712. #: ../../intro/install/ubuntu.rst:14
  713. msgid "Edit ``/etc/apache2/sites_available/default`` to enable .htaccess processing (set AllowOverride to All)"
  714. msgstr ""
  715. #: ../../intro/install/ubuntu.rst:15
  716. msgid "Restart Apache: ``sudo /etc/init.d/apache2 restart``"
  717. msgstr ""
  718. #: ../../intro/install/ubuntu.rst:16
  719. msgid "Follow the :doc:`standard installation instructions <../install>`"
  720. msgstr ""
  721. #: ../../intro/install/virtual.rst:4
  722. msgid "Installing Elgg on a Virtual Host"
  723. msgstr ""
  724. #: ../../intro/install/virtual.rst:6
  725. msgid "Examples of \"virtual hosts\" are Rackspace, Amazon EC2, etc."
  726. msgstr ""
  727. #: ../../intro/install/virtual.rst:8
  728. msgid "For installation to proceed successfully, modify the .htaccess file in the root, and uncomment::"
  729. msgstr ""
  730. #: ../../intro/install/virtual.rst:13
  731. msgid "To be::"
  732. msgstr ""
  733. #: ../../intro/install/virtual.rst:17
  734. msgid "Then follow the :doc:`standard installation instructions <../install>`."
  735. msgstr ""
  736. #: ../../intro/install/xampp.rst:4
  737. msgid "Installing Elgg on XAMPP"
  738. msgstr ""
  739. #: ../../intro/install/xampp.rst:6
  740. msgid "These intructions are provided in case you want to test your Elgg installation on your local computer running Windows."
  741. msgstr ""
  742. #: ../../intro/install/xampp.rst:9
  743. msgid "Download and install XAMPP to your computer from http://www.apachefriends.org/en/xampp.html"
  744. msgstr ""
  745. #: ../../intro/install/xampp.rst:11
  746. msgid "Once the installation is completed, it will prompt you to start the XAMPP controller panel. Leave it for now."
  747. msgstr ""
  748. #: ../../intro/install/xampp.rst:13
  749. msgid "Open ``C:\\xampp\\apache\\conf\\httpd.conf`` file with notepad and uncomment these lines::"
  750. msgstr ""
  751. #: ../../intro/install/xampp.rst:19
  752. msgid "Edit the php.ini file and change ``arg_separator.output = &amp;amp;`` to ``arg_separator.output = &``"
  753. msgstr ""
  754. #: ../../intro/install/xampp.rst:21
  755. msgid "Go to ``C:\\xampp`` and double click on the xampp_start application"
  756. msgstr ""
  757. #: ../../intro/install/xampp.rst:22
  758. msgid "Go to http://localhost/"
  759. msgstr ""
  760. #: ../../intro/install/xampp.rst:23
  761. msgid "Change your server's password in the security option"
  762. msgstr ""
  763. #: ../../intro/install/xampp.rst:24
  764. msgid "Go to http://localhost/phpmyadmin and login with the username and the password of your server"
  765. msgstr ""
  766. #: ../../intro/install/xampp.rst:26
  767. msgid "Create a database called \"elgg\" in your phpmyadmin panel"
  768. msgstr ""
  769. #: ../../intro/install/xampp.rst:27
  770. msgid "Now download Elgg. Unzip it and extract to ``C:\\xampp\\htdocs\\sites\\elgg``"
  771. msgstr ""
  772. #: ../../intro/install/xampp.rst:28
  773. msgid "Create the Elgg data folder as ``C:\\xampp\\htdocs\\sites\\data``"
  774. msgstr ""
  775. #: ../../intro/install/xampp.rst:29
  776. msgid "Go to http://localhost/sites/elgg"
  777. msgstr ""
  778. #: ../../intro/install/xampp.rst:30
  779. msgid "You will be taken to the Elgg installation steps. Install it and enjoy."
  780. msgstr ""
  781. #: ../../intro/install/xampp.rst:33
  782. msgid "A note on XAMPP 1.7.4 and eAccelerator"
  783. msgstr ""
  784. #: ../../intro/install/xampp.rst:35
  785. msgid "Elgg is compatible with opcode caches and it is highly recommended that you enable a PHP opcode caching tool for a faster experience. XAMPP comes with support for eAccelerator out of the box, but unfortunately, the 1.7.4 build of XAMPP leaves out the DLL that's required. To get eAccelerator working, follow these steps:"
  786. msgstr ""
  787. #: ../../intro/install/xampp.rst:41
  788. msgid "Download the DLL from http://eac.qme.nl/eAccelerator_v1_0_svn427_for_v5_3_5-VC6.zip"
  789. msgstr ""
  790. #: ../../intro/install/xampp.rst:42
  791. msgid "Copy eAccelerator_ts.dll to ``C:\\xampp\\php\\ext\\php_eaccelerator.dll``"
  792. msgstr ""
  793. #: ../../intro/install/xampp.rst:43
  794. msgid "Uncomment this line in ``C:\\xampp\\php\\php.ini``::"
  795. msgstr ""
  796. #: ../../intro/install/xampp.rst:47
  797. msgid "Restart apache"
  798. msgstr ""
  799. #: ../../intro/install/xampp.rst:49
  800. msgid "To verify that it is on:"
  801. msgstr ""
  802. #: ../../intro/install/xampp.rst:51
  803. msgid "Go to localhost/xampp"
  804. msgstr ""
  805. #: ../../intro/install/xampp.rst:52
  806. msgid "Click on phpinfo() from the left sidebar"
  807. msgstr ""
  808. #: ../../intro/install/xampp.rst:53
  809. msgid "Ctrl+F for eaccelerator. If you get no results, eAccelerator is not active"
  810. msgstr ""
  811. #: ../../intro/license.rst:2
  812. msgid "License"
  813. msgstr ""
  814. #: ../../intro/license.rst:5
  815. msgid "MIT or GPLv2"
  816. msgstr ""
  817. #: ../../intro/license.rst:6
  818. msgid "A full Elgg package that includes the framework and a core set of plugins is available under version 2 of the `GNU General Public License`__ (GPLv2). We also make the framework (without the plugins) available under the MIT license."
  819. msgstr ""
  820. #: ../../intro/license.rst:13
  821. msgid "FAQ"
  822. msgstr ""
  823. #: ../../intro/license.rst:14
  824. msgid "The following answers are provided as a convenience to you; they are not legal counsel. Consult with a lawyer to be sure about the answers to these questions. The Elgg Foundation cannot be held responsible for decisions you make based on what you read on this page."
  825. msgstr ""
  826. #: ../../intro/license.rst:18
  827. msgid "For questions not answered here, please refer to the `official FAQ for the GPLv2`__."
  828. msgstr ""
  829. #: ../../intro/license.rst:24
  830. msgid "How much does Elgg cost?"
  831. msgstr ""
  832. #: ../../intro/license.rst:25
  833. msgid "Elgg is free to download, install, and use. If you’d like to donate, we do appreciate our `financial supporters`__!"
  834. msgstr ""
  835. #: ../../intro/license.rst:31
  836. msgid "Can I remove the Elgg branding/links?"
  837. msgstr ""
  838. #: ../../intro/license.rst:32
  839. #: ../../intro/license.rst:43
  840. msgid "Yes."
  841. msgstr ""
  842. #: ../../intro/license.rst:36
  843. msgid "Can I modify the source code?"
  844. msgstr ""
  845. #: ../../intro/license.rst:37
  846. msgid "Yes, but in general we recommend you make your modifications as plugins so that when a new version of Elgg is released, the upgrade process is as painless as possible."
  847. msgstr ""
  848. #: ../../intro/license.rst:42
  849. msgid "Can I charge my users membership fees?"
  850. msgstr ""
  851. #: ../../intro/license.rst:47
  852. msgid "If I modify Elgg, do I have to make the changes available?"
  853. msgstr ""
  854. #: ../../intro/license.rst:48
  855. msgid "No, if you are using Elgg to provide a service, you do not have to make the source available. If you distribute a modified version of Elgg, then you must include the source code for the changes."
  856. msgstr ""
  857. #: ../../intro/license.rst:53
  858. msgid "If I use Elgg to host a network, does The Elgg Foundation have any rights over my network?"
  859. msgstr ""
  860. #: ../../intro/license.rst:54
  861. msgid "No."
  862. msgstr ""
  863. #: ../../intro/license.rst:58
  864. msgid "What’s the difference between the MIT and GPL versions?"
  865. msgstr ""
  866. #: ../../intro/license.rst:59
  867. msgid "Plugins are not included with the MIT version."
  868. msgstr ""
  869. #: ../../intro/license.rst:61
  870. msgid "You can distribute a commercial product based on Elgg using the MIT version without making your modifications available."
  871. msgstr ""
  872. #: ../../intro/license.rst:63
  873. msgid "With the GPL licensed version, you have to include make your modifications of the framework public if you redistribute the framework."
  874. msgstr ""
  875. #: ../../intro/license.rst:67
  876. msgid "Why are plugins missing from the MIT version?"
  877. msgstr ""
  878. #: ../../intro/license.rst:68
  879. msgid "The plugins were developed under the GPL license, so they cannot be released under an MIT license. Also, some plugins include external dependencies that are not compatible with the MIT license."
  880. msgstr ""
  881. #: ../../intro/license.rst:73
  882. msgid "May I distribute a plugin for Elgg under a commercial license?"
  883. msgstr ""
  884. #: ../../intro/license.rst:74
  885. msgid "We believe you can, since plugins typically depend only the core framework and the framework is available under the MIT license. That said, we really recommend you consult with a lawyer on this particular issue to be absolutely sure."
  886. msgstr ""
  887. #: ../../intro/license.rst:77
  888. msgid "Note that plugins released via the community site repository must be licensed under a GPLv2-compatible license. They do not necessarily have to be GPLv2, just compatible (like MIT)."
  889. msgstr ""
  890. #: ../../intro/license.rst:82
  891. msgid "Can we build our own tool that uses Elgg and sell that tool to our clients?"
  892. msgstr ""
  893. #: ../../intro/license.rst:83
  894. msgid "Yes, but then your clients will be free to redistribute that tool under the terms of the GPLv2."
  895. msgstr ""