Yandex.Translate API Developer's guide

Size: px
Start display at page:

Download "Yandex.Translate API Developer's guide"

Transcription

1

2 .. Version 1.5 Document build date: This volume is a part of Yandex technical documentation. Yandex helpdesk site: Yandex LLC. All rights reserved. Copyright Disclaimer Yandex (and its applicable licensor) has exclusive rights for all results of intellectual activity and equated to them means of individualization, used for development, support, and usage of the service. It may include, but not limited to, computer programs (software), databases, images, texts, other works and inventions, utility models, trademarks, service marks, and commercial denominations. The copyright is protected under provision of Part 4 of the Russian Civil Code and international laws. You may use or its components only within credentials granted by the Terms of Use of or within an appropriate Agreement. Any infringements of exclusive rights of the copyright owner are punishable under civil, administrative or criminal Russian laws. Contact information Yandex LLC Phone: pr@yandex-team.ru Headquarters: 16 L'va Tolstogo St., Moscow, Russia

3 Contents About this guide... 4 API description... 4 Formatting results... 4 API methods... 5 getlangs method... 5 detect method... 7 translate method... 8 Supported languages Index... 13

4 4 About this guide The developer's guide describes the and explains how to enable and use the service. The guide is intended for web developers who want to add the text translation feature to pages on their web sites. API description Attention! Starting from version 1.5, all API methods must be accessed using a key. Please fill out this simple form to get your free API key. To access the over HTTPS, there are XML and JSON (JSONP) interfaces available. All the interfaces provide identical functionality and use the same set of input parameters. The XML interface returns a response in the form of an XML document, while the JSON interface returns JavaScript objects instead of XML elements, but with the same names and semantics; the JSONP interface returns the same JavaScript objects, but by calling a callback function with the specified name. Formatting results When formatting translation results, you must follow the rules set in the License for using the Yandex.Translate service. Each page that uses data from the Yandex.Translate service must display the text "Powered by Yandex.Translate" with an active hyperlink to the page The font size for the link must be no smaller than the font size for the main text, and the color must match the font color of the main text on the page.

5 API methods 5 API methods getlangs method Returns a list of translation directions supported by the service. Description Langs getlangs(string key, string ui); The service translates between any of the languages in the list of supported languages. To get this list, set the ui parameter when calling the method. Input parameters List of input parameters: Parameter Type Description Mandatory key string API key. Get a free API key on this page. Optional ui string If set, the service's response will contain a list of supported language codes and the corresponding language names (langs): en in English ru in Russian tr in Turkish uk in Ukrainian Sample request: XML interface: JSON interface: JSONP interface (for the "mycallback" function): key=apikey&ui=uk&callback=mycallback Returns In the XML interface it returns an XML document with the root element Langs. For example:

6 API methods 6 <?xml version="1.0" encoding="utf-8"?> <Langs> <dirs> <string>ru-en</string> <string>ru-pl</string> <string>ru-uk</string> <string>ru-de</string> <string>ru-fr</string>... <string>sr-uk</string> </dirs> <langs> <Item key="ru" value="russian"/> <Item key="en" value="english"/> <Item key="pl" value="polish"/>... <Item key="tr" value="turkish"/> <Item key="ro" value="romanian"/> <Item key="sr" value="serbian"/> </langs> </Langs> Error codes Code Value Description ERR_KEY_INVALID 401 Invalid API key. ERR_KEY_BLOCKED 402 This API key has been blocked. In the JSON interface, instead of XML elements, JavaScript objects are returned with the same names and semantics: {"dirs": ["ru-en","ru-pl","ru-uk","ru-de","ru-fr","ru-es","ru-it","ru-bg","ru-cs","rutr","ru-ro","ru-sr","en-ru","en-uk","en-de","en-fr","en-es","en-it","en-cs","entr","pl-ru","pl-uk","uk-ru","uk-en","uk-pl","uk-de","uk-fr","uk-es","uk-it","ukbg","uk-cs","uk-tr","uk-ro","uk-sr","de-ru","de-en","de-uk","fr-ru","fr-en","fruk","es-ru","es-en","es-uk","it-ru","it-en","it-uk","bg-ru","bg-uk","cs-ru","csen","cs-uk","tr-ru","tr-en","tr-uk","ro-ru","ro-uk","sr-ru","sr-uk"], "langs": {"ru":"російська","en":"англійська","pl":"польська","uk":"українська","de":"німе цька","fr":"французька","es":"іспанська","it":"італійська","bg":"болгарська","cs ":"чеська","tr":"турецька","ro":"румунська","sr":"сербська"} } In the JSONP interface, the same JavaScript objects are returned to a callback function (for example, "mycallback"): mycallback( {"dirs":["ru-en","ru-pl","ru-uk","ru-de","ru-fr","ru-es","ru-it","ru-bg","rucs","ru-tr","ru-ro","ru-sr","en-ru","en-uk","en-de","en-fr","en-es","en-it","encs","en-tr","pl-ru","pl-uk","uk-ru","uk-en","uk-pl","uk-de","uk-fr","uk-es","ukit","uk-bg","uk-cs","uk-tr","uk-ro","uk-sr","de-ru","de-en","de-uk","fr-ru","fren","fr-uk","es-ru","es-en","es-uk","it-ru","it-en","it-uk","bg-ru","bg-uk","csru","cs-en","cs-uk","tr-ru","tr-en","tr-uk","ro-ru","ro-uk","sr-ru","sr-uk"], "langs": {"ru":"російська","en":"англійська","pl":"польська","uk":"українська","de":"німе цька","fr":"французька","es":"іспанська","it":"італійська","bg":"болгарська","cs ":"чеська","tr":"турецька","ro":"румунська","sr":"сербська"} })

7 API methods 7 detect method Detects the language of the specified text. Description DetectedLang detect(string key, string text[], string format); Input parameters Input parameters can be passed either using an HTTP GET request (see the example), or using an HTTP POST request where the parameters are passed in the body of the HTTP request. Parameter Type Description Mandatory key string API key. Get a free API key on this page. text Optional string[ ] The text to detect the language for. Restrictions: format string Text format. Although the text parameter is an array (you can pass multiple text parameters), only one language tag is returned for the entire text. To detect the language of each text item, call the detect method for each of them. Possible values: plain Text without markup (default value). html Text in HTML format. Sample request: XML interface: JSON interface: JSONP interface (for the "mycallback" function): +world&callback=mycallback Returns In the XML interface it returns the DetectedLang structure, which contains the return code (200 if successful) and the text language code (or an empty string, if the language could not be detected). For example: <?xml version="1.0" encoding="utf-8"?> <DetectedLang code="200" lang="en"/> Error codes Code Value Description ERR_OK 200 Operation completed successfully.

8 API methods 8 Code Value Description ERR_KEY_INVALID 401 Invalid API key. ERR_KEY_BLOCKED 402 This API key has been blocked. ERR_DAILY_REQ_LIMIT _EXCEEDED ERR_DAILY_CHAR_LIMI T_EXCEEDED 403 You have reached the daily limit for requests (including calls of the translate method). 404 You have reached the daily limit for the volume of translated text (including calls of the translate method). In the JSON interface, instead of XML elements, JavaScript objects are returned with the same names and semantics: { } "code": 200, "lang": "en" In the JSONP interface, the same JavaScript objects are returned to a callback function (for example, "mycallback"): mycallback( { "code": 200, "lang": "en" } ) translate method Translates the text. Description Translation translate(string key, string lang, string text[], string format, string options); Input parameters Input parameters can be passed either using an HTTP GET request (see the example), or using an HTTP POST request where the parameters are passed in the body of the HTTP request. Sample request: XML interface: +be,+or+not+to+be%3f&text=that+is+the+question. JSON interface: JSONP interface (for the "mycallback" function):

9 API methods 9 List of input parameters. Parameter Type Description Mandatory key string API key. Get a free API key on this page. lang string Translation direction (for example, "en-ru" or "ru"). Format: 1. A pair of language codes separated by a dash. For example, "en-ru" specifies to translate from English to Russian. 2. Single language code. For example, "ru" specifies to translate to Russian. In this case, the language of the original text is detected automatically. text string[ ] The text to be translated. Restrictions: For POST requests, the maximum size of the text being passed is characters. In GET requests, the restriction applies not to the text itself, but to the size of the entire request string, which can contain other parameters besides the text. The maximum size of the request string is 10 KB. Optional format string Text format. Possible values: plain Text without markup (default value). html Text in HTML format. options string Translation options. Possible values: 1 Automatically detect language. For example, if the lang parameter has reversed the translation direction for a pair, the service automatically detects the text language and returns it in the detected tag: key=apikey&lang=en-ru&text=привет&options=1 <Translation code="200" lang="en-ru"> <detected lang="ru"/> <text>привет</text> </Translation> Returns In the XML interface, it returns the Translation structure, which contains the translated text. For example: <?xml version="1.0" encoding="utf-8"?> <Translation code="200" lang="en-ru"> <text>быть или не быть?</text> <text>вот в чем вопрос.</text> </Translation> Elements of the response XML schema: Translation The root element, which contains text elements (one per fragment). The code attribute contains the return code (see the table) and the lang attribute, which is the language code of the text fragment detected by the service. text An array of strings with translated text (for the XML interface, a sequence of <text> elements). The number of items in the array corresponds to the number of text parameters in the request.

10 API methods 10 Error codes Code Value Description ERR_OK 200 Operation completed successfully. ERR_KEY_INVALID 401 Invalid API key. ERR_KEY_BLOCKED 402 This API key has been blocked. ERR_DAILY_REQ_LIMIT _EXCEEDED ERR_DAILY_CHAR_LIMI T_EXCEEDED 403 You have reached the daily limit for requests (including calls of the detect method). 404 You have reached the daily limit for the volume of translated text (including calls of the detect method). ERR_TEXT_TOO_LONG 413 The text size exceeds the maximum. ERR_UNPROCESSABLE_T EXT ERR_LANG_NOT_SUPPOR TED 422 The text could not be translated. 501 The specified translation direction is not supported. In the JSON interface, instead of XML elements, JavaScript objects are returned with the same names and semantics: { } "code": 200, "lang": "en-ru", "text": [ "Быть или не быть?", "Вот в чем вопрос." ] In the JSONP interface, the same JavaScript objects are returned to a callback function (for example, "mycallback"): mycallback({ "code": 200, "lang": "en-ru", "text": [ "Быть или не быть?", "Вот в чем вопрос." ] })

11 Supported languages Язык Код Albanian sq Arabian ar Armenian hy Azeri az Belarusian be Bosnian bs Bulgarian bg Catalan ca Croatian hr Czech cs Chinese zh Danish da Dutch nl English en Estonian et Finnish fi French fr Georgian ka German de Greek el Hebrew he Hungarian hu Icelandic is Indonesian id Italian it Japanese ja Korean ko Latvian lv Lithuanian lt Macedonian mk Malay ms Maltese mt Norwegian no Polish pl Portuguese pt Romanian ro Russian ru Spanish es Serbian sr Slovak sk Slovenian sl Swedish sv 11

12 12 Язык Thai Turkish Ukrainian Vietnamese Код th tr uk vi

13 Index detect 6 getlangs 5 JSON 4 8, 10 JSONP 5 8, 10 translate 8 XML 5, 7 9

14

Formatting Custom List Information

Formatting Custom List Information Hello. MailChimp has a lot of great merge tags that can help you customize your email campaigns. You can use these merge tags to dynamically add content to your email. With merge tags, you can include

More information

USER GUIDE: Trading Central Indicator for the MT4 platform

USER GUIDE: Trading Central Indicator for the MT4 platform USER GUIDE: Trading Central Indicator for the MT4 platform 1 Table of content Description...3 Installation process...4 Features and parameters...8 Upgrade process... 10 2 Description Trading Central Indicator

More information

PRICE LIST. ALPHA TRANSLATION AGENCY www.biuro-tlumaczen.tv info@biuro-tlumaczen.tv

PRICE LIST. ALPHA TRANSLATION AGENCY www.biuro-tlumaczen.tv info@biuro-tlumaczen.tv We encourage you to get to know the prices of the services provided by Alpha Translation Agency in the range of standard and certified written translations of common and rare languages, as well as interpretation

More information

How do I translate...?

How do I translate...? How do I translate...? Professional Translation Hybrid Translation Machine Translation Certified Translation Supported Formats Language Codes Toll Free: (800)790-3680 Professional Translation Hybrid Translation

More information

TRADING CENTRAL INDICATOR FOR METATRADER USERS GUIDE. Blue Capital Markets Limited 2013. All rights reserved.

TRADING CENTRAL INDICATOR FOR METATRADER USERS GUIDE. Blue Capital Markets Limited 2013. All rights reserved. TRADING CENTRAL INDICATOR FOR METATRADER USERS GUIDE Blue Capital Markets Limited 2013. All rights reserved. Content What is TC.TechnicalAnalysis Indicator? 1 Installation Process 2 Features and Parameters

More information

ServiceAPI to the WorldLingo System

ServiceAPI to the WorldLingo System ServiceAPI to the WorldLingo System Technical Summary WorldLingo Rev: 2 Page 1 Table of Contents Table of Contents...2 Table of Figures...2 List of Tables...2 1. Purpose...3 2. Intended Audience and Reading

More information

Who We Are. Services We Offer

Who We Are. Services We Offer Who We Are Atkins Translation Services is a professional language agency providing cost effective and rapid language services. Our network of over 70 native language professionals ensures we are able to

More information

Languages Supported. SpeechGear s products are being used to remove communications barriers throughout the world.

Languages Supported. SpeechGear s products are being used to remove communications barriers throughout the world. Languages Supported SpeechGear s products are being used to remove communications barriers throughout the world. Each of the following pages lists the languages that we currently support for that product.

More information

LANGUAGE CONNECTIONS YOUR LINGUISTIC GATEWAY

LANGUAGE CONNECTIONS YOUR LINGUISTIC GATEWAY 2001 Beacon Street Suite 105 Brighton, MA 02135 Tel: (617) 731-3510 Fax: (617) 731-3700 www.languageconnections.com service@languageconnections.com GSA CONTRACT #GS-10F-0126K DUNS #11-218-1040 CAGE #1

More information

Trading Central Indicator for MetaTrader4 TRADER / USER SET UP & CONFIGURATION

Trading Central Indicator for MetaTrader4 TRADER / USER SET UP & CONFIGURATION Content Description... 1 Subscribing to Trading Central feed... 1 Installation process...... 2 Features and parameters... 5 Upgrade process... 7 Description TC.TechnicalAnalysis is an easy to install multilingual

More information

Table 1: TSQM Version 1.4 Available Translations

Table 1: TSQM Version 1.4 Available Translations Quintiles, Inc. 1 Tables 1, 2, & 3 below list the existing and available translations for the TSQM v1.4, TSQM vii, TSQM v9. If Quintiles does not have a translation that your Company needs, the Company

More information

INTERC O MBASE. Global Language Solution WWW.INTERCOMBASE.COM

INTERC O MBASE. Global Language Solution WWW.INTERCOMBASE.COM INTERC O MBASE Global Language Solution Tel.: (UK) +44 20 360 86157 E-mail: info@intercombase.com Skype ID: intercombase.translations WWW.INTERCOMBASE.COM Services Credentials Expertise Document Translation

More information

INVESTING IN INTANGIBLES: ECONOMIC ASSETS AND INNOVATION DRIVERS FOR GROWTH

INVESTING IN INTANGIBLES: ECONOMIC ASSETS AND INNOVATION DRIVERS FOR GROWTH Flash Eurobarometer INVESTING IN INTANGIBLES: ECONOMIC ASSETS AND INNOVATION DRIVERS FOR GROWTH REPORT Fieldwork: January February 213 Publication: May 213 This survey has been requested by the European

More information

Remote Desktop Services Guide

Remote Desktop Services Guide Remote Desktop Services Guide Mac OS X V 1.1 27/03/2014 i Contents Introduction... 1 Install and connect with Mac... 1 1. Download and install Citrix Receiver... 2 2. Installing Citrix Receiver... 4 3.

More information

SAP BusinessObjects Document Version: 4.1 Support Package 7 2015-11-27. Dashboards and Presentation Design Installation Guide

SAP BusinessObjects Document Version: 4.1 Support Package 7 2015-11-27. Dashboards and Presentation Design Installation Guide SAP BusinessObjects Document Version: 4.1 Support Package 7 2015-11-27 Dashboards and Presentation Design Installation Guide Content 1 Document History....3 2 About this Guide....4 3 Planning Installations....5

More information

Tel: +971 4 266 3517 Fax: +971 4 268 9615 P.O. Box: 22392, Dubai - UAE info@communicationdubai.com comm123@emirates.net.ae www.communicationdubai.

Tel: +971 4 266 3517 Fax: +971 4 268 9615 P.O. Box: 22392, Dubai - UAE info@communicationdubai.com comm123@emirates.net.ae www.communicationdubai. Tel: +971 4 266 3517 Fax: +971 4 268 9615 P.O. Box: 22392, Dubai - UAE info@communicationdubai.com comm123@emirates.net.ae www.communicationdubai.com ALL ABOUT TRANSLATION Arabic English Online Human Translation

More information

Designing Tablet Computer Keyboards for European Languages

Designing Tablet Computer Keyboards for European Languages Designing Tablet Computer Keyboards for European Languages Dr. Gintautas Grigas Vilnius University Institute of Mathematics and Informatics, Vilnius, Lithuania www.mii.vu.lt gintautas.grigas@mii.vu.lt

More information

Translating for a Multilingual European Union: Putting Multilingualism into Context Dr Angeliki PETRITS Language Officer European Commission, UK

Translating for a Multilingual European Union: Putting Multilingualism into Context Dr Angeliki PETRITS Language Officer European Commission, UK Translating for a Multilingual European Union: Putting Multilingualism into Context Dr Angeliki PETRITS Language Officer European Commission, UK angelique.petrits@ec.europa.eu What is multilingualism?

More information

Official Journal of the European Union

Official Journal of the European Union ISSN 1977-091X Official Journal C 76 A of the European Union English edition Information and Notices Volume 55 15 March 2012 Notice No Contents Page V Announcements ADMINISTRATIVE PROCEDURES European Personnel

More information

GUIDELINES FOR TRANSLATING THE EUROPASS CERTIFICATE SUPPLEMENT INTRODUCTION GENERAL RECOMMENDATIONS

GUIDELINES FOR TRANSLATING THE EUROPASS CERTIFICATE SUPPLEMENT INTRODUCTION GENERAL RECOMMENDATIONS GUIDELINES FOR TRANSLATING THE EUROPASS CERTIFICATE SUPPLEMENT INTRODUCTION PURPOSE OF THE EUROPASS CERTIFICATE SUPPLEMENT The Europass certificate supplement (see examples) is not a substitute for the

More information

Professional. Accurate. Fast.

Professional. Accurate. Fast. Professional. Accurate. Fast. Lingvo House is one of the UK's leading translation service providers. We offer highest quality linguistic solutions to most demanding clients using best professionals with

More information

LOCALIZATION PROCESS CHECKLIST

LOCALIZATION PROCESS CHECKLIST LOCALIZATION PROCESS CHECKLIST THE TRANSLATION COMPANY LOCALIZATION CHECKLIST This checklist should be completed for all new projects involving localization. A proper planning of the requirements upfront

More information

Xerox Easy Translator Service User Guide

Xerox Easy Translator Service User Guide Xerox Easy Translator Service User Guide Table of Contents Xerox Easy Translator 2 Service Overview Creating an Account 3 via our Web Portal Logging In to the Web Portal 4 Utilizing the Web Portal 4 Creating

More information

Oracle Taleo Enterprise Mobile for Talent Management Cloud Service Administration Guide

Oracle Taleo Enterprise Mobile for Talent Management Cloud Service Administration Guide Oracle Taleo Enterprise Mobile for Talent Management Cloud Service Administration Guide Feature Pack 14B Part Number: E58323-02 May 27, 2015 Mobile for Talent Management Cloud Service Administration Guide

More information

We Answer To All Your Localization Needs!

We Answer To All Your Localization Needs! We Answer To All Your Localization Needs! Str. Traian Nr. 2, Bucharest, Romania 8950 W Olympic Blvd, California, U.S.A (RO) +40.740.182.777 / (US) +1.213.248.2367 www.i-t-local.com; alex@i-t-local.com

More information

Cross-Language Instant Messaging with Automatic Translation

Cross-Language Instant Messaging with Automatic Translation Cross-Language Instant Messaging with Automatic Translation Che-Yu Yang Department of Information Management China University of Technology Taipei, Taiwan e-mail: cyyang@cute.edu.tw Abstract Along with

More information

EMC SourceOne. Products Compatibility Guide 300-008-041 REV 54

EMC SourceOne. Products Compatibility Guide 300-008-041 REV 54 EMC SourceOne Products Compatibility Guide 300-008-041 REV 54 Copyright 2005-2016 EMC Corporation. All rights reserved. Published in the USA. Published February 23, 2016 EMC believes the information in

More information

Australian Embassy, Seoul List of Translators and Interpreters 2013 Seoul, Busan and Daejeon

Australian Embassy, Seoul List of Translators and Interpreters 2013 Seoul, Busan and Daejeon Australian Embassy, Seoul List of Translators and Interpreters 2013 Seoul, Busan and Daejeon This list is provided for the information of Australian Travellers and those needing assistance in South Korea.

More information

Luxembourg-Luxembourg: FL/SCIENT15 Translation services 2015/S 039-065697. Contract notice. Services

Luxembourg-Luxembourg: FL/SCIENT15 Translation services 2015/S 039-065697. Contract notice. Services 1/12 This notice in TED website: http://ted.europa.eu/udl?uri=ted:notice:65697-2015:text:en:html Luxembourg-Luxembourg: FL/SCIENT15 Translation services 2015/S 039-065697 Contract notice Services Directive

More information

We Answer All Your Localization Needs!

We Answer All Your Localization Needs! partner We Answer All Your Localization Needs! Version: 2.0 23.05.2014 California, U.S.A Bucharest, Romania (US) +1.714.408.8094 (RO) +40.740.182.777 www.i-t-local.com info@i-t-local.com 1 of 13 Our Company

More information

Media labels and their contents

Media labels and their contents Media labels and their contents This information lists the optical media that you receive with your IBM i order. Refer to the Customer Notices and information Web page (www.ibm.com/systems/support/planning/

More information

Yandex.Widgets Quick start

Yandex.Widgets Quick start 17.09.2013 .. Version 2 Document build date: 17.09.2013. This volume is a part of Yandex technical documentation. Yandex helpdesk site: http://help.yandex.ru 2008 2013 Yandex LLC. All rights reserved.

More information

A global leader in document translations

A global leader in document translations Since 1993, Northwest Translations has been a global leader in providing exceptional high quality document translations with emphasis in the MEDICAL/LIFE SCIENCES, LEGAL, ENGINEERING, MARKETING/ADVERTISING

More information

Microsoft stores badge guidelines. February 2016

Microsoft stores badge guidelines. February 2016 Microsoft stores badge guidelines February 2016 Welcome Together we can do amazing things. Millions of fans, thousands of partners and developers across the world empower people and organizations do great

More information

RECENSEO Quick Reference

RECENSEO Quick Reference Your team has the tools to dramatically speed document review. And those tools are as easy as,, Pronunciation. Re cĕn sēō Origination. From the Latin word, Review. Adjective. Powerful, intuitive, secure,

More information

Luxembourg-Luxembourg: FL/TERM15 Translation services 2015/S 253-462303. Contract notice. Services

Luxembourg-Luxembourg: FL/TERM15 Translation services 2015/S 253-462303. Contract notice. Services 1 / 12 This notice in TED website: http://ted.europa.eu/udl?uri=ted:notice:462303-2015:text:en:html Luxembourg-Luxembourg: FL/TERM15 Translation services 2015/S 253-462303 Contract notice Services Directive

More information

Cyclope Internet Filtering Proxy. - User Guide -

Cyclope Internet Filtering Proxy. - User Guide - Cyclope Internet Filtering Proxy - User Guide - 1. Overview 3 2. Cyclope Internet Filtering Proxy User Interface 4 2.1 Login 4 2.2 Logout 4 3. Administration 5 3.1 IP Management 5 3.2 Proxy Forwarding

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

2015 Population Office figures for October to December and year to date

2015 Population Office figures for October to December and year to date 2015 Population Office figures for October to December and year to date Business Licencing figures The below tables show the number of applications for registered and licensed permissions, and how many

More information

HAZARD COMMUNICATION TRANSLATION RESOURCES Introduction

HAZARD COMMUNICATION TRANSLATION RESOURCES Introduction HAZARD COMMUNICATION TRANSLATION RESOURCES Introduction Purpose To create a list of translation resources that will aid in the selection of an appropriate firm to meet the user s requirements for the translation

More information

Helping Companies with Globalization

Helping Companies with Globalization Universal Translation Services www.universal-translation-services.com Helping Companies with Globalization universal Translation Services Brochure 2015 universal Translation services workflow 2 3 We are

More information

Helping Companies with Globalization

Helping Companies with Globalization Universal Translation Services www.universal-translation-services.com Universal Translation Services www.universal-translation-services.com Helping Companies with Globalization universal Translation Services

More information

Data First Framework. How to Build Your Enterprise Data Hub. Luis Campos Big Data Solutions Director Oracle Europe, Middle East and Africa

Data First Framework. How to Build Your Enterprise Data Hub. Luis Campos Big Data Solutions Director Oracle Europe, Middle East and Africa Data First Framework How to Build Your Enterprise Data Hub Luis Campos Big Data Solutions Director Oracle Europe, Middle East and Africa @luigicampos June 2014 Copyright 2015 Oracle and/or its affiliates.

More information

Translution Price List GBP

Translution Price List GBP Translution Price List GBP TABLE OF CONTENTS Services AD HOC MACHINE TRANSLATION... LIGHT POST EDITED TRANSLATION... PROFESSIONAL TRANSLATION... 3 TRANSLATE, EDIT, REVIEW TRANSLATION (TWICE TRANSLATED)...3

More information

We re talking your language

We re talking your language We re talking your language Our mission Our mission is to provide the highest quality professional language service for business, industry and the legal profession. Translation is about trust. You have

More information

LSI TRANSLATION PLUG-IN FOR RELATIVITY. within

LSI TRANSLATION PLUG-IN FOR RELATIVITY. within within LSI Translation Plug-in (LTP) for Relativity is a free plug-in that allows the Relativity user to access the STS system 201 Broadway, Cambridge, MA 02139 Contact: Mark Ettinger Tel: 800-654-5006

More information

Translation/interpreting Services in Nottingham

Translation/interpreting Services in Nottingham Translation/interpreting Services in Nottingham (This is not a conclusive list, check telephone directories and the internet for more. Nottingham CDP cannot be help responsible for the quality of work

More information

CALL FOR EXPRESSIONS OF INTEREST FOR CONTRACT AGENTS CHILDCARE STAFF. Function Group II EPSO/CAST/S/2/2012 I. INTRODUCTION

CALL FOR EXPRESSIONS OF INTEREST FOR CONTRACT AGENTS CHILDCARE STAFF. Function Group II EPSO/CAST/S/2/2012 I. INTRODUCTION CALL FOR EXPRESSIONS OF INTEREST FOR CONTRACT AGENTS CHILDCARE STAFF A. NURSERY NURSES/CHILDCARE WORKERS (M/F) B. KINDERGARTEN TEACHERS (M/F) C. EDUCATIONAL ASSISTANT/CHILDMINDERS FOR AFTER-SCHOOL FACILITIES

More information

AccuRead OCR. Administrator's Guide

AccuRead OCR. Administrator's Guide AccuRead OCR Administrator's Guide July 2016 www.lexmark.com Contents 2 Contents Change history... 3 Overview... 4 System requirements...4 Supported applications... 4 Supported formats and languages...

More information

Internet sites for machine translation available language-pairs ** Part 1 direct translation sites

Internet sites for machine translation available language-pairs ** Part 1 direct translation sites Internet sites for machine translation available -pairs ** Part 1 direct translation sites Al Misbar http://www.almisbar.com/salam.html ATA Software (www.ataso ft.com) English Arabic N Alta Vista http://babelfish.altavista.com/translate.dyn

More information

Activities. but I will require that groups present research papers

Activities. but I will require that groups present research papers CS-498 Signals AI Themes Much of AI occurs at the signal level Processing data and making inferences rather than logical reasoning Areas such as vision, speech, NLP, robotics methods bleed into other areas

More information

HOW COMPANIES INFLUENCE OUR SOCIETY: CITIZENS VIEW

HOW COMPANIES INFLUENCE OUR SOCIETY: CITIZENS VIEW Flash Eurobarometer HOW COMPANIES INFLUENCE OUR SOCIETY: CITIZENS VIEW REPORT Fieldwork: October-November 2012 Publication: April 2013 This survey has been requested by the European Commission, Directorate-General

More information

MT Search Elastic Search for Magento

MT Search Elastic Search for Magento Web Site: If you have any questions, please contact us. MT Search Elastic Search for Magento Version 1.0.0 for Magento 1.9.x Download: http:///elasticsearch 2014 1 Table of Contents 1. Introduction...

More information

webcertain Recruitment pack Ceri Wright [Pick the date]

webcertain Recruitment pack Ceri Wright [Pick the date] Recruitment pack Ceri Wright [Pick the date] SEO Executive Have you recently caught the SEO bug and looking to develop your skills and career in a rapidly growing agency? If your answer is YES then Webcertain

More information

Teaching Languages at School

Teaching Languages at School 2012 2012 2012 2012 2012 201 012 EURYDICE2012 2012 2012 2012 2012 12 2012 2012 2012 2012 2012 2 2 2012 2012 2012 2012 2012 20 2012 2012 2012 2012 2012 201 012 2012 2012 2012 2012 2012 12 2012 Key 2012

More information

Latin Alphabet special characters in Microsoft Word Article by: Stélios C. Alvarez 08

Latin Alphabet special characters in Microsoft Word Article by: Stélios C. Alvarez 08 1 Latin Alphabet special characters in Microsoft Word Article by: Stélios C. Alvarez 08 For the purpose of this article, only accented letters and special characters from the Albanian, Basque, Bosnian,

More information

Europeans and their Languages

Europeans and their Languages Special Eurobarometer European Commission Europeans and their Languages Fieldwork: November December 2005 Publication: February 2006 Special Eurobarometer 243 / Wave 64.3 TNS Opinion & Social This survey

More information

SWOT Assessment: BMC Remedy v9

SWOT Assessment: BMC Remedy v9 SWOT Assessment: BMC Remedy v9 Analyzing the strengths, weaknesses, opportunities, and threats Publication Date: 17 Aug 2015 Product code: IT0022-000489 Adam Holtby Summary Catalyst BMC Software is an

More information

Survey of University of Michigan Graduate-level Area Studies Alumni/ae & FLAS Recipients from 1996-2006: Selected Findings

Survey of University of Michigan Graduate-level Area Studies Alumni/ae & FLAS Recipients from 1996-2006: Selected Findings Survey of University of Michigan Graduate-level Area Studies Alumni/ae & FLAS Recipients from 1996-2006: Selected Findings Azumi Ann Takata, Center for Japanese Studies, International Institute Donna Parmelee,

More information

Post Jobs Technical Integration

Post Jobs Technical Integration Post Jobs Technical Integration Version 1.3 Jobg8 Limited Version 1.3 1 Document Version History Date Version Description Author 23 Sept 2013 1.0 Initial version Brad O Connor 18 Feb 2014 1.1 Added Advertiser

More information

SMES, RESOURCE EFFICIENCY AND GREEN MARKETS

SMES, RESOURCE EFFICIENCY AND GREEN MARKETS Eurobarometer SMES, RESOURCE EFFICIENCY AND GREEN MARKETS REPORT Fieldwork: September 2013 Publication: December 2013 This survey has been requested by the European Commission, Directorate-General for

More information

CALL FOR EXPRESSIONS OF INTEREST FOR CONTRACT STAFF

CALL FOR EXPRESSIONS OF INTEREST FOR CONTRACT STAFF CALL FOR EXPRESSIONS OF INTEREST FOR CONTRACT STAFF EPSO/CAST/P/1/2015 - Financial officer Function Group III (FGIII) EPSO/CAST/P/2/2015 - Financial adviser Function Group IV (FGIV) EPSO/CAST/P/3/2015

More information

About CRC? What is Email Link?

About CRC? What is Email Link? About CRC? The Community Relations Commission for a multicultural NSW (CRC) was established by Parliament to implement a new approach to protecting and promoting community harmony in our unique culturally

More information

Linking the world through professional language services

Linking the world through professional language services ProLINK Linking the world through professional language services ProLINK is strategically located in Hong Kong, Asia world city and gateway to China, where the East meets the West. The economy of China

More information

technical translation services, ltd. translation into 42 languages desktop publishing/typesetting multi-media presentations multi-lingual web sites

technical translation services, ltd. translation into 42 languages desktop publishing/typesetting multi-media presentations multi-lingual web sites translation into 42 languages desktop publishing/typesetting multi-media presentations multi-lingual web sites software localization digital pre-press technical translation services, ltd. PUBLICATION PROCESS/TRANSLATION

More information

GET YOUR START MENU BACK IN MICROSOFT WINDOWS SERVER 2012

GET YOUR START MENU BACK IN MICROSOFT WINDOWS SERVER 2012 Products To make your life better Simple to Install Easy, non-technical setup. GET YOUR START MENU BACK IN MICROSOFT WINDOWS SERVER 2012 Easy to Use The start menu design is familiar and comfortable to

More information

Financial Reporting Comparison Matrix

Financial Reporting Comparison Matrix ing Comparison Matrix Epicor ing Comparison Matrix (Epicor Product Lines) Overview Accurate financial reporting is of vital importance to all businesses and Epicor currently offers a range of financial

More information

Automotive Technician Training (ATT)

Automotive Technician Training (ATT) Automotive Technician Training (ATT) Light Vehicle Maintenance and Repair (Auto365) Accident Repair (AR365) User Guide and Help Manual v1.2 Copyright IMI Tom Denton, BA, FIMI, MIRTE, MSAE, Cert Ed All

More information

Speaking your language...

Speaking your language... 1 About us: Cuttingedge Translation Services Pvt. Ltd. (Cuttingedge) has its corporate headquarters in Noida, India and an office in Glasgow, UK. Over the time we have serviced clients from various backgrounds

More information

Quality Data for Your Information Infrastructure

Quality Data for Your Information Infrastructure SAP Product Brief SAP s for Small Businesses and Midsize Companies SAP Data Quality Management, Edge Edition Objectives Quality Data for Your Information Infrastructure Data quality management for confident

More information

The most trusted name in translations.

The most trusted name in translations. LINK TRANSLATIONS INC. General Services Administration Federal Supply Service Authorized Federal Supply Schedule Price List Online access to contract ordering information, terms and conditions, up-to-date

More information

Contents. BMC Atrium Core 7.6.00 Compatibility Matrix

Contents. BMC Atrium Core 7.6.00 Compatibility Matrix Contents INTRODUCTION... 2 Supported Configurations... 2 Known Issues... 2 Potential Issues... 2 Support Policy for later versions of vendor products released after Atrium Core 7.5.00... 2 BMC ATRIUM CMDB,

More information

Poliscript Installation Guide

Poliscript Installation Guide Poliscript Installation Guide Version 4.0 Current Poliscript Build: Version 2.7 Build 23 Please note this document is correct up to 27 th July 2010 Important Information: - Please note that Poliscript

More information

2011 Census: Language

2011 Census: Language October 25, 2012 2011 Census: Language The 2011 Census Day was May 9, 2011. Today, Statistics Canada released its fourth set of data from this Census on the language characteristics of Canadians. The population

More information

Translation strategy decision support at the European Commission

Translation strategy decision support at the European Commission Translation strategy decision support at the European Commission Martin Karlberg and Werner Grünewald Directorate-General for Translation, European Commission, L-2920 Luxembourg Abstract Purpose The paper

More information

FIRST-CLASS TRANSLATIONS WORLDWIDE

FIRST-CLASS TRANSLATIONS WORLDWIDE FIRST-CLASS TRANSLATIONS WORLDWIDE WE SPEAK YOUR LANGUAGE CONTENTS Company overview 3 Company values 4 Facts & figures 5 Workflow & process 6 Services 7 Translations 7 Document translation Transcreation/copywriting

More information

Luxembourg-Luxembourg: FL/RAIL16 Translation services 2016/S 054-089888. Contract notice. Services

Luxembourg-Luxembourg: FL/RAIL16 Translation services 2016/S 054-089888. Contract notice. Services 1 / 11 This notice in TED website: http://ted.europa.eu/udl?uri=ted:notice:89888-2016:text:en:html Luxembourg-Luxembourg: FL/RAIL16 Translation services 2016/S 054-089888 Contract notice Services Directive

More information

List of Higher School Certificate Board Developed Courses

List of Higher School Certificate Board Developed Courses List of Higher School Certificate Board Developed Courses ACE 6002 Last Updated: 27 February 2013 Subjects Courses Extension Courses Aboriginal Studies Aboriginal Studies Agriculture Agriculture Ancient

More information

software technical reference

software technical reference software technical reference hp color LaserJet 0 series HP Color LaserJet 0 Software Technical Reference Copyright (c) 2004 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation

More information

Cisco Unified IP Phone CP-6961 VoIP -puhelin

Cisco Unified IP Phone CP-6961 VoIP -puhelin Cisco Unified IP Phone CP-6961 VoIP -puhelin Feature Benefit Lighted Hold key The key lights when pressed to put a call on hold and stays lit until the held call has been resumed, or flashes if one call

More information

Contents. BMC Remedy AR System 7.5.00 Compatibility Matrix

Contents. BMC Remedy AR System 7.5.00 Compatibility Matrix Contents AR SYSTEM SERVER SUPPORTED HARDWARE PLATFORMS AND OPERATING SYSTEMS... 3 AR SYSTEM SERVER SUPPORTED DATABASES...3 JAVA SUPPORT... 4 AR SYSTEM MID-TIER SUPPORTED CONFIGURATIONS...5 AR SYSTEM CLIENT

More information

Reference Guide: Approved Vendors for Translation and In-Person Interpretation Services

Reference Guide: Approved Vendors for Translation and In-Person Interpretation Services Reference Guide: Approved Vendors for Translation and In-Person Interpretation Services What you need to know The government of D.C. has identified, vetted, and engaged four vendors in a citywide contract

More information

Globalization Status of Citrix Products

Globalization Status of Citrix Products Globalization Status of Citrix Products This web-page details the Globalization Status of the various Citrix products. The information on this page is up-to-date as of 31-May-2014 and will be updated on

More information

Leveraging Privacy by Design to Achieve your Business Needs through Big Data, without Compromising Privacy

Leveraging Privacy by Design to Achieve your Business Needs through Big Data, without Compromising Privacy Leveraging Privacy by Design to Achieve your Business Needs through Big Data, without Compromising Privacy Big Data & Analytics Summit Canada Old Mill, Toronto February 10, 2015 Let s Dispel Some Myths

More information

2014 HIGHER SCHOOL CERTIFICATE EXAMINATION TIMETABLE Monday 13 October to Wednesday 5 November

2014 HIGHER SCHOOL CERTIFICATE EXAMINATION TIMETABLE Monday 13 October to Wednesday 5 November 2014 HIGHER SCHOOL CERTIFICATE EXINATION TIMETABLE Monday 13 October to Wednesday 5 November Important information for students The following pages list information about all the written examinations for

More information

Global Language Translation Services. Accurate, On Time and Within Budget. 800.774.5986 www.foreigntranslations.com

Global Language Translation Services. Accurate, On Time and Within Budget. 800.774.5986 www.foreigntranslations.com Global Language Translation Services Accurate, On Time and Within Budget 800.774.5986 www.foreigntranslations.com ABOUT US Headquartered in Charlotte, NC, Foreign Translations (www.foreigntranslations.com)

More information

Intel Sideband Fabric Device (Intel MBI) Driver

Intel Sideband Fabric Device (Intel MBI) Driver Intel Sideband Fabric Device (Intel MBI) Driver Release Notes December 2013 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE,

More information

Maximize the Value of Your Data and the Ability to Protect Privacy, by Design

Maximize the Value of Your Data and the Ability to Protect Privacy, by Design Maximize the Value of Your Data and the Ability to Protect Privacy, by Design Ann Cavoukian, Ph.D. Executive Director Privacy and Big Data Institute Ryerson University Ontario University Registrar s Association

More information

PUBLISHING TRANSLATIONS IN EUROPE SURVEY OF PUBLISHERS

PUBLISHING TRANSLATIONS IN EUROPE SURVEY OF PUBLISHERS PUBLISHING TRANSLATIONS IN EUROPE SURVEY OF PUBLISHERS prepared by Budapest Observatory January 2011 Making Literature Travel series of reports on literary exchange, translation and publishing Series editor:

More information

RESEARCH ASSISTANCE. The Portal is also accessible to the general public but restricted to the free case law databases.

RESEARCH ASSISTANCE. The Portal is also accessible to the general public but restricted to the free case law databases. RESEARCH ASSISTANCE I. Introduction The Common Portal of National Case Law is a meta-search engine which enables users to simultaneously research almost all the case law databases of the Supreme Courts

More information

We Translate Inc. P RE MIE R CE RTI F I ED T R AN SL AT ION SERV IC ES

We Translate Inc. P RE MIE R CE RTI F I ED T R AN SL AT ION SERV IC ES We Translate Inc. P RE MIE R CE RTI F I ED T R AN SL AT ION SERV IC ES companyprofile TABLE OF CONTENTS Introduction 2 Our Services 4 Industries We Translate / Localize / Globalize 6 Languages We Translate

More information

ipad 2 WiFi Specifications

ipad 2 WiFi Specifications ipad 2 WiFi Specifications Size and Weight Height: 9.50 inches (241.2 mm) Width: 7.31 inches (185.7 mm) Depth: 0.34 inch (8.8 mm) Weight: 1.34 pounds (607 g) Wireless and Cellular CDMA EV-DO Rev. A (800,

More information

SIN 382-1/1RC Translation Services SIN 382-2/2RC Interpretation Services Contract Number: GS-10F-034AA

SIN 382-1/1RC Translation Services SIN 382-2/2RC Interpretation Services Contract Number: GS-10F-034AA GENERAL SERVICES ADMINISTRATION GSA FEDERAL SUPPLY SERVICE AUTHORIZED FEDERAL SUPPLY SCHEDULE PRICE LIST LANGUAGE SERVICES Federal Supply Group: 738 II Class: R608 SIN 382-1/1RC Translation Services SIN

More information

DE,FR, ES,JA,Z H-CN AppDNA AppDNA 7.6.5 Level-2 JA. 2.4 Level-1. 11.5 Level-2 Tier 1,NL Tier1, NL JA. XenCenter 6.5 Level-2 JA,Zh-CN JA,Zh-

DE,FR, ES,JA,Z H-CN AppDNA AppDNA 7.6.5 Level-2 JA. 2.4 Level-1. 11.5 Level-2 Tier 1,NL Tier1, NL JA. XenCenter 6.5 Level-2 JA,Zh-CN JA,Zh- Globalization Status of Citrix Products This web-page details the Globalization Status of the various Citrix products. The information on this page is up-to-date as of 15-Sep-2015 and will be updated on

More information

HP Business Notebook Password Localization Guidelines V1.0

HP Business Notebook Password Localization Guidelines V1.0 HP Business Notebook Password Localization Guidelines V1.0 November 2009 Table of Contents: 1. Introduction..2 2. Supported Platforms...2 3. Overview of Design...3 4. Supported Keyboard Layouts in Preboot

More information

Cisco Unified Presence Server 1.0

Cisco Unified Presence Server 1.0 Cisco Unified Presence Server 1.0 The Cisco Unified Presence Server is a critical component for delivering the full value of a Cisco Unified Communications environment. It collects information about a

More information

Report on Data from the 2004 05 MLA Guide to Doctoral Programs in English and Other Modern Languages

Report on Data from the 2004 05 MLA Guide to Doctoral Programs in English and Other Modern Languages Prepublication Release: The final version of this report will appear in the ADE Bulletin No. 140, Fall 2006. Report on Data from the 2004 05 MLA Guide to Doctoral Programs in and Other Modern Languages

More information

RIVRS User Manual. Template: WCT-TMP-RS-072-01. Effective: 20-Apr-2016 Version: 1.0 Page 1 of 18

RIVRS User Manual. Template: WCT-TMP-RS-072-01. Effective: 20-Apr-2016 Version: 1.0 Page 1 of 18 RIVRS User Manual Version: 1.0 Page 1 of 18 Table of Contents General Information: 3 Accessing the IxRS 4 IVRS - Call the telephone number for your country 4 IWRS - Go to https://www.wwctrials.net/bmsiwrs

More information

placing people first SALARY REPORT Summary of 2014 Bratislava

placing people first SALARY REPORT Summary of 2014 Bratislava placing people first SALARY REPORT Summary of 2014 1 / Cpl Jobs Salary Report Table of content 3 / Summary of 2014 / About Cpl Jobs 4 / IT 7 / Finance 9 / BPO/SSC 2 / Cpl Jobs Salary Report Summary of

More information

MCO 7220.52E I/IOP JUN 06 2006

MCO 7220.52E I/IOP JUN 06 2006 I/IOP MARINE CORPS ORDER 7220.52E From: Commandant of the Marine Corps To: Distribution List Subj: FOREIGN LANGUAGE PROFICIENCY PAY (FLPP) PROGRAM Ref: (a) DOD Instruction 7280.3, Special Pay for Foreign

More information