Setting up a TYPO3 page as a multilingual page

I have a TYPO3 page which is in German only. Now I also want to customize the page in English. How can I figure this out? I've read about webpage language and so on, but can't find the whole curriculum.

I am using TYPO3 6.2.9

Thank you so much

Update

## Localization menu:
lib.langMenu = HMENU
lib.langMenu {
    special = language
    special.value = 0,1,2
    special.normalWhenNoLanguage = 0
    1 = GMENU
    1.NO {
            XY = [5.w]+4, [5.h]+4
            backColor = white
            5 = IMAGE
            5.file = EXT:cms/tslib/media/flags/flag_uk.gif  || EXT:cms/tslib/media/flags/flag_de.gif
            5.offset = 2,2
    }

    1.ACT < lib.langMenu.1.NO
    1.ACT=1
    1.ACT.backColor = black

    1.USERDEF1 < lib.langMenu.1.NO
    1.USERDEF1=1
    1.USERDEF1.5.file = EXT:cms/tslib/media/flags/flag_uk.gif  || EXT:cms/tslib/media/flags/flag_de.gif
    1.USERDEF1.noLink = 0

    1.USERDEF2 < lib.langMenu.1.USERDEF1
    1.USERDEF2.backColor = green
}

      

+3


source to share


1 answer


Well,

in TYPO3 it is very easy to set up another language

All you need to do ist:

Create a new lanuguage in your root page (world) Then add the following to your root page (french for example)



[globalVar = GP:L = 1]
config.sys_language_uid = 1
config.language = fr
config.locale_all = fr_FR
[global]

      

Then translate the first page.

You can access the page using this link .

Hope it helps.

0


source







All Articles