Go to file
Ingo Schommer 7d9a802073 BUG Use new ORM methods (fixes #42)
This subtly changes the caching behaviour
where get_one() calls are replaced, results
will be no longer cached. There's no built-in core
way to cache DataList results, so for now we accept
that there's less caching due to this internal change.
2012-08-14 11:25:00 +02:00
code BUG Use new ORM methods (fixes #42) 2012-08-14 11:25:00 +02:00
css BUGFIX 3.0 compatibility: Query manipulation, CMS links, separation of settings fields, new place for language selector on tree 2012-05-15 23:04:57 +02:00
docs/en Updated screenshots, added note about UTF8 urls 2012-08-08 11:23:52 +02:00
javascript Translation of SiteConfig 2012-08-06 09:39:46 +02:00
lang Added translations for en, en_GB and german 2012-08-11 06:44:33 +02:00
tests/unit BUGFIX 3.0 compatibility: Query manipulation, CMS links, separation of settings fields, new place for language selector on tree 2012-05-15 23:04:57 +02:00
_config.php Translation of SiteConfig 2012-08-06 09:39:46 +02:00
LICENSE MINOR Initial commit, moved files from 'sapphire' and 'cms' modules 2011-03-22 22:18:48 +13:00
README.md MINOR Added link to issue tracker 2011-03-29 21:00:36 +13:00

Translatable module for SilverStripe CMS

Introduction

Allows translation of DataObject and SiteTree records into multiple languages. See /docs/en/index.md for details.

Requirements

  • SilverStripe 3.0 (both cms and sapphire modules)

Maintainers

  • Ingo Schommer

Issues

See open.silverstripe.org

TODO

This module was originally part of the SilverStripe CMS core codebase. While the bulk of the logic has been separated out into this module, there are still many places across SilverStripe CMS which this modules relies on:

  • CMSBatchActionHandler->handleAction()
  • ContentController->handleRequest()
  • ContentController->ContentLocale()
  • ErrorPage::response_for()
  • LeftAndMain->init()
  • ModelAsController->getNestedController()
  • RootURLController::get_homepage_link()
  • SearchForm
  • SiteConfig
  • SiteTree->RelativeLink()
  • SiteTree->getSiteConfig()

These APIs mostly require either hooks for an Extension subclass, or refactoring to allow better customization.