Browse Source

Merge branch 'landscape_main' of https://git.kuyuntech.com/developer/FoodCooking_LandScape into landscape_main

wbspool 11 months ago
parent
commit
eefc065df7
27 changed files with 2488 additions and 9 deletions
  1. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_adapted_cooking.webp
  2. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_boil_water.webp
  3. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_chop.webp
  4. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_ferment.webp
  5. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_food_processor.webp
  6. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_knead_dough.webp
  7. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_slow_cook.webp
  8. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_steam.webp
  9. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_turbo.webp
  10. BIN
      BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_weight.webp
  11. 5 2
      BusinessSetting/src/main/java/com/develop/setting/ui/HelpDocsActivity.kt
  12. 7 3
      BusinessStep/src/main/java/com/develop/step/ui/cook_step/CookStepActivity.kt
  13. 2 2
      BusinessStep/src/main/java/com/develop/step/ui/cook_step/CookStepBaseActivity.kt
  14. 1 1
      BusinessStep/src/main/res/layout/activity_cook_step_base.xml
  15. 1 1
      BusinessStep/src/main/res/layout/fragment_detail_cook_desc.xml
  16. 200 0
      app/src/main/assets/help/CZ/help-white.html
  17. 200 0
      app/src/main/assets/help/CZ/help.html
  18. 210 0
      app/src/main/assets/help/DE/help-white.html
  19. 210 0
      app/src/main/assets/help/DE/help.html
  20. 205 0
      app/src/main/assets/help/EN/help-white.html
  21. 205 0
      app/src/main/assets/help/EN/help.html
  22. 206 0
      app/src/main/assets/help/ES/help-white.html
  23. 206 0
      app/src/main/assets/help/ES/help.html
  24. 208 0
      app/src/main/assets/help/FR/help-white.html
  25. 208 0
      app/src/main/assets/help/FR/help.html
  26. 207 0
      app/src/main/assets/help/IT/help-white.html
  27. 207 0
      app/src/main/assets/help/IT/help.html

BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_adapted_cooking.webp


BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_boil_water.webp


BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_chop.webp


BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_ferment.webp


BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_food_processor.webp


BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_knead_dough.webp


BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_slow_cook.webp


BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_steam.webp


BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_turbo.webp


BIN
BusinessCommon/src/main/res/drawable-xxxhdpi/ic_grid_weight.webp


+ 5 - 2
BusinessSetting/src/main/java/com/develop/setting/ui/HelpDocsActivity.kt

@@ -7,7 +7,9 @@ import android.widget.ImageView
 import androidx.appcompat.app.AppCompatActivity
 import androidx.appcompat.app.AppCompatActivity
 import com.alibaba.android.arouter.facade.annotation.Route
 import com.alibaba.android.arouter.facade.annotation.Route
 import com.develop.base.ext.isNightTheme
 import com.develop.base.ext.isNightTheme
+import com.develop.base.util.MMkvUtils
 import com.develop.common.router.Screens
 import com.develop.common.router.Screens
+import com.develop.common.tag.CURRENT_LANGUAGE
 import com.develop.setting.R
 import com.develop.setting.R
 
 
 @Route(path = Screens.Setting.HELP)
 @Route(path = Screens.Setting.HELP)
@@ -26,10 +28,11 @@ class HelpDocsActivity : AppCompatActivity() {
                 return true
                 return true
             }
             }
         }
         }
+        val language = MMkvUtils.getString(CURRENT_LANGUAGE)
         if (isNightTheme()) {
         if (isNightTheme()) {
-            webView.loadUrl("file:///android_asset/help_night.html")
+            webView.loadUrl("file:///android_asset/help/${language}/help.html")
         } else {
         } else {
-            webView.loadUrl("file:///android_asset/help.html")
+            webView.loadUrl("file:///android_asset/help/${language}/help-white.html")
         }
         }
 
 
         findViewById<ImageView>(R.id.iv_close).setOnClickListener {
         findViewById<ImageView>(R.id.iv_close).setOnClickListener {

+ 7 - 3
BusinessStep/src/main/java/com/develop/step/ui/cook_step/CookStepActivity.kt

@@ -269,6 +269,7 @@ class CookStepActivity : CookStepBaseActivity() {
                 changeDescription()
                 changeDescription()
                 cookProgressDrawable.setStepState(stepIndex, stepCount)
                 cookProgressDrawable.setStepState(stepIndex, stepCount)
                 binding.tvStepName.text = getText(R.string.engjoy_your_meal)
                 binding.tvStepName.text = getText(R.string.engjoy_your_meal)
+                binding.tvStepName.setGone()
                 binding.tvTitleStep.text = getText(R.string.recipe_complete)
                 binding.tvTitleStep.text = getText(R.string.recipe_complete)
                 binding.viewChangeCrush.setGone()
                 binding.viewChangeCrush.setGone()
                 binding.viewChangeWeight.setGone()
                 binding.viewChangeWeight.setGone()
@@ -301,6 +302,7 @@ class CookStepActivity : CookStepBaseActivity() {
                     binding.ivCookBg.setGone()
                     binding.ivCookBg.setGone()
                 }
                 }
             } else {
             } else {
+                binding.tvStepName.setVisible()
                 binding.tvTitleStep.text = titleName
                 binding.tvTitleStep.text = titleName
                 binding.viewChangeCrush.setVisible()
                 binding.viewChangeCrush.setVisible()
                 binding.viewChangeWeight.setVisible()
                 binding.viewChangeWeight.setVisible()
@@ -727,6 +729,7 @@ class CookStepActivity : CookStepBaseActivity() {
 
 
             }
             }
 
 
+            LogUtils.d("========${devInfo.motorGearBuffer}")
 
 
             if (!it.hasStarted && devInfo.status == DevStatus.RUNNING.toInt()) {
             if (!it.hasStarted && devInfo.status == DevStatus.RUNNING.toInt()) {
                 // 标记这个步骤曾经开始过了
                 // 标记这个步骤曾经开始过了
@@ -1259,9 +1262,10 @@ class CookStepActivity : CookStepBaseActivity() {
         } else {
         } else {
             uiData.currentSpeed
             uiData.currentSpeed
         }
         }
-        binding.controller.speedRingView.updateProgress(currentMotorGer)                               // 圆环设置-当前运行速度
-        binding.controller.tvSpeedText.updateText(currentMotorGer.toString())                          // 圆环内的数字-当前运行速度
-        binding.controller.tvSetSpeed.updateText(currentMotorGer.toString())                           // 下面的TAB-当前运行速度
+        LogUtils.d("========${uiData.motorGearBuffer}===${uiData.currentSpeed}")
+        binding.controller.speedRingView.updateProgress(speed)                               // 圆环设置-当前运行速度
+        binding.controller.tvSpeedText.updateText(speed.toString())                          // 圆环内的数字-当前运行速度
+        binding.controller.tvSetSpeed.updateText(speed.toString())                           // 下面的TAB-当前运行速度
 
 
         // 喷水设置
         // 喷水设置
         if (!viewModel.stepUiData.doingModify || focusUpdate) {
         if (!viewModel.stepUiData.doingModify || focusUpdate) {

+ 2 - 2
BusinessStep/src/main/java/com/develop/step/ui/cook_step/CookStepBaseActivity.kt

@@ -289,12 +289,12 @@ abstract class CookStepBaseActivity :
             BCustomerLinearLayout.OnGestureChangeListener {
             BCustomerLinearLayout.OnGestureChangeListener {
             override fun scrollLeft() {
             override fun scrollLeft() {
                 //向左手势
                 //向左手势
-                clickPrevStep()
+                clickNextStep()
             }
             }
 
 
             override fun scrollRight() {
             override fun scrollRight() {
                 //向右手势
                 //向右手势
-                clickNextStep()
+                clickPrevStep()
             }
             }
 
 
         })
         })

+ 1 - 1
BusinessStep/src/main/res/layout/activity_cook_step_base.xml

@@ -110,7 +110,7 @@
                 android:scrollbars="vertical"
                 android:scrollbars="vertical"
                 android:text="Step1:Peel 3 onions(180g)and2garlic cloves,halve the onions andput both in the blender jug."
                 android:text="Step1:Peel 3 onions(180g)and2garlic cloves,halve the onions andput both in the blender jug."
                 android:textColor="#fff"
                 android:textColor="#fff"
-                android:textSize="@dimen/convert_26px"
+                android:textSize="@dimen/convert_32px"
                 app:layout_constraintBottom_toTopOf="@id/iv_prev_step"
                 app:layout_constraintBottom_toTopOf="@id/iv_prev_step"
                 app:layout_constraintStart_toStartOf="parent" />
                 app:layout_constraintStart_toStartOf="parent" />
 
 

+ 1 - 1
BusinessStep/src/main/res/layout/fragment_detail_cook_desc.xml

@@ -14,7 +14,7 @@
         android:text="MAKES 2 JARS (300 ML EACH)"
         android:text="MAKES 2 JARS (300 ML EACH)"
         android:textSize="@dimen/convert_28px"
         android:textSize="@dimen/convert_28px"
         android:textColor="@color/step_detail"
         android:textColor="@color/step_detail"
-        android:lineSpacingExtra="@dimen/convert_10px"
+        android:lineSpacingExtra="@dimen/convert_30px"
         app:layout_constraintStart_toStartOf="parent"
         app:layout_constraintStart_toStartOf="parent"
         app:layout_constraintTop_toTopOf="parent"/>
         app:layout_constraintTop_toTopOf="parent"/>
 
 

+ 200 - 0
app/src/main/assets/help/CZ/help-white.html

@@ -0,0 +1,200 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>帮助文件</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #ffffff;
+    height: 100vh;
+    color: #000000;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #000000;
+    border-right: 2px solid #000000;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>LES FAQ</h2>
+  <div class="item">
+    <h3>La lame s’est tordue dès ma première préparation.</h3>
+    <p>Le couteau n’est pas endommagé, vous pouvez le constater en regardant sa forme spécifique dans votre manuel, il a
+      une lame plus incourbée afin de mieux mélanger les ingrédients.</p>
+  </div>
+
+  <div class="item">
+    <h3>De la fumée sort de l'arrière de l'appareil lors des premières utilisations.</h3>
+    <p>Ce phénomène est normal, la fumée provient des bobinages du moteur qui, étant neufs, peuvent dégager de la fumée
+      et une légère odeur de "plastique chaud" lors des premières utilisations. Ce phénomène sera atténué et disparaîtra
+      à l'usage.</p>
+  </div>
+
+  <div class="item">
+    <h3>Můj robot se již nezahřívá ani nezvedá na požadovanou teplotu.</h3>
+    <p>Po rezervaci receptury a ochlazení misky jednoduše stiskněte prsty, dokud neuslyšíte "kliknutí", abyste
+      resetovali tepelnou sondu pod miskou.</p>
+  </div>
+
+  <div class="item">
+    <h3>Chybová zpráva na obrazovce během procesu receptu.</h3>
+    <p>Robot je vybaven bezpečnostními zařízeními, které minimalizují riziko přetížení motoru (přetékání nebo nadměrné
+      přípravy). Chcete-li tento problém vyřešit, vypněte prosím přístroj a nechte ho vychladnout přibližně 20–30 minut.
+      Poté by měl být problém vyřešen. Pokud stále vidíte, že robotický sporák nelze otevřít, opakujte proces chlazení.
+      Pokud jiné metody nefungují, kontaktujte prosím poprodejní servis.</p>
+  </div>
+
+  <div class="item">
+    <h3>Miska není plně umístěna v základně nebo víko není v uzamčené poloze.</h3>
+    <p>Zkontrolujte, zda je hnací hřídel příslušenství úplně uzamčený (v horní části misky).</p>
+  </div>
+
+  <div class="item">
+    <h3>Příslušenství: Ztratil jsem parní koš, ztratil tlačící tyč a zlomil bič.</h3>
+    <p>Zákazníci si mohou koupit díly přímo na webových stránkách nebo objednávat přímo na e-mailovou adresu
+      prostřednictvím POS</p>
+  </div>
+
+  <div class="item">
+    <h3>Víko je obtížné zavříte.</h3>
+    <p>Po každém čištění naolejte těsnění víka (například namažte prsty rostlinným olejem a naneste ho na těsnění).</p>
+  </div>
+
+  <div class="item">
+    <h3>Nemohu se připojit k WiFi: heslo je správné, blízko krabice.</h3>
+    <p>Ce problème provient du protocole de sécurité Wifi que la box utilise. La box doit fonctionner avec le dernier
+      protocole (WPA2), vous devez effectuer une mise à jour du logiciel de la box.</p>
+  </div>
+
+  <div class="item">
+    <h3>Potřebuji k vytvoření receptu WiFi připojení ?</h3>
+    <p>Ne, WiFi připojení se používá pouze pro aktualizace receptů.</p>
+  </div>
+
+  <div class="item">
+    <h3>Na jakou teplotu se můj robot ohřívá ?</h3>
+    <p>V manuálním režimu může robot zahřívat od 37° C do 130° C a můžete si vybrat změnu teploty v přírůstkech 5° C.
+      Teplotní ovladač zobrazuje pouze teplotu přípravku nad 37° C..</p>
+    <p>*Některé automatické recepty v lze vařit na 160° C, ale manuální režim je omezen na 130° C.</p>
+  </div>
+
+  <div class="item">
+    <h3>Jaké jsou otáčky motoru ?</h3>
+    <p>Rychlost nastavitelná od 1 do 12.</p>
+    <p>Z bezpečnostních důvodů, když je vaření aktivní, robot omezuje svou rychlost na 3.</p>
+  </div>
+
+  <div class="item">
+    <h3>Jak vyčistit robota ?</h3>
+    <p>Po vypnutí a odpojení napájecího kabelu se doporučuje po použití robota okamžitě opláchnout misku a příslušenství
+      horkou vodou.</p>
+    <p>Pokud jsou na dně mísy stopy popálení, je nejlepší namočit vnitřek mísy a příležitostně otřít dno mísy houbou,
+      dokud se jídlo neolupe.</p>
+    <p>Můžete také spustit čisticí program. </p>
+  </div>
+
+  <div class="item">
+    <h3>Mohou být všechny příslušenství myčky nádobí ?</h3>
+    <p>Veškeré příslušenství robota lze umístit do myčky nádobí (s výjimkou bloku motoru).</p>
+  </div>
+
+  <div class="item">
+    <h3>Některé potraviny mohou způsobit změnu barvy plastu. Jak se uklízí?</h3>
+    <p>Některé barevné ingredience, jako je kari, rajčata, mrkev atd., mohou kontaminovat plastové části a tento barevný
+      efekt není vždy možné vyhnout. Tato barva nemá žádný vliv na vaše zdraví ani funkčnost příslušenství.
+      Chcete-li snížit barvu, otřete skvrnou oblast hadříkem nebo kapesníkem namočeným v oleji a pak provádějte
+      pravidelné čištění.</p>
+    <p>Čištění musí být provedeno ihned po použití, aby se snížilo skvrny.</p>
+    <p>Poznámka: Tento problém se nevztahuje do záruky, protože jde o estetický problém, nikoliv o poruchu..</p>
+  </div>
+
+  <div class="item">
+    <h3>Na krytu vaření se objevily bílé skvrny. Jak je odstranit?</h3>
+    <p>Tyto značky jsou usazeniny zubního kamene vzniklé použitím vápencové vody během vaření. Měl by být použit roztok
+      proti šupinatí a víko by mělo být namočeno dostatečně dlouho, aby změkčilo značky.</p>
+    <p>Upozorňujeme, že čím delší doba vaření tyto skvrny trvá, tím tvrdší jsou a tím obtížnější je je odstranit, proto
+      doporučujeme je ihned po zjištění odstranit..</p>
+  </div>
+
+  <div class="item">
+    <h3>Jak čistit potraviny, které hoří a přilne ke dnu misky ?</h3>
+    <p>Existuje několik řešení, například můžete dát spodní vodu a namočit ji do jedlé sody, citronu nebo roztoku mytí
+      nádobí.</p>
+    <p>V misce můžete také ohřát vodu z bílého octu a několik kapek tekutiny na mytí nádobí a nechat ji chvíli sedět
+      před čištěním. Pokud vše nezmizí, restartujte operaci.</p>
+    <p>Obzvláště účinným tip je vložit do ní peletu z myčky a trochu horké vody a nechat ji chvíli namočit..</p>
+  </div>
+
+  <div class="item">
+    <h3>Jak zabránit tomu, aby se jídlo stále drželo na misce na přípravcích, které je třeba uvařit ?</h3>
+    <p>Před zahájením vaření receptu doporučujeme použít namočený savý papír na olej dna misky. Tato pravidelná údržba
+      zabrání přilepení jídla na misku. Pro sladké přípravky použijte trochu citronové šťávy namísto oleje.</p>
+  </div>
+
+  <div class="item">
+    <h3>Nesprávné míchání nebo neúplné vaření surovin</h3>
+    <p>Může to být proto, že daný recept může vyžadovat více doby vaření.
+      Ačkoli teoreticky existuje jasný čas vaření jídla v receptu, doba vaření se může lišit kvůli několika faktorům.:
+    </p>
+    <ul>
+      <li>-Teplota potravin během receptury ;</li>
+      <li>-Pokud nevyndete ingredience z lednice a nejsou při pokojové teplotě ;</li>
+      <li>-Zdroj a zralost složek.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>Nevím, jak ohřívat předem připravená jídla.</h3>
+    <p>R : Musíte přepnout do manuálního režimu a zvolit teplotu, dobu trvání atd. na základě předehřívaného přípravku..
+    </p>
+  </div>
+
+  <div class="item">
+    <h3>Přepad zařízení během procesu vaření.</h3>
+    <p>R :Tento jev je způsoben vysokou teplotou kapaliny a potravin v míse, která zvyšuje tlak uvnitř mísy a způsobuje
+      přetékání. Chcete-li se této situaci vyhnout, snížte teplotu nebo použijte velký parní koš se skleněným víkem
+      namísto varného víka..</p>
+  </div>
+</body>
+
+</html>

+ 200 - 0
app/src/main/assets/help/CZ/help.html

@@ -0,0 +1,200 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>帮助文件</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #000000;
+    height: 100vh;
+    color: #ffffff;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #ffffff;
+    border-right: 2px solid #ffffff;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>LES FAQ</h2>
+  <div class="item">
+    <h3>La lame s’est tordue dès ma première préparation.</h3>
+    <p>Le couteau n’est pas endommagé, vous pouvez le constater en regardant sa forme spécifique dans votre manuel, il a
+      une lame plus incourbée afin de mieux mélanger les ingrédients.</p>
+  </div>
+
+  <div class="item">
+    <h3>De la fumée sort de l'arrière de l'appareil lors des premières utilisations.</h3>
+    <p>Ce phénomène est normal, la fumée provient des bobinages du moteur qui, étant neufs, peuvent dégager de la fumée
+      et une légère odeur de "plastique chaud" lors des premières utilisations. Ce phénomène sera atténué et disparaîtra
+      à l'usage.</p>
+  </div>
+
+  <div class="item">
+    <h3>Můj robot se již nezahřívá ani nezvedá na požadovanou teplotu.</h3>
+    <p>Po rezervaci receptury a ochlazení misky jednoduše stiskněte prsty, dokud neuslyšíte "kliknutí", abyste
+      resetovali tepelnou sondu pod miskou.</p>
+  </div>
+
+  <div class="item">
+    <h3>Chybová zpráva na obrazovce během procesu receptu.</h3>
+    <p>Robot je vybaven bezpečnostními zařízeními, které minimalizují riziko přetížení motoru (přetékání nebo nadměrné
+      přípravy). Chcete-li tento problém vyřešit, vypněte prosím přístroj a nechte ho vychladnout přibližně 20–30 minut.
+      Poté by měl být problém vyřešen. Pokud stále vidíte, že robotický sporák nelze otevřít, opakujte proces chlazení.
+      Pokud jiné metody nefungují, kontaktujte prosím poprodejní servis.</p>
+  </div>
+
+  <div class="item">
+    <h3>Miska není plně umístěna v základně nebo víko není v uzamčené poloze.</h3>
+    <p>Zkontrolujte, zda je hnací hřídel příslušenství úplně uzamčený (v horní části misky).</p>
+  </div>
+
+  <div class="item">
+    <h3>Příslušenství: Ztratil jsem parní koš, ztratil tlačící tyč a zlomil bič.</h3>
+    <p>Zákazníci si mohou koupit díly přímo na webových stránkách nebo objednávat přímo na e-mailovou adresu
+      prostřednictvím POS</p>
+  </div>
+
+  <div class="item">
+    <h3>Víko je obtížné zavříte.</h3>
+    <p>Po každém čištění naolejte těsnění víka (například namažte prsty rostlinným olejem a naneste ho na těsnění).</p>
+  </div>
+
+  <div class="item">
+    <h3>Nemohu se připojit k WiFi: heslo je správné, blízko krabice.</h3>
+    <p>Ce problème provient du protocole de sécurité Wifi que la box utilise. La box doit fonctionner avec le dernier
+      protocole (WPA2), vous devez effectuer une mise à jour du logiciel de la box.</p>
+  </div>
+
+  <div class="item">
+    <h3>Potřebuji k vytvoření receptu WiFi připojení ?</h3>
+    <p>Ne, WiFi připojení se používá pouze pro aktualizace receptů.</p>
+  </div>
+
+  <div class="item">
+    <h3>Na jakou teplotu se můj robot ohřívá ?</h3>
+    <p>V manuálním režimu může robot zahřívat od 37° C do 130° C a můžete si vybrat změnu teploty v přírůstkech 5° C.
+      Teplotní ovladač zobrazuje pouze teplotu přípravku nad 37° C..</p>
+    <p>*Některé automatické recepty v lze vařit na 160° C, ale manuální režim je omezen na 130° C.</p>
+  </div>
+
+  <div class="item">
+    <h3>Jaké jsou otáčky motoru ?</h3>
+    <p>Rychlost nastavitelná od 1 do 12.</p>
+    <p>Z bezpečnostních důvodů, když je vaření aktivní, robot omezuje svou rychlost na 3.</p>
+  </div>
+
+  <div class="item">
+    <h3>Jak vyčistit robota ?</h3>
+    <p>Po vypnutí a odpojení napájecího kabelu se doporučuje po použití robota okamžitě opláchnout misku a příslušenství
+      horkou vodou.</p>
+    <p>Pokud jsou na dně mísy stopy popálení, je nejlepší namočit vnitřek mísy a příležitostně otřít dno mísy houbou,
+      dokud se jídlo neolupe.</p>
+    <p>Můžete také spustit čisticí program. </p>
+  </div>
+
+  <div class="item">
+    <h3>Mohou být všechny příslušenství myčky nádobí ?</h3>
+    <p>Veškeré příslušenství robota lze umístit do myčky nádobí (s výjimkou bloku motoru).</p>
+  </div>
+
+  <div class="item">
+    <h3>Některé potraviny mohou způsobit změnu barvy plastu. Jak se uklízí?</h3>
+    <p>Některé barevné ingredience, jako je kari, rajčata, mrkev atd., mohou kontaminovat plastové části a tento barevný
+      efekt není vždy možné vyhnout. Tato barva nemá žádný vliv na vaše zdraví ani funkčnost příslušenství.
+      Chcete-li snížit barvu, otřete skvrnou oblast hadříkem nebo kapesníkem namočeným v oleji a pak provádějte
+      pravidelné čištění.</p>
+    <p>Čištění musí být provedeno ihned po použití, aby se snížilo skvrny.</p>
+    <p>Poznámka: Tento problém se nevztahuje do záruky, protože jde o estetický problém, nikoliv o poruchu..</p>
+  </div>
+
+  <div class="item">
+    <h3>Na krytu vaření se objevily bílé skvrny. Jak je odstranit?</h3>
+    <p>Tyto značky jsou usazeniny zubního kamene vzniklé použitím vápencové vody během vaření. Měl by být použit roztok
+      proti šupinatí a víko by mělo být namočeno dostatečně dlouho, aby změkčilo značky.</p>
+    <p>Upozorňujeme, že čím delší doba vaření tyto skvrny trvá, tím tvrdší jsou a tím obtížnější je je odstranit, proto
+      doporučujeme je ihned po zjištění odstranit..</p>
+  </div>
+
+  <div class="item">
+    <h3>Jak čistit potraviny, které hoří a přilne ke dnu misky ?</h3>
+    <p>Existuje několik řešení, například můžete dát spodní vodu a namočit ji do jedlé sody, citronu nebo roztoku mytí
+      nádobí.</p>
+    <p>V misce můžete také ohřát vodu z bílého octu a několik kapek tekutiny na mytí nádobí a nechat ji chvíli sedět
+      před čištěním. Pokud vše nezmizí, restartujte operaci.</p>
+    <p>Obzvláště účinným tip je vložit do ní peletu z myčky a trochu horké vody a nechat ji chvíli namočit..</p>
+  </div>
+
+  <div class="item">
+    <h3>Jak zabránit tomu, aby se jídlo stále drželo na misce na přípravcích, které je třeba uvařit ?</h3>
+    <p>Před zahájením vaření receptu doporučujeme použít namočený savý papír na olej dna misky. Tato pravidelná údržba
+      zabrání přilepení jídla na misku. Pro sladké přípravky použijte trochu citronové šťávy namísto oleje.</p>
+  </div>
+
+  <div class="item">
+    <h3>Nesprávné míchání nebo neúplné vaření surovin</h3>
+    <p>Může to být proto, že daný recept může vyžadovat více doby vaření.
+      Ačkoli teoreticky existuje jasný čas vaření jídla v receptu, doba vaření se může lišit kvůli několika faktorům.:
+    </p>
+    <ul>
+      <li>-Teplota potravin během receptury ;</li>
+      <li>-Pokud nevyndete ingredience z lednice a nejsou při pokojové teplotě ;</li>
+      <li>-Zdroj a zralost složek.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>Nevím, jak ohřívat předem připravená jídla.</h3>
+    <p>R : Musíte přepnout do manuálního režimu a zvolit teplotu, dobu trvání atd. na základě předehřívaného přípravku..
+    </p>
+  </div>
+
+  <div class="item">
+    <h3>Přepad zařízení během procesu vaření.</h3>
+    <p>R :Tento jev je způsoben vysokou teplotou kapaliny a potravin v míse, která zvyšuje tlak uvnitř mísy a způsobuje
+      přetékání. Chcete-li se této situaci vyhnout, snížte teplotu nebo použijte velký parní koš se skleněným víkem
+      namísto varného víka..</p>
+  </div>
+</body>
+
+</html>

+ 210 - 0
app/src/main/assets/help/DE/help-white.html

@@ -0,0 +1,210 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>帮助文件</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #ffffff;
+    height: 100vh;
+    color: #000000;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #000000;
+    border-right: 2px solid #000000;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>Die FAQ's</h2>
+  <div class="item">
+    <h3>Die Klinge verdreht von meiner ersten Vorbereitung.</h3>
+    <p>Die Klinge ist nicht beschädigt, Sie können sie sehen, indem Sie sich ihre spezifische Form in Ihrem Handbuch
+      ansehen, es hat eine gebogenere Klinge, um die Zutaten besser zu mischen.</p>
+  </div>
+
+  <div class="item">
+    <h3>Rauch tritt beim ersten Gebrauch aus der Rückseite des Geräts heraus.</h3>
+    <p>Dieses Phänomen ist normal, der Rauch kommt von den Wicklungen des Motors, die, da neu, Rauch und einen leichten
+      Geruch von "heißem Kunststoff" während der ersten NUTZUNG abgeben können. Dieses Phänomen wird gemildert und wird
+      im Gebrauch verschwinden.</p>
+  </div>
+
+  <div class="item">
+    <h3>Mein Roboter erwärmt sich nicht mehr oder erreicht nicht die gewünschte Temperatur.</h3>
+    <p>Nachdem Sie die Zubereitung reserviert und die Schüssel gekühlt haben, setzen Sie einfach den Thermofühler unter
+      der Schüssel zurück, indem Sie mit dem Finger drücken, bis Sie ein "Klicken" hören.</p>
+  </div>
+
+  <div class="item">
+    <h3>Fehlermeldung auf dem Bildschirm während des Rezeptvorgangs.</h3>
+    <p>Der Roboter ist mit Sicherheitseinrichtungen ausgestattet, um das Risiko einer Motorüberlastung (Überlastung oder
+      übermäßige Vorbereitung) zu minimieren. Um dieses Problem zu lösen, schalten Sie bitte das Gerät aus und lassen
+      Sie es ca. 20 bis 30 Minuten abkühlen. Danach sollte das Problem gelöst werden. Wenn Sie immer noch sehen, dass
+      der Kochroboter nicht geöffnet werden kann, wiederholen Sie bitte den Kühlvorgang. Wenn andere Methoden nicht
+      funktionieren, kontaktieren Sie bitte den Kundendienst.</p>
+  </div>
+
+  <div class="item">
+    <h3>Die Schüssel ist nicht vollständig in der Basis platziert oder der Deckel ist nicht in der verriegelten
+      Position.</h3>
+    <p>Überprüfen Sie, ob die Antriebswelle des Zubehörs vollständig verriegelt ist (oben auf der Schüssel).</p>
+  </div>
+
+  <div class="item">
+    <h3>Zubehör: Ich verlor den Dampfkorb, verlor die Schubstange und brach die Peitsche.</h3>
+    <p>Kunden können Teile direkt auf der Website kaufen oder Bestellungen direkt an der E-Mail-Adresse über POS
+      aufgeben</p>
+  </div>
+
+  <div class="item">
+    <h3>Der Deckel ist schwer zu schließen.</h3>
+    <p>Die Deckeldichtung nach jeder Reinigung einölen (z.B. Finger mit Pflanzenöl schmieren und auf die Dichtung
+      auftragen).</p>
+  </div>
+
+  <div class="item">
+    <h3>Ich kann mich nicht mit WLAN verbinden: das Passwort ist korrekt, in der Nähe der Box.</h3>
+    <p>Dieses Problem beruht auf dem WLAN-Sicherheitsprotokoll, das von der Box verwendet wird. Die Box muss das neueste
+      Protokoll (WPA2) verwenden, und Sie müssen die Software der Box aktualisieren.</p>
+  </div>
+
+  <div class="item">
+    <h3>Brauche ich eine WLAN-Verbindung, um ein Rezept zu erstellen?</h3>
+    <p>Nein, WLAN-Verbindung wird nur für Rezepte-Updates verwendet.</p>
+  </div>
+
+  <div class="item">
+    <h3>Auf welche Temperatur erwärmt sich mein Roboter? ?</h3>
+    <p>Im manuellen Modus kann der Roboter von 37° C auf 130° C erwärmen, und Sie können wählen, die Temperatur in
+      Schritten von 5° C zu ändern.</p>
+    <p>*Einige automatische Rezepte können bei 160° C gekocht werden, aber der manuelle Modus ist auf 130° C beschränkt.
+    </p>
+  </div>
+
+  <div class="item">
+    <h3>Was ist die Motordrehzahl? ?</h3>
+    <p>Die Geschwindigkeit kann von 1 bis 12 eingestellt werden.</p>
+    <p>Aus Sicherheitsgründen begrenzt der Roboter während des Kochens seine Geschwindigkeit auf 3.</p>
+  </div>
+
+  <div class="item">
+    <h3>Wie reinige ich meinen Roboter? ?</h3>
+    <p>Nach dem Ausschalten und Ziehen des Netzkabels wird empfohlen, die Schüssel und das Zubehör sofort nach der
+      Verwendung des Roboters mit heißem Wasser zu spülen.
+      Wenn sich Brandspuren auf dem Boden der Schüssel befinden, ist es am besten, das Innere der Schüssel einzuweichen
+      und gelegentlich den Boden der Schüssel mit einem Schwamm zu reiben, bis sich das Essen abzieht.
+      Sie können auch das Reinigungsprogramm starten. </p>
+  </div>
+
+  <div class="item">
+    <h3>Können alle Zubehörteile Geschirrspülmaschinen sein? ?</h3>
+    <p>Alle Zubehörteile des Roboters können in die Spülmaschine gestellt werden (außer Motorblock).</p>
+  </div>
+
+  <div class="item">
+    <h3>Einige Lebensmittel können dazu führen, dass Plastik die Farbe ändert. So reinigen ?</h3>
+    <p>Einige farbige Zutaten, wie Curry, Tomaten, Karotten usw., können Kunststoffteile kontaminieren, und dieser
+      Färbeeffekt ist nicht immer vermeidbar. Diese Farbe hat keinen Einfluss auf Ihre Gesundheit oder die
+      Funktionalität des Zubehörs.</p>
+    <p>Um die Farbe zu reduzieren, wischen Sie die fleckige Stelle mit einem Tuch oder Tuch ab, das in Speiseöl getränkt
+      ist, und führen Sie dann regelmäßige Reinigung durch.</p>
+    <p>Die Reinigung muss sofort nach Gebrauch durchgeführt werden, um Flecken zu reduzieren.</p>
+    <p>Hinweis: Dieses Problem ist nicht von der Garantie abgedeckt, da es sich um ein ästhetisches Problem und keine
+      Fehlfunktion handelt.</p>
+  </div>
+
+  <div class="item">
+    <h3>Weiße Flecken erschienen auf dem Kochdeckel. Wie man sie entfernt ?</h3>
+    <p>Diese Spuren sind Zahnsteinablagerungen, die durch die Verwendung von Kalkwasser während des Kochens entstehen.
+      Es sollte eine Anti-Schuppenlösung verwendet werden und der Deckel sollte ausreichend eingeweicht werden, um die
+      Flecken aufzuweichen.</p>
+    <p>Bitte beachten Sie, dass je länger die Garzeit dieser Flecken dauert, desto härter sie werden und desto
+      schwieriger ist es, sie zu entfernen. Daher empfehlen wir, sie sofort nach Entdeckung zu entfernen.</p>
+  </div>
+
+  <div class="item">
+    <h3>So reinigen Sie Lebensmittel, die verbrennen und am Boden der Schüssel haften ?</h3>
+    <p>Es gibt mehrere Lösungen, zum Beispiel können Sie ein Bodenwasser geben und es in Backpulver, Zitrone oder
+      Geschirrspüllösung einweichen.</p>
+    <p>Du kannst auch etwas Weißessigwasser und ein paar Tropfen Geschirrspülmittel in einer Schüssel erhitzen und es
+      vor der Reinigung eine Weile einwirken lassen. Wenn nicht alles verschwindet, starten Sie den Vorgang neu.
+      Ein besonders effektiver Tipp ist es, ein Geschirrspülerpellet und etwas heißes Wasser hinein zu geben und es eine
+      Weile einweichen zu lassen.</p>
+  </div>
+
+  <div class="item">
+    <h3>So vermeiden Sie, dass Lebensmittel bei Zubereitungen, die gekocht werden müssen, noch an der Schüssel haften
+      bleiben?</h3>
+    <p>Bevor Sie mit dem Kochen beginnen, empfehlen wir, den Boden der Schüssel mit eingeweichtem, saugfähigem Papier zu
+      ölen. Diese regelmäßige Wartung verhindert, dass Lebensmittel an der Schüssel haften bleiben. Verwenden Sie für
+      zuckerhaltige Zubereitungen statt Öl etwas Zitronensaft.</p>
+  </div>
+
+  <div class="item">
+    <h3>Falsches Mischen oder unvollständiges Kochen von Zutaten</h3>
+    <p>Dies kann daran liegen, dass das betreffende Rezept möglicherweise mehr Kochzeit benötigt.
+      Obwohl es theoretisch eine klare Garzeit für Lebensmittel im Rezept gibt, kann die Garzeit aufgrund mehrerer
+      Faktoren variieren :</p>
+    <ul>
+      <li>- Lebensmitteltemperatur während der Rezeptur ;</li>
+      <li>- Wenn du die Zutaten nicht aus dem Kühlschrank nimmst und sie nicht bei Raumtemperatur sind ;</li>
+      <li>- Herkunft und Reife der Zutaten.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>Ich weiß nicht, wie man vorgefertigte Gerichte erhitzt.</h3>
+    <p>R : Sie müssen in den manuellen Modus wechseln und Temperatur, Dauer usw. basierend auf der Zubereitung
+      auswählen, die vorgewärmt werden soll..</p>
+  </div>
+
+  <div class="item">
+    <h3>Anlagenüberlauf während des Garvorgangs.</h3>
+    <p>R : Dieses Phänomen ist auf die hohe Temperatur der Flüssigkeit und Nahrung in der Schüssel zurückzuführen, die
+      den Druck innerhalb der Schüssel erhöht und Überlauf verursacht. Um diese Situation zu vermeiden, senken Sie die
+      Temperatur oder verwenden Sie einen großen Dampfkorb mit Glasdeckel anstelle eines Kochdeckels.</p>
+  </div>
+</body>
+
+</html>

+ 210 - 0
app/src/main/assets/help/DE/help.html

@@ -0,0 +1,210 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>帮助文件</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #000000;
+    height: 100vh;
+    color: #ffffff;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #ffffff;
+    border-right: 2px solid #ffffff;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>Die FAQ's</h2>
+  <div class="item">
+    <h3>Die Klinge verdreht von meiner ersten Vorbereitung.</h3>
+    <p>Die Klinge ist nicht beschädigt, Sie können sie sehen, indem Sie sich ihre spezifische Form in Ihrem Handbuch
+      ansehen, es hat eine gebogenere Klinge, um die Zutaten besser zu mischen.</p>
+  </div>
+
+  <div class="item">
+    <h3>Rauch tritt beim ersten Gebrauch aus der Rückseite des Geräts heraus.</h3>
+    <p>Dieses Phänomen ist normal, der Rauch kommt von den Wicklungen des Motors, die, da neu, Rauch und einen leichten
+      Geruch von "heißem Kunststoff" während der ersten NUTZUNG abgeben können. Dieses Phänomen wird gemildert und wird
+      im Gebrauch verschwinden.</p>
+  </div>
+
+  <div class="item">
+    <h3>Mein Roboter erwärmt sich nicht mehr oder erreicht nicht die gewünschte Temperatur.</h3>
+    <p>Nachdem Sie die Zubereitung reserviert und die Schüssel gekühlt haben, setzen Sie einfach den Thermofühler unter
+      der Schüssel zurück, indem Sie mit dem Finger drücken, bis Sie ein "Klicken" hören.</p>
+  </div>
+
+  <div class="item">
+    <h3>Fehlermeldung auf dem Bildschirm während des Rezeptvorgangs.</h3>
+    <p>Der Roboter ist mit Sicherheitseinrichtungen ausgestattet, um das Risiko einer Motorüberlastung (Überlastung oder
+      übermäßige Vorbereitung) zu minimieren. Um dieses Problem zu lösen, schalten Sie bitte das Gerät aus und lassen
+      Sie es ca. 20 bis 30 Minuten abkühlen. Danach sollte das Problem gelöst werden. Wenn Sie immer noch sehen, dass
+      der Kochroboter nicht geöffnet werden kann, wiederholen Sie bitte den Kühlvorgang. Wenn andere Methoden nicht
+      funktionieren, kontaktieren Sie bitte den Kundendienst.</p>
+  </div>
+
+  <div class="item">
+    <h3>Die Schüssel ist nicht vollständig in der Basis platziert oder der Deckel ist nicht in der verriegelten
+      Position.</h3>
+    <p>Überprüfen Sie, ob die Antriebswelle des Zubehörs vollständig verriegelt ist (oben auf der Schüssel).</p>
+  </div>
+
+  <div class="item">
+    <h3>Zubehör: Ich verlor den Dampfkorb, verlor die Schubstange und brach die Peitsche.</h3>
+    <p>Kunden können Teile direkt auf der Website kaufen oder Bestellungen direkt an der E-Mail-Adresse über POS
+      aufgeben</p>
+  </div>
+
+  <div class="item">
+    <h3>Der Deckel ist schwer zu schließen.</h3>
+    <p>Die Deckeldichtung nach jeder Reinigung einölen (z.B. Finger mit Pflanzenöl schmieren und auf die Dichtung
+      auftragen).</p>
+  </div>
+
+  <div class="item">
+    <h3>Ich kann mich nicht mit WLAN verbinden: das Passwort ist korrekt, in der Nähe der Box.</h3>
+    <p>Dieses Problem beruht auf dem WLAN-Sicherheitsprotokoll, das von der Box verwendet wird. Die Box muss das neueste
+      Protokoll (WPA2) verwenden, und Sie müssen die Software der Box aktualisieren.</p>
+  </div>
+
+  <div class="item">
+    <h3>Brauche ich eine WLAN-Verbindung, um ein Rezept zu erstellen?</h3>
+    <p>Nein, WLAN-Verbindung wird nur für Rezepte-Updates verwendet.</p>
+  </div>
+
+  <div class="item">
+    <h3>Auf welche Temperatur erwärmt sich mein Roboter? ?</h3>
+    <p>Im manuellen Modus kann der Roboter von 37° C auf 130° C erwärmen, und Sie können wählen, die Temperatur in
+      Schritten von 5° C zu ändern.</p>
+    <p>*Einige automatische Rezepte können bei 160° C gekocht werden, aber der manuelle Modus ist auf 130° C beschränkt.
+    </p>
+  </div>
+
+  <div class="item">
+    <h3>Was ist die Motordrehzahl? ?</h3>
+    <p>Die Geschwindigkeit kann von 1 bis 12 eingestellt werden.</p>
+    <p>Aus Sicherheitsgründen begrenzt der Roboter während des Kochens seine Geschwindigkeit auf 3.</p>
+  </div>
+
+  <div class="item">
+    <h3>Wie reinige ich meinen Roboter? ?</h3>
+    <p>Nach dem Ausschalten und Ziehen des Netzkabels wird empfohlen, die Schüssel und das Zubehör sofort nach der
+      Verwendung des Roboters mit heißem Wasser zu spülen.
+      Wenn sich Brandspuren auf dem Boden der Schüssel befinden, ist es am besten, das Innere der Schüssel einzuweichen
+      und gelegentlich den Boden der Schüssel mit einem Schwamm zu reiben, bis sich das Essen abzieht.
+      Sie können auch das Reinigungsprogramm starten. </p>
+  </div>
+
+  <div class="item">
+    <h3>Können alle Zubehörteile Geschirrspülmaschinen sein? ?</h3>
+    <p>Alle Zubehörteile des Roboters können in die Spülmaschine gestellt werden (außer Motorblock).</p>
+  </div>
+
+  <div class="item">
+    <h3>Einige Lebensmittel können dazu führen, dass Plastik die Farbe ändert. So reinigen ?</h3>
+    <p>Einige farbige Zutaten, wie Curry, Tomaten, Karotten usw., können Kunststoffteile kontaminieren, und dieser
+      Färbeeffekt ist nicht immer vermeidbar. Diese Farbe hat keinen Einfluss auf Ihre Gesundheit oder die
+      Funktionalität des Zubehörs.</p>
+    <p>Um die Farbe zu reduzieren, wischen Sie die fleckige Stelle mit einem Tuch oder Tuch ab, das in Speiseöl getränkt
+      ist, und führen Sie dann regelmäßige Reinigung durch.</p>
+    <p>Die Reinigung muss sofort nach Gebrauch durchgeführt werden, um Flecken zu reduzieren.</p>
+    <p>Hinweis: Dieses Problem ist nicht von der Garantie abgedeckt, da es sich um ein ästhetisches Problem und keine
+      Fehlfunktion handelt.</p>
+  </div>
+
+  <div class="item">
+    <h3>Weiße Flecken erschienen auf dem Kochdeckel. Wie man sie entfernt ?</h3>
+    <p>Diese Spuren sind Zahnsteinablagerungen, die durch die Verwendung von Kalkwasser während des Kochens entstehen.
+      Es sollte eine Anti-Schuppenlösung verwendet werden und der Deckel sollte ausreichend eingeweicht werden, um die
+      Flecken aufzuweichen.</p>
+    <p>Bitte beachten Sie, dass je länger die Garzeit dieser Flecken dauert, desto härter sie werden und desto
+      schwieriger ist es, sie zu entfernen. Daher empfehlen wir, sie sofort nach Entdeckung zu entfernen.</p>
+  </div>
+
+  <div class="item">
+    <h3>So reinigen Sie Lebensmittel, die verbrennen und am Boden der Schüssel haften ?</h3>
+    <p>Es gibt mehrere Lösungen, zum Beispiel können Sie ein Bodenwasser geben und es in Backpulver, Zitrone oder
+      Geschirrspüllösung einweichen.</p>
+    <p>Du kannst auch etwas Weißessigwasser und ein paar Tropfen Geschirrspülmittel in einer Schüssel erhitzen und es
+      vor der Reinigung eine Weile einwirken lassen. Wenn nicht alles verschwindet, starten Sie den Vorgang neu.
+      Ein besonders effektiver Tipp ist es, ein Geschirrspülerpellet und etwas heißes Wasser hinein zu geben und es eine
+      Weile einweichen zu lassen.</p>
+  </div>
+
+  <div class="item">
+    <h3>So vermeiden Sie, dass Lebensmittel bei Zubereitungen, die gekocht werden müssen, noch an der Schüssel haften
+      bleiben?</h3>
+    <p>Bevor Sie mit dem Kochen beginnen, empfehlen wir, den Boden der Schüssel mit eingeweichtem, saugfähigem Papier zu
+      ölen. Diese regelmäßige Wartung verhindert, dass Lebensmittel an der Schüssel haften bleiben. Verwenden Sie für
+      zuckerhaltige Zubereitungen statt Öl etwas Zitronensaft.</p>
+  </div>
+
+  <div class="item">
+    <h3>Falsches Mischen oder unvollständiges Kochen von Zutaten</h3>
+    <p>Dies kann daran liegen, dass das betreffende Rezept möglicherweise mehr Kochzeit benötigt.
+      Obwohl es theoretisch eine klare Garzeit für Lebensmittel im Rezept gibt, kann die Garzeit aufgrund mehrerer
+      Faktoren variieren :</p>
+    <ul>
+      <li>- Lebensmitteltemperatur während der Rezeptur ;</li>
+      <li>- Wenn du die Zutaten nicht aus dem Kühlschrank nimmst und sie nicht bei Raumtemperatur sind ;</li>
+      <li>- Herkunft und Reife der Zutaten.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>Ich weiß nicht, wie man vorgefertigte Gerichte erhitzt.</h3>
+    <p>R : Sie müssen in den manuellen Modus wechseln und Temperatur, Dauer usw. basierend auf der Zubereitung
+      auswählen, die vorgewärmt werden soll..</p>
+  </div>
+
+  <div class="item">
+    <h3>Anlagenüberlauf während des Garvorgangs.</h3>
+    <p>R : Dieses Phänomen ist auf die hohe Temperatur der Flüssigkeit und Nahrung in der Schüssel zurückzuführen, die
+      den Druck innerhalb der Schüssel erhöht und Überlauf verursacht. Um diese Situation zu vermeiden, senken Sie die
+      Temperatur oder verwenden Sie einen großen Dampfkorb mit Glasdeckel anstelle eines Kochdeckels.</p>
+  </div>
+</body>
+
+</html>

+ 205 - 0
app/src/main/assets/help/EN/help-white.html

@@ -0,0 +1,205 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>The FAQ's</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #ffffff;
+    height: 100vh;
+    color: #000000;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #000000;
+    border-right: 2px solid #000000;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>The FAQ's</h2>
+  <div class="item">
+    <h3>The blade twisted from my first preparation.</h3>
+    <p>The blade is not damaged, you can see it by looking at its specific shape in your manual, it has a more curved
+      blade in order to better mix the ingredients.</p>
+  </div>
+
+  <div class="item">
+    <h3>Smoke comes out of the back of the device during the first use.</h3>
+    <p>This phenomenon is normal, the smoke comes from the windings of the engine which, being new, can give off smoke
+      and a slight smell of "hot plastic" during the first USES. This phenomenon will be mitigated and will disappear in
+      use./p>
+  </div>
+
+  <div class="item">
+    <h3>My robot no longer heats or does not rise to the requested temperature.</h3>
+    <p>After reserving the preparation and cooling the bowl, simply reset the thermal probe placed under the bowl by
+      pressing with your finger until you hear a "click".</p>
+  </div>
+
+  <div class="item">
+    <h3>Error message on screen during recipe process.</h3>
+    <p>The robot is equipped with safety devices to minimize the risk of engine overload (overflow or excessive
+      preparation). To solve this problem, please turn off the device and let it cool for approximately 20 to 30
+      minutes. Afterwards, the problem should be resolved. If you still see that the robot cooker cannot be opened,
+      please repeat the cooling process. If other methods do not work, please contact after-sales service.</p>
+  </div>
+
+  <div class="item">
+    <h3>The bowl is not fully placed in the base, or the lid is not in the locked position.</h3>
+    <p>Check if the accessory drive shaft is fully locked (at the top of the bowl).</p>
+  </div>
+
+  <div class="item">
+    <h3>Accessories: I lost the steam basket, lost the push rod, and broke the whip.</h3>
+    <p>Customers can purchase parts directly on the website , or place orders directly at the email address through POS
+    </p>
+  </div>
+
+  <div class="item">
+    <h3>The lid is difficult to close.</h3>
+    <p>Oil the lid seal after each cleaning (e.g. lubricate fingers with vegetable oil and apply to the seal).</p>
+  </div>
+
+  <div class="item">
+    <h3>I am unable to connect to WiFi: the password is correct, close to the box.</h3>
+    <p>This issue stems from the WiFi security protocol used by the box. The box must use the latest protocol (WPA2),
+      and you must update the software of the box.</p>
+  </div>
+
+  <div class="item">
+    <h3>Do I need a WiFi connection to create a recipe ?</h3>
+    <p>No, WiFi connection is only used for recipe updates.</p>
+  </div>
+
+  <div class="item">
+    <h3>What temperature does my robot heat up to ?</h3>
+    <p>In manual mode, the robot can heat from 37 ° C to 130 ° C, and you can choose to change the temperature in
+      increments of 5 ° C. The temperature dial only displays the temperature of the formulation above 37 ° C..</p>
+    <p>*Some automatic recipes in can be cooked at 160 ° C, but manual mode is limited to 130 ° C.</p>
+  </div>
+
+  <div class="item">
+    <h3>What is the engine speed ?</h3>
+    <p>The speed can be adjusted from 1 to 12.</p>
+    <p>For safety reasons, the robot limits its speed to 3 during cooking activities.</p>
+  </div>
+
+
+  <div class="item">
+    <h3>How to clean my robot ?</h3>
+    <p>After turning off and unplugging the power cord, it is recommended to immediately rinse the bowl and accessories
+      with hot water after using the robot.</p>
+    <p>If there are burn marks on the bottom of the bowl, it is best to soak the inside of the bowl and occasionally rub
+      the bottom of the bowl with a sponge until the food peels off.</p>
+    <p>You can also start the cleaning program. </p>
+  </div>
+
+  <div class="item">
+    <h3>Can all accessories be dishwashers ?</h3>
+    <p>All accessories of the robot can be placed in the dishwasher (except for the engine block). </p>
+  </div>
+
+  <div class="item">
+    <h3>Some foods can cause plastic to change color. How to clean ?</h3>
+    <p>Some colored ingredients, such as curry, tomatoes, carrots, etc., can contaminate plastic parts, and this
+      coloring effect is not always avoidable. This color has no impact on your health or the functionality of the
+      accessory.
+      To reduce color, wipe the stained area with a cloth or tissue soaked in cooking oil and then perform regular
+      cleaning.</p>
+    <p>Cleaning must be carried out immediately after use to reduce staining.</p>
+    <p>Note: This issue is not covered by the warranty as it is an aesthetic issue, not a malfunction.</p>
+  </div>
+
+  <div class="item">
+    <h3>White spots appeared on the cooking cover. How to remove them ?</h3>
+    <p>These marks are tartar deposits generated by the use of limestone water during cooking. Anti scaling solution
+      should be used and the lid should be soaked for a sufficient time to soften the marks.</p>
+    <p>Please note that the longer the cooking time these stains take, the harder they become and the more difficult it
+      is to remove them. Therefore, we recommend removing them immediately upon detection.</p>
+  </div>
+
+  <div class="item">
+    <h3>How to clean food that burns and adheres to the bottom of the bowl ?</h3>
+    <p>There are several solutions, for example, you can put a bottom water and soak it in baking soda, lemon, or
+      dishwashing solution.</p>
+    <p>You can also heat some white vinegar water and a few drops of dishwashing liquid in a bowl, and let it sit for a
+      while before cleaning. If everything does not disappear, restart the operation.</p>
+    <p>A particularly effective tip is to put a dishwasher pellet and some hot water in it and let it soak for a while.
+    </p>
+  </div>
+
+  <div class="item">
+    <h3>How to avoid food still adhering to the bowl on preparations that need to be cooked?</h3>
+    <p>Before starting cooking the recipe, we suggest using soaked absorbent paper to oil the bottom of the bowl. This
+      regular maintenance will prevent food from sticking to the bowl. For sugary preparations, use a little lemon juice
+      instead of oil</p>
+  </div>
+
+
+  <div class="item">
+    <h3>Incorrect mixing or incomplete cooking of ingredients</h3>
+    <p>This may be because the recipe in question may require more cooking time.
+      Although theoretically there is a clear cooking time for food in the recipe, the cooking time may vary due to
+      several factors :</p>
+    <ul>
+      <li>Food temperature during recipe ;;</li>
+      <li>If you don't take the ingredients out of the refrigerator and they're not at room temperature ;</li>
+      <li>Source and maturity of ingredients.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>I don't know how to heat pre prepared dishes.</h3>
+    <p>R : You must switch to manual mode and select temperature, duration, etc. based on the preparation to be
+      preheated.</p>
+  </div>
+
+  <div class="item">
+    <h3>Equipment overflow during cooking process.</h3>
+    <p>R : This phenomenon is due to the high temperature of the liquid and food in the bowl, which increases the
+      pressure inside the bowl and causes overflow. To avoid this situation, lower the temperature or use a large steam
+      basket with a glass lid instead of a cooking lid.</p>
+  </div>
+</body>
+
+</html>

+ 205 - 0
app/src/main/assets/help/EN/help.html

@@ -0,0 +1,205 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>帮助文件</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #000000;
+    height: 100vh;
+    color: #ffffff;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #ffffff;
+    border-right: 2px solid #ffffff;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>The FAQ's</h2>
+  <div class="item">
+    <h3>The blade twisted from my first preparation.</h3>
+    <p>The blade is not damaged, you can see it by looking at its specific shape in your manual, it has a more curved
+      blade in order to better mix the ingredients.</p>
+  </div>
+
+  <div class="item">
+    <h3>Smoke comes out of the back of the device during the first use.</h3>
+    <p>This phenomenon is normal, the smoke comes from the windings of the engine which, being new, can give off smoke
+      and a slight smell of "hot plastic" during the first USES. This phenomenon will be mitigated and will disappear in
+      use./p>
+  </div>
+
+  <div class="item">
+    <h3>My robot no longer heats or does not rise to the requested temperature.</h3>
+    <p>After reserving the preparation and cooling the bowl, simply reset the thermal probe placed under the bowl by
+      pressing with your finger until you hear a "click".</p>
+  </div>
+
+  <div class="item">
+    <h3>Error message on screen during recipe process.</h3>
+    <p>The robot is equipped with safety devices to minimize the risk of engine overload (overflow or excessive
+      preparation). To solve this problem, please turn off the device and let it cool for approximately 20 to 30
+      minutes. Afterwards, the problem should be resolved. If you still see that the robot cooker cannot be opened,
+      please repeat the cooling process. If other methods do not work, please contact after-sales service.</p>
+  </div>
+
+  <div class="item">
+    <h3>The bowl is not fully placed in the base, or the lid is not in the locked position.</h3>
+    <p>Check if the accessory drive shaft is fully locked (at the top of the bowl).</p>
+  </div>
+
+  <div class="item">
+    <h3>Accessories: I lost the steam basket, lost the push rod, and broke the whip.</h3>
+    <p>Customers can purchase parts directly on the website , or place orders directly at the email address through POS
+    </p>
+  </div>
+
+  <div class="item">
+    <h3>The lid is difficult to close.</h3>
+    <p>Oil the lid seal after each cleaning (e.g. lubricate fingers with vegetable oil and apply to the seal).</p>
+  </div>
+
+  <div class="item">
+    <h3>I am unable to connect to WiFi: the password is correct, close to the box.</h3>
+    <p>This issue stems from the WiFi security protocol used by the box. The box must use the latest protocol (WPA2),
+      and you must update the software of the box.</p>
+  </div>
+
+  <div class="item">
+    <h3>Do I need a WiFi connection to create a recipe ?</h3>
+    <p>No, WiFi connection is only used for recipe updates.</p>
+  </div>
+
+  <div class="item">
+    <h3>What temperature does my robot heat up to ?</h3>
+    <p>In manual mode, the robot can heat from 37 ° C to 130 ° C, and you can choose to change the temperature in
+      increments of 5 ° C. The temperature dial only displays the temperature of the formulation above 37 ° C..</p>
+    <p>*Some automatic recipes in can be cooked at 160 ° C, but manual mode is limited to 130 ° C.</p>
+  </div>
+
+  <div class="item">
+    <h3>What is the engine speed ?</h3>
+    <p>The speed can be adjusted from 1 to 12.</p>
+    <p>For safety reasons, the robot limits its speed to 3 during cooking activities.</p>
+  </div>
+
+
+  <div class="item">
+    <h3>How to clean my robot ?</h3>
+    <p>After turning off and unplugging the power cord, it is recommended to immediately rinse the bowl and accessories
+      with hot water after using the robot.</p>
+    <p>If there are burn marks on the bottom of the bowl, it is best to soak the inside of the bowl and occasionally rub
+      the bottom of the bowl with a sponge until the food peels off.</p>
+    <p>You can also start the cleaning program. </p>
+  </div>
+
+  <div class="item">
+    <h3>Can all accessories be dishwashers ?</h3>
+    <p>All accessories of the robot can be placed in the dishwasher (except for the engine block). </p>
+  </div>
+
+  <div class="item">
+    <h3>Some foods can cause plastic to change color. How to clean ?</h3>
+    <p>Some colored ingredients, such as curry, tomatoes, carrots, etc., can contaminate plastic parts, and this
+      coloring effect is not always avoidable. This color has no impact on your health or the functionality of the
+      accessory.
+      To reduce color, wipe the stained area with a cloth or tissue soaked in cooking oil and then perform regular
+      cleaning.</p>
+    <p>Cleaning must be carried out immediately after use to reduce staining.</p>
+    <p>Note: This issue is not covered by the warranty as it is an aesthetic issue, not a malfunction.</p>
+  </div>
+
+  <div class="item">
+    <h3>White spots appeared on the cooking cover. How to remove them ?</h3>
+    <p>These marks are tartar deposits generated by the use of limestone water during cooking. Anti scaling solution
+      should be used and the lid should be soaked for a sufficient time to soften the marks.</p>
+    <p>Please note that the longer the cooking time these stains take, the harder they become and the more difficult it
+      is to remove them. Therefore, we recommend removing them immediately upon detection.</p>
+  </div>
+
+  <div class="item">
+    <h3>How to clean food that burns and adheres to the bottom of the bowl ?</h3>
+    <p>There are several solutions, for example, you can put a bottom water and soak it in baking soda, lemon, or
+      dishwashing solution.</p>
+    <p>You can also heat some white vinegar water and a few drops of dishwashing liquid in a bowl, and let it sit for a
+      while before cleaning. If everything does not disappear, restart the operation.</p>
+    <p>A particularly effective tip is to put a dishwasher pellet and some hot water in it and let it soak for a while.
+    </p>
+  </div>
+
+  <div class="item">
+    <h3>How to avoid food still adhering to the bowl on preparations that need to be cooked?</h3>
+    <p>Before starting cooking the recipe, we suggest using soaked absorbent paper to oil the bottom of the bowl. This
+      regular maintenance will prevent food from sticking to the bowl. For sugary preparations, use a little lemon juice
+      instead of oil</p>
+  </div>
+
+
+  <div class="item">
+    <h3>Incorrect mixing or incomplete cooking of ingredients</h3>
+    <p>This may be because the recipe in question may require more cooking time.
+      Although theoretically there is a clear cooking time for food in the recipe, the cooking time may vary due to
+      several factors :</p>
+    <ul>
+      <li>Food temperature during recipe ;;</li>
+      <li>If you don't take the ingredients out of the refrigerator and they're not at room temperature ;</li>
+      <li>Source and maturity of ingredients.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>I don't know how to heat pre prepared dishes.</h3>
+    <p>R : You must switch to manual mode and select temperature, duration, etc. based on the preparation to be
+      preheated.</p>
+  </div>
+
+  <div class="item">
+    <h3>Equipment overflow during cooking process.</h3>
+    <p>R : This phenomenon is due to the high temperature of the liquid and food in the bowl, which increases the
+      pressure inside the bowl and causes overflow. To avoid this situation, lower the temperature or use a large steam
+      basket with a glass lid instead of a cooking lid.</p>
+  </div>
+</body>
+
+</html>

+ 206 - 0
app/src/main/assets/help/ES/help-white.html

@@ -0,0 +1,206 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Preguntas y respuestas frecuentes</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #ffffff;
+    height: 100vh;
+    color: #000000;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #000000;
+    border-right: 2px solid #000000;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>Preguntas y respuestas frecuentes</h2>
+  <div class="item">
+    <h3>La cuchilla Se torció cuando me preparé por primera vez..</h3>
+    <p>La cuchilla no está dañada, se puede ver su forma específica en el manual, tiene una cuchilla más curvada para
+      mezclar mejor la materia prima.</p>
+  </div>
+
+  <div class="item">
+    <h3>La primera vez que se usa, el humo sale de la parte posterior del equipo.</h3>
+    <p>Este fenómeno es normal, el humo proviene del devanado del motor, ya que es nuevo y emite humo y un ligero olor
+      "termoplástico" cuando se usa por primera vez. Este fenómeno se aliviará y desaparecerá en uso.</p>
+  </div>
+
+  <div class="item">
+    <h3>Mi robot ya no se calienta o no sube a la temperatura requerida.</h3>
+    <p>Una vez preparado y enfriado el tazón, basta con presionar con el dedo la sonda térmica colocada debajo del tazón
+      hasta que se escuche un "clic".</p>
+  </div>
+
+  <div class="item">
+    <h3>Mensaje de error en la pantalla durante la receta.</h3>
+    <p>El Robot está equipado con dispositivos de Seguridad para minimizar el riesgo de sobrecarga del motor
+      (desbordamiento o preparación excesiva). Para resolver este problema, apague el dispositivo y deje que se enfríe
+      durante unos 20 a 30 minutos. Después de eso, el problema debe resolverse. Si todavía ve que la cocina robótica no
+      se puede abrir, repita el proceso de enfriamiento. Si otros métodos no funcionan, Póngase en contacto con el
+      servicio post - venta.</p>
+  </div>
+
+  <div class="item">
+    <h3>El tazón no está completamente colocado en la base o la tapa no está en la posición de bloqueo.</h3>
+    <p>Comprobar si el eje motriz del accesorio está completamente bloqueado (en la parte superior del filtro).</p>
+  </div>
+
+  <div class="item">
+    <h3>Accesorios: perdí la canasta de vapor, perdí el putt y me rompí el látigo.</h3>
+    <p>Los clientes pueden comprar piezas directamente en el sitio web o hacer pedidos directamente en la dirección de
+      correo electrónico a través de POS</p>
+  </div>
+
+  <div class="item">
+    <h3>La tapa es difícil de cerrar.</h3>
+    <p>Lubricar el sello de la tapa después de cada limpieza (por ejemplo, lubricar los dedos con aceite vegetal y
+      aplicarlo al sello).</p>
+  </div>
+
+  <div class="item">
+    <h3>No puedo conectarme a wifi: la contraseña es correcta, cerca de la Caja.</h3>
+    <p>Este problema se debe al Protocolo de Seguridad WiFi utilizado por la Caja. La Caja debe usar el último protocolo
+      (wpa2) y debe actualizar el software de la Caja.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ necesito una conexión wifi para crear recetas?</h3>
+    <p>No, la conexión wifi solo se utiliza para actualizaciones de recetas.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ a qué temperatura se calienta mi robot?</h3>
+    <p>En modo manual, el robot puede calentarse de 37 ° C a 130 ° c, y puede optar por cambiar la temperatura en
+      incrementos de 5 ° c. el dial de temperatura solo muestra que la temperatura de la receta es superior a 37 ° c.
+    </p>
+    <p>*Algunas de las recetas automáticas del medio se pueden cocinar a 160 ° c, pero el modo manual se limita a 130 °
+      C.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ cuál es el régimen del motor?</h3>
+    <p>La velocidad se puede ajustar de 1 a 12.</p>
+    <p>Por razones de seguridad, los robots limitan la velocidad a 3 en sus actividades culinarias.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ Cómo limpiar mi robot?</h3>
+    <p>Después de apagar y quitar el cable de alimentación, se recomienda lavar el tazón y los accesorios con agua
+      caliente inmediatamente después de usar el robot.</p>
+    <p>Si hay marcas de quemaduras en el Fondo del tazón, es mejor remojar el interior del tazón y frotar ocasionalmente
+      el Fondo del tazón con una esponja hasta que la comida se pela.</p>
+    <p>También puede iniciar el procedimiento de limpieza. </p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ todos los accesorios pueden ser lavavajillas?</h3>
+    <p>Todos los accesorios del robot se pueden colocar en el lavavajillas (excepto el bloque del motor).</p>
+  </div>
+
+  <div class="item">
+    <h3>Algunos alimentos pueden decolorar el plástico. ¿¿ cómo limpiar?</h3>
+    <p>Algunos materiales de color, como curry, tomate, zanahoria, etc., contaminan las piezas de plástico, y este
+      efecto de color no siempre se puede evitar. Este color no afectará su salud ni el funcionamiento de los
+      accesorios.
+      Para reducir el color, limpie el área manchada con un paño o toallas de papel empapadas en aceite comestible y
+      luego limpie regularmente.</p>
+    <p>La limpieza debe realizarse inmediatamente después de su uso para reducir la contaminación.</p>
+    <p>Nota: este problema no está cubierto por la garantía porque es un problema estético y no una avería.</p>
+  </div>
+
+  <div class="item">
+    <h3>Aparecieron puntos blancos en la tapa de la olla. ¿¿ cómo eliminarlos?</h3>
+    <p>Estos rastros son depósitos de tarro producidos durante la cocción utilizando agua de piedra caliza. Se debe
+      utilizar una solución antiincrustante y remojar la tapa durante el tiempo suficiente para suavizar las marcas.
+      Tenga en cuenta que cuanto más tiempo se cocinen estas manchas, más difícil será eliminarlas. Por lo tanto,
+      recomendamos retirarlo inmediatamente después de detectarlo.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ Cómo limpiar los alimentos quemados y adheridos al Fondo del tazón?</h3>
+    <p>Hay varias soluciones, por ejemplo, puedes remojar el agua de fondo en bicarbonato de sodio, limón o
+      lavavajillas.</p>
+    <p>También puedes calentar un poco de vinagre blanco y unas gotas de líquido para lavar los platos en un tazón,
+      dejarlo reposar por un tiempo antes de lavarlo. Si todo el contenido no ha desaparecido, reinicie la operación.
+      Una recomendación particularmente efectiva es poner en su interior una partícula del lavavajillas y un poco de
+      agua caliente para que se remoje por un tiempo.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ cómo evitar que los alimentos que hay que cocinar sigan pegados al tazón?</h3>
+    <p>Antes de comenzar a cocinar recetas, recomendamos aplicar aceite en el Fondo del tazón con papel absorbente
+      empapado. Este mantenimiento regular evita que los alimentos se peguen al tazón. Para preparaciones azucaradas,
+      sustituir el aceite por un poco de jugo de limón.</p>
+  </div>
+
+  <div class="item">
+    <h3>Mezcla incorrecta de ingredientes o cocina incompleta</h3>
+    <p>Esto puede deberse a que las recetas problemáticas pueden requerir más tiempo de cocción.
+      Aunque en teoría hay un tiempo de cocción claro de los alimentos en la receta, el tiempo de cocción puede variar
+      según varios factores :</p>
+    <ul>
+      <li>Temperatura de los alimentos en la receta ;</li>
+      <li>Si no sacas los ingredientes del refrigerador y no están a temperatura ambiente ;</li>
+      <li>Fuente y madurez de las materias primas.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>No sé cómo calentar los platos prefabricados.</h3>
+    <p>R : Debe cambiar al modo manual y seleccionar la temperatura, la duración, etc., en función de la preparación
+      para calentarse.</p>
+  </div>
+
+  <div class="item">
+    <h3>Desbordamiento del equipo durante la cocción.</h3>
+    <p>R : Este fenómeno se debe a la temperatura excesiva del líquido y los alimentos en el tazón, lo que aumenta la
+      presión en el tazón y provoca derrames. Para evitar esto, baje la temperatura o use una gran canasta de vapor con
+      una tapa de vidrio en lugar de una tapa de cocina.</p>
+  </div>
+</body>
+
+</html>

+ 206 - 0
app/src/main/assets/help/ES/help.html

@@ -0,0 +1,206 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>帮助文件</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #000000;
+    height: 100vh;
+    color: #ffffff;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #ffffff;
+    border-right: 2px solid #ffffff;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>Preguntas y respuestas frecuentes</h2>
+  <div class="item">
+    <h3>La cuchilla Se torció cuando me preparé por primera vez..</h3>
+    <p>La cuchilla no está dañada, se puede ver su forma específica en el manual, tiene una cuchilla más curvada para
+      mezclar mejor la materia prima.</p>
+  </div>
+
+  <div class="item">
+    <h3>La primera vez que se usa, el humo sale de la parte posterior del equipo.</h3>
+    <p>Este fenómeno es normal, el humo proviene del devanado del motor, ya que es nuevo y emite humo y un ligero olor
+      "termoplástico" cuando se usa por primera vez. Este fenómeno se aliviará y desaparecerá en uso.</p>
+  </div>
+
+  <div class="item">
+    <h3>Mi robot ya no se calienta o no sube a la temperatura requerida.</h3>
+    <p>Una vez preparado y enfriado el tazón, basta con presionar con el dedo la sonda térmica colocada debajo del tazón
+      hasta que se escuche un "clic".</p>
+  </div>
+
+  <div class="item">
+    <h3>Mensaje de error en la pantalla durante la receta.</h3>
+    <p>El Robot está equipado con dispositivos de Seguridad para minimizar el riesgo de sobrecarga del motor
+      (desbordamiento o preparación excesiva). Para resolver este problema, apague el dispositivo y deje que se enfríe
+      durante unos 20 a 30 minutos. Después de eso, el problema debe resolverse. Si todavía ve que la cocina robótica no
+      se puede abrir, repita el proceso de enfriamiento. Si otros métodos no funcionan, Póngase en contacto con el
+      servicio post - venta.</p>
+  </div>
+
+  <div class="item">
+    <h3>El tazón no está completamente colocado en la base o la tapa no está en la posición de bloqueo.</h3>
+    <p>Comprobar si el eje motriz del accesorio está completamente bloqueado (en la parte superior del filtro).</p>
+  </div>
+
+  <div class="item">
+    <h3>Accesorios: perdí la canasta de vapor, perdí el putt y me rompí el látigo.</h3>
+    <p>Los clientes pueden comprar piezas directamente en el sitio web o hacer pedidos directamente en la dirección de
+      correo electrónico a través de POS</p>
+  </div>
+
+  <div class="item">
+    <h3>La tapa es difícil de cerrar.</h3>
+    <p>Lubricar el sello de la tapa después de cada limpieza (por ejemplo, lubricar los dedos con aceite vegetal y
+      aplicarlo al sello).</p>
+  </div>
+
+  <div class="item">
+    <h3>No puedo conectarme a wifi: la contraseña es correcta, cerca de la Caja.</h3>
+    <p>Este problema se debe al Protocolo de Seguridad WiFi utilizado por la Caja. La Caja debe usar el último protocolo
+      (wpa2) y debe actualizar el software de la Caja.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ necesito una conexión wifi para crear recetas?</h3>
+    <p>No, la conexión wifi solo se utiliza para actualizaciones de recetas.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ a qué temperatura se calienta mi robot?</h3>
+    <p>En modo manual, el robot puede calentarse de 37 ° C a 130 ° c, y puede optar por cambiar la temperatura en
+      incrementos de 5 ° c. el dial de temperatura solo muestra que la temperatura de la receta es superior a 37 ° c.
+    </p>
+    <p>*Algunas de las recetas automáticas del medio se pueden cocinar a 160 ° c, pero el modo manual se limita a 130 °
+      C.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ cuál es el régimen del motor?</h3>
+    <p>La velocidad se puede ajustar de 1 a 12.</p>
+    <p>Por razones de seguridad, los robots limitan la velocidad a 3 en sus actividades culinarias.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ Cómo limpiar mi robot?</h3>
+    <p>Después de apagar y quitar el cable de alimentación, se recomienda lavar el tazón y los accesorios con agua
+      caliente inmediatamente después de usar el robot.</p>
+    <p>Si hay marcas de quemaduras en el Fondo del tazón, es mejor remojar el interior del tazón y frotar ocasionalmente
+      el Fondo del tazón con una esponja hasta que la comida se pela.</p>
+    <p>También puede iniciar el procedimiento de limpieza. </p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ todos los accesorios pueden ser lavavajillas?</h3>
+    <p>Todos los accesorios del robot se pueden colocar en el lavavajillas (excepto el bloque del motor).</p>
+  </div>
+
+  <div class="item">
+    <h3>Algunos alimentos pueden decolorar el plástico. ¿¿ cómo limpiar?</h3>
+    <p>Algunos materiales de color, como curry, tomate, zanahoria, etc., contaminan las piezas de plástico, y este
+      efecto de color no siempre se puede evitar. Este color no afectará su salud ni el funcionamiento de los
+      accesorios.
+      Para reducir el color, limpie el área manchada con un paño o toallas de papel empapadas en aceite comestible y
+      luego limpie regularmente.</p>
+    <p>La limpieza debe realizarse inmediatamente después de su uso para reducir la contaminación.</p>
+    <p>Nota: este problema no está cubierto por la garantía porque es un problema estético y no una avería.</p>
+  </div>
+
+  <div class="item">
+    <h3>Aparecieron puntos blancos en la tapa de la olla. ¿¿ cómo eliminarlos?</h3>
+    <p>Estos rastros son depósitos de tarro producidos durante la cocción utilizando agua de piedra caliza. Se debe
+      utilizar una solución antiincrustante y remojar la tapa durante el tiempo suficiente para suavizar las marcas.
+      Tenga en cuenta que cuanto más tiempo se cocinen estas manchas, más difícil será eliminarlas. Por lo tanto,
+      recomendamos retirarlo inmediatamente después de detectarlo.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ Cómo limpiar los alimentos quemados y adheridos al Fondo del tazón?</h3>
+    <p>Hay varias soluciones, por ejemplo, puedes remojar el agua de fondo en bicarbonato de sodio, limón o
+      lavavajillas.</p>
+    <p>También puedes calentar un poco de vinagre blanco y unas gotas de líquido para lavar los platos en un tazón,
+      dejarlo reposar por un tiempo antes de lavarlo. Si todo el contenido no ha desaparecido, reinicie la operación.
+      Una recomendación particularmente efectiva es poner en su interior una partícula del lavavajillas y un poco de
+      agua caliente para que se remoje por un tiempo.</p>
+  </div>
+
+  <div class="item">
+    <h3>¿¿ cómo evitar que los alimentos que hay que cocinar sigan pegados al tazón?</h3>
+    <p>Antes de comenzar a cocinar recetas, recomendamos aplicar aceite en el Fondo del tazón con papel absorbente
+      empapado. Este mantenimiento regular evita que los alimentos se peguen al tazón. Para preparaciones azucaradas,
+      sustituir el aceite por un poco de jugo de limón.</p>
+  </div>
+
+  <div class="item">
+    <h3>Mezcla incorrecta de ingredientes o cocina incompleta</h3>
+    <p>Esto puede deberse a que las recetas problemáticas pueden requerir más tiempo de cocción.
+      Aunque en teoría hay un tiempo de cocción claro de los alimentos en la receta, el tiempo de cocción puede variar
+      según varios factores :</p>
+    <ul>
+      <li>Temperatura de los alimentos en la receta ;</li>
+      <li>Si no sacas los ingredientes del refrigerador y no están a temperatura ambiente ;</li>
+      <li>Fuente y madurez de las materias primas.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>No sé cómo calentar los platos prefabricados.</h3>
+    <p>R : Debe cambiar al modo manual y seleccionar la temperatura, la duración, etc., en función de la preparación
+      para calentarse.</p>
+  </div>
+
+  <div class="item">
+    <h3>Desbordamiento del equipo durante la cocción.</h3>
+    <p>R : Este fenómeno se debe a la temperatura excesiva del líquido y los alimentos en el tazón, lo que aumenta la
+      presión en el tazón y provoca derrames. Para evitar esto, baje la temperatura o use una gran canasta de vapor con
+      una tapa de vidrio en lugar de una tapa de cocina.</p>
+  </div>
+</body>
+
+</html>

+ 208 - 0
app/src/main/assets/help/FR/help-white.html

@@ -0,0 +1,208 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>帮助文件</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #ffffff;
+    height: 100vh;
+    color: #000000;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #000000;
+    border-right: 2px solid #000000;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>LES FAQ</h2>
+  <div class="item">
+    <h3>La lame s’est tordue dès ma première préparation.</h3>
+    <p>Le couteau n’est pas endommagé, vous pouvez le constater en regardant sa forme spécifique dans votre manuel, il
+      a une lame plus incourbée afin de mieux mélanger les ingrédients.</p>
+  </div>
+
+  <div class="item">
+    <h3>De la fumée sort de l'arrière de l'appareil lors des premières utilisations.</h3>
+    <p>Ce phénomène est normal, la fumée provient des bobinages du moteur qui, étant neufs, peuvent dégager de la fumée
+      et une légère odeur de "plastique chaud" lors des premières utilisations. Ce phénomène sera atténué et disparaîtra
+      à l'usage.</p>
+  </div>
+
+  <div class="item">
+    <h3>Mon robot ne chauffe plus ou ne monte pas à la température demandée.</h3>
+    <p>Après avoir réservé la préparation et refroidi le bol, il suffit de réinitialiser la sonde thermique placée sous
+      le bol en appuyant avec le doigt jusqu’à entendre un « clic ».</p>
+  </div>
+
+  <div class="item">
+    <h3>Un message d'erreur est apparu à l'écran pendant la recette.</h3>
+    <p>Le robot est équipé d’une sécurité qui minimise les risques de surcharge du moteur (trop-plein ou préparation
+      trop épaisse). Pour y remédier, il faut éteindre l’appareil et le laisser refroidir environ 20 à 30 minutes. Après
+      ça, le problème devrait être réglé. Si vous constatez toujours que le robot cuiseur ne parvient pas à s’allumer,
+      répétez la procédure de refroidissement. Si rien d’autre ne fonctionne, contactez le SAV.</p>
+  </div>
+
+  <div class="item">
+    <h3>Le bol ne rentre complètement dans la base, ou le couvercle ne se met pas en position verrouillée.</h3>
+    <p>Vérifiez que l'arbre d’entrainement des accessoires est totalement verrouillé (sur le dessus du bol).</p>
+  </div>
+
+  <div class="item">
+    <h3>Accessoires : J’ai égaré le panier à vapeur, j’ai perdu le poussoir, j’ai cassé mon fouet.</h3>
+    <p>Le client peut acheter la pièce directement sur le site www.expercare.fr, ou le PDV peut passer la commande
+      directement à l'adresse électronique p.blanc@schneiderconsumer.com</p>
+  </div>
+
+  <div class="item">
+    <h3>Le couvercle est difficile à mettre.</h3>
+    <p>Huilez le joint du couvercle après chaque lavage (par exemple, graissez votre doigt avec de l'huile végétale et
+      appliquez-le sur joint).</p>
+  </div>
+
+  <div class="item">
+    <h3>Je ne parviens pas à me connecter en Wifi : mot de passe correct, proche de la box.</h3>
+    <p>Ce problème provient du protocole de sécurité Wifi que la box utilise. La box doit fonctionner avec le dernier
+      protocole (WPA2), vous devez effectuer une mise à jour du logiciel de la box.</p>
+  </div>
+
+  <div class="item">
+    <h3>Ai-je besoin de la connexion Wifi pour réaliser les recettes ?</h3>
+    <p>Non, la connexion Wifi est uniquement requise pour les mises à jour des recettes.</p>
+  </div>
+
+  <div class="item">
+    <h3>Jusqu'à quelle température chauffe mon robot ?</h3>
+    <p>En mode manuel, le robot peut chauffer de 37°C jusqu’à 130°C, et vous avez la possibilité de modifier la
+      température par palier de 5°C. Le cadran de la température n'indique la température de la préparation que
+      lorsqu'elle est supérieure à 37°C.</p>
+    <p>*Certaines recettes automatiques du PowerChef Max peuvent cuire jusqu'à 160°C, mais le mode manuel est limité à
+      130°C.</p>
+  </div>
+
+  <div class="item">
+    <h3>Quelles sont les vitesses du moteur ?</h3>
+    <p>Les vitesses sont réglables de 1 à 12.</p>
+    <p>Pour des raisons de sécurité, lorsque la cuisson est active, le robot limite sa vitesse à 3.</p>
+  </div>
+
+  <div class="item">
+    <h3>Comment nettoyer mon robot ?</h3>
+    <p>Après avoir éteint et débranché le cordon d’alimentation, il est recommandé de rincer l’intérieur du bol à l’eau
+      chaude et les accessoires immédiatement après avoir utilisé le robot.
+      Si une marque de brûlure est présente sur le fond du bol, privilégier de faire tremper l’intérieur du bol et
+      frottez avec une éponge de temps en temps le fond du bol jusqu’au décollement des aliments.
+      Vous pouvez également lancer le programme de nettoyage. </p>
+  </div>
+
+  <div class="item">
+    <h3>Tous les accessoires vont-ils au lave-vaisselle ?</h3>
+    <p>Tous les accessoires de votre robot vont au lave-vaisselle (à l'exception du bloc moteur).</p>
+  </div>
+
+  <div class="item">
+    <h3>Certains aliments peuvent colorer le plastique. Comment le nettoyer ?</h3>
+    <p>Certains ingrédients colorés comme le curry, la tomate, la carotte, etc. peuvent tacher les composants
+      plastiques, et cet effet de coloration ne peut pas toujours être évité. Cette coloration n’a aucun effet sur votre
+      santé ni sur le fonctionnement des accessoires.</p>
+    <p>Afin d'atténuer la coloration, frottez les zones tachées avec un chiffon ou un essuie-tout imbibé d'huile
+      alimentaire puis procédez au nettoyage habituel.</p>
+    <p>Il est indispensable de procéder à ce nettoyage immédiatement après utilisation pour atténuer la coloration.
+      Remarque : Ce problème n'est pas couvert par la garantie, car il s'agit d'un problème esthétique et non d'un
+      dysfonctionnement.</p>
+  </div>
+
+  <div class="item">
+    <h3>Des taches blanches sont apparues sur le couvercle de cuisson. Comment les enlever ?</h3>
+    <p>Ces marques sont des dépôts de tartre, généré par l'utilisation d'eau calcaire avec les cuissons. Il faut
+      utiliser une solution anticalcaire et laissez le couvercle tremper assez longtemps pour adoucir les marques.
+      À noter que plus ces taches sont soumises à des cuissons, plus ils durcissent, et plus il est difficile de les
+      retirer, nous conseillons donc de les enlever dès qu'ils sont détectés.</p>
+  </div>
+
+  <div class="item">
+    <h3>La nourriture a brûlé au fond du bol et s'est attachée, comment le nettoyer ?</h3>
+    <p>Il y a plusieurs solutions, vous pouvez, par exemple, mettre un fond d'eau et laisser tremper avec du bicarbonate
+      de soude, ou du citron, ou du liquide vaisselle.</p>
+    <p>Vous pouvez aussi faire chauffer dans le bol, de l'eau avec du vinaigre blanc et quelques gouttes de liquide
+      vaisselle, et ensuite laissez reposer un peu avant de le nettoyer. Si tout n'est pas parti, recommencez
+      l'opération.
+      Une astuce particulièrement efficace consiste à mettre une pastille de lave-vaisselle et un peu d'eau chaude et
+      laisser tremper un moment.</p>
+  </div>
+
+  <div class="item">
+    <h3>Comment éviter, sur les préparations qui doivent être cuites, que la nourriture reste attachée au bol ?</h3>
+    <p>Avant de commencer une recette où il y aura une cuisson, nous conseillons d’huiler le fond du bol avec un papier
+      absorbant imbibé. Cet entretien régulier permettra aux aliments de ne pas adhérer au bol. Pour les préparations
+      sucrées, utilisez un peu de jus de citron à la place de l'huile.</p>
+  </div>
+
+  <div class="item">
+    <h3>Le mélange ne s'effectue pas correctement, ou les ingrédients ne sont pas complètement cuits</h3>
+    <p>Cela peut provenir du fait que la recette en question peut nécessiter un peu plus de temps de cuisson.
+      Bien que théoriquement les aliments ont un temps de cuisson défini dans les recettes, celui-ci peut varier en
+      fonction de plusieurs facteurs :</p>
+    <ul>
+      <li>Température de l'aliment au moment de la recette ;</li>
+      <li>Si vous ne sortez pas les ingrédients du réfrigérateur et qu'ils ne sont pas à température ambiante ;</li>
+      <li>Origine et état de maturité des ingrédients.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>Je ne trouve pas comment réchauffer un plat préparé à l'avance.</h3>
+    <p>R : Vous devez passer en mode manuel et choisir la température, la durée, etc. selon la préparation que vous
+      souhaitez réchauffer.</p>
+  </div>
+
+  <div class="item">
+    <h3>L'appareil déborde pendant la cuisson.</h3>
+    <p>R : Ce phénomène est dû à une température trop élevée pour la quantité de liquide et d'aliments dans le bol, ce
+      qui augmente la pression à l'intérieur du bol et crée un débordement. Pour éviter ce phénomène, réduisez la
+      température ou utilisez le grand panier vapeur avec le couvercle en verre au lieu du couvercle de cuisson.</p>
+  </div>
+</body>
+
+</html>

+ 208 - 0
app/src/main/assets/help/FR/help.html

@@ -0,0 +1,208 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>帮助文件</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #000000;
+    height: 100vh;
+    color: #ffffff;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #ffffff;
+    border-right: 2px solid #ffffff;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>LES FAQ</h2>
+  <div class="item">
+    <h3>La lame s’est tordue dès ma première préparation.</h3>
+    <p>Le couteau n’est pas endommagé, vous pouvez le constater en regardant sa forme spécifique dans votre manuel, il
+      a une lame plus incourbée afin de mieux mélanger les ingrédients.</p>
+  </div>
+
+  <div class="item">
+    <h3>De la fumée sort de l'arrière de l'appareil lors des premières utilisations.</h3>
+    <p>Ce phénomène est normal, la fumée provient des bobinages du moteur qui, étant neufs, peuvent dégager de la fumée
+      et une légère odeur de "plastique chaud" lors des premières utilisations. Ce phénomène sera atténué et disparaîtra
+      à l'usage.</p>
+  </div>
+
+  <div class="item">
+    <h3>Mon robot ne chauffe plus ou ne monte pas à la température demandée.</h3>
+    <p>Après avoir réservé la préparation et refroidi le bol, il suffit de réinitialiser la sonde thermique placée sous
+      le bol en appuyant avec le doigt jusqu’à entendre un « clic ».</p>
+  </div>
+
+  <div class="item">
+    <h3>Un message d'erreur est apparu à l'écran pendant la recette.</h3>
+    <p>Le robot est équipé d’une sécurité qui minimise les risques de surcharge du moteur (trop-plein ou préparation
+      trop épaisse). Pour y remédier, il faut éteindre l’appareil et le laisser refroidir environ 20 à 30 minutes. Après
+      ça, le problème devrait être réglé. Si vous constatez toujours que le robot cuiseur ne parvient pas à s’allumer,
+      répétez la procédure de refroidissement. Si rien d’autre ne fonctionne, contactez le SAV.</p>
+  </div>
+
+  <div class="item">
+    <h3>Le bol ne rentre complètement dans la base, ou le couvercle ne se met pas en position verrouillée.</h3>
+    <p>Vérifiez que l'arbre d’entrainement des accessoires est totalement verrouillé (sur le dessus du bol).</p>
+  </div>
+
+  <div class="item">
+    <h3>Accessoires : J’ai égaré le panier à vapeur, j’ai perdu le poussoir, j’ai cassé mon fouet.</h3>
+    <p>Le client peut acheter la pièce directement sur le site www.expercare.fr, ou le PDV peut passer la commande
+      directement à l'adresse électronique p.blanc@schneiderconsumer.com</p>
+  </div>
+
+  <div class="item">
+    <h3>Le couvercle est difficile à mettre.</h3>
+    <p>Huilez le joint du couvercle après chaque lavage (par exemple, graissez votre doigt avec de l'huile végétale et
+      appliquez-le sur joint).</p>
+  </div>
+
+  <div class="item">
+    <h3>Je ne parviens pas à me connecter en Wifi : mot de passe correct, proche de la box.</h3>
+    <p>Ce problème provient du protocole de sécurité Wifi que la box utilise. La box doit fonctionner avec le dernier
+      protocole (WPA2), vous devez effectuer une mise à jour du logiciel de la box.</p>
+  </div>
+
+  <div class="item">
+    <h3>Ai-je besoin de la connexion Wifi pour réaliser les recettes ?</h3>
+    <p>Non, la connexion Wifi est uniquement requise pour les mises à jour des recettes.</p>
+  </div>
+
+  <div class="item">
+    <h3>Jusqu'à quelle température chauffe mon robot ?</h3>
+    <p>En mode manuel, le robot peut chauffer de 37°C jusqu’à 130°C, et vous avez la possibilité de modifier la
+      température par palier de 5°C. Le cadran de la température n'indique la température de la préparation que
+      lorsqu'elle est supérieure à 37°C.</p>
+    <p>*Certaines recettes automatiques du PowerChef Max peuvent cuire jusqu'à 160°C, mais le mode manuel est limité à
+      130°C.</p>
+  </div>
+
+  <div class="item">
+    <h3>Quelles sont les vitesses du moteur ?</h3>
+    <p>Les vitesses sont réglables de 1 à 12.</p>
+    <p>Pour des raisons de sécurité, lorsque la cuisson est active, le robot limite sa vitesse à 3.</p>
+  </div>
+
+  <div class="item">
+    <h3>Comment nettoyer mon robot ?</h3>
+    <p>Après avoir éteint et débranché le cordon d’alimentation, il est recommandé de rincer l’intérieur du bol à l’eau
+      chaude et les accessoires immédiatement après avoir utilisé le robot.
+      Si une marque de brûlure est présente sur le fond du bol, privilégier de faire tremper l’intérieur du bol et
+      frottez avec une éponge de temps en temps le fond du bol jusqu’au décollement des aliments.
+      Vous pouvez également lancer le programme de nettoyage. </p>
+  </div>
+
+  <div class="item">
+    <h3>Tous les accessoires vont-ils au lave-vaisselle ?</h3>
+    <p>Tous les accessoires de votre robot vont au lave-vaisselle (à l'exception du bloc moteur).</p>
+  </div>
+
+  <div class="item">
+    <h3>Certains aliments peuvent colorer le plastique. Comment le nettoyer ?</h3>
+    <p>Certains ingrédients colorés comme le curry, la tomate, la carotte, etc. peuvent tacher les composants
+      plastiques, et cet effet de coloration ne peut pas toujours être évité. Cette coloration n’a aucun effet sur votre
+      santé ni sur le fonctionnement des accessoires.</p>
+    <p>Afin d'atténuer la coloration, frottez les zones tachées avec un chiffon ou un essuie-tout imbibé d'huile
+      alimentaire puis procédez au nettoyage habituel.</p>
+    <p>Il est indispensable de procéder à ce nettoyage immédiatement après utilisation pour atténuer la coloration.
+      Remarque : Ce problème n'est pas couvert par la garantie, car il s'agit d'un problème esthétique et non d'un
+      dysfonctionnement.</p>
+  </div>
+
+  <div class="item">
+    <h3>Des taches blanches sont apparues sur le couvercle de cuisson. Comment les enlever ?</h3>
+    <p>Ces marques sont des dépôts de tartre, généré par l'utilisation d'eau calcaire avec les cuissons. Il faut
+      utiliser une solution anticalcaire et laissez le couvercle tremper assez longtemps pour adoucir les marques.
+      À noter que plus ces taches sont soumises à des cuissons, plus ils durcissent, et plus il est difficile de les
+      retirer, nous conseillons donc de les enlever dès qu'ils sont détectés.</p>
+  </div>
+
+  <div class="item">
+    <h3>La nourriture a brûlé au fond du bol et s'est attachée, comment le nettoyer ?</h3>
+    <p>Il y a plusieurs solutions, vous pouvez, par exemple, mettre un fond d'eau et laisser tremper avec du bicarbonate
+      de soude, ou du citron, ou du liquide vaisselle.</p>
+    <p>Vous pouvez aussi faire chauffer dans le bol, de l'eau avec du vinaigre blanc et quelques gouttes de liquide
+      vaisselle, et ensuite laissez reposer un peu avant de le nettoyer. Si tout n'est pas parti, recommencez
+      l'opération.
+      Une astuce particulièrement efficace consiste à mettre une pastille de lave-vaisselle et un peu d'eau chaude et
+      laisser tremper un moment.</p>
+  </div>
+
+  <div class="item">
+    <h3>Comment éviter, sur les préparations qui doivent être cuites, que la nourriture reste attachée au bol ?</h3>
+    <p>Avant de commencer une recette où il y aura une cuisson, nous conseillons d’huiler le fond du bol avec un papier
+      absorbant imbibé. Cet entretien régulier permettra aux aliments de ne pas adhérer au bol. Pour les préparations
+      sucrées, utilisez un peu de jus de citron à la place de l'huile.</p>
+  </div>
+
+  <div class="item">
+    <h3>Le mélange ne s'effectue pas correctement, ou les ingrédients ne sont pas complètement cuits</h3>
+    <p>Cela peut provenir du fait que la recette en question peut nécessiter un peu plus de temps de cuisson.
+      Bien que théoriquement les aliments ont un temps de cuisson défini dans les recettes, celui-ci peut varier en
+      fonction de plusieurs facteurs :</p>
+    <ul>
+      <li>Température de l'aliment au moment de la recette ;</li>
+      <li>Si vous ne sortez pas les ingrédients du réfrigérateur et qu'ils ne sont pas à température ambiante ;</li>
+      <li>Origine et état de maturité des ingrédients.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>Je ne trouve pas comment réchauffer un plat préparé à l'avance.</h3>
+    <p>R : Vous devez passer en mode manuel et choisir la température, la durée, etc. selon la préparation que vous
+      souhaitez réchauffer.</p>
+  </div>
+
+  <div class="item">
+    <h3>L'appareil déborde pendant la cuisson.</h3>
+    <p>R : Ce phénomène est dû à une température trop élevée pour la quantité de liquide et d'aliments dans le bol, ce
+      qui augmente la pression à l'intérieur du bol et crée un débordement. Pour éviter ce phénomène, réduisez la
+      température ou utilisez le grand panier vapeur avec le couvercle en verre au lieu du couvercle de cuisson.</p>
+  </div>
+</body>
+
+</html>

+ 207 - 0
app/src/main/assets/help/IT/help-white.html

@@ -0,0 +1,207 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>Le FAQ</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #ffffff;
+    height: 100vh;
+    color: #000000;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #000000;
+    border-right: 2px solid #000000;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>Le FAQ</h2>
+  <div class="item">
+    <h3>La lama si è attorcigliata dalla mia prima preparazione.</h3>
+    <p>La lama non è danneggiata, si può vedere guardando la sua forma specifica nel manuale, ha una lama più curva per
+      mescolare meglio gli ingredienti.</p>
+  </div>
+
+  <div class="item">
+    <h3>Il fumo fuoriesce dal retro del dispositivo durante il primo utilizzo.</h3>
+    <p>Questo fenomeno è normale, il fumo proviene dagli avvolgimenti del motore che, essendo nuovo, possono emettere
+      fumo e un leggero odore di "plastica calda" durante i primi USI. Questo fenomeno sarà mitigato e scomparirà in
+      uso.</p>
+  </div>
+
+  <div class="item">
+    <h3>Il mio robot non si riscalda più o non sale alla temperatura richiesta.</h3>
+    <p>Dopo aver prenotato la preparazione e raffreddato la ciotola, è sufficiente reimpostare la sonda termica posta
+      sotto la ciotola premendo con il dito fino a sentire un "click".</p>
+  </div>
+
+  <div class="item">
+    <h3>Messaggio di errore sullo schermo durante il processo di ricetta.</h3>
+    <p>Il robot è dotato di dispositivi di sicurezza per ridurre al minimo il rischio di sovraccarico del motore
+      (sovraccarico o preparazione eccessiva). Per risolvere questo problema, spegnere il dispositivo e lasciarlo
+      raffreddare per circa 20-30 minuti. In seguito, il problema dovrebbe essere risolto. Se si vede ancora che la
+      cucina robot non può essere aperta, ripetere il processo di raffreddamento. Se altri metodi non funzionano, si
+      prega di contattare il servizio post-vendita.</p>
+  </div>
+
+  <div class="item">
+    <h3>La ciotola non è completamente posizionata nella base o il coperchio non è in posizione bloccata.</h3>
+    <p>Verificare se l'albero motore accessorio è completamente bloccato (nella parte superiore della ciotola).</p>
+  </div>
+
+  <div class="item">
+    <h3>Accessori: Ho perso il cesto di vapore, perso la barra di spinta e rotto la frusta.</h3>
+    <p>I clienti possono acquistare parti direttamente sul sito web, o effettuare ordini direttamente all'indirizzo
+      email tramite POS</p>
+  </div>
+
+  <div class="item">
+    <h3>Il coperchio è difficile da chiudere.</h3>
+    <p>Oliare la guarnizione del coperchio dopo ogni pulizia (ad esempio lubrificare le dita con olio vegetale e
+      applicare sulla guarnizione).</p>
+  </div>
+
+  <div class="item">
+    <h3>Non riesco a connettermi al WiFi: la password è corretta, vicino alla casella.</h3>
+    <p>Questo problema deriva dal protocollo di sicurezza WiFi utilizzato dalla scatola. La casella deve utilizzare il
+      protocollo più recente (WPA2), ed è necessario aggiornare il software della casella.</p>
+  </div>
+
+  <div class="item">
+    <h3>Ho bisogno di una connessione WiFi per creare una ricetta?</h3>
+    <p>No, la connessione WiFi viene utilizzata solo per gli aggiornamenti delle ricette.</p>
+  </div>
+
+  <div class="item">
+    <h3>A che temperatura si riscalda il mio robot?</h3>
+    <p>In modalità manuale, il robot può riscaldare da 37 ° C a 130 ° C, ed è possibile scegliere di modificare la
+      temperatura in incrementi di 5 ° C. Il quadrante della temperatura visualizza solo la temperatura della
+      formulazione sopra i 37 ° C.</p>
+    <p>*Alcune ricette automatiche possono essere cotte a 160 ° C, ma la modalità manuale è limitata a 130 ° C.</p>
+  </div>
+
+  <div class="item">
+    <h3>Qual è il regime del motore?</h3>
+    <p>La velocità può essere regolata da 1 a 12.</p>
+    <p>Per motivi di sicurezza, il robot limita la sua velocità a 3 durante le attività di cottura.</p>
+  </div>
+
+  <div class="item">
+    <h3>Come pulire il mio robot ?</h3>
+    <p>Dopo aver spento e scollegato il cavo di alimentazione, si consiglia di sciacquare immediatamente la ciotola e
+      gli accessori con acqua calda dopo aver utilizzato il robot.</p>
+    <p>Se ci sono segni di bruciatura sul fondo della ciotola, è meglio immergere l'interno della ciotola e strofinare
+      occasionalmente il fondo della ciotola con una spugna fino a quando il cibo non si stacca.</p>
+    <p>È anche possibile avviare il programma di pulizia. </p>
+  </div>
+
+  <div class="item">
+    <h3>Tutti gli accessori possono essere lavastoviglie ?</h3>
+    <p>All accessories of the robot can be placed in the dishwasher (except for the engine block).</p>
+  </div>
+
+  <div class="item">
+    <h3>Alcuni alimenti possono causare la plastica a cambiare colore. Come pulire ?</h3>
+    <p>Alcuni ingredienti colorati, come curry, pomodori, carote, ecc., possono contaminare parti di plastica e questo
+      effetto colorante non è sempre evitabile. Questo colore non ha alcun impatto sulla tua salute o sulla funzionalità
+      dell'accessorio.</p>
+    <p>Per ridurre il colore, pulire l'area macchiata con un panno o un tessuto imbevuto di olio da cucina e quindi
+      eseguire una pulizia regolare.</p>
+    <p>La pulizia deve essere effettuata immediatamente dopo l'uso per ridurre la colorazione.</p>
+    <p>Nota: questo problema non è coperto dalla garanzia in quanto si tratta di un problema estetico, non di un
+      malfunzionamento.</p>
+  </div>
+
+  <div class="item">
+    <h3>Macchie bianche apparivano sul coperchio di cottura. Come rimuoverli ?</h3>
+    <p>Questi segni sono depositi tartari generati dall'uso di acqua calcarea durante la cottura. Deve essere utilizzata
+      una soluzione anti-squaming e il coperchio deve essere immerso per un tempo sufficiente per ammorbidire i segni.
+      Si prega di notare che più tempo di cottura queste macchie richiedono, più difficile diventano e più difficile è
+      rimuoverle. Pertanto, si consiglia di rimuoverli immediatamente dopo il rilevamento.</p>
+  </div>
+
+  <div class="item">
+    <h3>Come pulire il cibo che brucia e aderisce al fondo della ciotola?</h3>
+    <p>Ci sono diverse soluzioni, ad esempio, puoi mettere un'acqua di fondo e immergerla in bicarbonato di sodio,
+      limone o soluzione per lavastoviglie.</p>
+    <p>Si può anche riscaldare un po 'di acqua di aceto bianco e qualche goccia di liquido per lavastoviglie in una
+      ciotola, e lasciare riposare per un po 'prima di pulire. Se tutto non scompare, riavviare l'operazione.</p>
+    <p>Un consiglio particolarmente efficace è quello di mettere un pellet lavastoviglie e un po 'di acqua calda in esso
+      e lasciarlo in ammollo per un po '.</p>
+  </div>
+
+  <div class="item">
+    <h3>Come evitare che il cibo aderisca ancora alla ciotola su preparazioni che devono essere cotte?</h3>
+    <p>Prima di iniziare la cottura della ricetta, consigliamo di usare carta assorbente imbevuta per oliare il fondo
+      della ciotola. Questa manutenzione regolare impedirà che il cibo si attacchi alla ciotola. Per preparazioni
+      zuccherate, utilizzare un po 'di succo di limone al posto dell'olio.</p>
+  </div>
+
+  <div class="item">
+    <h3>Miscelazione errata o cottura incompleta degli ingredienti</h3>
+    <p>Questo può essere dovuto al fatto che la ricetta in questione potrebbe richiedere più tempo di cottura.
+      Sebbene teoricamente ci sia un tempo di cottura chiaro per il cibo nella ricetta, il tempo di cottura può variare
+      a causa di diversi fattori :</p>
+    <ul>
+      <li>Temperatura del cibo durante la ricetta ;</li>
+      <li>Se non togli gli ingredienti dal frigorifero e non sono a temperatura ambiente ;</li>
+      <li>Origine e maturità degli ingredienti.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>Non so come riscaldare i piatti pre-preparati.</h3>
+    <p>R : È necessario passare alla modalità manuale e selezionare temperatura, durata, ecc. in base alla preparazione
+      da preriscaldare.</p>
+  </div>
+
+  <div class="item">
+    <h3>Sovraccarico dell'attrezzatura durante il processo di cottura.</h3>
+    <p>R : Questo fenomeno è dovuto all'alta temperatura del liquido e del cibo nella ciotola, che aumenta la pressione
+      all'interno della ciotola e causa il sovraccarico. Per evitare questa situazione, abbassare la temperatura o
+      utilizzare un grande cestello di vapore con coperchio di vetro al posto di un coperchio di cottura.</p>
+  </div>
+</body>
+
+</html>

+ 207 - 0
app/src/main/assets/help/IT/help.html

@@ -0,0 +1,207 @@
+<!DOCTYPE html>
+<html lang="en">
+
+<head>
+  <meta charset="UTF-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1.0">
+  <title>帮助文件</title>
+</head>
+
+<style>
+  * {
+    margin: 0;
+    padding: 0;
+  }
+
+  body {
+    background-color: #000000;
+    height: 100vh;
+    color: #ffffff;
+    padding: 12px;
+  }
+
+  p {
+    font-size: 14px;
+  }
+
+  .item {
+    margin-top: 14px;
+  }
+
+  .item h3 {
+    position: relative;
+  }
+
+  .item h3::after {
+    content: "";
+    display: inline-block;
+    width: 12px;
+    height: 12px;
+    border-top: 2px solid #ffffff;
+    border-right: 2px solid #ffffff;
+    transform: rotate(136deg);
+    margin-left: 14px;
+  }
+
+  .item p,
+  .item ul {
+    display: none;
+    margin-top: 8px;
+  }
+
+  .item:hover p,
+  .item:hover ul {
+    display: block;
+  }
+</style>
+
+<body>
+  <h2>Le FAQ</h2>
+  <div class="item">
+    <h3>La lama si è attorcigliata dalla mia prima preparazione.</h3>
+    <p>La lama non è danneggiata, si può vedere guardando la sua forma specifica nel manuale, ha una lama più curva per
+      mescolare meglio gli ingredienti.</p>
+  </div>
+
+  <div class="item">
+    <h3>Il fumo fuoriesce dal retro del dispositivo durante il primo utilizzo.</h3>
+    <p>Questo fenomeno è normale, il fumo proviene dagli avvolgimenti del motore che, essendo nuovo, possono emettere
+      fumo e un leggero odore di "plastica calda" durante i primi USI. Questo fenomeno sarà mitigato e scomparirà in
+      uso.</p>
+  </div>
+
+  <div class="item">
+    <h3>Il mio robot non si riscalda più o non sale alla temperatura richiesta.</h3>
+    <p>Dopo aver prenotato la preparazione e raffreddato la ciotola, è sufficiente reimpostare la sonda termica posta
+      sotto la ciotola premendo con il dito fino a sentire un "click".</p>
+  </div>
+
+  <div class="item">
+    <h3>Messaggio di errore sullo schermo durante il processo di ricetta.</h3>
+    <p>Il robot è dotato di dispositivi di sicurezza per ridurre al minimo il rischio di sovraccarico del motore
+      (sovraccarico o preparazione eccessiva). Per risolvere questo problema, spegnere il dispositivo e lasciarlo
+      raffreddare per circa 20-30 minuti. In seguito, il problema dovrebbe essere risolto. Se si vede ancora che la
+      cucina robot non può essere aperta, ripetere il processo di raffreddamento. Se altri metodi non funzionano, si
+      prega di contattare il servizio post-vendita.</p>
+  </div>
+
+  <div class="item">
+    <h3>La ciotola non è completamente posizionata nella base o il coperchio non è in posizione bloccata.</h3>
+    <p>Verificare se l'albero motore accessorio è completamente bloccato (nella parte superiore della ciotola).</p>
+  </div>
+
+  <div class="item">
+    <h3>Accessori: Ho perso il cesto di vapore, perso la barra di spinta e rotto la frusta.</h3>
+    <p>I clienti possono acquistare parti direttamente sul sito web, o effettuare ordini direttamente all'indirizzo
+      email tramite POS</p>
+  </div>
+
+  <div class="item">
+    <h3>Il coperchio è difficile da chiudere.</h3>
+    <p>Oliare la guarnizione del coperchio dopo ogni pulizia (ad esempio lubrificare le dita con olio vegetale e
+      applicare sulla guarnizione).</p>
+  </div>
+
+  <div class="item">
+    <h3>Non riesco a connettermi al WiFi: la password è corretta, vicino alla casella.</h3>
+    <p>Questo problema deriva dal protocollo di sicurezza WiFi utilizzato dalla scatola. La casella deve utilizzare il
+      protocollo più recente (WPA2), ed è necessario aggiornare il software della casella.</p>
+  </div>
+
+  <div class="item">
+    <h3>Ho bisogno di una connessione WiFi per creare una ricetta?</h3>
+    <p>No, la connessione WiFi viene utilizzata solo per gli aggiornamenti delle ricette.</p>
+  </div>
+
+  <div class="item">
+    <h3>A che temperatura si riscalda il mio robot?</h3>
+    <p>In modalità manuale, il robot può riscaldare da 37 ° C a 130 ° C, ed è possibile scegliere di modificare la
+      temperatura in incrementi di 5 ° C. Il quadrante della temperatura visualizza solo la temperatura della
+      formulazione sopra i 37 ° C.</p>
+    <p>*Alcune ricette automatiche possono essere cotte a 160 ° C, ma la modalità manuale è limitata a 130 ° C.</p>
+  </div>
+
+  <div class="item">
+    <h3>Qual è il regime del motore?</h3>
+    <p>La velocità può essere regolata da 1 a 12.</p>
+    <p>Per motivi di sicurezza, il robot limita la sua velocità a 3 durante le attività di cottura.</p>
+  </div>
+
+  <div class="item">
+    <h3>Come pulire il mio robot ?</h3>
+    <p>Dopo aver spento e scollegato il cavo di alimentazione, si consiglia di sciacquare immediatamente la ciotola e
+      gli accessori con acqua calda dopo aver utilizzato il robot.</p>
+    <p>Se ci sono segni di bruciatura sul fondo della ciotola, è meglio immergere l'interno della ciotola e strofinare
+      occasionalmente il fondo della ciotola con una spugna fino a quando il cibo non si stacca.</p>
+    <p>È anche possibile avviare il programma di pulizia. </p>
+  </div>
+
+  <div class="item">
+    <h3>Tutti gli accessori possono essere lavastoviglie ?</h3>
+    <p>All accessories of the robot can be placed in the dishwasher (except for the engine block).</p>
+  </div>
+
+  <div class="item">
+    <h3>Alcuni alimenti possono causare la plastica a cambiare colore. Come pulire ?</h3>
+    <p>Alcuni ingredienti colorati, come curry, pomodori, carote, ecc., possono contaminare parti di plastica e questo
+      effetto colorante non è sempre evitabile. Questo colore non ha alcun impatto sulla tua salute o sulla funzionalità
+      dell'accessorio.</p>
+    <p>Per ridurre il colore, pulire l'area macchiata con un panno o un tessuto imbevuto di olio da cucina e quindi
+      eseguire una pulizia regolare.</p>
+    <p>La pulizia deve essere effettuata immediatamente dopo l'uso per ridurre la colorazione.</p>
+    <p>Nota: questo problema non è coperto dalla garanzia in quanto si tratta di un problema estetico, non di un
+      malfunzionamento.</p>
+  </div>
+
+  <div class="item">
+    <h3>Macchie bianche apparivano sul coperchio di cottura. Come rimuoverli ?</h3>
+    <p>Questi segni sono depositi tartari generati dall'uso di acqua calcarea durante la cottura. Deve essere utilizzata
+      una soluzione anti-squaming e il coperchio deve essere immerso per un tempo sufficiente per ammorbidire i segni.
+      Si prega di notare che più tempo di cottura queste macchie richiedono, più difficile diventano e più difficile è
+      rimuoverle. Pertanto, si consiglia di rimuoverli immediatamente dopo il rilevamento.</p>
+  </div>
+
+  <div class="item">
+    <h3>Come pulire il cibo che brucia e aderisce al fondo della ciotola?</h3>
+    <p>Ci sono diverse soluzioni, ad esempio, puoi mettere un'acqua di fondo e immergerla in bicarbonato di sodio,
+      limone o soluzione per lavastoviglie.</p>
+    <p>Si può anche riscaldare un po 'di acqua di aceto bianco e qualche goccia di liquido per lavastoviglie in una
+      ciotola, e lasciare riposare per un po 'prima di pulire. Se tutto non scompare, riavviare l'operazione.</p>
+    <p>Un consiglio particolarmente efficace è quello di mettere un pellet lavastoviglie e un po 'di acqua calda in esso
+      e lasciarlo in ammollo per un po '.</p>
+  </div>
+
+  <div class="item">
+    <h3>Come evitare che il cibo aderisca ancora alla ciotola su preparazioni che devono essere cotte?</h3>
+    <p>Prima di iniziare la cottura della ricetta, consigliamo di usare carta assorbente imbevuta per oliare il fondo
+      della ciotola. Questa manutenzione regolare impedirà che il cibo si attacchi alla ciotola. Per preparazioni
+      zuccherate, utilizzare un po 'di succo di limone al posto dell'olio.</p>
+  </div>
+
+  <div class="item">
+    <h3>Miscelazione errata o cottura incompleta degli ingredienti</h3>
+    <p>Questo può essere dovuto al fatto che la ricetta in questione potrebbe richiedere più tempo di cottura.
+      Sebbene teoricamente ci sia un tempo di cottura chiaro per il cibo nella ricetta, il tempo di cottura può variare
+      a causa di diversi fattori :</p>
+    <ul>
+      <li>Temperatura del cibo durante la ricetta ;</li>
+      <li>Se non togli gli ingredienti dal frigorifero e non sono a temperatura ambiente ;</li>
+      <li>Origine e maturità degli ingredienti.</li>
+    </ul>
+  </div>
+
+  <div class="item">
+    <h3>Non so come riscaldare i piatti pre-preparati.</h3>
+    <p>R : È necessario passare alla modalità manuale e selezionare temperatura, durata, ecc. in base alla preparazione
+      da preriscaldare.</p>
+  </div>
+
+  <div class="item">
+    <h3>Sovraccarico dell'attrezzatura durante il processo di cottura.</h3>
+    <p>R : Questo fenomeno è dovuto all'alta temperatura del liquido e del cibo nella ciotola, che aumenta la pressione
+      all'interno della ciotola e causa il sovraccarico. Per evitare questa situazione, abbassare la temperatura o
+      utilizzare un grande cestello di vapore con coperchio di vetro al posto di un coperchio di cottura.</p>
+  </div>
+</body>
+
+</html>