Step 1 - Prepare an application for right-to-left locales

In this step of the tutorial you learn how to prepare an already localized application for right-to-left locales. In the next steps you set the layout and use the Kanzi Engine API to instantiate the correct prefabs based on the selected locale.

Assets for the tutorial

The starting point of this tutorial is the <KanziWorkspace>/Tutorials/Localization/Completed/Tool_project/Localization.kzproj Kanzi Studio project.

The assets that you use in this tutorial are stored in the <KanziWorkspace>/Tutorials/Localization RTL/Assets directory:

  • Fonts directory contains the fonts that include the Arabic and Hebrew glyphs.

  • Images directory contains the images that you use for the right-to-left locales.

  • Text directory contains the po files that contain the translated text content of the starting point project.

You can find the completed tutorial in the <KanziWorkspace>/Tutorials/Localization RTL/Completed directory.

The starting point project contains the content that you need to complete this tutorial:

  • Grid Layout 2D node named IVI Grid positions the application user interface elements. When you adjust the layout for the right-to-left locales, the grid layouts in the IVI Grid enable you to smoothly move elements between rows and columns keeping their absolute positions.

    ../../_images/ivi-grid-node.png
    • Grid Layout 2D node named LocationInformation contains and positions the application content.

      ../../_images/locationinformation-node.png
    • Grid Layout 2D node named Apps contains and positions the application names shown at the bottom of the application user interface.

      ../../_images/apps-node.png
    • Toggle Button Group 2D node named Locales contains the button nodes to change locales.

      ../../_images/locales-node.png
      • Stack Layout 2D node named LocaleSelector contains the buttons for the locales created in Kanzi Studio.

        ../../_images/localeselector-node.png
  • Toggle Button 2D prefab named LocaleButton represents each locale button instance created in Kanzi Studio and the additional locales loaded using the Kanzi Engine API.

    ../../_images/localebutton-node.png

Create prefabs for the left-to-right and right-to-left layouts

In this section you create prefabs from the LocaleSelector and IVI Grid nodes. You use the LocaleSelector prefab to position the locale buttons and the IVI Grid prefabs to set the correct layout for the selected locale. In the next step you change these prefabs so that they correctly position the application user interface elements for left-to-right or right-to-left locales.

To create prefabs for the left-to-right and right-to-left layouts:

  1. In Kanzi Studio open the completed Localization tutorial project located in the <KanziWorkspace>/Tutorials/Localization/Completed/Tool_project directory.

  2. Prepare the LocaleSelector node to use it as a prefab to position the locale buttons:

    1. From the Node Tree > IVI Grid > Locales drag the LocaleSelector node to the Prefabs to create a prefab.

      When you drop a node into the Prefabs window, Kanzi Studio creates a prefab template from the node and replaces the original node with an instance of the prefab.

      ../../_images/drag-localeselector-to-prefabs.png
    2. In the Node Tree > IVI Grid > Locales delete the LocaleSelector node.

      ../../_images/delete-localeselector-node.png
    3. In the Node Tree select the Screen and in the Dictionaries delete the LocaleSelector alias.

      You do not need this alias anymore, because you use the Kanzi Engine API to set the layout for each locale.

      ../../_images/select-screen1.png ../../_images/delete-localeselector-alias.png
  3. Create the prefabs for the left-to-right and right-to-left locale layouts:

    1. From the Node Tree drag the IVI Grid node to the Prefabs, and name it IVI Grid LeftToRight.

      You use the IVI Grid LeftToRight prefab for the left-to-right locales.

      ../../_images/drag-the-duplicate-to-prefabs.png
    2. In the Prefabs select the IVI Grid LeftToRight node, press Ctrl D to duplicate the node and rename it to IVI Grid RightToLeft.

      You use the IVI Grid RightToLeft prefab for the right-to-left locales.

      ../../_images/duplicate-ivi-grid-node.png
  4. In the Node Tree > RootPage delete the IVI Grid node.

    ../../_images/delete-ivi-grid.png
  5. In the Node Tree press Alt and right-click the RootPage, create a Prefab View 2D node, and name it IVI Grid.

    You use the Prefab View 2D node to instantiate the IVI Grid LeftToRight and IVI Grid RightToLeft prefabs for the locales.

    ../../_images/create-prefab-view.png ../../_images/ivi-grid-in-project.png
  6. Select the IVI Grid Prefab View 2D node, and in the Properties add and set the Prefab Template property to IVI Grid LeftToRight.

    When you instantiate a prefab with a Prefab View node, Kanzi reads the value of the Prefab Template property and adds the prefab to which that property points as a child node of the Prefab View node.

    ../../_images/displayed-prefab.png
  7. In the Prefabs drag the LocaleSelector prefab to the IVI Grid LeftToRight > Locales node to create a prefab placeholder.

    You use the LocaleSelector prefab placeholder to instantiate the LocaleSelector for the left-to-right and right-to-left locales.

    ../../_images/localeselector-in-ivi-grid-lefttoright.png
  8. Repeat the previous step for the IVI Grid RightToLeft node to create a prefab placeholder for the LocaleSelector node.

    ../../_images/localeselector-in-ivi-grid-righttoleft.png

In the Preview when you click the locale buttons, you cannot yet see the switch between locales. You can see the locale switch when you run the application in the last step of this tutorial.

Import the po files for the right-to-left locales

In this section you import the po files that contain the translated text for the Arabic and Hebrew locales.

To import the po files for the right-to-left locales:

  1. In the Library > Localization right-click the Localization Table (Main) localization table, select Import Localization Table Manually, go to <KanziWorkspace>/Tutorials/Localization RTL/Assets/Text, and import the ar-AR.po and he-HE.po files that contain the text strings for the Arabic and Hebrew locales.

    Kanzi Studio creates locales specified in the po files and adds the translations from the po files to the localization table.

    ../../_images/import-localization-table-manually.png
  2. In the Library > Localization double-click the Localization Table (Main) and in the Localization Editor set the LocaleDisplayName:

    • For Arabic enter العربية.

    • For Hebrew enter עברית.

    LocaleDisplayName is a text resource which sets the locale name displayed in the application user interface.

    ../../_images/set-localedisplayname.png

Set images used by the right-to-left locales

In this section you create a texture brush for the application background image used by the right-to-left locales and set the images you use with those locales.

To set images used by the right-to-left locales:

  1. In the Assets click Import Assets and import all images from <KanziWorkspace>/Tutorials/Localization RTL/Assets/Images.

    You import the images you use for the Arabic and Hebrew locales and the application background image for the right-to-left locales. When you import an image, Kanzi Studio creates a texture from the imported image.

    ../../_images/assets-import-assets2.png
  2. In the Library > Materials and Textures press Alt and right-click Brushes, select Texture Brush, and name it Background RightToLeft.

    ../../_images/create-the-texture-brush.png ../../_images/name-the-background-brush.png
  3. In the Library select the Background RightToLeft brush and in the Properties set the Brush Texture to the Background RightToLeft texture.

    ../../_images/brush-texture.png
  4. In the Prefabs select the IVI Grid RightToLeft prefab and in the Properties set the Background Brush to Background RightToLeft.

    The Background RightToLeft background brush sets the application background image for the right-to-left locales.

    ../../_images/ivi-grid-righttoleft.png ../../_images/background-brush-rtl.png
  5. In the Localization Editor set the Image for the Arabic locale to Image07 and for Hebrew to Image08.

    You set the images displayed in the application user interface for the Arabic and Hebrew locales.

    ../../_images/set-textures-in-localization-editor.png

Create styles for the right-to-left locales

In this section you import fonts that contain the Arabic and Hebrew glyphs and create styles that set the font and text alignment for those locales.

To create styles for the right-to-left locales:

  1. Select File > Import > Import Fonts, click Browse, go to <KanziWorkspace>/Tutorials/Localization RTL/Assets/Fonts directory, and import the fonts that include the Arabic and Hebrew glyphs:

    • For Arabic use notonaskharabic-regular.ttf.

    • For Hebrew use notosanshebrew-regular.ttf.

    Make sure that the font you use includes all the glyphs for the text that you want to include in your Kanzi application.

    ../../_images/import-arabic-and-hebrew-fonts.png ../../_images/library-fonts.png
  2. In the Library > Styles select the LocaleStyle, press Ctrl D twice to duplicate it twice, and name the styles after the locale where you use each style.

    For example, name the styles:

    • For the Arabic locale LocaleStyle-ar

    • For the Hebrew locale LocaleStyle-he

    ../../_images/localestyles-ar-he.png
  3. Select the LocaleStyle-ar and in the Properties add and set:

    • Font Family to Noto Naskh Arabic

    • Text Concept > Text Horizontal Alignment to Right

    You use this style for the Arabic locale to set the correct font and text alignment.

    ../../_images/localestyle-ar-properties.png
  4. Repeat the previous step for the LocaleStyle-he but set the Font Family property to Noto Sans Hebrew.

    ../../_images/localestyle-he-properties.png
  5. In the Localization Table in the column for each locale where you want to apply the styles you created, double-click the LocaleStyle cell and set:

    • Arabic set LocaleStyle-ar

    • Hebrew set LocaleStyle-he

    ../../_images/all-locales-in-editor.png

< Introduction | Next step >