DEPRECATION WARNING

This documentation is not using the current rendering mechanism and is probably outdated. The extension maintainer should switch to the new system. Details on how to use the rendering mechanism can be found here.

EXT: tinymce_languages

Created:2006-04-05T09:44:51
Changed by:Thomas Allmer
Changed:2010-01-25T00:25:45.490000000
Email:rupi@gmx.li
Info 2:
Info 3:
Info 4:

EXT: tinymce_languages

Extension Key: tinymce_languages

Copyright 2008-2010,Thomas Allmer, <typo3@webteam.at>,

This document is published under the Open Content License

available from http://www.opencontent.org/opl.shtml

The content of this document is related to TYPO3

- a GNU/GPL CMS/Framework available from www.typo3.com

Table of Contents

EXT: tinyrte_mce 1

Introduction 1

What does it do? 1

Introduction

What does it do?

This Extension just includes all Languages files available on http://tinymce.moxiecode.com/download_i18n.php .

Currently only used by tinymce_rte but could be used by any other TinyMCE port.

Create you own extension with just the languages you want

  • create an extension with the kickstarter (only set General info and the extension key)
  • create a folder “tiny_mce” in the root of the extension
  • head over to the language link posted above and download the things you want
  • just copy all the files in the tiny_mce folder
  • configure your rte to use the new extension or add the following in your extension

ext_localconf.php

<?php

if (!defined ("TYPO3_MODE")) die ("Access denied.");

// allow the extension to be used automatically by tinymce_rte

t3lib_extMgm::addPageTSConfig('

RTE.pageLoad.languagesExtension = tinymce_languages

RTE.default.languagesExtension = tinymce_languages

');

?>

img-1 EXT: tinymce_languages - 2