首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何将文本从英语翻译成德语

如何将文本从英语翻译成德语
EN

Stack Overflow用户
提问于 2017-11-25 18:38:17
回答 1查看 2.4K关注 0票数 0

我想把课文从英语翻译成德语。音译只是从英语翻译成除德语以外的另一种语言language.How我能从英语翻译成德语吗?

下面是我使用的代码:

代码语言:javascript
复制
<html>

<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script type="text/javascript" src="https://www.google.com/jsapi">
    </script>
    <script type="text/javascript">
        // Load the Google Transliterate API
        google.load("elements", "1", {
            packages: "transliteration"
        });

        function onLoad() {
            var options = {
                sourceLanguage: 'en',
                destinationLanguage: ['hi', 'kn', 'ml', 'ta', 'te'],
                shortcutKey: 'ctrl+g',
                transliterationEnabled: true
            };

            // Create an instance on TransliterationControl with the required
            // options.
            var control =
                new google.elements.transliteration.TransliterationControl(options);

            // Enable transliteration in the textfields with the given ids.
            var ids = ["transl1", "transl2"];
            control.makeTransliteratable(ids);

            // Show the transliteration control which can be used to toggle between
            // English and Hindi and also choose other destination language.
            control.showControl('translControl');
        }
        google.setOnLoadCallback(onLoad);
    </script>
</head>

<body>
    <center>Type in Indian languages (Press Ctrl+g to toggle between English and Hindi)</center>
    <div id='translControl'></div>
    <br>Title : <input type='textbox' id="transl1" />
    <br>Body<br><textarea id="transl2" style="width:600px;height:200px"></textarea>
</body>

</html>

EN

回答 1

Stack Overflow用户

发布于 2018-01-18 20:44:20

这是正确的代码:

代码语言:javascript
复制
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript">
        // Load the Google Transliterate API
        google.load("elements", "1", {
            packages: "transliteration"
        });

        function onLoad() {
            var options = {
                sourceLanguage: 'en',
                destinationLanguage: ['hi', 'kn', 'ml', 'ta', 'te'],
                shortcutKey: 'ctrl+g',
                transliterationEnabled: true
            };

            // Create an instance on TransliterationControl with the required
            // options.
            var control =
                new
            google.elements.transliteration.TransliterationControl(options);

            // Enable transliteration in the textfields with the given ids.
            var ids = ["transl1", "transl2"];
            control.makeTransliteratable(ids);

            // Show the transliteration control which can be used to toggle 
            between
            // English and Hindi and also choose other destination language.
            control.showControl('translControl');
        }
        google.setOnLoadCallback(onLoad);
    </script>
</head>
<body>
    <!-- <center>Type in Indian languages (Press Ctrl+g to toggle between English and Hindi)</center> -->
    <div id='translControl'></div>
    <br />Title:
    <input type='textbox' id="transl1" />
    <br />Body
    <br />
    <textarea id="transl2" style="width:600px;height:200px"></textarea>
</body>
</html>
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/47484998

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档