Skip to content

orbinson/aem-dictionary-translator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maven Central GitHub Build and test for AEM 6.5 Build with AEM IDE

AEM Dictionary Translator

AEM TouchUI tool to translate labels for i18n internationalisation in AEM on premise or AEM as a Cloud Service. The AEM Dictionary Translator is a replacement for the ClassicUI translator which is not available on AEMaaCS.

The AEM Dictionary Translator is available under Tools > Translation > Dictionary.

Dictionaries

Labels

Installation

To deploy the AEM Dictionary Translator as an embedded package you need to update your pom.xml

  1. Add the aem-dictionary-translator.all to the <dependencies> section

    <dependency>
      <groupId>be.orbinson.aem</groupId>
      <artifactId>aem-dictionary-translator.all</artifactId>
      <version>1.0.6</version>
      <type>zip</type>
    </dependency>
  2. Embed the package in with the filevault-package-maven-plugin in the <embeddeds> section

    <embedded>
       <groupId>be.orbinson.aem</groupId>
       <artifactId>aem-dictionary-translator.all</artifactId>
       <target>/apps/vendor-packages/content/install</target>
    </embedded>

Development

To build all the modules run in the project root directory the following command

mvn clean install

To build all the modules and deploy the all package to a local instance of AEM, run in the project root directory the following command

mvn clean install -PautoInstallSinglePackage

This project follows the AEM Archetype conventions so for further guidelines consult the available documentation.