API CreateTranslator

Z Podpora.nextis.cz
Verze z 20. 11. 2018, 16:59, kterou vytvořil Chrzaszcz (diskuse | příspěvky) (Založena nová stránka s textem „==== Description ==== Method allows You to create new translator in system. ==== Exact name ==== <code>API_CreateTranslator</code> ==== Type ==== Standar…“)
(rozdíl) ← Starší verze | zobrazit aktuální verzi (rozdíl) | Novější verze → (rozdíl)
Přejít na: navigace, hledání

Description

Method allows You to create new translator in system.

Exact name

API_CreateTranslator

Type

Standard executable stored procedure.

Specification

Parameter Data type Value range Description Relation
@Text nvarchar(max) Text
@TranslatedText nvarchar(max) Translated text
@Language nvarchar(3) Language

Return

0 : OK
100 : Item could not be created
200 : Language does not exist
350 : Translated exist

Example

 DECLARE @return_value int
 EXEC @return_value = [API_CreateTranslator] @Text= 'Brake pads' ,@TranslatedText= 'Brzdové destičky' ,@Language= 'cs'

Notices

None.