translation
Service icon

Translation

Stable version 1.0.1 (Compatible with OutSystems 11)
Uploaded
 on 18 Jun (4 weeks ago)
 by 
0.0
 (0 ratings)
translation

Translation

Documentation
1.0.0

🔧 Server Action Descriptions

1. TranslateToArabic

  • Purpose: Converts English text input into Arabic.

  • Input Parameter:

    • EnglishText (Text): The English content that needs to be translated.

  • Output Parameter:

    • ArabicText (Text): The Arabic translation of the input text.

  • Typical Use Case: Used when displaying translated Arabic content to users based on English data, such as in multilingual web or mobile applications.

  • Possible Implementation: May call an external API like Google Translate, Microsoft Azure Translator, or use internal translation logic or dictionaries.

2. TranslateToEnglish

  • Purpose: Converts Arabic text input into English.

  • Input Parameter:

    • ArabicText (Text): The Arabic content that needs to be translated.

  • Output Parameter:

    • EnglishText (Text): The English translation of the input text.

  • Typical Use Case: Helpful when user input or content is in Arabic and needs to be understood or processed in English, such as in admin panels or multilingual databases.

  • Possible Implementation: Similar to the above, it may rely on a translation API or custom translation algorithms.