Updated screenshots, added note about UTF8 urls

This commit is contained in:
Ingo Schommer 2012-08-08 11:23:52 +02:00
parent c80f366dd6
commit 84f5956921
6 changed files with 5 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 78 KiB

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 100 KiB

View File

@ -12,10 +12,6 @@ with minimal interference.
Warning: If you're upgrading from a SilverStripe version prior to 2.3.2, please migrate your datamodel before using the
extension (see below).
## Requirements
*SilverStripe 2.3.2*
## Screenshots
![](_images/translatable4_small.png)
@ -141,9 +137,12 @@ through set_reading_locale(). Get the translated parent first.
$germanParent = $englishParent->getTranslation('de_DE');
$germanParent->Children();
By default, the URLs generated for a page can only contain western characters ("ASCII").
You can configure this to accept the whole range of UTF8 characters as well.
This is a SilverStripe core feature, rather than anything specific to this module.
Add the following to your `mysite/_config.php`:
URLSegmentFilter::$default_allow_multibyte = true;
### Translating custom properties