pits/translationhelper

Neos CMS Translation files manager backend plugin

Installs: 38

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 3

Open Issues: 1

Language:HTML

Type:neos-package

v0.0.15 2017-12-11 12:28 UTC

README

This backend plugin is used for managing translations in the translation files of NEOS CMS.

Installation steps

  • First Install this NEOS CMS plugin using composer. :

    composer require pits/translationhelper
  • Add following in top level Configuration/Routes.yaml just after the TYPO3 Neos route. :

    -
      name: 'pitsTranslationHelper'
      uriPattern: '<pitsTranslationHelperSubroutes>'
      defaults:
        '@package': 'PITS.TranslationHelper'
    
      subRoutes:
        'pitsTranslationHelperSubroutes':
          package: 'PITS.TranslationHelper'
  • Flush all caches using the below command :

    php ./flow neos.flow:cache:flush
  • Warm up caches using the below command :

    php ./flow neos.flow:cache:warmup
  • Open your NEOS CMS site backend, then you can see Translation Module under Management main module.

Plugin Details

  • First page of this backend plugin contains a list of packages that contain translation files.

Package List

  • If a user click any of the package, then this particular user enters into the translation files list page. The below screenshot shows the list of translation files inside Joson.Work package.

Translation Files

  • If a user click any of the translation file, then this particular user enters into the translation units list page. The below screenshot shows the list of translation units inside Main.xlf file.

Translation Units Page

uninstall step

  • Remove this package using composer. :

    composer remove pits/translationhelper
  • remove completely below mentioned route configuration code from Configuration/Routes.yaml file. :

    -
      name: 'pitsTranslationHelper'
      uriPattern: '<pitsTranslationHelperSubroutes>'
      defaults:
        '@package': 'PITS.TranslationHelper'
    
      subRoutes:
        'pitsTranslationHelperSubroutes':
          package: 'PITS.TranslationHelper'
  • Flush all caches using the below command :

    php ./flow neos.flow:cache:flush
  • Warm up caches using the below command :

    php ./flow neos.flow:cache:warmup