diff options
author | andi <andi@splitbrain.org> | 2005-06-07 21:44:56 +0200 |
---|---|---|
committer | andi <andi@splitbrain.org> | 2005-06-07 21:44:56 +0200 |
commit | dc57ef04af4d12bb589c98e7457a22c44a091815 (patch) | |
tree | 8364d81819ec7745ce4e05c149256c40704f19da /inc/lang | |
parent | 50d915fed681509e84e625a5bfd4e3602dfe98d2 (diff) | |
download | rpg-dc57ef04af4d12bb589c98e7457a22c44a091815.tar.gz rpg-dc57ef04af4d12bb589c98e7457a22c44a091815.tar.bz2 |
AJAX spellchecker #29
This is nearly a complete rewrite of the gmail like AJAX spellchecker
from http://www.broken-notebook.com/spell_checker/index.php
Here are the differences and features
* seemless integrated into DokuWiki
* no need for the pspell extension
* needs GNU aspell installed (not sure about the version I guess
0.60+ for UTF8)
* needs PHP 4.3.0+
* uses SACK for AJAX
* gets errors and suggestions in one transfer
So far only tested in Firefox. It should work in IE, Safari and
Opera 8, too. Please test and report back.
darcs-hash:20050607194456-9977f-f699144d1fd28359742b2ce0f28c839a1f4cefbb.gz
Diffstat (limited to 'inc/lang')
-rw-r--r-- | inc/lang/de/lang.php | 6 | ||||
-rw-r--r-- | inc/lang/en/lang.php | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/inc/lang/de/lang.php b/inc/lang/de/lang.php index bc6ff749a..325e46044 100644 --- a/inc/lang/de/lang.php +++ b/inc/lang/de/lang.php @@ -130,4 +130,10 @@ $lang['acl_perm8'] = 'Hochladen'; $lang['acl_perm16'] = 'Entfernen'; $lang['acl_new'] = 'Eintrag hinzufügen'; +$lang['spell_start']= 'Rechtschreibung prüfen'; +$lang['spell_stop'] = 'Bearbeiten fortsetzen'; +$lang['spell_wait'] = 'Bitte warten...'; +$lang['spell_noerr']= 'Keine Fehler gefunden'; +$lang['spell_nosug']= 'Keine Vorschläge'; + //Setup VIM: ex: et ts=2 enc=utf-8 : diff --git a/inc/lang/en/lang.php b/inc/lang/en/lang.php index ba8736114..385e5a7e0 100644 --- a/inc/lang/en/lang.php +++ b/inc/lang/en/lang.php @@ -129,4 +129,10 @@ $lang['acl_perm8'] = 'Upload'; $lang['acl_perm16'] = 'Delete'; $lang['acl_new'] = 'Add new Entry'; +$lang['spell_start']= 'Check Spelling'; +$lang['spell_stop'] = 'Resume Editing'; +$lang['spell_wait'] = 'Please wait...'; +$lang['spell_noerr']= 'No Mistakes found'; +$lang['spell_nosug']= 'No Suggestions'; + //Setup VIM: ex: et ts=2 enc=utf-8 : |