2025-04-12- translation: Difference between revisions

From Izara Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:
==function==
==function==
===MyTranslation===
===MyTranslation===
<syntaxhighlight lang="Json">
*send reference word to i18n for output translated word follow by current using language
<syntaxhighlight lang="Javascript">
{MyTranslation("greeting")}
{MyTranslation("greeting")}
</syntaxhighlight>
</syntaxhighlight>

Revision as of 04:45, 15 April 2025

Translation Microfrontend

function

MyTranslation

  • send reference word to i18n for output translated word follow by current using language
{MyTranslation("greeting")}

S3

  • Store translations of each language in their respective directory.

S3 tree

  /translations-language
    /locales
     /{language_name} 
      -{namespace_name}.json

.json file

  • key = reference word
  • value = translated word
{
  "greeting": "Hello",
  "text": "Thank you for visiting our website.",
  "language": "Language",
  "Hi": "What's up",
  "Hello": "greeting from translation"
}


Object link

  • format
  "https://translations-language.s3.us-east-2.amazonaws.com/locales/Template:Lng/Template:Ns.json"
  • example
  "https://translations-language.s3.us-east-2.amazonaws.com/locales/en/buying.json"

Translation NPM Library