# SJS.AI.TRANSLATE

## Content

## Summary

**SJS.AI.TRANSLATE​**​ is a function in SpreadJS that enables translation of specified content into a target language. Powered by AI technology, it provides fast and accurate multilingual text conversion, ideal for international data processing, report translation, and similar scenarios.

## Syntax

```javascript
=SJS.AI.TRANSLATE(array, language)
```

## **​**Arguments

| Parameter | Description |
| --------- | ----------- |
| **array**<br>Required | The input text or a cell reference containing the text to be translated. |
| **language**<br>Required | The target language, such as 'Japanese,' 'Chinese,' 'English,' or 'Korean,' can also be represented as a culture like 'ja-JP,' 'zh-CN,' 'en-US,' or 'ko-KR'. |

**Remarks:**

* SJS.AI.TRANSLATE is an asynchronous formula that will return #BUSY! during the analysis process.

## Examples

Translate the contents of range `A1:B9` into Japanese

```auto
=SJS.AI.TRANSLATE(A1:B9, "ja-jp")
//or
=SJS.AI.TRANSLATE(A1:B9, "Japanese")
```

![image](https://cdn.mescius.io/document-site-files/images/7719ad0a-f083-46d7-aff6-f63e2e187c15/image.e4318c.png?width=800)