Installation

  1. Using composer

    1. composer require friendsoftypo3/crowdin.
    2. ./vendor/bin/typo3 crowdin:enable.
  2. Non composer

    1. Download the extension from TER.
    2. ./typo3/sysext/core/bin/typo3 crowdin:enable.

Additional information

The enable command above writes the following information to LocalConfiguration.php / settings.php:

$GLOBALS['TYPO3_CONF_VARS']['SYS']['localization']['locales']['user']['t3'] = 'Crowdin In-Context Localization';
$GLOBALS['TYPO3_CONF_VARS']['SYS']['fluid']['namespaces'] = [
    'f' => [
        'TYPO3\\CMS\\Fluid\\ViewHelpers',
        'TYPO3Fluid\\Fluid\\ViewHelpers',
        'FriendsOfTYPO3\\Crowdin\\ViewHelpers\\Override',
    ],
];
Copied!