Alle Übersetzungen

Aus Wiki csv4you
Wechseln zu:Navigation, Suche

Gib einen Nachrichtennamen ein, um alle verfügbaren Übersetzungen anzuzeigen.

Nachricht

Es wurden 2 Übersetzungen gefunden.

NameAktueller Text
 V Deutsch (de)Beispiel 1... Wenn 'SpalteVerfuegbar' Wert=nein, schreibe 0 -
wenn 'SpalteVerfuegbar' Wert=ja, schreibe 1 -
wenn Beides nicht zutrifft schreibe nichts in das Feld.
 <span style="white-space: pre-wrap">{IF 'SpalteVerfuegbar' == 'nein'}0{ELSEIF 'SpalteVerfuegbar' == 'ja'}1{ELSE}{ENDIF}</span>
Beispiel 2... ist etwas komplexer. Es gibt z.B. Variantenfelder für Konfektionsgrößen. Der folgende Code ersetzt die Größenangaben 36-54 aus der Importdatei (Feldname: 'Variation_Size') in die gewünschten Buchstaben-Größenbezeichner, z.B. S, M, L, XL usw.:
 {IF 'Variation_Size' == '36'}XXS
  {ELSEIF 'Variation_Size' == '38'}XS
  {ELSEIF 'Variation_Size' == '40'}S
  {ELSEIF 'Variation_Size' == '42'}M
  {ELSEIF 'Variation_Size' == '44'}L
  {ELSEIF 'Variation_Size' == '46'}XL
  {ELSEIF 'Variation_Size' == '48'}XXL
  {ELSEIF 'Variation_Size' == '50'}3XL
  {ELSEIF 'Variation_Size' == '52'}4XL
  {ELSEIF 'Variation_Size' == '54'}5XL
  {ELSE}6XL
 {ENDIF}
 V Englisch (en)Example 1 ... If value of column 'Available' = no, write 0 -
if value of column 'Available' = yes, write 1 -
if both are FALSE, write nothing in the cell.
<span style="white-space: pre-wrap">{IF 'Available' == 'no'}0{ELSEIF 'Available' == 'yes'}1{ELSE}{ENDIF}</span>
Example 2 ... is a bit more complex. There are, for example, variant cells for clothing sizes. The following code replaces the size designations 36-54 from the import file (column name: 'Variation_Size') with the desired letter named sizes, for example, S, M, L, XL, etc.:
 {IF 'Variation_Size' == '36'}XXS
  {ELSEIF 'Variation_Size' == '38'}XS
  {ELSEIF 'Variation_Size' == '40'}S
  {ELSEIF 'Variation_Size' == '42'}M
  {ELSEIF 'Variation_Size' == '44'}L
  {ELSEIF 'Variation_Size' == '46'}XL
  {ELSEIF 'Variation_Size' == '48'}XXL
  {ELSEIF 'Variation_Size' == '50'}3XL
  {ELSEIF 'Variation_Size' == '52'}4XL
  {ELSEIF 'Variation_Size' == '54'}5XL
  {ELSE}6XL
 {ENDIF}