API UpdateTranslator: Porovnání verzí

Z Podpora.nextis.cz
Přejít na: navigace, hledání
(Založena nová stránka s textem „==== Description ==== Method allows You to update translator in system. ==== Exact name ==== <code>API_UpdateTranslator</code> ==== Type ==== Standard ex…“)
 
(Specification)
Řádka 20: Řádka 20:
 
|
 
|
 
|Internal system id
 
|Internal system id
|
+
|API_GetProductGroups.Name
 +
 
 +
API_GetProductGroups.Name2
 +
 
 +
API_GetProductGroups.Description
 +
 
 +
API_GetProductGroups.EshopDescription
 
|-
 
|-
 
|@TranslatedText
 
|@TranslatedText

Verze z 21. 11. 2018, 11:08

Description

Method allows You to update translator in system.

Exact name

API_UpdateTranslator

Type

Standard executable stored procedure.

Specification

Parameter Data type Value range Description Relation
@Text nvarchar(max) Internal system id API_GetProductGroups.Name

API_GetProductGroups.Name2

API_GetProductGroups.Description

API_GetProductGroups.EshopDescription

@TranslatedText nvarchar(max) Translated text
@Language nvarchar(3) Language cs,pl,en,de,sk,hu,nl,ru,et,lv,lt,ar,fr,it,pt,ro,es,tr,bg,sl,sr

Return

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

Example

 DECLARE @return_value int
 DECLARE @Text nvarchar(max)
 DECLARE @TranslatedText nvarchar(max)
 DECLARE @Language nvarchar(3)
 
  
 EXECUTE @return_value = [API_UpdateTranslator] 
 @Text = N'Brake pads'
 @TranslatedText = N'Brzdové destičky (upraveno)',
 @Language = N'cs'

Notices

None.