Transliteration support

dimitris rakantas 1 Reputation point
2020-07-17T15:35:31.577+00:00

Hi,
i am trying to use the transliteration api to transliterate a Japanese name. but i am getting as a response the same input(with Japanese characters). I tried the translate api with the same name and i get as response something that looks more than the transliteration response.
Does the translate api works also as transliteration for Japanese names?

example:
name(imput):スミエ ウチワ - transliteration(output):スミエ ウチワ -- translation(output):Sumie Uchiwa

name(imput):カオ アノ - transliteration(output):カオ アノ -- translation(output):Khao Ano

Azure Translator
Azure Translator
An Azure service to easily conduct machine translation with a simple REST API call.
344 questions
{count} votes

2 answers

Sort by: Most helpful
  1. romungi-MSFT 42,286 Reputation points Microsoft Employee
    2020-07-20T17:51:40.823+00:00

    @dimitrisrakantas-7029 Could you please check the response from the transliterate API now and check if it works? Here is a screenshot of the response after this was addressed by our team.

    13016-transliterate.jpg

    0 comments No comments

  2. dimitris rakantas 1 Reputation point
    2020-07-21T06:24:03.793+00:00

    @romungi-MSFT I checked and I am still getting as a response the same input in Japanese characters

    Here is an example with my call with 10 Japanese names

    URL: https://api.cognitive.microsofttranslator.com/transliterate?api-version=3.0&language=ja&fromScript=Jpan&toScript=Latn
    Method: POST
    Header: Content-Type: application/json
    Ocp-Apim-Subscription-Key: xxxxxxxxxxxxxxxxxxxxxxxxxx
    Ocp-Apim-Subscription-Region: westeurope

    Content: [ {"Text":"カオリ シバヤマ","script":"jpan"},
    {"Text":"ナオミ ウエノ","script":"jpan"},
    {"Text":"ケンタ ゴウハラ","script":"jpan"},
    {"Text":"ナホ ナガタ","script":"jpan"},
    {"Text":"ダイキ ナカモト","script":"jpan"},
    {"Text":"テツフミ オオクシ","script":"jpan"},
    {"Text":"トシユキ コジマ","script":"jpan"},
    {"Text":"ムツコ スズキ","script":"jpan"},
    {"Text":"エシン コジマ","script":"jpan"},
    {"Text":"キョウコ サトウ","script":"jpan"}
    ]

    Response: [{
    "text": "カオリ シバヤマ",
    "script": "Latn"
    }, {
    "text": "ナオミ ウエノ",
    "script": "Latn"
    }, {
    "text": "ケンタ ゴウハラ",
    "script": "Latn"
    }, {
    "text": "ナホ ナガタ",
    "script": "Latn"
    }, {
    "text": "ダイキ ナカモト",
    "script": "Latn"
    }, {
    "text": "テツフミ オオクシ",
    "script": "Latn"
    }, {
    "text": "トシユキ コジマ",
    "script": "Latn"
    }, {
    "text": "ムツコ スズキ",
    "script": "Latn"
    }, {
    "text": "エシン コジマ",
    "script": "Latn"
    }, {
    "text": "キョウコ サトウ",
    "script": "Latn"
    }]