summaryrefslogtreecommitdiff
path: root/inc/lang/en/lang.php
Commit message (Collapse)AuthorAge
...
* FS#1821: Added a permalink to the diff outputGina Haeussge2010-06-27
|
* FS#1795: Restrict media manager to users with at least read accessGina Haeussge2010-06-27
| | | | on the supplied namespace.
* FS#433: Editor now uses onbeforeunload event to capture ANY leaving of itGina Haeussge2010-06-27
| | | | | | | | besides via Save or Preview button. This has been successfully tested in FF, Chrome and IE6/7/8. Opera does not support onbeforeunload, therefore the draft is kept if the user navigates away from the editor. Please test this.
* Added license chooser to installer FS#1926Andreas Gohr2010-06-26
| | | | | | | | | This adds a license chooser to the installer. The installer defaults to the more free CC-BY-SA. CC-NC-BY-SA is still the default in dokuwiki.php to keep backwards compatibility. The license array was reordered and Non-Derivative licenses removed (they don't make much sense for wiki content).
* Show subscription time on management pageAdrian Lang2010-05-04
|
* Rewrite JavaScript change checkAdrian Lang2010-03-26
|
* Remove wordblock action, issue a msg insteadAdrian Lang2010-03-09
|
* Provide ›original size‹ media insertionAdrian Lang2010-03-02
|
* extended mediamanager optionsDominik Eckelmann2010-03-02
|
* Hide secedit buttons without titleAdrian Lang2010-02-08
|
* Rewrite section edit handling according to #1860Adrian Lang2010-02-04
|
* nicer subscription stylesAndreas Gohr2010-01-20
| | | | | | Ignore-this: e1b3b815b5ebb0da320bff997c4fed4b darcs-hash:20091130130311-6e07b-03ccfc52abb3dcc0764eed5784d81f8416841328.gz
* Add german translation for subscription, fix one english subscriptionAdrian Lang2010-01-20
| | | | darcs-hash:20091127133503-e4919-0c99ac85ceaf70a5292165fd2fbe2e3961fb56e3.gz
* Some language changes in subscription managementAndreas Gohr2010-01-20
| | | | | | | | Ignore-this: 9d6c368419814c7b8cb94f778377ede7 A few language strings were dropped, others updated or added darcs-hash:20091123151813-6e07b-4d01fe03fa2c3bd5944bc05abdd05a24fb79c186.gz
* New mail subscription with digestAdrian Lang2010-01-20
|
* added missing language string for fuzzy date featuresAndreas Gohr2009-10-08
| | | | | | Ignore-this: b60709ebd1a66d3262459d37abd29259 darcs-hash:20091008081238-6e07b-9d1a55fed634ca3139ae42f8adef6f4ef6c3dfc2.gz
* New dformat() function for fuzzy date supportAndreas Gohr2009-10-07
| | | | | | | | | | | | | | | | | | Ignore-this: 7193cd788fee2c05a9068bf6edd5dc17 It is now possible to use the %f placeholder in $conf['dformat'] to add a fuzzy age string. Template developers and plugin authors should replace their strftime + $conf['dformat'] calls with calls to the new dformat() function. Example: %Y/%m/%d %H:%M (%f) produces dates like this: 2009/09/16 10:36 (3 weeks ago) darcs-hash:20091007133614-6e07b-677108d1b43928ef8fd886813e43514507b5e073.gz
* Added datetime to fuzzy age functionAndreas Gohr2009-10-07
| | | | | | | | Ignore-this: 6d0e4f4fce5911667467f92cefaabaef This still needs to be made accessible within the dtformat config option. darcs-hash:20091007122232-6e07b-bbb6f97ae84bc9aa079fe328665f8164ae119804.gz
* media file name search completedAndreas Gohr2009-09-21
| | | | | | | | | Ignore-this: c04f76bbe3d6817e876e721e4fcf7252 Note: development is part of ICKE 2.0 project http://www.icke-projekt.de darcs-hash:20090921095532-6e07b-bcf49154135c393a42352190dd929ddea3de3a29.gz
* Search capabilities for the media manager added.sarnowski2009-08-24
| | | | darcs-hash:20090824112230-8c5bd-7b8d8ba14e7533c1035b7b732983a0e3de8251a1.gz
* One click revert for managersAndreas Gohr2009-09-11
| | | | | | | | | Ignore-this: e3c9b5f941b2f1aa83ca375861203a2f This patch adds another button for users with the $conf['manager'] role when viewing an old revision. It allows them to revert to this revision with a single click. darcs-hash:20090911081833-7ad00-5a64feb7e3e1b37178295c290a6c97c3923e82e3.gz
* language string changeAndreas Gohr2009-08-27
| | | | | | Ignore-this: 8442785eb2ef884001e9f70e361b5415 darcs-hash:20090827115449-6e07b-5412512a75f2c742636f42a141d6caedaf717b27.gz
* More Link wizard cleanupAndreas Gohr2009-08-14
| | | | | | Ignore-this: 100b66fbe26d82dfd6cffba751cf6992 darcs-hash:20090814114056-7ad00-f5dc711f467f9f6d8904bb6b08d7daac4e675ec2.gz
* Language file cleanups for JS changesAndreas Gohr2009-08-12
| | | | | | | | Ignore-this: 7c8f68f29f52bc1d33fdb76ba98d2307 Removed unused string, move another string to the [js] subarray. darcs-hash:20090812191138-6e07b-65db1b7560d437fb26a1a4d0095cd768b2c9af01.gz
* enhanced <code> and <file> syntaxAndreas Gohr2009-07-26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Ignore-this: 80398f84222bec1fce56eee8f107d37a This patch enhances the code and file syntax with several new features. 1. code and file are now essentially the same and just differ in the class name. This means you now can use the file syntax with syntax highlighting as well. This also solves problems where the code to highlight already contains a <code> tag (FS#1493) 2. a filename can be given as label for the code or file block. It is specified as second parameter after the language: <code html myfile.html>...</code> If no highlighting is wanted, but a filename shall be given, you can use a dash as language: <code - somefile.foo>...</code> 3. when a filename was given (as shown above), the label links to a download of the code given in the code/file block. This is made possible by a new renderer in inc/parser/code.php. The basename of given filename is suggested as filename when downloading. darcs-hash:20090726175158-7ad00-969641a06ae1393a6d99207c3cd938fb67f23a71.gz
* Multiple enhancements in the flash uploaderAndreas Gohr2009-06-05
| | | | | | Ignore-this: 9f05194de64b5e5d47fa45bb45814f8d darcs-hash:20090604230010-7ad00-118e3b31589f882440eaa35509bf2126cf49d9a9.gz
* new headline mechanism in the toolbarAndreas Gohr2009-05-28
| | | | | | | | | | | | | | | Ignore-this: f87882b727bcf6ea067945eea0f158b1 The toolbar now features three new buttons to insert a headline. Instead of asking the user for the headline level it asks if she wants a higher, lower or equally leveled section (relative to the current one). This means the user no longer has to count in which section she currently is and encourages users to use the proper order of headline levels. To make room in the toolbar, the old buttons have been moved in a picker. darcs-hash:20090528155327-7ad00-e384cd7e45cb192657e29c875f46e3676d47f367.gz
* removed purple numbersAnika Henke2009-05-25
| | | | darcs-hash:20090525194435-f7d6d-2def694a053f7e661f88f1636903283bad7c1fa8.gz
* Purple Numbers (granular hierarchical IDs) - set $conf['purplenumbers'] and ↵Anika Henke2009-05-05
| | | | | | adjust your CSS darcs-hash:20090504222544-f7d6d-fd9e4c771c5aef32dc2927a1da4dfa4fc4f8b4f1.gz
* streamlined user/password strings in German and English translationsAndreas Gohr2009-02-05
| | | | | | Ignore-this: 9124b4b764eb1c6a1d0b2a623153866c darcs-hash:20090205165149-7ad00-a168d0f1e3fac8bf29abd0300b5b1bbedaf29723.gz
* new html_flashobject() function for simple and XHTML valid flash embedsAndreas Gohr2009-01-16
| | | | darcs-hash:20090116174140-7ad00-4eb1fe3269d10cb21819a5b220484b7114cbb4de.gz
* catch too big uploads FS#1552Andreas Gohr2009-01-16
| | | | darcs-hash:20090116135017-7ad00-5815811717b4b5eb86698e57277e9ae74c660883.gz
* Avoid editing sections of outdated pages FS#1513Andreas Gohr2008-10-16
| | | | darcs-hash:20081016181955-7ad00-5745635416542fd04dbdf67cbf043bf446e995bc.gz
* Make license selectable from config FS#312Andreas Gohr2008-10-12
| | | | darcs-hash:20081012113150-7ad00-6408da058bdb6c923159d445e03b76f54b579362.gz
* Fix a usability issue with the new information displayed in Recent Changes ↵Gina Haeussge2008-10-11
| | | | | | (FS#607) darcs-hash:20081011150603-2b4f5-144adb0ca442fae3b18b29645c6328a9563464fc.gz
* FS#1134 remove inline javascript from windows sharesMichael Klier2008-10-11
| | | | darcs-hash:20081011143946-23886-78628e3ca7ec0c40f5d288c6a9832cd52b8b083b.gz
* text change for FS#607 - display the namespace in warningAndreas Gohr2008-10-11
| | | | darcs-hash:20081011123653-7ad00-8a659f942e0e24bb3239bab615d4498bb1efcad4.gz
* Adjust behaviour of Recent Changes to mirror behaviour of IndexGina Haeussge2008-10-11
| | | | | | | Like the index, recent changes are now displayed only for the current namespace. For convenience, a link to the recent changes of the whole wiki is included in the listing. darcs-hash:20081011121539-2b4f5-a98e96550bdc4f28b401139def051b5a6beb56a6.gz
* fixed links in lang filesAnika Henke2008-08-15
| | | | darcs-hash:20080815130000-f7d6d-2ecb0a83f96507db2cd51e60db292781f9c4da8e.gz
* replaced my 1 outdated + 1 soon outdated email addressesAnika Henke2008-07-20
| | | | darcs-hash:20080720121704-f7d6d-70da167d3088ae0793ad391c139269446c8d20b3.gz
* experimental Flash based multi uploadAndreas Gohr2008-06-07
| | | | | | | | | | | | | | | | | | | | | | This patch adds experimental support for uploading multiple files in one go. This is achieved by using Flash for selecting multiple images and intitiating the HTTP upload. When Flash 8 or higher is detected, an additional icon is added to the usual upload form. Clicking it will swith the form to the Flash based upload queue. Things that need work: * Better Icon * Feedback if Flash detection works on all Flash 8 supported platforms * Progress feedback seems not to work on Linux (might be Adobe bug) * No final feedback how many images were uploaded correctly The flash sources are located in lib/_fla/ Any feedback and help would be appreciated. darcs-hash:20080606222849-7ad00-738083445af275752aaebc29bfa51430f3d94459.gz
* typo fix FS#1416Andreas Gohr2008-06-08
| | | | darcs-hash:20080608094859-7ad00-bf9981681e210f9fff2a024fc9a6a180a4488942.gz
* Add namespace changes mail notificationsGuy Brand2008-02-27
| | | | | | | | This patch lets DokuWiki send mail notifications when any page inside a namespace gets modified. Two actions are introduced: subscribens and unsubscribens and two new buttons also appear in the bundled template. darcs-hash:20080227155024-19e2d-8ce5bd66f4e870db31d6b438516599f294365ce1.gz
* Spellchecker removedAndreas Gohr2007-11-23
| | | | | | | | With spell checkers available in all modern browsers, having a spell checker in DokuWiki's core code is no longer necessary. This patch removes the spell checking feature. It will be made available as optional plugin. darcs-hash:20071123125840-7ad00-faf7aa4673421dbb3fad904ba5b46b4927a5176d.gz
* spelling fix FS#1220Andreas Gohr2007-08-09
| | | | darcs-hash:20070809212154-7ad00-bde57d95f9b61840f1cdac4d60f89bcd0ae83c4a.gz
* show diff between arbitrary revisions FS#14Andreas Gohr2007-07-18
| | | | | | | | You can now compare any choosen revision of a page to any other. Todo: add some JavaScript to avoid choosing more than two revisions darcs-hash:20070718102204-7ad00-b66c7d82d688c05bfd86e0c7dfe6d283ad555bf8.gz
* distinction between apostrophes and single quotes FS#1127Andreas Gohr2007-05-13
| | | | | | | | | | This patch adds another parser mode for apostrophes. Now single quote closing markers are handled different from apostrophes for better local typograpy support. Needs testing and languages updates. darcs-hash:20070513084024-7ad00-d20fe093a093c265d357b178e199c1596b484996.gz
* Test uploaded files for HTML tags FS#1077Andreas Gohr2007-02-24
| | | | | | | | | | | | | | | Following the problem with IE's mimetype handling described at http://www.splitbrain.org/blog/2007-02/12-internet_explorer_facilitates_cross_site_scripting this patch adds a new option (on by default) to check the first 256 bytes of uploaded files against a list of a few HTML tags and denies the upload of such a file. In rare occasions this may block harmless and valid files, but that's price we have to pay for Microsoft's stupidity. Users who need HTML uploads should disable this check. (Don't do that on open Wikis!) darcs-hash:20070224124458-7ad00-0ced616d06f563515b36a0a6871b5ba50229c946.gz
* send notify mails for uploaded filesAndreas Gohr2007-02-12
| | | | darcs-hash:20070212190216-7ad00-7be9443a13ab0e885e569f4bdae166fcd00ab836.gz
* check if uploaded content matches the given mime typeAndreas Gohr2007-02-11
| | | | | | | | A first attempt at fixing FS#1077 currently checks images and spam darcs-hash:20070211223230-7ad00-ba8186c5e848e8783acabb9bf598739617aabdf2.gz