Project

General

Profile

« Previous | Next » 

Revision 70

Added by stefan about 19 years ago

Removed support for internal HTMLArea editor. Created new stock module HTMLArea.

View differences:

trunk/wb/install/save.php
106 106
	return $default_dir_mode;
107 107
}
108 108

  
109
require_once('../framework/class.wb.php');
109
function add_slashes($input) {
110
		if ( get_magic_quotes_gpc() || ( !is_string($input) ) ) {
111
			return $input;
112
		}
113
		$output = addslashes($input);
114
		return $output;
115
	}
110 116

  
111 117
// Begin check to see if form was even submitted
112 118
// Set error if no post vars found
......
221 227
if(!isset($_POST['website_title']) OR $_POST['website_title'] == '') {
222 228
	set_error('Please enter a website title');
223 229
} else {
224
	$website_title = wb::add_slashes($_POST['website_title']);
230
	$website_title = add_slashes($_POST['website_title']);
225 231
}
226 232
// End website title code
227 233

  
......
290 296
"define('PAGE_TRASH', 'disabled');\n".
291 297
"define('HOMEPAGE_REDIRECTION', false);\n".
292 298
"define('PAGE_LANGUAGES', false);\n".
299
"define('WYSIWYG_EDITOR', 'htmlarea');\n".
293 300
"\n".
294 301
"define('MANAGE_SECTIONS', true);\n".
295 302
"define('SECTION_BLOCKS', false);\n".
trunk/wb/modules/htmlarea/uninstall.php
1
<?php
2

  
3
// Must include code to stop this file being access directly
4
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
5

  
6
// Delete the editor directory
7
rm_full_dir(WB_PATH.'/modules/htmlarea/htmlarea');
8

  
9
?>
trunk/wb/modules/htmlarea/info.php
1
<?php
2

  
3
$module_directory = 'htmlarea';
4
$module_name = 'HTMLArea';
5
$module_type = 'WYSIWYG';
6
$module_version = '0.1';
7
$module_designed_for = '2.5.x';
8
$module_author = 'Ryan Djurovich, Stefan Braunewell';
9
$module_description = 'This module allows you to edit the contents of a page using HTMLArea Editor.';
10

  
11
?>
trunk/wb/modules/htmlarea/include.php
1
<?php
2
      $WB_DIRECTORY = substr(WB_PATH, strlen($_SERVER['DOCUMENT_ROOT'])).'/media/';
3
?>
4

  
5
<script type="text/javascript">
6
  _editor_url = "<?php echo WB_URL;?>/modules/htmlarea/htmlarea/";
7
  _editor_lang = "en";
8
</script>
9

  
10
<script type="text/javascript" src="<?php echo WB_URL;?>/modules/htmlarea/htmlarea/htmlarea.js"></script>
11
<script type="text/javascript">
12
	HTMLArea.loadPlugin("ContextMenu");
13
	HTMLArea.loadPlugin("TableOperations");
14
	window.onload = function() {
15
<?php
16
	foreach($id_list AS $textarea_id)
17
	{
18
		echo 'var editor = new HTMLArea("'.$textarea_id.'"); '
19
		.'editor.registerPlugin(ContextMenu);'
20
		.'editor.registerPlugin(TableOperations);'
21
		.'editor.config.pageStyle = "body { '.stripslashes(WYSIWYG_STYLE).' }";'
22
		.'editor.generate();';
23
	}
24
?>
25
}
26
</script>
27

  
28
<?php
29
	function show_wysiwyg_editor($name,$id,$content,$width,$height) {
30
		echo '<textarea name="'.$name.'" id="'.$id.'" style="width: '.$width.'; height: '.$height.';">'.$content.'</textarea>';
31
	}
32
?>
trunk/wb/modules/htmlarea/install.php
1
<?php
2

  
3
if(defined('WB_URL')) {
4

  
5
	// Set the filename of the actual editor file
6
	$editor_file = $module_dir.'/htmlarea.zip';
7
	
8
	// Setup the PclZip object
9
	$editor_archive = new PclZip($editor_file);
10

  
11
	// Unzip FCKeditor to the module dir
12
	$list = $editor_archive->extract(PCLZIP_OPT_PATH, $module_dir);
13
	if(!$list) {
14
		$admin->print_error($MESSAGE['GENERIC']['CANNOT_UNZIP']);
15
	}
16
	// Delete the zip file
17
	if(file_exists($editor_file)) { unlink($editor_file); }
18
	
19
	// Chmod all the editors files
20
	chmod_directory_contents($module_dir.'/htmlarea', OCTAL_FILE_MODE);
21
	
22
}
23

  
24
?>
trunk/wb/modules/htmlarea/htmlarea/license.txt
1
htmlArea License (based on BSD license)
2
Copyright (c) 2002-2004, interactivetools.com, inc.
3
Copyright (c) 2003-2004 dynarch.com
4
All rights reserved.
5

  
6
Redistribution and use in source and binary forms, with or without
7
modification, are permitted provided that the following conditions are met:
8

  
9
1) Redistributions of source code must retain the above copyright notice,
10
   this list of conditions and the following disclaimer.
11

  
12
2) Redistributions in binary form must reproduce the above copyright notice,
13
   this list of conditions and the following disclaimer in the documentation
14
   and/or other materials provided with the distribution.
15

  
16
3) Neither the name of interactivetools.com, inc. nor the names of its
17
   contributors may be used to endorse or promote products derived from this
18
   software without specific prior written permission.
19

  
20
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
POSSIBILITY OF SUCH DAMAGE.
trunk/wb/modules/htmlarea/htmlarea/lang/ja-euc.js
1
// I18N constants -- Japanese EUC
2
// by Manabu Onoue -- tmocsys@tmocsys.com
3

  
4
HTMLArea.I18N = {
5

  
6
	// the following should be the filename without .js extension
7
	// it will be used for automatically load plugin language.
8
	lang: "ja-euc",
9

  
10
	tooltips: {
11
		bold:           "????",
12
		italic:         "????",
13
		underline:      "????",
14
		strikethrough:  "?Ǥ??ä???",
15
		subscript:      "???դ?ź????",
16
		superscript:    "???դ?ź????",
17
		justifyleft:    "????",
18
		justifycenter:  "?????",
19
		justifyright:   "????",
20
		justifyfull:    "????????",
21
		orderedlist:    "?ֹ??դ??վ??",
22
		unorderedlist:  "?????դ??վ??",
23
		outdent:        "????ǥ?Ȳ??",
24
		indent:         "????ǥ??????",
25
		forecolor:      "ʸ????",
26
		backcolor:      "?طʿ?",
27
		horizontalrule: "??ʿ??",
28
		createlink:     "??󥯺???",
29
		insertimage:    "????????",
30
		inserttable:    "?ơ??֥?????",
31
		htmlmode:       "HTMLɽ??????",
32
		popupeditor:    "???ǥ???????",
33
		about:          "?С?????????",
34
		help:           "?إ??",
35
		textindicator:  "???ߤΥ???????"
36
	}
37
};
trunk/wb/modules/htmlarea/htmlarea/lang/pt_br.js
1
// I18N constants
2
// Brazilian Portuguese Translation by Alex Piaz <webmaster@globalmap.com>
3

  
4
HTMLArea.I18N = {
5

  
6
	// the following should be the filename without .js extension
7
	// it will be used for automatically load plugin language.
8
	lang: "pt_br",
9

  
10
	tooltips: {
11
		bold:           "Negrito",
12
		italic:         "It?lico",
13
		underline:      "Sublinhado",
14
		strikethrough:  "Tachado",
15
		subscript:      "Subescrito",
16
		superscript:    "Sobrescrito",
17
		justifyleft:    "Alinhar ? Esquerda",
18
		justifycenter:  "Centralizar",
19
		justifyright:   "Alinhar ? Direita",
20
		justifyfull:    "Justificar",
21
		orderedlist:    "Lista Numerada",
22
		unorderedlist:  "Lista Marcadores",
23
		outdent:        "Diminuir Indenta??o",
24
		indent:         "Aumentar Indenta??o",
25
		forecolor:      "Cor da Fonte",
26
		backcolor:      "Cor do Fundo",
27
		horizontalrule: "Linha Horizontal",
28
		createlink:     "Inserir Link",
29
		insertimage:    "Inserir Imagem",
30
		inserttable:    "Inserir Tabela",
31
		htmlmode:       "Ver C?digo-Fonte",
32
		popupeditor:    "Expandir Editor",
33
		about:          "Sobre",
34
		help:           "Ajuda",
35
		textindicator:  "Estilo Atual"
36
	}
37
};
trunk/wb/modules/htmlarea/htmlarea/lang/b5.js
1
// I18N constants -- Chinese Big-5
2
// by Dave Lo -- dlo@interactivetools.com
3
HTMLArea.I18N = {
4

  
5
	// the following should be the filename without .js extension
6
	// it will be used for automatically load plugin language.
7
	lang: "b5",
8

  
9
	tooltips: {
10
		bold:           "????",
11
		italic:         "????",
12
		underline:      "???u",
13
		strikethrough:  "?R???u",
14
		subscript:      "?U??",
15
		superscript:    "?W??",
16
		justifyleft:    "??m?a??",
17
		justifycenter:  "??m?~??",
18
		justifyright:   "??m?a?k",
19
		justifyfull:    "??m???k????",
20
		orderedlist:    "???DzM??",
21
		unorderedlist:  "?L?DzM??",
22
		outdent:        "??p??e?ť?",
23
		indent:         "?[?e??e?ť?",
24
		forecolor:      "??r?C??",
25
		backcolor:      "?I???C??",
26
		horizontalrule: "?????u",
27
		createlink:     "???J?s??",
28
		insertimage:    "???J?ϧ?",
29
		inserttable:    "???J????",
30
		htmlmode:       "????HTML??l?X",
31
		popupeditor:    "??j",
32
		about:          "???? HTMLArea",
33
		help:           "????",
34
		textindicator:  "?r??Ҥl"
35
	}
36
};
trunk/wb/modules/htmlarea/htmlarea/lang/se.js
1
// Swedish version for htmlArea v3.0 - Alpha Release
2
// - translated by pat<pat@engvall.nu>
3
// term?s and licenses are equal to htmlarea!
4

  
5
HTMLArea.I18N = {
6

  
7
	// the following should be the filename without .js extension
8
	// it will be used for automatically load plugin language.
9
	lang: "se",
10

  
11
	tooltips: {
12
		bold:           "Fet",
13
		italic:         "Kursiv",
14
		underline:      "Understruken",
15
		strikethrough:  "Genomstruken",
16
		subscript:      "Neds?nkt",
17
		superscript:    "Upph?jd",
18
		justifyleft:    "V?nsterjustera",
19
		justifycenter:  "Centrera",
20
		justifyright:   "H?gerjustera",
21
		justifyfull:    "Marginaljustera",
22
		orderedlist:    "Numrerad lista",
23
		unorderedlist:  "Punktlista",
24
		outdent:        "Minska indrag",
25
		indent:         "?ka indrag",
26
		forecolor:      "Textf?rg",
27
		backcolor:      "Bakgrundsf?rg",
28
		horizontalrule: "V?gr?t linje",
29
		createlink:     "Infoga l?nk",
30
		insertimage:    "Infoga bild",
31
		inserttable:    "Infoga tabell",
32
		htmlmode:       "Visa k?llkod",
33
		popupeditor:    "Visa i eget f?nster",
34
		about:          "Om denna editor",
35
		help:           "Hj?lp",
36
		textindicator:  "Nuvarande stil"
37
	}
38
};
trunk/wb/modules/htmlarea/htmlarea/lang/es.js
1
// I18N constants
2

  
3
HTMLArea.I18N = {
4

  
5
	// the following should be the filename without .js extension
6
	// it will be used for automatically load plugin language.
7
	lang: "es",
8

  
9
	tooltips: {
10
		bold:           "Negrita",
11
		italic:         "Cursiva",
12
		underline:      "Subrayado",
13
		strikethrough:  "Tachado",
14
		subscript:      "Sub?ndice",
15
		superscript:    "Super?ndice",
16
		justifyleft:    "Alinear a la Izquierda",
17
		justifycenter:  "Centrar",
18
		justifyright:   "Alinear a la Derecha",
19
		justifyfull:    "Justificar",
20
		insertorderedlist:    "Lista Ordenada",
21
		insertunorderedlist:  "Lista No Ordenada",
22
		outdent:        "Aumentar Sangr?a",
23
		indent:         "Disminuir Sangr?a",
24
		forecolor:      "Color del Texto",
25
		hilitecolor:    "Color del Fondo",
26
		inserthorizontalrule: "L?nea Horizontal",
27
		createlink:     "Insertar Enlace",
28
		insertimage:    "Insertar Imagen",
29
		inserttable:    "Insertar Tabla",
30
		htmlmode:       "Ver Documento en HTML",
31
		popupeditor:    "Ampliar Editor",
32
		about:          "Acerca del Editor",
33
		showhelp:       "Ayuda",
34
		textindicator:  "Estilo Actual",
35
		undo:           "Deshacer",
36
		redo:           "Rehacer",
37
		cut:            "Cortar selecci?n",
38
		copy:           "Copiar selecci?n",
39
		paste:          "Pegar desde el portapapeles"
40
	},
41

  
42
	buttons: {
43
		"ok":           "Aceptar",
44
		"cancel":       "Cancelar"
45
	},
46

  
47
	msg: {
48
		"Path":         "Ruta",
49
		"TEXT_MODE":    "Esta en modo TEXTO. Use el boton [<>] para cambiar a WYSIWIG",
50
	}
51
};
trunk/wb/modules/htmlarea/htmlarea/lang/fr.js
1
// I18N constants
2
// Author: Jonathan Ernst, <Jonathan.Ernst@NetOxygen.ch>
3

  
4
// FOR TRANSLATORS:
5
//
6
//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
7
//      (at least a valid email address)
8
//
9
//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
10
//      (if this is not possible, please include a comment
11
//       that states what encoding is necessary.)
12

  
13
HTMLArea.I18N = {
14

  
15
	// the following should be the filename without .js extension
16
	// it will be used for automatically load plugin language.
17
	lang: "fr",
18

  
19
	tooltips: {
20
		bold:           "Gras",
21
		italic:         "Italique",
22
		underline:      "Soulign?",
23
		strikethrough:  "Barr?",
24
		subscript:      "Subscript",
25
		superscript:    "Superscript",
26
		justifyleft:    "Align? ? gauche",
27
		justifycenter:  "Centr?",
28
		justifyright:   "Align? ? droite",
29
		justifyfull:    "Justifi?",
30
		orderedlist:    "Num?rotation",
31
		unorderedlist:  "Puces",
32
		outdent:        "Augmenter le retrait",
33
		indent:         "Diminuer le retrait",
34
		forecolor:      "Couleur du texte",
35
		hilitecolor:    "Couleur du fond",
36
		horizontalrule: "Ligne horizontale",
37
		createlink:     "Ins?rer un lien",
38
		insertimage:    "Ins?rer une image",
39
		inserttable:    "Ins?rer un tableau",
40
		htmlmode:       "Passer au code source HTML",
41
		popupeditor:    "Agrandir l'?diteur",
42
		about:          "A propos de cet ?diteur",
43
		showhelp:       "Aide sur l'?diteur",
44
		textindicator:  "Style courant",
45
		undo:           "Annule la derni?re action",
46
		redo:           "Refait la derni?re action",
47
		cut:            "Coupe la s?lection",
48
		copy:           "Copie la s?lection",
49
		paste:          "Colle depuis le presse papiers"
50
	},
51

  
52
	buttons: {
53
		"ok":           "OK",
54
		"cancel":       "Annuler"
55
	},
56

  
57
	msg: {
58
		"Path":         "Chemin",
59
		"TEXT_MODE":    "Vous ?tes en mode texte.  Utilisez le bouton [<>] pour revenir au mode WYSIWIG."
60
	}
61
};
trunk/wb/modules/htmlarea/htmlarea/lang/nl.js
1
// I18N constants
2

  
3
// LANG: "nl", ENCODING: UTF-8 | ISO-8859-1
4
// Author: Michel Weegeerink (info@mmc-shop.nl), http://mmc-shop.nl
5

  
6
// FOR TRANSLATORS:
7
//
8
//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
9
//      (at least a valid email address)
10
//
11
//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
12
//      (if this is not possible, please include a comment
13
//       that states what encoding is necessary.)
14

  
15
HTMLArea.I18N = {
16

  
17
	// the following should be the filename without .js extension
18
	// it will be used for automatically load plugin language.
19
	lang: "nl",
20

  
21
	tooltips: {
22
		bold:					"Vet",
23
		italic:					"Cursief",
24
		underline:				"Onderstrepen",
25
		strikethrough:			"Doorhalen",
26
		subscript:				"Subscript",
27
		superscript:			"Superscript",
28
		justifyleft:			"Links uitlijnen",
29
		justifycenter:			"Centreren",
30
		justifyright:			"Rechts uitlijnen",
31
		justifyfull:			"Uitvullen",
32
		insertorderedlist:		"Nummering",
33
		insertunorderedlist:	"Opsommingstekens",
34
		outdent:				"Inspringing verkleinen",
35
		indent:					"Inspringing vergroten",
36
		forecolor:				"Tekstkleur",
37
		hilitecolor:			"Achtergrondkleur",
38
		inserthorizontalrule:	"Horizontale lijn",
39
		createlink:				"Hyperlink invoegen/aanpassen",
40
		insertimage:			"Afbeelding invoegen/aanpassen",
41
		inserttable:			"Tabel invoegen",
42
		htmlmode:				"HTML broncode",
43
		popupeditor:			"Vergroot Editor",
44
		about:					"Over deze editor",
45
		showhelp:				"HTMLArea help",
46
		textindicator:			"Huidige stijl",
47
		undo:					"Ongedaan maken",
48
		redo:					"Herhalen",
49
		cut:					"Knippen",
50
		copy:					"Kopi?ren",
51
		paste:					"Plakken",
52
		lefttoright:			"Tekstrichting links naar rechts",
53
		righttoleft:			"Tekstrichting rechts naar links"
54
	},
55

  
56
	buttons: {
57
		"ok":					"OK",
58
		"cancel":				"Annuleren"
59
	},
60

  
61
	msg: {
62
		"Path":					"Pad",
63
		"TEXT_MODE":			"Je bent in TEKST-mode. Gebruik de [<>] knop om terug te keren naar WYSIWYG-mode.",
64
      
65
		"IE-sucks-full-screen" :
66
		// translate here
67
		"Fullscreen-mode veroorzaakt problemen met Internet Explorer door bugs in de webbrowser " +
68
		"die we niet kunnen omzeilen. Hierdoor kunnen de volgende effecten optreden: verknoeide teksten, " +
69
		"een verlies aan editor-functionaliteit en/of willekeurig vastlopen van de webbrowser. " +
70
		"Als u Windows 95 of 98 gebruikt, is het zeer waarschijnlijk dat u een algemene beschermingsfout " +
71
		"('General Protection Fault') krijgt en de computer opnieuw zal moeten opstarten.\n\n" +
72
		"U bent gewaarschuwd. Druk OK als u toch nog de Fullscreen-editor wil gebruiken."
73
	},
74

  
75
	dialogs: {
76
		"Cancel"                                            : "Annuleren",
77
		"Insert/Modify Link"                                : "Hyperlink invoegen/aanpassen",
78
		"New window (_blank)"                               : "Nieuw venster (_blank)",
79
		"None (use implicit)"                               : "Geen",
80
		"OK"                                                : "OK",
81
		"Other"                                             : "Ander",
82
		"Same frame (_self)"                                : "Zelfde frame (_self)",
83
		"Target:"                                           : "Doel:",
84
		"Title (tooltip):"                                  : "Titel (tooltip):",
85
		"Top frame (_top)"                                  : "Bovenste frame (_top)",
86
		"URL:"                                              : "URL:",
87
		"You must enter the URL where this link points to"  : "Geef de URL in waar de link naar verwijst"
88
	}
89
};
90

  
trunk/wb/modules/htmlarea/htmlarea/lang/si.js
1
// I18N constants
2

  
3
// LANG: "si", ENCODING: ISO-8859-2
4
// Author: Tomaz Kregar, x_tomo_x@email.si
5

  
6
// FOR TRANSLATORS:
7
//
8
//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
9
//      (at least a valid email address)
10
//
11
//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
12
//      (if this is not possible, please include a comment
13
//       that states what encoding is necessary.)
14

  
15
HTMLArea.I18N = {
16

  
17
	// the following should be the filename without .js extension
18
	// it will be used for automatically load plugin language.
19
	lang: "si",
20

  
21
	tooltips: {
22
		bold:           "Krepko",
23
		italic:         "Le?e?e",
24
		underline:      "Pod?rtano",
25
		strikethrough:  "Pre?rtano",
26
		subscript:      "Podpisano",
27
		superscript:    "Nadpisano",
28
		justifyleft:    "Poravnaj levo",
29
		justifycenter:  "Na sredino",
30
		justifyright:   "Poravnaj desno",
31
		justifyfull:    "Porazdeli vsebino",
32
		orderedlist:    "O?tevil?evanje",
33
		unorderedlist:  "Ozna?evanje",
34
		outdent:        "Zmanj?aj zamik",
35
		indent:         "Pove?aj zamik",
36
		forecolor:      "Barva pisave",
37
		hilitecolor:    "Barva ozadja",
38
		horizontalrule: "Vodoravna ?rta",
39
		createlink:     "Vstavi hiperpovezavo",
40
		insertimage:    "Vstavi sliko",
41
		inserttable:    "Vstavi tabelo",
42
		htmlmode:       "Preklopi na HTML kodo",
43
		popupeditor:    "Pove?aj urejevalnik",
44
		about:          "Vizitka za urejevalnik",
45
		showhelp:       "Pomo? za urejevalnik",
46
		textindicator:  "Trenutni slog",
47
		undo:           "Razveljavi zadnjo akcijo",
48
		redo:           "Uveljavi zadnjo akcijo",
49
		cut:            "Izre?i",
50
		copy:           "Kopiraj",
51
		paste:          "Prilepi"
52
	},
53

  
54
	buttons: {
55
		"ok":           "V redu",
56
		"cancel":       "Prekli?i"
57
	},
58

  
59
	msg: {
60
		"Path":         "Pot",
61
		"TEXT_MODE":    "Si v tekstovnem na?inu.  Uporabi [<>] gumb za prklop nazaj na WYSIWYG."
62
	}
63
};
trunk/wb/modules/htmlarea/htmlarea/lang/pl.js
1
// I18N constants
2

  
3
HTMLArea.I18N = {
4

  
5
	// the following should be the filename without .js extension
6
	// it will be used for automatically load plugin language.
7
	lang: "pl",
8

  
9
	tooltips: {
10
		bold:           "Pogrubienie",
11
		italic:         "Pochylenie",
12
		underline:      "Podkre?lenie",
13
		strikethrough:  "Przekre?lenie",
14
		subscript:      "Indeks dolny",
15
		superscript:    "Indeks g?rny",
16
		justifyleft:    "Wyr?wnaj do lewej",
17
		justifycenter:  "Wy?rodkuj",
18
		justifyright:   "Wyr?wnaj do prawej",
19
		justifyfull:    "Wyjustuj",
20
		orderedlist:    "Numerowanie",
21
		unorderedlist:  "Wypunktowanie",
22
		outdent:        "Zmniejsz wci?cie",
23
		indent:         "Zwi?ksz wci?cie",
24
		forecolor:      "Kolor czcionki",
25
		backcolor:      "Kolor t?a",
26
		horizontalrule: "Linia pozioma",
27
		createlink:     "Wstaw adres sieci Web",
28
		insertimage:    "Wstaw obraz",
29
		inserttable:    "Wstaw tabel?",
30
		htmlmode:       "Edycja WYSIWYG/w ?r?dle strony",
31
		popupeditor:    "Pe?ny ekran",
32
		about:          "Informacje o tym edytorze",
33
		help:           "Pomoc",
34
		textindicator:  "Obecny styl"
35
	}
36
};
trunk/wb/modules/htmlarea/htmlarea/lang/no.js
1
// Norwegian version for htmlArea v3.0 - pre1
2
// - translated by ses<ses@online.no>
3
// Additional translations by H?vard Wigtil <havardw@extend.no>
4
// term?s and licenses are equal to htmlarea!
5

  
6
HTMLArea.I18N = {
7

  
8
	// the following should be the filename without .js extension
9
	// it will be used for automatically load plugin language.
10
	lang: "no",
11

  
12
	tooltips: {
13
		bold:                 "Fet",
14
		italic:               "Kursiv",
15
		underline:            "Understreket",
16
		strikethrough:        "Gjennomstreket",
17
		subscript:            "Nedsenket",
18
		superscript:          "Opph?yet",
19
		justifyleft:          "Venstrejuster",
20
		justifycenter:        "Midtjuster",
21
		justifyright:         "H?yrejuster",
22
		justifyfull:          "Blokkjuster",
23
		insertorderedlist:    "Nummerert liste",
24
		insertunorderedlist:  "Punktliste",
25
		outdent:              "Reduser innrykk",
26
		indent:               "?ke innrykk",
27
		forecolor:            "Tekstfarge",
28
		hilitecolor:          "Bakgrundsfarge",
29
		inserthorizontalrule: "Vannrett linje",
30
		createlink:           "Lag lenke",
31
		insertimage:          "Sett inn bilde",
32
		inserttable:          "Sett inn tabell",
33
		htmlmode:             "Vis kildekode",
34
		popupeditor:          "Vis i eget vindu",
35
		about:                "Om denne editor",
36
		showhelp:             "Hjelp",
37
		textindicator:        "N?v?rende stil",
38
                undo:                 "Angrer siste redigering",
39
		redo:                 "Gj?r om siste angring",
40
		cut:                  "Klipp ut omr?de",
41
		copy:                 "Kopier omr?de",
42
		paste:                "Lim inn",
43
		lefttoright:          "Fra venstre mot h?yre",
44
		righttoleft:          "Fra h?yre mot venstre"
45
	},
46
    
47
	buttons: {
48
		"ok":           "OK",
49
		"cancel":       "Avbryt"
50
	},
51

  
52
	msg: {
53
		"Path":         "Tekstvelger",
54
		"TEXT_MODE":    "Du er i tekstmodus  Klikk p? [<>] for ? g? tilbake til WYSIWIG.",
55
                "IE-sucks-full-screen" :
56
		// translate here
57
                "Visning i eget vindu har kjente problemer med Internet Explorer, " + 
58
                "p? grunn av problemer med denne nettleseren. Mulige problemer er et uryddig " + 
59
                "skjermbilde, manglende editorfunksjoner og/eller at nettleseren crasher. Hvis du bruker Windows 95 eller Windows 98 " +
60
                "er det ogs? muligheter for at Windows will crashe.\n\n" +
61
                "Trykk 'OK' hvis du vil bruke visning i eget vindu p? tross av denne advarselen."
62
	},
63

  
64
	dialogs: {
65
		"Cancel"                                            : "Avbryt",
66
		"Insert/Modify Link"                                : "Rediger lenke",
67
		"New window (_blank)"                               : "Eget vindu (_blank)",
68
		"None (use implicit)"                               : "Ingen (bruk standardinnstilling)",
69
		"OK"                                                : "OK",
70
		"Other"                                             : "Annen",
71
		"Same frame (_self)"                                : "Samme ramme (_self)",
72
		"Target:"                                           : "M?l:",
73
		"Title (tooltip):"                                  : "Tittel (tooltip):",
74
		"Top frame (_top)"                                  : "Toppramme (_top)",
75
		"URL:"                                              : "Adresse:",
76
		"You must enter the URL where this link points to"  : "Du m? skrive inn en adresse som denne lenken skal peke til"
77
	}
78
};
79

  
trunk/wb/modules/htmlarea/htmlarea/lang/cz.js
1
// I18N constants
2

  
3
// LANG: "cz", ENCODING: UTF-8 | ISO-8859-2
4
// Author: Jiri Löw, <jirilow@jirilow.com>
5

  
6
// FOR TRANSLATORS:
7
//
8
//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
9
//      (at least a valid email address)
10
//
11
//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
12
//      (if this is not possible, please include a comment
13
//       that states what encoding is necessary.)
14

  
15
HTMLArea.I18N = {
16

  
17
	// the following should be the filename without .js extension
18
	// it will be used for automatically load plugin language.
19
	lang: "cz",
20

  
21
	tooltips: {
22
		bold:           "Tučně",
23
		italic:         "Kurzíva",
24
		underline:      "Podtržení",
25
		strikethrough:  "Přeškrtnutí",
26
		subscript:      "Dolní index",
27
		superscript:    "Horní index",
28
		justifyleft:    "Zarovnat doleva",
29
		justifycenter:  "Na střed",
30
		justifyright:   "Zarovnat doprava",
31
		justifyfull:    "Zarovnat do stran",
32
		orderedlist:    "Seznam",
33
		unorderedlist:  "Odrážky",
34
		outdent:        "Předsadit",
35
		indent:         "Odsadit",
36
		forecolor:      "Barva písma",
37
		hilitecolor:    "Barva pozadí",
38
		horizontalrule: "Vodorovná čára",
39
		createlink:     "Vložit odkaz",
40
		insertimage:    "Vložit obrázek",
41
		inserttable:    "Vložit tabulku",
42
		htmlmode:       "Přepnout HTML",
43
		popupeditor:    "Nové okno editoru",
44
		about:          "O této aplikaci",
45
		showhelp:       "Nápověda aplikace",
46
		textindicator:  "Zvolený styl",
47
		undo:           "Vrátí poslední akci",
48
		redo:           "Opakuje poslední akci",
49
		cut:            "Vyjmout",
50
		copy:           "Kopírovat",
51
		paste:          "Vložit"
52
	},
53

  
54
	buttons: {
55
		"ok":           "OK",
56
		"cancel":       "Zrušit"
57
	},
58

  
59
	msg: {
60
		"Path":         "Cesta",
61
		"TEXT_MODE":    "Jste v TEXTOVÉM REŽIMU.  Použijte tlačítko [<>] pro přepnutí do WYSIWIG."
62
	}
63
};
trunk/wb/modules/htmlarea/htmlarea/lang/hu.js
1
// I18N constants
2

  
3
// LANG: "hu", ENCODING: UTF-8
4
// Author: Miklós Somogyi, <somogyine@vnet.hu>
5

  
6
// FOR TRANSLATORS:
7
//
8
//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
9
//      (at least a valid email address)
10
//
11
//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
12
//      (if this is not possible, please include a comment
13
//       that states what encoding is necessary.)
14

  
15
HTMLArea.I18N = {
16

  
17
	// the following should be the filename without .js extension
18
	// it will be used for automatically load plugin language.
19
	lang: "hu",
20

  
21
	tooltips: {
22
		bold:           "Félkövér",
23
		italic:         "Dőlt",
24
		underline:      "Aláhúzott",
25
		strikethrough:  "Áthúzott",
26
		subscript:      "Alsó index",
27
		superscript:    "Felső index",
28
		justifyleft:    "Balra zárt",
29
		justifycenter:  "Középre zárt",
30
		justifyright:   "Jobbra zárt",
31
		justifyfull:    "Sorkizárt",
32
		orderedlist:    "Számozott lista",
33
		unorderedlist:  "Számozatlan lista",
34
		outdent:        "Behúzás csökkentése",
35
		indent:         "Behúzás növelése",
36
		forecolor:      "Karakterszín",
37
		hilitecolor:    "Háttérszín",
38
		horizontalrule: "Elválasztó vonal",
39
		createlink:     "Hiperhivatkozás beszúrása",
40
		insertimage:    "Kép beszúrása",
41
		inserttable:    "Táblázat beszúrása",
42
		htmlmode:       "HTML forrás be/ki",
43
		popupeditor:    "Szerkesztő külön ablakban",
44
		about:          "Névjegy",
45
		showhelp:       "Súgó",
46
		textindicator:  "Aktuális stílus",
47
		undo:           "Visszavonás",
48
		redo:           "Újra végrehajtás",
49
		cut:            "Kivágás",
50
		copy:           "Másolás",
51
		paste:          "Beillesztés"
52
	},
53

  
54
	buttons: {
55
		"ok":           "Rendben",
56
		"cancel":       "Mégsem"
57
	},
58

  
59
	msg: {
60
		"Path":         "Hierarchia",
61
		"TEXT_MODE":    "Forrás mód. Visszaváltás [<>] gomb"
62
	}
63
};
trunk/wb/modules/htmlarea/htmlarea/lang/it.js
1
// I18N constants
2

  
3
// LANG: "it", ENCODING: UTF-8 | ISO-8859-1
4
// Author: Fabio Rotondo <fabio@rotondo.it>
5

  
6
HTMLArea.I18N = {
7

  
8
	// the following should be the filename without .js extension
9
	// it will be used for automatically load plugin language.
10
	lang: "it",
11

  
12
	tooltips: {
13
		bold:           "Grassetto",
14
		italic:         "Italico",
15
		underline:      "Sottolineato",
16
		strikethrough:  "Barrato",
17
		subscript:      "Pedice",
18
		superscript:    "Apice",
19
		justifyleft:    "Giustifica a Sinistra",
20
		justifycenter:  "Giustifica in Centro",
21
		justifyright:   "Giustifica a Destra",
22
		justifyfull:    "Giustifica Completamente",
23
		orderedlist:    "Lista Ordinata",
24
		unorderedlist:  "Lista Puntata",
25
		outdent:        "Decrementa Indentazione",
26
		indent:         "Incrementa Indentazione",
27
		forecolor:      "Colore del Carattere",
28
		hilitecolor:    "Colore di Sfondo",
29
		horizontalrule: "Linea Orizzontale",
30
		createlink:     "Inserisci un Link",
31
		insertimage:    "Inserisci un'Immagine",
32
		inserttable:    "Inserisci una Tabella",
33
		htmlmode:       "Attiva il codice HTML",
34
		popupeditor:    "Allarga l'editor",
35
		about:          "Info sull'editor",
36
		showhelp:       "Aiuto sull'editor",
37
		textindicator:  "Stile Attuale",
38
		undo:           "Elimina l'ultima modifica",
39
		redo:           "Ripristina l'ultima modifica",
40
		cut:            "Taglia l'area selezionata",
41
		copy:           "Copia l'area selezionata",
42
		paste:          "Incolla dalla memoria"
43
	},
44

  
45
	buttons: {
46
		"ok":           "OK",
47
		"cancel":       "Annulla"
48
	},
49

  
50
	msg: {
51
		"Path":         "Percorso",
52
		"TEXT_MODE":    "Sei in MODALITA' TESTO. Usa il bottone [<>] per tornare alla modalità WYSIWYG."
53
	}
54
};
trunk/wb/modules/htmlarea/htmlarea/lang/ja-jis.js
1
// I18N constants -- Japanese JIS
2
// by Manabu Onoue -- tmocsys@tmocsys.com
3

  
4
HTMLArea.I18N = {
5

  
6
	// the following should be the filename without .js extension
7
	// it will be used for automatically load plugin language.
8
	lang: "ja-jis",
9

  
10
	tooltips: {
11
		bold:           "$BB@;z(B",
12
		italic:         "$B<PBN(B",
13
		underline:      "$B2<@~(B",
14
		strikethrough:  "$BBG$A>C$7@~(B",
15
		subscript:      "$B2<IU$-E:$(;z(B",
16
		superscript:    "$B>eIU$-E:$(;z(B",
17
		justifyleft:    "$B:84s$;(B",
18
		justifycenter:  "$BCf1{4s$;(B",
19
		justifyright:   "$B1&4s$;(B",
20
		justifyfull:    "$B6QEy3dIU(B",
21
		orderedlist:    "$BHV9fIU$-2U>r=q$-(B",
22
		unorderedlist:  "$B5-9fIU$-2U>r=q$-(B",
23
		outdent:        "$B%$%s%G%s%H2r=|(B",
24
		indent:         "$B%$%s%G%s%H@_Dj(B",
25
		forecolor:      "$BJ8;z?'(B",
26
		backcolor:      "$BGX7J?'(B",
27
		horizontalrule: "$B?eJ?@~(B",
28
		createlink:     "$B%j%s%/:n@.(B",
29
		insertimage:    "$B2hA|A^F~(B",
30
		inserttable:    "$B%F!<%V%kA^F~(B",
31
		htmlmode:       "HTML$BI=<(@ZBX(B",
32
		popupeditor:    "$B%(%G%#%?3HBg(B",
33
		about:          "$B%P!<%8%g%s>pJs(B",
34
		help:           "$B%X%k%W(B",
35
		textindicator:  "$B8=:_$N%9%?%$%k(B"
36
	}
37
};
trunk/wb/modules/htmlarea/htmlarea/lang/ja-utf8.js
1
// I18N constants -- Japanese UTF-8
2
// by Manabu Onoue -- tmocsys@tmocsys.com
3

  
4
HTMLArea.I18N = {
5

  
6
	// the following should be the filename without .js extension
7
	// it will be used for automatically load plugin language.
8
	lang: "ja-utf8",
9

  
10
	tooltips: {
11
		bold:           "太字",
12
		italic:         "斜体",
13
		underline:      "下線",
14
		strikethrough:  "打ち消し線",
15
		subscript:      "下付き添え字",
16
		superscript:    "上付き添え字",
17
		justifyleft:    "左寄せ",
18
		justifycenter:  "中央寄せ",
19
		justifyright:   "右寄せ",
20
		justifyfull:    "均等割付",
21
		orderedlist:    "番号付き箇条書き",
22
		unorderedlist:  "記号付き箇条書き",
23
		outdent:        "インデント解除",
24
		indent:         "インデント設定",
25
		forecolor:      "文字色",
26
		backcolor:      "背景色",
27
		horizontalrule: "水平線",
28
		createlink:     "リンク作成",
29
		insertimage:    "画像挿入",
30
		inserttable:    "テーブル挿入",
31
		htmlmode:       "HTML表示切替",
32
		popupeditor:    "エディタ拡大",
33
		about:          "バージョン情報",
34
		help:           "ヘルプ",
35
		textindicator:  "現在のスタイル"
36
	}
37
};
trunk/wb/modules/htmlarea/htmlarea/lang/lt.js
1
// I18N constants
2

  
3
// LANG: "lt", ENCODING: UTF-8
4
// Author: Jaroslav Šatkevič, <jaro@akl.lt>
5

  
6

  
7
HTMLArea.I18N = {
8

  
9
	// the following should be the filename without .js extension
10
	// it will be used for automatically load plugin language.
11
	lang: "lt",
12

  
13
	tooltips: {
14
		bold:           "Paryškinti",
15
		italic:         "Kursyvas",
16
		underline:      "Pabraukti",
17
		strikethrough:  "Perbraukti",
18
		subscript:      "Apatinis indeksas",
19
		superscript:    "Viršutinis indeksas",
20
		justifyleft:    "Lygiavimas pagal kairę",
21
		justifycenter:  "Lygiavimas pagal centrą",
22
		justifyright:   "Lygiavimas pagal dešinę",
23
		justifyfull:    "Lygiuoti pastraipą",
24
		orderedlist:    "Numeruotas sąrašas",
25
		unorderedlist:  "Suženklintas sąrašas",
26
		outdent:        "Sumažinti paraštę",
27
		indent:         "Padidinti paraštę",
28
		forecolor:      "Šrifto spalva",
29
		hilitecolor:    "Fono spalva",
30
		horizontalrule: "Horizontali linija",
31
		createlink:     "Įterpti nuorodą",
32
		insertimage:    "Įterpti paveiksliuką",
33
		inserttable:    "Įterpti lentelę",
34
		htmlmode:       "Perjungti į HTML/WYSIWYG",
35
		popupeditor:    "Išplėstas redagavimo ekranas/Enlarge Editor",
36
		about:          "Apie redaktorių",
37
		showhelp:       "Pagalba naudojant redaktorių",
38
		textindicator:  "Dabartinis stilius",
39
		undo:           "Atšaukia paskutini jūsų veiksmą",
40
		redo:           "Pakartoja paskutinį atšauktą jūsų veiksmą",
41
		cut:            "Iškirpti",
42
		copy:           "Kopijuoti",
43
		paste:          "Įterpti"
44
	},
45

  
46
	buttons: {
47
		"ok":           "OK",
48
		"cancel":       "Atšaukti"
49
	},
50

  
51
	msg: {
52
		"Path":         "Kelias",
53
		"TEXT_MODE":    "Jūs esete teksto režime.  Naudokite [<>] mygtuką grįžimui į WYSIWYG."
54
	}
55
};
trunk/wb/modules/htmlarea/htmlarea/lang/ro.js
1
// I18N constants
2

  
3
// LANG: "ro", ENCODING: UTF-8
4
// Author: Mihai Bazon, http://dynarch.com/mishoo
5

  
6
// FOR TRANSLATORS:
7
//
8
//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
9
//      (at least a valid email address)
10
//
11
//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
12
//      (if this is not possible, please include a comment
13
//       that states what encoding is necessary.)
14

  
15
HTMLArea.I18N = {
16

  
17
	// the following should be the filename without .js extension
18
	// it will be used for automatically load plugin language.
19
	lang: "ro",
20

  
21
	tooltips: {
22
		bold:           "Îngroşat",
23
		italic:         "Italic",
24
		underline:      "Subliniat",
25
		strikethrough:  "Tăiat",
26
		subscript:      "Indice jos",
27
		superscript:    "Indice sus",
28
		justifyleft:    "Aliniere la stânga",
29
		justifycenter:  "Aliniere pe centru",
30
		justifyright:   "Aliniere la dreapta",
31
		justifyfull:    "Aliniere în ambele părţi",
32
		orderedlist:    "Listă ordonată",
33
		unorderedlist:  "Listă marcată",
34
		outdent:        "Micşorează alineatul",
35
		indent:         "Măreşte alineatul",
36
		forecolor:      "Culoarea textului",
37
		hilitecolor:    "Culoare de fundal",
38
		horizontalrule: "Linie orizontală",
39
		createlink:     "Inserează/modifică link",
40
		insertimage:    "Inserează/modifică imagine",
41
		inserttable:    "Inserează un tabel",
42
		htmlmode:       "Sursa HTML / WYSIWYG",
43
		popupeditor:    "Maximizează editorul",
44
		about:          "Despre editor",
45
		showhelp:       "Documentaţie (devel)",
46
		textindicator:  "Stilul curent",
47
		undo:           "Anulează ultima acţiune",
48
		redo:           "Reface ultima acţiune anulată",
49
		cut:            "Taie în clipboard",
50
		copy:           "Copie în clipboard",
51
		paste:          "Aduce din clipboard",
52
		lefttoright:    "Direcţia de scriere: stânga - dreapta",
53
		righttoleft:    "Direcţia de scriere: dreapta - stânga"
54
	},
55

  
56
	buttons: {
57
		"ok":           "OK",
58
		"cancel":       "Anulează"
59
	},
60

  
61
	msg: {
62
		"Path":         "Calea",
63
		"TEXT_MODE":    "Eşti în modul TEXT.  Apasă butonul [<>] pentru a te întoarce în modul WYSIWYG."
64
	},
65

  
66
	dialogs: {
67
		"Cancel"                                            : "Renunţă",
68
		"Insert/Modify Link"                                : "Inserează/modifcă link",
69
		"New window (_blank)"                               : "Fereastră nouă (_blank)",
70
		"None (use implicit)"                               : "Nimic (foloseşte ce-i implicit)",
71
		"OK"                                                : "Acceptă",
72
		"Other"                                             : "Alt target",
73
		"Same frame (_self)"                                : "Aceeaşi fereastră (_self)",
74
		"Target:"                                           : "Ţinta:",
75
		"Title (tooltip):"                                  : "Titlul (tooltip):",
76
		"Top frame (_top)"                                  : "Fereastra principală (_top)",
77
		"URL:"                                              : "URL:",
78
		"You must enter the URL where this link points to"  : "Trebuie să introduceţi un URL"
79
	}
80
};
trunk/wb/modules/htmlarea/htmlarea/lang/lv.js
1
// I18N constants
2

  
3
// LANG: "lv", ENCODING: UTF-8 | ISO-8859-1
4
// Author: Mihai Bazon, http://dynarch.com/mishoo
5
// Translated by: Janis Klavins, <janis.klavins@devia.lv>
6

  
7
HTMLArea.I18N = {
8

  
9
	// the following should be the filename without .js extension
10
	// it will be used for automatically load plugin language.
11
	lang: "lv",
12

  
13
	tooltips: {
14
		bold:           "Trekniem burtiem",
15
		italic:         "Kurs?v?",
16
		underline:      "Pasv?trots",
17
		strikethrough:  "P?rsv?trots",
18
		subscript:      "Novietot zem rindas",
19
		superscript:    "Novietot virs rindas",
20
		justifyleft:    "Izl?dzin?t pa kreisi",
21
		justifycenter:  "Izl?dzin?t centr?",
22
		justifyright:   "Izl?dzin?t pa labi",
23
		justifyfull:    "Izl?dzin?t pa visu lapu",
24
		orderedlist:    "Numur?ts saraksts",
25
		unorderedlist:  "Saraksts",
26
		outdent:        "Samazin?t atk?pi",
27
		indent:         "Palielin?t atk?pi",
28
		forecolor:      "Burtu kr?sa",
29
		hilitecolor:    "Fona kr?sa",
30
		horizontalrule: "Horizont?la atdal?t?jsv?tra",
31
		createlink:     "Ievietot hipersaiti",
32
		insertimage:    "Ievietot att?lu",
33
		inserttable:    "Ievietot tabulu",
34
		htmlmode:       "Skat?t HTML kodu",
35
		popupeditor:    "Palielin?t Redi??t?ju",
36
		about:          "Par ?o redi??t?ju",
37
		showhelp:       "Redi??t?ja pal?gs",
38
		textindicator:  "Patreiz?jais stils",
39
		undo:           "Atcelt p?d?jo darb?bu",
40
		redo:           "Atk?rtot p?d?jo darb?bu",
41
		cut:            "Izgriezt iez?m?to",
42
		copy:           "Kop?t iez?m?to",
43
		paste:          "Ievietot iez?m?to"
44
	},
45

  
46
	buttons: {
47
		"ok":           "Labi",
48
		"cancel":       "Atcelt"
49
	},
50

  
51
	msg: {
52
		"Path":         "Ce??",
53
		"TEXT_MODE":    "J?s patlaban darbojaties TEKSTA RE??M?. Lai p?rietu atpaka? uz GRAFISKO RE??MU (WYSIWIG), lietojiet [<>] pogu."
54
	}
55
};
trunk/wb/modules/htmlarea/htmlarea/lang/vn.js
1
// I18N constants : Vietnamese
2
// LANG: "en", ENCODING: UTF-8
3
// Author: Nguyễn Đình Nam, <hncryptologist@yahoo.com>
4

  
5
HTMLArea.I18N = {
6

  
7
	// the following should be the filename without .js extension
8
	// it will be used for automatically load plugin language.
9
	lang: "vn",
10

  
11
	tooltips: {
12
		bold:           "Đậm",
13
		italic:         "Nghiêng",
14
		underline:      "Gạch Chân",
15
		strikethrough:  "Gạch Xóa",
16
		subscript:      "Viết Xuống Dưới",
17
		superscript:    "Viết Lên Trên",
18
		justifyleft:    "Căn Trái",
19
		justifycenter:  "Căn Giữa",
20
		justifyright:   "Căn Phải",
21
		justifyfull:    "Căn Đều",
22
		orderedlist:    "Danh Sách Có Thứ Tự",
23
		unorderedlist:  "Danh Sách Phi Thứ Tự",
24
		outdent:        "Lùi Ra Ngoài",
25
		indent:         "Thụt Vào Trong",
26
		forecolor:      "Màu Chữ",
27
		backcolor:      "Màu Nền",
28
		horizontalrule: "Dòng Kẻ Ngang",
29
		createlink:     "Tạo Liên Kết",
30
		insertimage:    "Chèn Ảnh",
31
		inserttable:    "Chèn Bảng",
32
		htmlmode:       "Chế Độ Mã HTML",
33
		popupeditor:    "Phóng To Ô Soạn Thảo",
34
		about:          "Tự Giới Thiệu",
35
		showhelp:       "Giúp Đỡ",
36
		textindicator:  "Định Dạng Hiện Thời",
37
		undo:           "Undo",
38
		redo:           "Redo",
39
		cut:            "Cắt",
40
		copy:           "Copy",
41
		paste:          "Dán"
42
	},
43
	buttons: {
44
		"ok":           "OK",
45
		"cancel":       "Hủy"
46
	},
47
	msg: {
48
		"Path":         "Đường Dẫn",
49
		"TEXT_MODE":    "Bạn đang ở chế độ text.  Sử dụng nút [<>] để chuyển lại chế độ WYSIWIG."
50
	}
51
};
trunk/wb/modules/htmlarea/htmlarea/lang/da.js
1
// danish version for htmlArea v3.0 - Alpha Release
2
// - translated by rene<rene@laerke.net>
3
// term?s and licenses are equal to htmlarea!
4

  
5
HTMLArea.I18N = {
6

  
7
	// the following should be the filename without .js extension
8
	// it will be used for automatically load plugin language.
9
	lang: "da",
10

  
11
	tooltips: {
12
		bold:           "Fed",
13
		italic:         "Kursiv",
14
		underline:      "Understregning",
15
		strikethrough:  "Overstregning ",
16
		subscript:      "S?nket skrift",
17
		superscript:    "H?vet skrift",
18
		justifyleft:    "Venstrejuster",
19
		justifycenter:  "Centrer",
20
		justifyright:   "H?jrejuster",
21
		justifyfull:    "Lige margener",
22
		orderedlist:    "Opstilling med tal",
23
		unorderedlist:  "Opstilling med punkttegn",
24
		outdent:        "Formindsk indrykning",
25
		indent:         "For?g indrykning",
26
		forecolor:      "Skriftfarve",
27
		backcolor:      "Baggrundsfarve",
28
		horizontalrule: "Horisontal linie",
29
		createlink:     "Inds?t hyperlink",
30
		insertimage:    "Inds?t billede",
31
		inserttable:    "Inds?t tabel",
32
		htmlmode:       "HTML visning",
33
		popupeditor:    "Vis editor i popup",
34
		about:          "Om htmlarea",
35
		help:           "Hj?lp",
36
		textindicator:  "Anvendt stil"
37
	}
38
};
trunk/wb/modules/htmlarea/htmlarea/lang/ru.js
1
// I18N constants
2

  
3
// LANG: "ru", ENCODING: UTF-8 | ISO-8859-1
4
// Author: Yulya Shtyryakova, <yulya@vdcom.ru>
5

  
6
// FOR TRANSLATORS:
7
//
8
//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
9
//      (at least a valid email address)
10
//
11
//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
12
//      (if this is not possible, please include a comment
13
//       that states what encoding is necessary.)
14

  
15
HTMLArea.I18N = {
16

  
17
	// the following should be the filename without .js extension
18
	// it will be used for automatically load plugin language.
19
	lang: "ru",
20

  
21
	tooltips: {
22
		bold:           "Полужирный",
23
		italic:         "Наклонный",
24
		underline:      "Подчеркнутый",
25
		strikethrough:  "Перечеркнутый",
26
		subscript:      "Нижний индекс",
27
		superscript:    "Верхний индекс",
28
		justifyleft:    "По левому краю",
29
		justifycenter:  "По центру",
30
		justifyright:   "По правому краю",
31
		justifyfull:    "По ширине",
32
		insertorderedlist:    "Нумерованный лист",
33
		insertunorderedlist:  "Маркированный лист",
34
		outdent:        "Уменьшить отступ",
35
		indent:         "Увеличить отступ",
36
		forecolor:      "Цвет шрифта",
37
		hilitecolor:    "Цвет фона",
38
		horizontalrule: "Горизонтальный разделитель",
39
		createlink:     "Вставить гиперссылку",
40
		insertimage:    "Вставить изображение",
41
		inserttable:    "Вставить таблицу",
42
		htmlmode:       "Показать Html-код",
43
		popupeditor:    "Увеличить редактор",
44
		about:          "О редакторе",
45
		showhelp:       "Помощь",
46
		textindicator:  "Текущий стиль",
47
		undo:           "Отменить",
48
		redo:           "Повторить",
49
		cut:            "Вырезать",
50
		copy:           "Копировать",
51
		paste:          "Вставить"
52
	},
53

  
54
	buttons: {
55
		"ok":           "OK",
56
		"cancel":       "Отмена"
57
	},
58

  
59
	msg: {
60
		"Path":         "Путь",
61
		"TEXT_MODE":    "Вы в режиме отображения Html-кода. нажмите кнопку [<>], чтобы переключиться в визуальный режим."
62
	}
63
};
trunk/wb/modules/htmlarea/htmlarea/lang/gb.js
1
// I18N constants -- Chinese GB
2
// by Dave Lo -- dlo@interactivetools.com
3
HTMLArea.I18N = {
4

  
5
	// the following should be the filename without .js extension
6
	// it will be used for automatically load plugin language.
7
	lang: "gb",
8

  
9
	tooltips: {
10
		bold:           "????",
11
		italic:         "б??",
12
		underline:      "????",
13
		strikethrough:  "ɾ????",
14
		subscript:      "?±?",
15
		superscript:    "?ϱ?",
16
		justifyleft:    "λ?ÿ???",
17
		justifycenter:  "λ?þ???",
18
		justifyright:   "λ?ÿ???",
19
		justifyfull:    "λ??????ƽ??",
20
		orderedlist:    "˳???嵥",
21
		unorderedlist:  "?????嵥",
22
		outdent:        "??С??ǰ?հ?",
23
		indent:         "?ӿ???ǰ?հ?",
24
		forecolor:      "??????ɫ",
25
		backcolor:      "??????ɫ",
26
		horizontalrule: "ˮƽ??",
27
		createlink:     "????????",
28
		insertimage:    "????ͼ??",
29
		inserttable:    "???????",
30
		htmlmode:       "?л?HTMLԭʼ??",
31
		popupeditor:    "?Ŵ?",
32
		about:          "??? HTMLArea",
33
		help:           "˵??",
34
		textindicator:  "????????"
35
	}
36
};
trunk/wb/modules/htmlarea/htmlarea/lang/de.js
1
// german version for htmlArea v3.0 - Alpha Release
2
// - translated by AtK<atk@chello.at>
3
// term?s and licenses are equal to htmlarea!
4
// translation improved by broxx<broxx@broxx.com>
5

  
6
HTMLArea.I18N = {
7

  
8
	// the following should be the filename without .js extension
9
	// it will be used for automatically load plugin language.
10
	lang: "de",
11

  
12
	tooltips: {
13
		bold:           "Fett",
14
		italic:         "Kursiv",
15
		underline:      "Unterstrichen",
16
		strikethrough:  "Durchgestrichen",
17
		subscript:      "Hochgestellt",
18
		superscript:    "Tiefgestellt",
19
		justifyleft:    "Links ausrichten",
20
		justifycenter:  "Zentrieren",
21
		justifyright:   "Rechts ausrichten",
22
		justifyfull:    "Blocksatz",
23
		orderedlist:    "Nummerierung",
24
		unorderedlist:  "Aufzaehlungszeichen",
25
		outdent:        "Einzug verkleinern",
26
		indent:         "Einzug vergr?ssern",
27
		forecolor:      "Text Farbe",
28
		hilitecolor:    "Hintergrund Farbe",
29
		horizontalrule: "Horizontale Linie",
30
		createlink:     "Hyperlink einfuegen",
31
		insertimage:    "Bild einfuegen",
32
		inserttable:    "Tabelle einfuegen",
33
		htmlmode:       "HTML Modus",
34
		popupeditor:    "Editor im Popup ?ffnen",
35
		about:          "Ueber HtmlArea",
36
		showhelp:       "Hilfe",
37
		textindicator:  "derzeitiger Stil",
38
		undo:           "Rueckgaengig",
39
		redo:           "Wiederholen",
40
		cut:            "Ausschneiden",
41
		copy:           "Kopieren",
42
		paste:          "Einfuegen"
43
	},
44
  
45
 buttons: {
46
		"ok":           "OK",
47
		"cancel":       "Abbrechen"
48
	},
49

  
50
	msg: {
51
		"Path":         "Pfad",
52
		"TEXT_MODE":    "Du befindest dich im HTML Modus.  Benuetze die [<>] Schaltflaeche um in den WYSIWIG-Modus zu wechseln."
53
	}
54
};
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff