From 2f4ead124d04c6797bc3c3bb53b9ea9329174c0c Mon Sep 17 00:00:00 2001 From: "Samuele E. Locatelli" Date: Wed, 31 Jul 2019 19:26:09 +0200 Subject: [PATCH] Avanzamento x OrderStatus --- AppData/Utils.cs | 41 +- NKC_WF/OrderManager.aspx.cs | 78 +- NKC_WF/WebUserControls/cmp_orderStatus.ascx | 50 +- .../WebUserControls/cmp_orderStatus.ascx.cs | 71 +- .../cmp_orderStatus.ascx.designer.cs | 63 + NKC_WF20190731.txt | 25431 ++++++++++++++++ 6 files changed, 25696 insertions(+), 38 deletions(-) diff --git a/AppData/Utils.cs b/AppData/Utils.cs index 14e3e91..2625d22 100644 --- a/AppData/Utils.cs +++ b/AppData/Utils.cs @@ -10,35 +10,33 @@ namespace AppData { } - - /// /// Classe che rappresenta la richiesta di AZIONI al NESTING /// - public struct commRequest + public struct commandRequest { /// /// ID del processo richiesto (generato in fase di import) /// - public string BatchID { get; set; } + public int BatchID { get; set; } /// /// Richiesta per il nesting: DoNesting / HaltNesting /// public string ActionRequested { get; set; } } - /// - /// Classe che rappresenta la richiesta di processing di NESTING da inserire in REDIS - /// - public struct batchRequest + /// + /// Classe che rappresenta la richiesta di processing di NESTING da inserire in REDIS + /// + public struct batchRequest { /// /// ID del processo richiesto (generato in fase di import) /// - public string BatchID { get; set; } + public int BatchID { get; set; } /// /// Elenco ordini richeisti da processare / nestare /// - public Order Orders { get; set; } + public List Orders { get; set; } } /// /// Struttura Ordine passata a NESTING @@ -74,7 +72,7 @@ namespace AppData /// /// Cod ITEM di NKC /// - public string ItemId { get; set; } + public int ItemId { get; set; } /// /// Codice ITEM esterno da cliente (HFA) /// @@ -93,10 +91,10 @@ namespace AppData public string CadFilePath { get; set; } } - /// - /// Classe che rappresenta stato ordine ricevutovia REDIS da NESTING - /// - public struct orderStatus + /// + /// Classe che rappresenta stato ordine ricevutovia REDIS da NESTING + /// + public class orderStatus { /// /// ID del processo di Nesting in corso (generato in fase di import) @@ -105,7 +103,7 @@ namespace AppData /// /// Status del procesos di nesting /// - public string ProcessStatus { get; set; } + public procStatus ProcessStatus { get; set; } /// /// Note libere del nesting /// @@ -119,4 +117,15 @@ namespace AppData /// public double EstimatedWorktime { get; set; } } + /// + /// Enum degli stati ammessi epr il Nesting + /// + public enum procStatus + { + waiting = 0, + running, + completed, + aborted, + error + } } diff --git a/NKC_WF/OrderManager.aspx.cs b/NKC_WF/OrderManager.aspx.cs index 88971d1..bc2d654 100644 --- a/NKC_WF/OrderManager.aspx.cs +++ b/NKC_WF/OrderManager.aspx.cs @@ -1,4 +1,6 @@ -using SteamWare; +using AppData; +using Newtonsoft.Json; +using SteamWare; using System; using System.Collections.Generic; using System.Linq; @@ -10,9 +12,22 @@ namespace NKC_WF { public partial class OrderManager : System.Web.UI.Page { + /// + /// Hash redis per il canale di comunicazione dei comandi + /// + protected string batchCmdChannel = "NKC:CMD:batchReq"; + /// + /// Hash redis per il canale di comunicazione dei batch da eseguire + /// + protected string batchOutChannel = "NKC:OUT:batchReq"; + /// + /// Hash redis per il canale di comunicazione dei batch eseguiti/in esecuzione + /// + protected string batchInChannel = "NKC:IN:batchReq"; + protected void Page_Load(object sender, EventArgs e) { - if(!Page.IsPostBack) + if (!Page.IsPostBack) { processPending(); checkVisibility(); @@ -21,20 +36,69 @@ namespace NKC_WF private void processPending() { - // se trova batch no riportati in REDIS li scrive x richiedere processing + // se trova batch non riportati in REDIS li scrive x richiedere processing + string batchKey = $"{batchOutChannel}:{currBatchID}"; + bool reqPresent = !string.IsNullOrEmpty(memLayer.ML.getRSV(batchKey)); + if (!reqPresent) + { + // !!!FIXME!!! leggere da DB!!! + + var articoli = new List(); + var articolo = new Item() + { + ItemId = 1, + ItemExtCode = "abc.2345", + MatID = 2, + ItemrQty = 2, + CadFilePath = @"c:\temp\prova.dxf" + }; + articoli.Add(articolo); + + var ordini = new List(); + Order ordine = new Order() + { + OrderCod = "abcde", + OrderExtCode = "HFA_123456", + DestPlant = "Striker", + OrderQty = 1, + Items = articoli + }; + ordini.Add(ordine); + + var currBatch = new batchRequest + { + BatchID = currBatchID, + Orders = ordini + } + ; + string payload = JsonConvert.SerializeObject(currBatch); + memLayer.ML.setRSV(batchKey, payload); + } + } + /// + /// ID del batch corrente + /// + protected int currBatchID + { + get + { + int answ = 0; + if (memLayer.ML.isInSessionObject("BatchID")) + { + answ = memLayer.ML.IntSessionObj("BatchID"); + } + return answ; + } } private void checkVisibility() { bool hasBatch = false; bool isBatchCompleted = false; - int BatchID = 0; - if (memLayer.ML.isInSessionObject("BatchID")) + if (currBatchID > 0) { hasBatch = true; - BatchID = memLayer.ML.IntSessionObj("BatchID"); } - // !!!FIXME!!! fare lettura // leggo da REDIS se è stato COMPLETATO il Batch... if (true) diff --git a/NKC_WF/WebUserControls/cmp_orderStatus.ascx b/NKC_WF/WebUserControls/cmp_orderStatus.ascx index aa0227b..05b257e 100644 --- a/NKC_WF/WebUserControls/cmp_orderStatus.ascx +++ b/NKC_WF/WebUserControls/cmp_orderStatus.ascx @@ -1,17 +1,39 @@ <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_orderStatus.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_orderStatus" %> -
-
- Stiamo processando il batch <%: Session["BatchID"] %> -
-
- Status + note -
-
- Nesting runtime (sec) -
-
- Working estimated time (sec) -
-
+ + +
+
+ Stiamo processando il batch <%: Session["BatchID"] %> +
+
+

+

+ +
+
+
+
+
+
+
+
+
<%: traduci("NestingRuntime") %>
+
+ + (sec)
+
+
+
+
+
<%: traduci("WorkingEstTime") %>
+
+ + (minutes)
+
+
+
+ +
+
diff --git a/NKC_WF/WebUserControls/cmp_orderStatus.ascx.cs b/NKC_WF/WebUserControls/cmp_orderStatus.ascx.cs index dac7c5a..ed502dd 100644 --- a/NKC_WF/WebUserControls/cmp_orderStatus.ascx.cs +++ b/NKC_WF/WebUserControls/cmp_orderStatus.ascx.cs @@ -1,4 +1,7 @@ -using System; +using AppData; +using Newtonsoft.Json; +using SteamWare; +using System; using System.Collections.Generic; using System.Linq; using System.Web; @@ -9,9 +12,75 @@ namespace NKC_WF.WebUserControls { public partial class cmp_orderStatus : System.Web.UI.UserControl { + public orderStatus statoBatch = new orderStatus(); + /// + /// Hash redis per il canale di comunicazione dei batch eseguiti/in esecuzione + /// + protected string batchInChannel = "NKC:IN:batchReq"; + /// + /// Wrapper traduzione termini + /// + /// + /// + public string traduci(string lemma) + { + return SteamWare.user_std.UtSn.Traduci(lemma); + } protected void Page_Load(object sender, EventArgs e) { + updateStatus(); + } + /// + /// ID del batch corrente + /// + protected int currBatchID + { + get + { + int answ = 0; + if (memLayer.ML.isInSessionObject("BatchID")) + { + answ = memLayer.ML.IntSessionObj("BatchID"); + } + return answ; + } + } + /// + /// Aggiorna visualizzazione status processo + /// + private void updateStatus() + { + // se trova batch non riportati in REDIS li scrive x richiedere processing + string batchKey = $"{batchInChannel}:{currBatchID}"; + // per prima cosa recupero da REDIS lo stato... + bool statusPresent = !string.IsNullOrEmpty(memLayer.ML.getRSV(batchKey)); + if (statusPresent) + { + string payload = memLayer.ML.getRSV(batchKey); + if (!string.IsNullOrEmpty(payload)) + { + try + { + statoBatch = JsonConvert.DeserializeObject(payload); + } + catch + { } + // aggiorno componente... + lblStatusCode.Text = statoBatch.ProcessStatus.ToString(); + lblProcNotes.Text = statoBatch.ProcessNotes; + lblNestingRuntime.Text = statoBatch.ProcessingRuntime.ToString(); + lblWrktimeEst.Text = (statoBatch.EstimatedWorktime / 60).ToString(); + // secondo status mostro barra... + divProgress.Visible = (statoBatch.ProcessStatus > procStatus.waiting && statoBatch.ProcessStatus < procStatus.completed); + } + } + TimerUpdateStatus.Enabled = statusPresent; } + + protected void TimerUpdateStatus_Tick(object sender, EventArgs e) + { + updateStatus(); + } } } \ No newline at end of file diff --git a/NKC_WF/WebUserControls/cmp_orderStatus.ascx.designer.cs b/NKC_WF/WebUserControls/cmp_orderStatus.ascx.designer.cs index ef56c20..fe1d3ec 100644 --- a/NKC_WF/WebUserControls/cmp_orderStatus.ascx.designer.cs +++ b/NKC_WF/WebUserControls/cmp_orderStatus.ascx.designer.cs @@ -11,5 +11,68 @@ namespace NKC_WF.WebUserControls { public partial class cmp_orderStatus { + + /// + /// Controllo updPanelStatus. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.UpdatePanel updPanelStatus; + + /// + /// Controllo lblStatusCode. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label lblStatusCode; + + /// + /// Controllo lblProcNotes. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label lblProcNotes; + + /// + /// Controllo divProgress. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.HtmlControls.HtmlGenericControl divProgress; + + /// + /// Controllo lblNestingRuntime. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label lblNestingRuntime; + + /// + /// Controllo lblWrktimeEst. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.WebControls.Label lblWrktimeEst; + + /// + /// Controllo TimerUpdateStatus. + /// + /// + /// Campo generato automaticamente. + /// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind. + /// + protected global::System.Web.UI.Timer TimerUpdateStatus; } } diff --git a/NKC_WF20190731.txt b/NKC_WF20190731.txt index 4793d8c..6df9ec3 100644 --- a/NKC_WF20190731.txt +++ b/NKC_WF20190731.txt @@ -928,3 +928,25434 @@ System.Collections.Generic.KeyNotFoundException: La chiave specificata non era p 18:20:23 1489 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load 18:20:23 1499 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline 18:20:23 1499 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:29:36 3113 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:29:36 3123 [LEMMA] - UPLOADFILE +18:29:36 3133 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:29:36 3143 [INFO] - Key: EN#KITTING | Val: Kitting +18:29:36 3153 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:29:36 3163 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:29:36 3173 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:29:36 3183 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:31:37 1467 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:31:37 1477 [LEMMA] - UPLOADFILE +18:31:37 1487 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:31:37 1497 [INFO] - Key: EN#KITTING | Val: Kitting +18:31:37 1497 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:31:37 1507 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:31:37 1517 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:31:37 1527 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:33:38 1452 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:33:38 1462 [LEMMA] - UPLOADFILE +18:33:38 1472 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:33:38 1472 [INFO] - Key: EN#KITTING | Val: Kitting +18:33:38 1482 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:33:38 1492 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:33:38 1502 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:33:38 1512 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:35:39 1500 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:35:39 1510 [LEMMA] - UPLOADFILE +18:35:39 1520 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:35:39 1520 [INFO] - Key: EN#KITTING | Val: Kitting +18:35:39 1530 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:35:39 1540 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:35:39 1540 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:35:39 1550 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:37:40 1464 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:37:40 1484 [LEMMA] - UPLOADFILE +18:37:40 1494 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:37:40 1504 [INFO] - Key: EN#KITTING | Val: Kitting +18:37:40 1504 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:37:40 1514 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:37:40 1514 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:37:40 1524 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:39:41 1483 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:39:41 1493 [LEMMA] - UPLOADFILE +18:39:41 1503 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:39:41 1513 [INFO] - Key: EN#KITTING | Val: Kitting +18:39:41 1513 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:39:41 1523 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:39:41 1523 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:39:41 1533 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:41:42 1478 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:41:42 1488 [LEMMA] - UPLOADFILE +18:41:42 1498 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:41:42 1508 [INFO] - Key: EN#KITTING | Val: Kitting +18:41:42 1508 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:41:42 1518 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:41:42 1518 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:41:42 1528 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:46:47 9174 Caricati 18 lemmi! +18:46:47 9254 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:46:47 9274 [LEMMA] - UPLOADFILE +18:46:47 9284 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:46:47 9304 [INFO] - Key: EN#KITTING | Val: Kitting +18:46:47 9324 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:46:47 9344 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:46:47 9364 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:46:47 9374 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:47:32 4772 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:47:32 4792 [LEMMA] - UPLOADFILE +18:47:32 4802 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:47:32 4822 [INFO] - Key: EN#KITTING | Val: Kitting +18:47:32 4832 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:47:32 4842 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:47:32 4862 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:47:32 4872 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +18:49:33 1781 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +18:49:33 1791 [LEMMA] - UPLOADFILE +18:49:33 1801 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +18:49:33 1821 [INFO] - Key: EN#KITTING | Val: Kitting +18:49:33 1831 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +18:49:33 1841 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +18:49:33 1851 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +18:49:33 1871 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:08:06 9722 Caricati 18 lemmi! +19:08:09 9983 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:08:09 9993 [LEMMA] - UPLOADFILE +19:08:10 0003 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:08:10 0013 [INFO] - Key: EN#KITTING | Val: Kitting +19:08:10 0013 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:08:10 0023 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:08:10 0033 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:08:10 0043 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:10:10 1703 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:10:10 1713 [LEMMA] - UPLOADFILE +19:10:10 1723 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:10:10 1733 [INFO] - Key: EN#KITTING | Val: Kitting +19:10:10 1733 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:10:10 1743 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:10:10 1753 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:10:10 1763 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:12:11 1508 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:12:11 1518 [LEMMA] - UPLOADFILE +19:12:11 1528 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:12:11 1538 [INFO] - Key: EN#KITTING | Val: Kitting +19:12:11 1538 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:12:11 1548 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:12:11 1558 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:12:11 1568 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:12:57 8595 Caricati 18 lemmi! +19:12:57 8625 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:12:57 8635 [LEMMA] - UPLOADFILE +19:12:57 8645 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:12:57 8655 [INFO] - Key: EN#KITTING | Val: Kitting +19:12:57 8655 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:12:57 8665 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:12:57 8675 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:12:57 8675 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:12:57 8705 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:12:57 8715 [LEMMA] - NESTINGRUNTIME +19:12:57 8715 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:12:57 8725 [INFO] - Key: EN#KITTING | Val: Kitting +19:12:57 8735 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:12:57 8735 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:12:57 8745 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:12:57 8755 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:12:57 8755 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:12:57 8765 [LEMMA] - WORKINGESTTIME +19:12:57 8775 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:12:57 8775 [INFO] - Key: EN#KITTING | Val: Kitting +19:12:57 8785 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:12:57 8795 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:12:57 8805 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:12:57 8815 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:13:19 9296 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:13:19 9306 [LEMMA] - UPLOADFILE +19:13:19 9316 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:13:19 9316 [INFO] - Key: EN#KITTING | Val: Kitting +19:13:19 9326 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:13:19 9336 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:13:19 9346 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:13:19 9346 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:13:19 9366 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:13:19 9376 [LEMMA] - NESTINGRUNTIME +19:13:19 9386 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:13:19 9386 [INFO] - Key: EN#KITTING | Val: Kitting +19:13:19 9396 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:13:19 9406 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:13:19 9406 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:13:19 9416 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:13:19 9426 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:13:19 9426 [LEMMA] - WORKINGESTTIME +19:13:19 9436 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:13:19 9446 [INFO] - Key: EN#KITTING | Val: Kitting +19:13:19 9446 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:13:19 9456 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:13:19 9466 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:13:19 9466 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:14:13 1456 Caricati 18 lemmi! +19:14:13 1476 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:14:13 1486 [LEMMA] - UPLOADFILE +19:14:13 1496 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:14:13 1506 [INFO] - Key: EN#KITTING | Val: Kitting +19:14:13 1506 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:14:13 1516 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:14:13 1526 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:14:13 1536 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:14:13 1566 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:14:13 1566 [LEMMA] - NESTINGRUNTIME +19:14:13 1576 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:14:13 1586 [INFO] - Key: EN#KITTING | Val: Kitting +19:14:13 1596 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:14:13 1596 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:14:13 1606 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:14:13 1616 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:14:13 1626 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:14:13 1636 [LEMMA] - WORKINGESTTIME +19:14:13 1636 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:14:13 1646 [INFO] - Key: EN#KITTING | Val: Kitting +19:14:13 1646 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:14:13 1656 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:14:13 1666 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:14:13 1666 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:14:27 1336 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:14:27 1346 [LEMMA] - UPLOADFILE +19:14:27 1356 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:14:27 1366 [INFO] - Key: EN#KITTING | Val: Kitting +19:14:27 1376 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:14:27 1386 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:14:27 1396 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:14:27 1406 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:14:27 1436 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:14:27 1436 [LEMMA] - NESTINGRUNTIME +19:14:27 1446 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:14:27 1456 [INFO] - Key: EN#KITTING | Val: Kitting +19:14:27 1466 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:14:27 1466 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:14:27 1476 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:14:27 1486 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:14:27 1496 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:14:27 1496 [LEMMA] - WORKINGESTTIME +19:14:27 1506 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:14:27 1516 [INFO] - Key: EN#KITTING | Val: Kitting +19:14:27 1526 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:14:27 1536 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:14:27 1546 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:14:27 1546 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:14:53 6108 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:14:53 6118 [LEMMA] - UPLOADFILE +19:14:53 6128 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:14:53 6128 [INFO] - Key: EN#KITTING | Val: Kitting +19:14:53 6138 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:14:53 6148 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:14:53 6148 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:14:53 6158 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:14:53 6168 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:14:53 6168 [LEMMA] - NESTINGRUNTIME +19:14:53 6178 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:14:53 6188 [INFO] - Key: EN#KITTING | Val: Kitting +19:14:53 6198 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:14:53 6208 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:14:53 6218 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:14:53 6218 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:14:53 6228 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:14:53 6238 [LEMMA] - WORKINGESTTIME +19:14:53 6238 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:14:53 6248 [INFO] - Key: EN#KITTING | Val: Kitting +19:14:53 6258 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:14:53 6268 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:14:53 6268 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:14:53 6278 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:16:45 6743 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:16:45 6763 [LEMMA] - UPLOADFILE +19:16:45 6763 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:16:45 6773 [INFO] - Key: EN#KITTING | Val: Kitting +19:16:45 6783 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:16:45 6793 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:16:45 6803 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:16:45 6803 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:16:45 6833 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:16:45 6843 [LEMMA] - NESTINGRUNTIME +19:16:45 6843 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:16:45 6853 [INFO] - Key: EN#KITTING | Val: Kitting +19:16:45 6863 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:16:45 6873 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:16:45 6873 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:16:45 6883 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:16:45 6893 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:16:45 6903 [LEMMA] - WORKINGESTTIME +19:16:45 6903 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:16:45 6913 [INFO] - Key: EN#KITTING | Val: Kitting +19:16:45 6923 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:16:45 6923 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:16:45 6933 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:16:45 6943 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:17:35 6349 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:17:35 6359 [LEMMA] - UPLOADFILE +19:17:35 6369 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:17:35 6369 [INFO] - Key: EN#KITTING | Val: Kitting +19:17:35 6379 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:17:35 6379 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:17:35 6389 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:17:35 6399 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:17:35 6419 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:17:35 6429 [LEMMA] - NESTINGRUNTIME +19:17:35 6439 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:17:35 6449 [INFO] - Key: EN#KITTING | Val: Kitting +19:17:35 6449 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:17:35 6459 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:17:35 6469 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:17:35 6479 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:17:35 6499 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:17:35 6509 [LEMMA] - WORKINGESTTIME +19:17:35 6509 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:17:35 6519 [INFO] - Key: EN#KITTING | Val: Kitting +19:17:35 6519 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:17:35 6529 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:17:35 6539 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:17:35 6539 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:53 6458 Caricati 18 lemmi! +19:18:53 6478 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:53 6488 [LEMMA] - UPLOADFILE +19:18:53 6498 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:18:53 6498 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:53 6528 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:53 6538 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:53 6538 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:53 6548 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:53 6578 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:53 6588 [LEMMA] - NESTINGRUNTIME +19:18:53 6588 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:18:53 6598 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:53 6608 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:53 6608 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:53 6618 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:53 6618 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:53 6628 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:53 6638 [LEMMA] - WORKINGESTTIME +19:18:53 6648 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:18:53 6648 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:53 6658 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:53 6668 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:53 6668 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:53 6678 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:56 2914 Caricati 18 lemmi! +19:18:56 2944 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:56 2944 [LEMMA] - NESTINGRUNTIME +19:18:56 2954 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:18:56 2964 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:56 2974 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:56 2974 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:56 2984 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:56 2994 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:56 3004 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:56 3014 [LEMMA] - WORKINGESTTIME +19:18:56 3024 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:18:56 3034 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:56 3044 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:56 3054 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:56 3064 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:56 3064 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:56 3184 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:56 3194 [LEMMA] - UPLOADFILE +19:18:56 3204 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:18:56 3214 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:56 3214 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:56 3224 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:56 3234 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:56 3244 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:56 8647 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:56 8647 [LEMMA] - NESTINGRUNTIME +19:18:56 8657 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:18:56 8667 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:56 8667 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:56 8677 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:56 8687 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:56 8697 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:56 8707 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:56 8707 [LEMMA] - WORKINGESTTIME +19:18:56 8717 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:18:56 8727 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:56 8727 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:56 8737 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:56 8737 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:56 8747 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:56 8757 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:56 8767 [LEMMA] - UPLOADFILE +19:18:56 8767 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:18:56 8777 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:56 8787 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:56 8787 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:56 8797 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:56 8797 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:57 3898 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:57 3908 [LEMMA] - NESTINGRUNTIME +19:18:57 3918 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:18:57 3928 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:57 3938 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:57 3938 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:57 3948 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:57 3958 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:57 3968 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:57 3968 [LEMMA] - WORKINGESTTIME +19:18:57 3978 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:18:57 3988 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:57 3988 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:57 3998 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:57 4008 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:57 4028 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:57 4038 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:57 4048 [LEMMA] - UPLOADFILE +19:18:57 4058 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:18:57 4068 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:57 4078 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:57 4078 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:57 4088 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:57 4098 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:57 9190 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:57 9190 [LEMMA] - NESTINGRUNTIME +19:18:57 9200 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:18:57 9210 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:57 9210 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:57 9220 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:57 9230 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:57 9230 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:57 9240 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:57 9240 [LEMMA] - WORKINGESTTIME +19:18:57 9250 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:18:57 9260 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:57 9260 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:57 9270 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:57 9270 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:57 9280 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:57 9290 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:57 9290 [LEMMA] - UPLOADFILE +19:18:57 9300 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:18:57 9310 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:57 9320 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:57 9320 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:57 9330 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:57 9330 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:58 4442 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:58 4442 [LEMMA] - NESTINGRUNTIME +19:18:58 4452 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:18:58 4462 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:58 4472 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:58 4472 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:58 4482 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:58 4492 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:58 4502 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:58 4512 [LEMMA] - WORKINGESTTIME +19:18:58 4522 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:18:58 4532 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:58 4542 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:58 4552 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:58 4552 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:58 4562 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:58 4572 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:58 4582 [LEMMA] - UPLOADFILE +19:18:58 4582 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:18:58 4592 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:58 4602 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:58 4602 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:58 4612 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:58 4612 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:58 9714 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:58 9724 [LEMMA] - NESTINGRUNTIME +19:18:58 9724 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:18:58 9734 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:58 9744 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:58 9744 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:58 9754 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:58 9754 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:58 9764 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:58 9774 [LEMMA] - WORKINGESTTIME +19:18:58 9774 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:18:58 9784 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:58 9794 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:58 9794 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:58 9804 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:58 9814 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:58 9824 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:58 9824 [LEMMA] - UPLOADFILE +19:18:58 9834 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:18:58 9834 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:58 9844 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:58 9854 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:58 9864 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:58 9874 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:59 4976 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:59 4986 [LEMMA] - NESTINGRUNTIME +19:18:59 4986 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:18:59 4996 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:59 5006 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:59 5016 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:59 5026 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:59 5036 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:59 5046 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:59 5056 [LEMMA] - WORKINGESTTIME +19:18:59 5066 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:18:59 5076 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:59 5076 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:59 5086 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:59 5096 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:59 5096 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:18:59 5106 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:18:59 5116 [LEMMA] - UPLOADFILE +19:18:59 5126 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:18:59 5126 [INFO] - Key: EN#KITTING | Val: Kitting +19:18:59 5136 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:18:59 5146 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:18:59 5146 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:18:59 5156 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:00 0257 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:00 0267 [LEMMA] - NESTINGRUNTIME +19:19:00 0267 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:00 0277 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:00 0287 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:00 0287 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:00 0297 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:00 0297 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:00 0307 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:00 0317 [LEMMA] - WORKINGESTTIME +19:19:00 0327 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:00 0327 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:00 0337 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:00 0347 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:00 0357 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:00 0357 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:00 0377 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:00 0377 [LEMMA] - UPLOADFILE +19:19:00 0387 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:00 0397 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:00 0397 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:00 0407 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:00 0417 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:00 0417 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:00 5528 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:00 5538 [LEMMA] - NESTINGRUNTIME +19:19:00 5548 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:00 5548 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:00 5558 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:00 5568 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:00 5578 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:00 5578 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:00 5588 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:00 5598 [LEMMA] - WORKINGESTTIME +19:19:00 5598 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:00 5608 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:00 5618 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:00 5618 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:00 5628 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:00 5638 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:00 5648 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:00 5648 [LEMMA] - UPLOADFILE +19:19:00 5658 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:00 5668 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:00 5668 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:00 5678 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:00 5688 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:00 5698 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:01 0800 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:01 0810 [LEMMA] - NESTINGRUNTIME +19:19:01 0810 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:01 0820 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:01 0830 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:01 0830 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:01 0840 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:01 0850 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:01 0860 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:01 0870 [LEMMA] - WORKINGESTTIME +19:19:01 0880 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:01 0890 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:01 0890 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:01 0900 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:01 0910 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:01 0920 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:01 0930 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:01 0940 [LEMMA] - UPLOADFILE +19:19:01 0940 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:01 0950 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:01 0960 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:01 0960 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:01 0970 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:01 0980 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:01 6091 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:01 6101 [LEMMA] - NESTINGRUNTIME +19:19:01 6101 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:01 6111 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:01 6121 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:01 6121 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:01 6131 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:01 6141 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:01 6151 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:01 6161 [LEMMA] - WORKINGESTTIME +19:19:01 6161 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:01 6171 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:01 6181 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:01 6191 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:01 6201 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:01 6211 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:01 6221 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:01 6231 [LEMMA] - UPLOADFILE +19:19:01 6241 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:01 6241 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:01 6251 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:01 6261 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:01 6261 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:01 6271 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:02 1382 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:02 1392 [LEMMA] - NESTINGRUNTIME +19:19:02 1402 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:02 1412 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:02 1412 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:02 1422 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:02 1432 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:02 1432 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:02 1442 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:02 1452 [LEMMA] - WORKINGESTTIME +19:19:02 1452 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:02 1462 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:02 1462 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:02 1472 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:02 1482 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:02 1482 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:02 1502 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:02 1502 [LEMMA] - UPLOADFILE +19:19:02 1512 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:02 1522 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:02 1532 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:02 1542 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:02 1552 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:02 1562 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:02 6654 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:02 6664 [LEMMA] - NESTINGRUNTIME +19:19:02 6664 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:02 6674 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:02 6684 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:02 6684 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:02 6694 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:02 6704 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:02 6714 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:02 6724 [LEMMA] - WORKINGESTTIME +19:19:02 6724 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:02 6734 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:02 6744 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:02 6744 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:02 6754 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:02 6764 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:02 6774 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:02 6784 [LEMMA] - UPLOADFILE +19:19:02 6784 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:02 6794 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:02 6804 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:02 6804 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:02 6814 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:02 6824 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:03 1935 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:03 1945 [LEMMA] - NESTINGRUNTIME +19:19:03 1945 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:03 1955 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:03 1965 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:03 1965 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:03 1975 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:03 1985 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:03 1985 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:03 1995 [LEMMA] - WORKINGESTTIME +19:19:03 2005 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:03 2015 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:03 2025 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:03 2025 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:03 2035 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:03 2045 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:03 2055 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:03 2065 [LEMMA] - UPLOADFILE +19:19:03 2075 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:03 2075 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:03 2085 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:03 2095 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:03 2095 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:03 2105 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:03 7213 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:03 7223 [LEMMA] - NESTINGRUNTIME +19:19:03 7223 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:03 7233 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:03 7243 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:03 7243 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:03 7253 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:03 7263 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:03 7263 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:03 7273 [LEMMA] - WORKINGESTTIME +19:19:03 7283 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:03 7293 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:03 7293 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:03 7333 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:03 7343 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:03 7353 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:03 7363 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:03 7373 [LEMMA] - UPLOADFILE +19:19:03 7383 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:03 7383 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:03 7393 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:03 7403 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:03 7403 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:03 7413 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:04 2504 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:04 2504 [LEMMA] - NESTINGRUNTIME +19:19:04 2514 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:04 2524 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:04 2524 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:04 2534 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:04 2544 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:04 2554 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:04 2564 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:04 2564 [LEMMA] - WORKINGESTTIME +19:19:04 2574 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:04 2574 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:04 2584 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:04 2594 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:04 2594 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:04 2604 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:04 2614 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:04 2624 [LEMMA] - UPLOADFILE +19:19:04 2624 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:04 2634 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:04 2634 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:04 2644 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:04 2644 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:04 2654 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:04 7755 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:04 7765 [LEMMA] - NESTINGRUNTIME +19:19:04 7775 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:04 7775 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:04 7785 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:04 7795 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:04 7795 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:04 7805 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:04 7815 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:04 7815 [LEMMA] - WORKINGESTTIME +19:19:04 7825 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:04 7835 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:04 7835 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:04 7845 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:04 7855 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:04 7865 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:04 7875 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:04 7885 [LEMMA] - UPLOADFILE +19:19:04 7885 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:04 7895 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:04 7905 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:04 7905 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:04 7915 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:04 7925 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:05 3017 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:05 3017 [LEMMA] - NESTINGRUNTIME +19:19:05 3027 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:05 3037 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:05 3047 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:05 3047 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:05 3057 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:05 3067 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:05 3067 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:05 3077 [LEMMA] - WORKINGESTTIME +19:19:05 3087 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:05 3087 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:05 3097 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:05 3107 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:05 3107 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:05 3117 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:05 3127 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:05 3127 [LEMMA] - UPLOADFILE +19:19:05 3137 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:05 3147 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:05 3147 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:05 3157 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:05 3157 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:05 3167 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:05 8269 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:05 8278 [LEMMA] - NESTINGRUNTIME +19:19:05 8278 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:05 8289 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:05 8298 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:05 8298 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:05 8308 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:05 8319 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:05 8329 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:05 8339 [LEMMA] - WORKINGESTTIME +19:19:05 8349 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:05 8359 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:05 8369 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:05 8379 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:05 8389 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:05 8389 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:05 8409 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:05 8409 [LEMMA] - UPLOADFILE +19:19:05 8419 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:05 8429 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:05 8439 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:05 8449 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:05 8449 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:05 8459 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:06 3560 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:06 3570 [LEMMA] - NESTINGRUNTIME +19:19:06 3570 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:06 3580 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:06 3590 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:06 3590 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:06 3600 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:06 3610 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:06 3610 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:06 3620 [LEMMA] - WORKINGESTTIME +19:19:06 3630 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:06 3630 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:06 3640 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:06 3650 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:06 3650 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:06 3660 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:06 3670 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:06 3670 [LEMMA] - UPLOADFILE +19:19:06 3680 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:06 3690 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:06 3700 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:06 3710 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:06 3710 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:06 3720 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:06 8824 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:06 8834 [LEMMA] - NESTINGRUNTIME +19:19:06 8834 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:06 8844 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:06 8854 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:06 8864 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:06 8874 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:06 8884 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:06 8884 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:06 8894 [LEMMA] - WORKINGESTTIME +19:19:06 8904 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:06 8904 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:06 8914 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:06 8924 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:06 8924 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:06 8934 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:06 8944 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:06 8944 [LEMMA] - UPLOADFILE +19:19:06 8954 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:06 8954 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:06 8964 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:06 8974 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:06 8974 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:06 8984 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:07 4075 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:07 4085 [LEMMA] - NESTINGRUNTIME +19:19:07 4085 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:07 4095 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:07 4095 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:07 4105 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:07 4115 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:07 4115 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:07 4125 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:07 4135 [LEMMA] - WORKINGESTTIME +19:19:07 4135 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:07 4145 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:07 4155 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:07 4155 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:07 4165 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:07 4175 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:07 4185 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:07 4185 [LEMMA] - UPLOADFILE +19:19:07 4195 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:07 4205 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:07 4215 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:07 4215 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:07 4225 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:07 4225 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:07 9320 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:07 9330 [LEMMA] - NESTINGRUNTIME +19:19:07 9340 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:07 9340 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:07 9350 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:07 9360 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:07 9370 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:07 9370 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:07 9380 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:07 9390 [LEMMA] - WORKINGESTTIME +19:19:07 9390 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:07 9400 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:07 9410 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:07 9410 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:07 9420 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:07 9431 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:07 9441 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:07 9441 [LEMMA] - UPLOADFILE +19:19:07 9451 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:07 9461 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:07 9461 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:07 9471 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:07 9481 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:07 9481 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:08 4576 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:08 4576 [LEMMA] - NESTINGRUNTIME +19:19:08 4586 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:08 4596 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:08 4596 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:08 4606 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:08 4616 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:08 4616 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:08 4626 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:08 4636 [LEMMA] - WORKINGESTTIME +19:19:08 4636 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:08 4646 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:08 4646 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:08 4656 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:08 4666 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:08 4666 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:08 4676 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:08 4686 [LEMMA] - UPLOADFILE +19:19:08 4696 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:08 4706 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:08 4716 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:08 4726 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:08 4726 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:08 4736 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:08 9828 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:08 9838 [LEMMA] - NESTINGRUNTIME +19:19:08 9838 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:08 9848 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:08 9858 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:08 9868 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:08 9868 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:08 9878 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:08 9888 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:08 9888 [LEMMA] - WORKINGESTTIME +19:19:08 9898 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:08 9908 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:08 9908 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:08 9918 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:08 9918 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:08 9928 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:08 9938 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:08 9938 [LEMMA] - UPLOADFILE +19:19:08 9948 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:08 9958 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:08 9958 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:08 9968 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:08 9968 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:08 9978 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:09 5063 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:09 5073 [LEMMA] - NESTINGRUNTIME +19:19:09 5073 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:09 5083 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:09 5093 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:09 5093 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:09 5103 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:09 5113 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:09 5123 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:09 5133 [LEMMA] - WORKINGESTTIME +19:19:09 5133 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:09 5143 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:09 5153 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:09 5153 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:09 5163 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:09 5173 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:09 5183 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:09 5183 [LEMMA] - UPLOADFILE +19:19:09 5193 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:09 5203 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:09 5213 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:09 5213 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:09 5223 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:09 5233 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:10 0324 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:10 0334 [LEMMA] - NESTINGRUNTIME +19:19:10 0344 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:10 0354 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:10 0364 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:10 0364 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:10 0374 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:10 0384 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:10 0394 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:10 0404 [LEMMA] - WORKINGESTTIME +19:19:10 0404 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:10 0414 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:10 0424 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:10 0424 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:10 0434 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:10 0444 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:10 0454 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:10 0454 [LEMMA] - UPLOADFILE +19:19:10 0464 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:10 0464 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:10 0474 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:10 0474 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:10 0484 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:10 0494 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:10 5596 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:10 5606 [LEMMA] - NESTINGRUNTIME +19:19:10 5616 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:10 5626 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:10 5626 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:10 5636 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:10 5636 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:10 5646 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:10 5656 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:10 5656 [LEMMA] - WORKINGESTTIME +19:19:10 5666 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:10 5676 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:10 5676 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:10 5686 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:10 5696 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:10 5706 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:10 5716 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:10 5716 [LEMMA] - UPLOADFILE +19:19:10 5726 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:10 5736 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:10 5736 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:10 5746 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:10 5756 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:10 5766 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:11 0857 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:11 0867 [LEMMA] - NESTINGRUNTIME +19:19:11 0877 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:11 0887 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:11 0887 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:11 0897 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:11 0907 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:11 0917 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:11 0917 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:11 0927 [LEMMA] - WORKINGESTTIME +19:19:11 0937 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:11 0937 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:11 0947 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:11 0957 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:11 0957 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:11 0967 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:11 0977 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:11 0987 [LEMMA] - UPLOADFILE +19:19:11 0987 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:11 0997 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:11 1007 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:11 1007 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:11 1017 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:11 1027 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:11 6108 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:11 6119 [LEMMA] - NESTINGRUNTIME +19:19:11 6128 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:11 6128 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:11 6138 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:11 6138 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:11 6148 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:11 6158 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:11 6158 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:11 6168 [LEMMA] - WORKINGESTTIME +19:19:11 6168 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:11 6178 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:11 6188 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:11 6188 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:11 6198 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:11 6208 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:11 6218 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:11 6218 [LEMMA] - UPLOADFILE +19:19:11 6228 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:11 6228 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:11 6238 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:11 6238 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:11 6248 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:11 6248 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:12 1340 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:12 1350 [LEMMA] - NESTINGRUNTIME +19:19:12 1360 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:12 1370 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:12 1370 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:12 1380 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:12 1390 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:12 1400 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:12 1410 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:12 1420 [LEMMA] - WORKINGESTTIME +19:19:12 1420 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:12 1430 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:12 1430 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:12 1440 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:12 1450 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:12 1450 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:12 1460 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:12 1470 [LEMMA] - UPLOADFILE +19:19:12 1470 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:12 1480 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:12 1480 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:12 1490 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:12 1500 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:12 1500 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:12 6591 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:12 6601 [LEMMA] - NESTINGRUNTIME +19:19:12 6611 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:12 6611 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:12 6621 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:12 6631 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:12 6631 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:12 6641 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:12 6651 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:12 6651 [LEMMA] - WORKINGESTTIME +19:19:12 6661 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:12 6671 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:12 6671 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:12 6681 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:12 6691 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:12 6701 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:12 6711 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:12 6721 [LEMMA] - UPLOADFILE +19:19:12 6721 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:12 6731 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:12 6741 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:12 6741 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:12 6751 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:12 6761 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:13 1847 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:13 1857 [LEMMA] - NESTINGRUNTIME +19:19:13 1867 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:13 1877 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:13 1877 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:13 1887 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:13 1897 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:13 1907 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:13 1907 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:13 1917 [LEMMA] - WORKINGESTTIME +19:19:13 1927 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:13 1937 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:13 1937 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:13 1947 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:13 1957 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:13 1957 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:13 1967 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:13 1977 [LEMMA] - UPLOADFILE +19:19:13 1987 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:13 1987 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:13 1997 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:13 2007 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:13 2007 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:13 2017 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:13 7119 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:13 7129 [LEMMA] - NESTINGRUNTIME +19:19:13 7129 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:13 7139 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:13 7139 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:13 7149 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:13 7159 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:13 7169 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:13 7169 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:13 7179 [LEMMA] - WORKINGESTTIME +19:19:13 7189 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:13 7189 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:13 7199 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:13 7209 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:13 7219 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:13 7219 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:13 7229 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:13 7239 [LEMMA] - UPLOADFILE +19:19:13 7249 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:13 7249 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:13 7259 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:13 7269 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:13 7269 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:13 7279 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:14 2384 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:14 2394 [LEMMA] - NESTINGRUNTIME +19:19:14 2404 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:14 2404 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:14 2414 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:14 2424 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:14 2434 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:14 2434 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:14 2444 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:14 2454 [LEMMA] - WORKINGESTTIME +19:19:14 2464 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:14 2464 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:14 2474 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:14 2484 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:14 2484 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:14 2494 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:14 2504 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:14 2514 [LEMMA] - UPLOADFILE +19:19:14 2524 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:14 2534 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:14 2544 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:14 2554 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:14 2564 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:14 2564 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:14 7645 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:14 7655 [LEMMA] - NESTINGRUNTIME +19:19:14 7665 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:14 7665 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:14 7675 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:14 7685 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:14 7685 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:14 7695 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:14 7705 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:14 7715 [LEMMA] - WORKINGESTTIME +19:19:14 7725 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:14 7725 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:14 7735 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:14 7745 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:14 7745 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:14 7755 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:14 7765 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:14 7775 [LEMMA] - UPLOADFILE +19:19:14 7775 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:14 7785 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:14 7785 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:14 7795 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:14 7805 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:14 7805 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:15 2906 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:15 2916 [LEMMA] - NESTINGRUNTIME +19:19:15 2916 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:15 2926 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:15 2936 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:15 2936 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:15 2946 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:15 2946 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:15 2956 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:15 2966 [LEMMA] - WORKINGESTTIME +19:19:15 2976 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:15 2976 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:15 2986 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:15 2986 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:15 2996 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:15 3006 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:15 3016 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:15 3016 [LEMMA] - UPLOADFILE +19:19:15 3026 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:15 3036 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:15 3046 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:15 3056 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:15 3056 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:15 3066 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:15 8158 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:15 8168 [LEMMA] - NESTINGRUNTIME +19:19:15 8178 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:15 8188 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:15 8188 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:15 8198 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:15 8208 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:15 8218 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:15 8228 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:15 8228 [LEMMA] - WORKINGESTTIME +19:19:15 8238 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:15 8248 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:15 8248 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:15 8258 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:15 8258 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:15 8268 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:15 8278 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:15 8288 [LEMMA] - UPLOADFILE +19:19:15 8288 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:15 8298 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:15 8308 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:15 8308 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:15 8318 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:15 8318 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:16 3409 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:16 3419 [LEMMA] - NESTINGRUNTIME +19:19:16 3429 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:16 3439 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:16 3439 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:16 3449 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:16 3459 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:16 3469 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:16 3479 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:16 3479 [LEMMA] - WORKINGESTTIME +19:19:16 3489 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:16 3499 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:16 3509 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:16 3509 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:16 3519 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:16 3529 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:16 3539 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:16 3549 [LEMMA] - UPLOADFILE +19:19:16 3559 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:16 3559 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:16 3569 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:16 3579 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:16 3579 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:16 3589 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:16 8672 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:16 8682 [LEMMA] - NESTINGRUNTIME +19:19:16 8692 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:16 8702 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:16 8712 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:16 8712 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:16 8722 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:16 8732 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:16 8742 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:16 8742 [LEMMA] - WORKINGESTTIME +19:19:16 8752 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:16 8762 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:16 8762 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:16 8772 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:16 8772 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:16 8782 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:16 8792 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:16 8802 [LEMMA] - UPLOADFILE +19:19:16 8802 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:16 8812 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:16 8822 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:16 8822 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:16 8832 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:16 8832 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:17 3940 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:17 3950 [LEMMA] - NESTINGRUNTIME +19:19:17 3960 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:17 3960 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:17 3970 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:17 3970 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:17 3980 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:17 3990 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:17 3990 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:17 4000 [LEMMA] - WORKINGESTTIME +19:19:17 4010 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:17 4010 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:17 4020 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:17 4030 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:17 4040 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:17 4040 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:17 4060 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:17 4060 [LEMMA] - UPLOADFILE +19:19:17 4070 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:17 4080 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:17 4080 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:17 4090 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:17 4090 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:17 4100 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:17 9188 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:17 9188 [LEMMA] - NESTINGRUNTIME +19:19:17 9198 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:17 9208 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:17 9218 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:17 9228 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:17 9228 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:17 9238 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:17 9248 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:17 9248 [LEMMA] - WORKINGESTTIME +19:19:17 9258 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:17 9268 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:17 9268 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:17 9278 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:17 9278 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:17 9288 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:17 9298 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:17 9308 [LEMMA] - UPLOADFILE +19:19:17 9318 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:17 9318 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:17 9328 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:17 9338 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:17 9338 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:17 9348 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:18 4450 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:18 4460 [LEMMA] - NESTINGRUNTIME +19:19:18 4460 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:18 4470 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:18 4480 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:18 4480 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:18 4490 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:18 4500 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:18 4510 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:18 4510 [LEMMA] - WORKINGESTTIME +19:19:18 4520 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:18 4520 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:18 4530 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:18 4540 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:18 4550 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:18 4550 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:18 4560 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:18 4570 [LEMMA] - UPLOADFILE +19:19:18 4580 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:18 4580 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:18 4590 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:18 4600 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:18 4600 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:18 4610 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:18 9710 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:18 9720 [LEMMA] - NESTINGRUNTIME +19:19:18 9730 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:18 9730 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:18 9740 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:18 9750 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:18 9750 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:18 9760 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:18 9770 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:18 9770 [LEMMA] - WORKINGESTTIME +19:19:18 9780 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:18 9790 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:18 9790 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:18 9800 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:18 9800 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:18 9810 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:18 9820 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:18 9830 [LEMMA] - UPLOADFILE +19:19:18 9830 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:18 9840 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:18 9840 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:18 9850 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:18 9860 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:18 9870 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:19 4971 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:19 4971 [LEMMA] - NESTINGRUNTIME +19:19:19 4981 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:19 4991 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:19 4991 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:19 5001 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:19 5011 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:19 5011 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:19 5021 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:19 5031 [LEMMA] - WORKINGESTTIME +19:19:19 5041 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:19 5051 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:19 5051 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:19 5061 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:19 5071 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:19 5071 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:19 5081 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:19 5091 [LEMMA] - UPLOADFILE +19:19:19 5101 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:19 5111 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:19 5111 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:19 5121 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:19 5121 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:19 5131 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:20 0222 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:20 0222 [LEMMA] - NESTINGRUNTIME +19:19:20 0232 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:20 0242 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:20 0242 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:20 0252 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:20 0262 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:20 0262 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:20 0272 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:20 0282 [LEMMA] - WORKINGESTTIME +19:19:20 0292 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:20 0292 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:20 0302 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:20 0302 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:20 0312 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:20 0322 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:20 0332 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:20 0332 [LEMMA] - UPLOADFILE +19:19:20 0342 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:20 0352 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:20 0352 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:20 0362 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:20 0372 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:20 0382 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:20 5483 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:20 5483 [LEMMA] - NESTINGRUNTIME +19:19:20 5493 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:20 5503 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:20 5503 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:20 5513 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:20 5513 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:20 5523 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:20 5533 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:20 5543 [LEMMA] - WORKINGESTTIME +19:19:20 5553 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:20 5553 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:20 5563 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:20 5573 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:20 5573 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:20 5583 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:20 5593 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:20 5603 [LEMMA] - UPLOADFILE +19:19:20 5603 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:20 5613 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:20 5613 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:20 5623 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:20 5633 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:20 5633 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:21 0725 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:21 0735 [LEMMA] - NESTINGRUNTIME +19:19:21 0745 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:21 0745 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:21 0755 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:21 0765 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:21 0765 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:21 0775 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:21 0785 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:21 0785 [LEMMA] - WORKINGESTTIME +19:19:21 0795 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:21 0795 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:21 0805 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:21 0815 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:21 0815 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:21 0825 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:21 0835 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:21 0835 [LEMMA] - UPLOADFILE +19:19:21 0845 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:21 0855 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:21 0855 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:21 0865 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:21 0865 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:21 0875 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:21 6007 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:21 6017 [LEMMA] - NESTINGRUNTIME +19:19:21 6027 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:21 6037 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:21 6037 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:21 6047 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:21 6057 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:21 6057 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:21 6067 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:21 6077 [LEMMA] - WORKINGESTTIME +19:19:21 6087 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:21 6107 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:21 6107 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:21 6117 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:21 6127 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:21 6127 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:21 6137 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:21 6147 [LEMMA] - UPLOADFILE +19:19:21 6147 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:21 6157 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:21 6157 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:21 6167 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:21 6177 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:21 6177 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:22 1278 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:22 1288 [LEMMA] - NESTINGRUNTIME +19:19:22 1298 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:22 1298 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:22 1308 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:22 1308 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:22 1318 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:22 1328 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:22 1328 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:22 1338 [LEMMA] - WORKINGESTTIME +19:19:22 1338 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:22 1348 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:22 1358 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:22 1358 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:22 1368 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:22 1378 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:22 1388 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:22 1388 [LEMMA] - UPLOADFILE +19:19:22 1398 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:22 1408 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:22 1408 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:22 1418 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:22 1418 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:22 1428 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:22 6519 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:22 6529 [LEMMA] - NESTINGRUNTIME +19:19:22 6539 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:22 6549 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:22 6549 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:22 6559 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:22 6569 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:22 6579 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:22 6579 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:22 6589 [LEMMA] - WORKINGESTTIME +19:19:22 6599 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:22 6599 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:22 6609 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:22 6609 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:22 6619 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:22 6619 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:22 6629 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:22 6639 [LEMMA] - UPLOADFILE +19:19:22 6649 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:22 6649 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:22 6659 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:22 6659 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:22 6669 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:22 6679 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:23 1781 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:23 1781 [LEMMA] - NESTINGRUNTIME +19:19:23 1791 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:23 1801 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:23 1801 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:23 1811 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:23 1821 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:23 1821 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:23 1831 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:23 1841 [LEMMA] - WORKINGESTTIME +19:19:23 1841 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:23 1851 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:23 1861 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:23 1871 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:23 1871 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:23 1881 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:23 1891 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:23 1901 [LEMMA] - UPLOADFILE +19:19:23 1901 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:23 1911 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:23 1921 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:23 1921 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:23 1931 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:23 1931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:23 7032 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:23 7042 [LEMMA] - NESTINGRUNTIME +19:19:23 7052 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:23 7052 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:23 7062 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:23 7072 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:23 7072 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:23 7082 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:23 7092 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:23 7092 [LEMMA] - WORKINGESTTIME +19:19:23 7102 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:23 7112 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:23 7112 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:23 7122 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:23 7122 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:23 7132 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:23 7142 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:23 7152 [LEMMA] - UPLOADFILE +19:19:23 7162 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:23 7172 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:23 7172 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:23 7182 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:23 7182 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:23 7192 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:24 2283 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:24 2283 [LEMMA] - NESTINGRUNTIME +19:19:24 2293 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:24 2303 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:24 2303 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:24 2313 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:24 2323 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:24 2323 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:24 2333 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:24 2343 [LEMMA] - WORKINGESTTIME +19:19:24 2343 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:24 2353 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:24 2363 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:24 2363 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:24 2373 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:24 2383 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:24 2393 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:24 2403 [LEMMA] - UPLOADFILE +19:19:24 2403 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:24 2413 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:24 2423 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:24 2423 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:24 2433 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:24 2433 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:24 7515 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:24 7525 [LEMMA] - NESTINGRUNTIME +19:19:24 7535 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:24 7545 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:24 7555 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:24 7555 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:24 7565 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:24 7575 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:24 7585 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:24 7585 [LEMMA] - WORKINGESTTIME +19:19:24 7595 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:24 7605 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:24 7605 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:24 7615 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:24 7625 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:24 7625 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:24 7635 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:24 7645 [LEMMA] - UPLOADFILE +19:19:24 7645 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:24 7655 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:24 7665 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:24 7665 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:24 7675 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:24 7675 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:25 2767 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:25 2767 [LEMMA] - NESTINGRUNTIME +19:19:25 2777 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:25 2787 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:25 2787 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:25 2797 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:25 2797 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:25 2807 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:25 2817 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:25 2827 [LEMMA] - WORKINGESTTIME +19:19:25 2837 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:25 2837 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:25 2847 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:25 2847 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:25 2857 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:25 2867 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:25 2877 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:25 2887 [LEMMA] - UPLOADFILE +19:19:25 2897 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:25 2907 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:25 2917 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:25 2917 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:25 2927 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:25 2927 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:25 8038 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:25 8048 [LEMMA] - NESTINGRUNTIME +19:19:25 8058 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:25 8068 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:25 8078 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:25 8088 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:25 8103 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:25 8108 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:25 8118 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:25 8128 [LEMMA] - WORKINGESTTIME +19:19:25 8128 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:25 8138 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:25 8148 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:25 8148 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:25 8158 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:25 8168 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:25 8178 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:25 8188 [LEMMA] - UPLOADFILE +19:19:25 8198 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:25 8208 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:25 8218 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:25 8228 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:25 8238 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:25 8248 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:26 3330 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:26 3340 [LEMMA] - NESTINGRUNTIME +19:19:26 3350 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:26 3350 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:26 3360 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:26 3370 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:26 3380 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:26 3390 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:26 3400 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:26 3410 [LEMMA] - WORKINGESTTIME +19:19:26 3410 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:26 3420 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:26 3430 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:26 3430 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:26 3440 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:26 3450 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:26 3450 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:26 3460 [LEMMA] - UPLOADFILE +19:19:26 3470 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:26 3480 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:26 3480 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:26 3490 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:26 3500 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:26 3500 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:26 8601 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:26 8601 [LEMMA] - NESTINGRUNTIME +19:19:26 8611 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:26 8621 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:26 8621 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:26 8631 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:26 8641 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:26 8641 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:26 8651 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:26 8661 [LEMMA] - WORKINGESTTIME +19:19:26 8661 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:26 8671 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:26 8671 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:26 8681 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:26 8691 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:26 8691 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:26 8771 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:26 8771 [LEMMA] - UPLOADFILE +19:19:26 8781 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:26 8791 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:26 8791 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:26 8801 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:26 8811 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:26 8811 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:27 3920 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:27 3920 [LEMMA] - NESTINGRUNTIME +19:19:27 3930 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:27 3940 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:27 3940 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:27 3950 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:27 3950 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:27 3960 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:27 3970 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:27 3970 [LEMMA] - WORKINGESTTIME +19:19:27 3980 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:27 3990 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:27 3990 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:27 4000 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:27 4000 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:27 4010 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:27 4020 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:27 4030 [LEMMA] - UPLOADFILE +19:19:27 4030 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:27 4040 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:27 4050 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:27 4060 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:27 4060 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:27 4070 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:27 9160 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:27 9170 [LEMMA] - NESTINGRUNTIME +19:19:27 9170 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:27 9180 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:27 9180 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:27 9190 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:27 9200 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:27 9200 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:27 9210 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:27 9220 [LEMMA] - WORKINGESTTIME +19:19:27 9230 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:27 9230 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:27 9240 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:27 9250 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:27 9250 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:27 9260 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:27 9270 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:27 9280 [LEMMA] - UPLOADFILE +19:19:27 9280 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:27 9290 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:27 9290 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:27 9300 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:27 9300 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:27 9310 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:28 4402 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:28 4412 [LEMMA] - NESTINGRUNTIME +19:19:28 4422 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:28 4422 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:28 4432 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:28 4432 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:28 4442 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:28 4442 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:28 4452 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:28 4462 [LEMMA] - WORKINGESTTIME +19:19:28 4472 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:28 4472 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:28 4482 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:28 4482 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:28 4492 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:28 4502 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:28 4512 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:28 4512 [LEMMA] - UPLOADFILE +19:19:28 4522 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:28 4522 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:28 4532 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:28 4542 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:28 4552 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:28 4562 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:28 9653 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:28 9663 [LEMMA] - NESTINGRUNTIME +19:19:28 9663 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:28 9673 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:28 9673 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:28 9683 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:28 9693 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:28 9703 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:28 9703 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:28 9713 [LEMMA] - WORKINGESTTIME +19:19:28 9723 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:28 9723 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:28 9733 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:28 9743 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:28 9743 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:28 9753 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:28 9763 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:28 9773 [LEMMA] - UPLOADFILE +19:19:28 9773 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:28 9783 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:28 9793 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:28 9793 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:28 9803 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:28 9803 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:29 4895 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:29 4905 [LEMMA] - NESTINGRUNTIME +19:19:29 4915 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:29 4915 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:29 4925 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:29 4935 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:29 4935 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:29 4945 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:29 4955 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:29 4955 [LEMMA] - WORKINGESTTIME +19:19:29 4965 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:29 4965 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:29 4975 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:29 4985 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:29 4995 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:29 4995 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:29 5005 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:29 5015 [LEMMA] - UPLOADFILE +19:19:29 5015 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:29 5025 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:29 5035 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:29 5045 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:29 5045 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:29 5055 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:30 0156 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:30 0156 [LEMMA] - NESTINGRUNTIME +19:19:30 0166 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:30 0176 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:30 0176 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:30 0186 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:30 0196 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:30 0196 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:30 0206 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:30 0216 [LEMMA] - WORKINGESTTIME +19:19:30 0226 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:30 0236 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:30 0236 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:30 0246 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:30 0256 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:30 0256 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:30 0266 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:30 0276 [LEMMA] - UPLOADFILE +19:19:30 0276 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:30 0286 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:30 0286 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:30 0296 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:30 0306 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:30 0306 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:30 5407 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:30 5418 [LEMMA] - NESTINGRUNTIME +19:19:30 5427 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:30 5437 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:30 5437 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:30 5447 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:30 5457 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:30 5457 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:30 5467 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:30 5477 [LEMMA] - WORKINGESTTIME +19:19:30 5477 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:30 5487 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:30 5497 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:30 5507 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:30 5507 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:30 5517 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:30 5527 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:30 5527 [LEMMA] - UPLOADFILE +19:19:30 5537 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:30 5547 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:30 5557 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:30 5567 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:30 5577 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:30 5577 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:31 0689 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:31 0689 [LEMMA] - NESTINGRUNTIME +19:19:31 0699 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:31 0709 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:31 0719 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:31 0719 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:31 0729 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:31 0739 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:31 0749 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:31 0759 [LEMMA] - WORKINGESTTIME +19:19:31 0759 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:31 0769 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:31 0779 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:31 0779 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:31 0789 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:31 0789 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:31 0799 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:31 0809 [LEMMA] - UPLOADFILE +19:19:31 0809 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:31 0819 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:31 0829 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:31 0839 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:31 0849 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:31 0849 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:31 5952 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:31 5952 [LEMMA] - NESTINGRUNTIME +19:19:31 5962 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:31 5972 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:31 5972 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:31 5982 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:31 5992 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:31 5992 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:31 6002 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:31 6012 [LEMMA] - WORKINGESTTIME +19:19:31 6012 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:31 6022 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:31 6022 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:31 6032 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:31 6042 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:31 6052 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:31 6062 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:31 6072 [LEMMA] - UPLOADFILE +19:19:31 6072 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:31 6082 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:31 6092 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:31 6092 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:31 6102 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:31 6102 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:32 1194 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:32 1204 [LEMMA] - NESTINGRUNTIME +19:19:32 1204 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:32 1214 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:32 1224 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:32 1234 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:32 1234 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:32 1244 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:32 1254 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:32 1254 [LEMMA] - WORKINGESTTIME +19:19:32 1264 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:32 1274 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:32 1274 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:32 1284 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:32 1284 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:32 1294 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:32 1304 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:32 1314 [LEMMA] - UPLOADFILE +19:19:32 1324 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:32 1324 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:32 1334 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:32 1334 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:32 1344 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:32 1354 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:32 6446 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:32 6456 [LEMMA] - NESTINGRUNTIME +19:19:32 6466 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:32 6466 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:32 6476 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:32 6486 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:32 6486 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:32 6496 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:32 6506 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:32 6506 [LEMMA] - WORKINGESTTIME +19:19:32 6516 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:32 6516 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:32 6526 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:32 6526 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:32 6536 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:32 6546 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:32 6556 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:32 6566 [LEMMA] - UPLOADFILE +19:19:32 6566 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:32 6576 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:32 6586 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:32 6586 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:32 6596 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:32 6596 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:33 1698 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:33 1708 [LEMMA] - NESTINGRUNTIME +19:19:33 1718 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:33 1728 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:33 1728 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:33 1738 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:33 1748 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:33 1748 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:33 1758 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:33 1768 [LEMMA] - WORKINGESTTIME +19:19:33 1768 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:33 1778 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:33 1778 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:33 1788 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:33 1798 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:33 1798 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:33 1808 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:33 1818 [LEMMA] - UPLOADFILE +19:19:33 1818 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:33 1828 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:33 1838 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:33 1838 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:33 1848 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:33 1858 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:33 6959 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:33 6969 [LEMMA] - NESTINGRUNTIME +19:19:33 6969 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:33 6979 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:33 6989 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:33 6999 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:33 6999 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:33 7009 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:33 7019 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:33 7019 [LEMMA] - WORKINGESTTIME +19:19:33 7029 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:33 7039 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:33 7049 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:33 7059 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:33 7069 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:33 7079 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:33 7089 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:33 7089 [LEMMA] - UPLOADFILE +19:19:33 7099 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:33 7109 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:33 7109 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:33 7119 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:33 7129 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:33 7129 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:34 2221 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:34 2231 [LEMMA] - NESTINGRUNTIME +19:19:34 2241 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:34 2241 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:34 2251 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:34 2261 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:34 2261 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:34 2271 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:34 2271 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:34 2281 [LEMMA] - WORKINGESTTIME +19:19:34 2291 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:34 2291 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:34 2301 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:34 2301 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:34 2311 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:34 2321 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:34 2331 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:34 2341 [LEMMA] - UPLOADFILE +19:19:34 2341 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:34 2351 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:34 2361 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:34 2361 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:34 2371 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:34 2381 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:34 7463 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:34 7473 [LEMMA] - NESTINGRUNTIME +19:19:34 7483 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:34 7493 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:34 7493 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:34 7503 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:34 7503 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:34 7513 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:34 7523 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:34 7523 [LEMMA] - WORKINGESTTIME +19:19:34 7533 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:34 7543 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:34 7553 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:34 7553 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:34 7563 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:34 7573 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:34 7583 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:34 7593 [LEMMA] - UPLOADFILE +19:19:34 7593 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:34 7603 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:34 7613 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:34 7613 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:34 7623 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:34 7633 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:35 2725 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:35 2735 [LEMMA] - NESTINGRUNTIME +19:19:35 2735 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:35 2745 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:35 2755 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:35 2755 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:35 2765 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:35 2775 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:35 2775 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:35 2785 [LEMMA] - WORKINGESTTIME +19:19:35 2795 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:35 2795 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:35 2805 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:35 2815 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:35 2815 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:35 2825 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:35 2835 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:35 2845 [LEMMA] - UPLOADFILE +19:19:35 2845 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:35 2855 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:35 2855 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:35 2865 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:35 2875 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:35 2885 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:35 7977 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:35 7977 [LEMMA] - NESTINGRUNTIME +19:19:35 7987 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:35 7997 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:35 7997 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:35 8007 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:35 8017 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:35 8027 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:35 8037 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:35 8047 [LEMMA] - WORKINGESTTIME +19:19:35 8047 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:35 8057 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:35 8067 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:35 8077 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:35 8087 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:35 8087 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:35 8097 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:35 8107 [LEMMA] - UPLOADFILE +19:19:35 8107 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:35 8117 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:35 8127 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:35 8127 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:35 8137 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:35 8137 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:36 3248 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:36 3258 [LEMMA] - NESTINGRUNTIME +19:19:36 3268 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:36 3268 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:36 3278 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:36 3288 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:36 3288 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:36 3298 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:36 3308 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:36 3308 [LEMMA] - WORKINGESTTIME +19:19:36 3318 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:36 3328 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:36 3328 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:36 3338 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:36 3338 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:36 3348 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:36 3358 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:36 3368 [LEMMA] - UPLOADFILE +19:19:36 3378 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:36 3378 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:36 3388 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:36 3398 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:36 3408 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:36 3408 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:36 8503 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:36 8513 [LEMMA] - NESTINGRUNTIME +19:19:36 8523 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:36 8533 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:36 8543 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:36 8553 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:36 8553 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:36 8563 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:36 8573 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:36 8583 [LEMMA] - WORKINGESTTIME +19:19:36 8583 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:36 8593 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:36 8603 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:36 8603 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:36 8613 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:36 8613 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:36 8623 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:36 8633 [LEMMA] - UPLOADFILE +19:19:36 8643 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:36 8643 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:36 8653 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:36 8653 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:36 8663 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:36 8673 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:37 3763 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:37 3773 [LEMMA] - NESTINGRUNTIME +19:19:37 3773 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:37 3783 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:37 3793 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:37 3793 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:37 3803 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:37 3803 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:37 3813 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:37 3823 [LEMMA] - WORKINGESTTIME +19:19:37 3823 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:37 3833 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:37 3843 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:37 3843 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:37 3853 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:37 3863 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:37 3873 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:37 3883 [LEMMA] - UPLOADFILE +19:19:37 3883 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:37 3893 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:37 3903 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:37 3903 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:37 3913 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:37 3913 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:37 9016 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:37 9016 [LEMMA] - NESTINGRUNTIME +19:19:37 9026 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:37 9036 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:37 9046 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:37 9056 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:37 9056 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:37 9066 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:37 9076 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:37 9086 [LEMMA] - WORKINGESTTIME +19:19:37 9086 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:37 9096 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:37 9106 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:37 9106 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:37 9116 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:37 9116 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:37 9126 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:37 9136 [LEMMA] - UPLOADFILE +19:19:37 9136 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:37 9146 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:37 9156 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:37 9156 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:37 9166 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:37 9176 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:38 4267 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:38 4277 [LEMMA] - NESTINGRUNTIME +19:19:38 4277 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:38 4287 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:38 4287 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:38 4297 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:38 4307 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:38 4307 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:38 4317 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:38 4327 [LEMMA] - WORKINGESTTIME +19:19:38 4327 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:38 4337 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:38 4347 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:38 4347 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:38 4357 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:38 4367 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:38 4377 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:38 4387 [LEMMA] - UPLOADFILE +19:19:38 4387 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:38 4397 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:38 4407 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:38 4407 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:38 4417 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:38 4427 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:38 9518 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:38 9518 [LEMMA] - NESTINGRUNTIME +19:19:38 9528 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:38 9538 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:38 9538 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:38 9548 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:38 9558 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:38 9568 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:38 9578 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:38 9588 [LEMMA] - WORKINGESTTIME +19:19:38 9588 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:38 9598 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:38 9608 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:38 9608 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:38 9618 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:38 9618 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:38 9628 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:38 9638 [LEMMA] - UPLOADFILE +19:19:38 9648 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:38 9648 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:38 9658 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:38 9668 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:38 9668 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:38 9678 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:39 4770 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:39 4780 [LEMMA] - NESTINGRUNTIME +19:19:39 4790 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:39 4790 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:39 4800 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:39 4810 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:39 4820 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:39 4820 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:39 4830 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:39 4830 [LEMMA] - WORKINGESTTIME +19:19:39 4840 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:39 4850 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:39 4850 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:39 4860 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:39 4870 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:39 4870 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:39 4890 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:39 4890 [LEMMA] - UPLOADFILE +19:19:39 4900 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:39 4910 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:39 4920 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:39 4920 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:39 4930 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:39 4930 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:40 0021 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:40 0031 [LEMMA] - NESTINGRUNTIME +19:19:40 0041 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:40 0051 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:40 0061 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:40 0061 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:40 0071 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:40 0081 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:40 0091 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:40 0091 [LEMMA] - WORKINGESTTIME +19:19:40 0101 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:40 0111 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:40 0111 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:40 0121 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:40 0121 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:40 0131 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:40 0141 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:40 0151 [LEMMA] - UPLOADFILE +19:19:40 0151 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:40 0161 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:40 0161 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:40 0172 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:40 0182 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:40 0182 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:40 5293 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:40 5293 [LEMMA] - NESTINGRUNTIME +19:19:40 5303 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:40 5313 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:40 5313 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:40 5323 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:40 5333 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:40 5333 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:40 5343 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:40 5353 [LEMMA] - WORKINGESTTIME +19:19:40 5353 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:40 5363 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:40 5373 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:40 5373 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:40 5383 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:40 5393 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:40 5403 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:40 5413 [LEMMA] - UPLOADFILE +19:19:40 5413 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:40 5423 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:40 5433 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:40 5433 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:40 5443 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:40 5443 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:41 0530 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:41 0540 [LEMMA] - NESTINGRUNTIME +19:19:41 0550 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:41 0560 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:41 0570 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:41 0570 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:41 0580 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:41 0590 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:41 0600 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:41 0600 [LEMMA] - WORKINGESTTIME +19:19:41 0610 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:41 0620 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:41 0620 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:41 0630 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:41 0640 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:41 0640 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:41 0650 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:41 0660 [LEMMA] - UPLOADFILE +19:19:41 0670 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:41 0670 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:41 0680 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:41 0680 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:41 0690 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:41 0690 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:41 5792 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:41 5802 [LEMMA] - NESTINGRUNTIME +19:19:41 5802 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:41 5812 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:41 5812 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:41 5822 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:41 5832 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:41 5832 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:41 5842 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:41 5852 [LEMMA] - WORKINGESTTIME +19:19:41 5852 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:41 5862 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:41 5862 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:41 5872 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:41 5882 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:41 5892 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:41 5902 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:41 5912 [LEMMA] - UPLOADFILE +19:19:41 5912 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:41 5922 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:41 5922 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:41 5932 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:41 5942 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:41 5952 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:42 1033 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:42 1033 [LEMMA] - NESTINGRUNTIME +19:19:42 1043 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:42 1053 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:42 1063 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:42 1073 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:42 1083 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:42 1083 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:42 1093 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:42 1103 [LEMMA] - WORKINGESTTIME +19:19:42 1103 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:42 1113 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:42 1113 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:42 1123 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:42 1133 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:42 1133 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:42 1153 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:42 1153 [LEMMA] - UPLOADFILE +19:19:42 1163 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:42 1173 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:42 1173 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:42 1183 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:42 1183 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:42 1193 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:42 6285 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:42 6295 [LEMMA] - NESTINGRUNTIME +19:19:42 6295 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:42 6305 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:42 6305 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:42 6315 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:42 6325 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:42 6325 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:42 6335 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:42 6345 [LEMMA] - WORKINGESTTIME +19:19:42 6345 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:42 6355 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:42 6355 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:42 6365 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:42 6375 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:42 6385 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:42 6395 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:42 6405 [LEMMA] - UPLOADFILE +19:19:42 6415 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:42 6415 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:42 6425 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:42 6435 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:42 6435 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:42 6445 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:43 1536 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:43 1546 [LEMMA] - NESTINGRUNTIME +19:19:43 1556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:43 1556 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:43 1566 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:43 1576 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:43 1576 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:43 1586 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:43 1586 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:43 1596 [LEMMA] - WORKINGESTTIME +19:19:43 1606 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:43 1616 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:43 1616 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:43 1626 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:43 1626 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:43 1636 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:43 1646 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:43 1656 [LEMMA] - UPLOADFILE +19:19:43 1656 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:43 1666 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:43 1666 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:43 1676 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:43 1686 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:43 1696 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:43 6788 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:43 6788 [LEMMA] - NESTINGRUNTIME +19:19:43 6798 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:43 6808 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:43 6808 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:43 6818 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:43 6828 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:43 6828 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:43 6838 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:43 6848 [LEMMA] - WORKINGESTTIME +19:19:43 6848 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:43 6858 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:43 6858 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:43 6868 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:43 6878 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:43 6888 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:43 6898 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:43 6908 [LEMMA] - UPLOADFILE +19:19:43 6908 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:43 6918 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:43 6928 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:43 6938 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:43 6938 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:43 6948 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:44 2030 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:44 2040 [LEMMA] - NESTINGRUNTIME +19:19:44 2050 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:44 2060 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:44 2070 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:44 2080 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:44 2090 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:44 2090 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:44 2100 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:44 2110 [LEMMA] - WORKINGESTTIME +19:19:44 2110 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:44 2120 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:44 2130 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:44 2130 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:44 2140 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:44 2150 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:44 2160 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:44 2160 [LEMMA] - UPLOADFILE +19:19:44 2170 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:44 2170 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:44 2180 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:44 2190 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:44 2190 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:44 2200 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:44 7303 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:44 7303 [LEMMA] - NESTINGRUNTIME +19:19:44 7313 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:44 7323 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:44 7323 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:44 7333 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:44 7333 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:44 7343 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:44 7353 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:44 7353 [LEMMA] - WORKINGESTTIME +19:19:44 7363 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:44 7373 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:44 7373 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:44 7383 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:44 7393 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:44 7393 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:44 7403 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:44 7413 [LEMMA] - UPLOADFILE +19:19:44 7413 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:44 7423 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:44 7433 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:44 7433 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:44 7443 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:44 7443 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:45 2544 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:45 2544 [LEMMA] - NESTINGRUNTIME +19:19:45 2554 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:45 2564 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:45 2574 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:45 2584 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:45 2594 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:45 2594 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:45 2604 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:45 2614 [LEMMA] - WORKINGESTTIME +19:19:45 2614 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:45 2624 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:45 2624 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:45 2634 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:45 2644 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:45 2644 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:45 2654 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:45 2664 [LEMMA] - UPLOADFILE +19:19:45 2664 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:45 2674 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:45 2684 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:45 2684 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:45 2694 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:45 2694 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:45 7797 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:45 7797 [LEMMA] - NESTINGRUNTIME +19:19:45 7807 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:45 7817 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:45 7817 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:45 7827 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:45 7827 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:45 7837 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:45 7847 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:45 7847 [LEMMA] - WORKINGESTTIME +19:19:45 7857 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:45 7857 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:45 7867 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:45 7877 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:45 7877 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:45 7887 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:45 7907 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:45 7907 [LEMMA] - UPLOADFILE +19:19:45 7917 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:45 7927 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:45 7927 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:45 7937 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:45 7947 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:45 7947 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:46 3049 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:46 3059 [LEMMA] - NESTINGRUNTIME +19:19:46 3059 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:46 3069 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:46 3079 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:46 3079 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:46 3089 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:46 3099 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:46 3099 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:46 3109 [LEMMA] - WORKINGESTTIME +19:19:46 3119 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:46 3119 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:46 3129 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:46 3129 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:46 3139 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:46 3149 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:46 3159 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:46 3159 [LEMMA] - UPLOADFILE +19:19:46 3169 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:46 3169 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:46 3179 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:46 3189 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:46 3189 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:46 3199 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:46 8290 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:46 8290 [LEMMA] - NESTINGRUNTIME +19:19:46 8300 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:46 8310 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:46 8310 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:46 8320 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:46 8330 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:46 8330 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:46 8340 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:46 8340 [LEMMA] - WORKINGESTTIME +19:19:46 8350 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:46 8360 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:46 8360 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:46 8370 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:46 8380 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:46 8390 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:46 8400 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:46 8410 [LEMMA] - UPLOADFILE +19:19:46 8410 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:46 8420 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:46 8430 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:46 8440 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:46 8440 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:46 8450 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:47 3552 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:47 3562 [LEMMA] - NESTINGRUNTIME +19:19:47 3562 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:47 3572 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:47 3582 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:47 3592 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:47 3592 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:47 3602 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:47 3612 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:47 3612 [LEMMA] - WORKINGESTTIME +19:19:47 3622 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:47 3622 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:47 3632 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:47 3642 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:47 3642 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:47 3652 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:47 3662 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:47 3672 [LEMMA] - UPLOADFILE +19:19:47 3682 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:47 3682 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:47 3692 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:47 3702 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:47 3712 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:47 3722 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:47 8805 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:47 8815 [LEMMA] - NESTINGRUNTIME +19:19:47 8825 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:47 8835 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:47 8835 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:47 8845 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:47 8845 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:47 8855 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:47 8865 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:47 8865 [LEMMA] - WORKINGESTTIME +19:19:47 8875 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:47 8885 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:47 8895 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:47 8895 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:47 8905 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:47 8915 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:47 8925 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:47 8925 [LEMMA] - UPLOADFILE +19:19:47 8935 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:47 8935 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:47 8945 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:47 8955 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:47 8955 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:47 8965 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:48 4050 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:48 4060 [LEMMA] - NESTINGRUNTIME +19:19:48 4060 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:48 4070 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:48 4080 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:48 4080 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:48 4090 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:48 4100 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:48 4100 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:48 4110 [LEMMA] - WORKINGESTTIME +19:19:48 4120 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:48 4120 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:48 4130 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:48 4140 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:48 4140 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:48 4150 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:48 4160 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:48 4160 [LEMMA] - UPLOADFILE +19:19:48 4170 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:48 4180 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:48 4180 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:48 4190 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:48 4190 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:48 4200 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:48 9302 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:48 9302 [LEMMA] - NESTINGRUNTIME +19:19:48 9312 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:48 9322 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:48 9322 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:48 9332 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:48 9342 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:48 9342 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:48 9352 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:48 9362 [LEMMA] - WORKINGESTTIME +19:19:48 9372 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:48 9372 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:48 9382 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:48 9392 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:48 9392 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:48 9402 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:48 9412 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:48 9422 [LEMMA] - UPLOADFILE +19:19:48 9422 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:48 9432 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:48 9442 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:48 9442 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:48 9452 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:48 9452 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:49 4550 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:49 4560 [LEMMA] - NESTINGRUNTIME +19:19:49 4560 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:49 4570 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:49 4580 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:49 4580 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:49 4590 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:49 4590 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:49 4600 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:49 4610 [LEMMA] - WORKINGESTTIME +19:19:49 4610 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:49 4620 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:49 4630 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:49 4630 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:49 4640 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:49 4640 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:49 4650 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:49 4660 [LEMMA] - UPLOADFILE +19:19:49 4670 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:49 4670 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:49 4680 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:49 4690 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:49 4690 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:49 4700 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:49 9792 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:49 9792 [LEMMA] - NESTINGRUNTIME +19:19:49 9802 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:49 9812 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:49 9812 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:49 9822 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:49 9822 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:49 9832 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:49 9842 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:49 9842 [LEMMA] - WORKINGESTTIME +19:19:49 9852 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:49 9852 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:49 9862 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:49 9872 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:49 9872 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:49 9882 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:49 9892 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:49 9902 [LEMMA] - UPLOADFILE +19:19:49 9902 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:50 0022 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:50 0022 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:50 0032 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:50 0042 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:50 0042 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:50 5143 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:50 5143 [LEMMA] - NESTINGRUNTIME +19:19:50 5153 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:50 5163 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:50 5163 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:50 5173 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:50 5183 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:50 5183 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:50 5193 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:50 5203 [LEMMA] - WORKINGESTTIME +19:19:50 5203 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:50 5213 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:50 5223 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:50 5233 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:50 5233 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:50 5243 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:50 5253 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:50 5263 [LEMMA] - UPLOADFILE +19:19:50 5263 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:50 5273 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:50 5283 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:50 5283 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:50 5293 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:50 5303 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:51 0385 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:51 0395 [LEMMA] - NESTINGRUNTIME +19:19:51 0405 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:51 0415 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:51 0415 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:51 0425 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:51 0425 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:51 0435 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:51 0445 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:51 0445 [LEMMA] - WORKINGESTTIME +19:19:51 0455 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:51 0455 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:51 0465 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:51 0465 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:51 0475 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:51 0485 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:51 0485 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:51 0495 [LEMMA] - UPLOADFILE +19:19:51 0505 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:51 0505 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:51 0515 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:51 0515 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:51 0525 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:51 0525 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:51 5626 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:51 5636 [LEMMA] - NESTINGRUNTIME +19:19:51 5646 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:51 5656 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:51 5656 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:51 5666 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:51 5666 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:51 5676 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:51 5686 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:51 5696 [LEMMA] - WORKINGESTTIME +19:19:51 5696 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:51 5706 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:51 5716 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:51 5716 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:51 5726 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:51 5736 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:51 5746 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:51 5756 [LEMMA] - UPLOADFILE +19:19:51 5756 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:51 5766 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:51 5776 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:51 5776 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:51 5786 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:51 5786 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:52 0877 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:52 0887 [LEMMA] - NESTINGRUNTIME +19:19:52 0897 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:52 0897 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:52 0907 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:52 0917 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:52 0927 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:52 0927 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:52 0937 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:52 0947 [LEMMA] - WORKINGESTTIME +19:19:52 0947 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:52 0957 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:52 0957 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:52 0967 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:52 0977 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:52 0977 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:52 0987 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:52 0997 [LEMMA] - UPLOADFILE +19:19:52 0997 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:52 1007 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:52 1017 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:52 1017 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:52 1027 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:52 1027 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:52 6129 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:52 6129 [LEMMA] - NESTINGRUNTIME +19:19:52 6139 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:52 6149 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:52 6149 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:52 6159 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:52 6169 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:52 6169 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:52 6179 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:52 6179 [LEMMA] - WORKINGESTTIME +19:19:52 6189 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:52 6199 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:52 6199 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:52 6209 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:52 6219 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:52 6229 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:52 6239 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:52 6249 [LEMMA] - UPLOADFILE +19:19:52 6249 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:52 6259 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:52 6269 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:52 6269 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:52 6279 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:52 6289 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:53 1376 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:53 1386 [LEMMA] - NESTINGRUNTIME +19:19:53 1396 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:53 1406 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:53 1416 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:53 1416 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:53 1426 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:53 1436 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:53 1446 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:53 1456 [LEMMA] - WORKINGESTTIME +19:19:53 1456 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:53 1466 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:53 1466 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:53 1476 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:53 1486 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:53 1486 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:53 1496 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:53 1506 [LEMMA] - UPLOADFILE +19:19:53 1516 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:53 1516 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:53 1526 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:53 1536 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:53 1536 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:53 1546 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:53 6647 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:53 6647 [LEMMA] - NESTINGRUNTIME +19:19:53 6657 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:53 6667 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:53 6667 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:53 6677 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:53 6687 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:53 6687 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:53 6697 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:53 6697 [LEMMA] - WORKINGESTTIME +19:19:53 6707 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:53 6717 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:53 6727 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:53 6727 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:53 6737 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:53 6747 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:53 6757 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:53 6757 [LEMMA] - UPLOADFILE +19:19:53 6767 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:53 6777 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:53 6777 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:53 6787 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:53 6787 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:53 6797 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:54 1889 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:54 1899 [LEMMA] - NESTINGRUNTIME +19:19:54 1909 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:54 1909 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:54 1919 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:54 1929 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:54 1929 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:54 1939 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:54 1949 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:54 1949 [LEMMA] - WORKINGESTTIME +19:19:54 1959 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:54 1969 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:54 1969 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:54 1979 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:54 1989 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:54 1989 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:54 1999 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:54 2009 [LEMMA] - UPLOADFILE +19:19:54 2009 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:54 2019 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:54 2019 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:54 2029 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:54 2029 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:54 2039 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:54 7130 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:54 7140 [LEMMA] - NESTINGRUNTIME +19:19:54 7150 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:54 7150 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:54 7160 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:54 7170 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:54 7170 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:54 7180 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:54 7190 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:54 7190 [LEMMA] - WORKINGESTTIME +19:19:54 7200 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:54 7200 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:54 7210 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:54 7220 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:54 7220 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:54 7230 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:54 7240 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:54 7250 [LEMMA] - UPLOADFILE +19:19:54 7250 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:54 7260 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:54 7270 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:54 7270 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:54 7280 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:54 7280 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:55 2382 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:55 2392 [LEMMA] - NESTINGRUNTIME +19:19:55 2402 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:55 2412 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:55 2412 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:55 2422 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:55 2422 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:55 2432 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:55 2442 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:55 2442 [LEMMA] - WORKINGESTTIME +19:19:55 2452 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:55 2462 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:55 2462 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:55 2472 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:55 2472 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:55 2482 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:55 2492 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:55 2502 [LEMMA] - UPLOADFILE +19:19:55 2502 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:55 2512 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:55 2522 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:55 2522 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:55 2532 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:55 2532 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:55 7633 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:55 7633 [LEMMA] - NESTINGRUNTIME +19:19:55 7643 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:55 7653 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:55 7653 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:55 7663 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:55 7673 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:55 7673 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:55 7683 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:55 7683 [LEMMA] - WORKINGESTTIME +19:19:55 7693 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:55 7703 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:55 7703 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:55 7713 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:55 7723 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:55 7733 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:55 7743 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:55 7753 [LEMMA] - UPLOADFILE +19:19:55 7763 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:55 7763 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:55 7773 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:55 7783 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:55 7783 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:55 7793 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:56 2885 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:56 2895 [LEMMA] - NESTINGRUNTIME +19:19:56 2895 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:56 2905 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:56 2915 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:56 2925 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:56 2925 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:56 2935 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:56 2935 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:56 2945 [LEMMA] - WORKINGESTTIME +19:19:56 2955 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:56 2955 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:56 2965 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:56 2965 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:56 2975 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:56 2985 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:56 2995 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:56 2995 [LEMMA] - UPLOADFILE +19:19:56 3005 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:56 3005 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:56 3015 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:56 3015 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:56 3025 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:56 3035 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:56 8137 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:56 8137 [LEMMA] - NESTINGRUNTIME +19:19:56 8147 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:56 8157 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:56 8157 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:56 8167 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:56 8177 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:56 8177 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:56 8187 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:56 8187 [LEMMA] - WORKINGESTTIME +19:19:56 8197 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:56 8207 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:56 8217 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:56 8217 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:56 8227 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:56 8237 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:56 8247 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:56 8257 [LEMMA] - UPLOADFILE +19:19:56 8257 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:56 8267 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:56 8277 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:56 8277 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:56 8287 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:56 8287 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:57 3378 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:57 3388 [LEMMA] - NESTINGRUNTIME +19:19:57 3398 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:57 3408 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:57 3408 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:57 3418 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:57 3428 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:57 3428 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:57 3438 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:57 3448 [LEMMA] - WORKINGESTTIME +19:19:57 3448 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:57 3458 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:57 3458 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:57 3468 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:57 3478 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:57 3478 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:57 3488 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:57 3498 [LEMMA] - UPLOADFILE +19:19:57 3498 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:57 3508 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:57 3518 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:57 3518 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:57 3528 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:57 3528 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:57 8620 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:57 8630 [LEMMA] - NESTINGRUNTIME +19:19:57 8640 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:57 8640 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:57 8650 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:57 8660 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:57 8660 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:57 8670 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:57 8670 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:57 8680 [LEMMA] - WORKINGESTTIME +19:19:57 8690 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:57 8690 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:57 8700 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:57 8710 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:57 8710 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:57 8720 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:57 8740 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:57 8750 [LEMMA] - UPLOADFILE +19:19:57 8760 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:57 8760 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:57 8770 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:57 8780 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:57 8780 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:57 8790 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:58 3881 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:58 3891 [LEMMA] - NESTINGRUNTIME +19:19:58 3891 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:58 3901 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:58 3901 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:58 3911 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:58 3921 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:58 3931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:58 3931 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:58 3941 [LEMMA] - WORKINGESTTIME +19:19:58 3951 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:58 3951 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:58 3961 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:58 3961 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:58 3971 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:58 3971 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:58 3981 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:58 3991 [LEMMA] - UPLOADFILE +19:19:58 4001 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:58 4001 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:58 4011 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:58 4011 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:58 4021 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:58 4031 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:58 9123 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:58 9133 [LEMMA] - NESTINGRUNTIME +19:19:58 9143 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:58 9143 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:58 9153 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:58 9163 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:58 9173 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:58 9173 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:58 9183 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:58 9193 [LEMMA] - WORKINGESTTIME +19:19:58 9193 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:58 9203 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:58 9203 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:58 9213 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:58 9223 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:58 9233 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:58 9243 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:58 9253 [LEMMA] - UPLOADFILE +19:19:58 9263 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:58 9263 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:58 9273 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:58 9283 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:58 9293 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:58 9293 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:59 4394 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:59 4404 [LEMMA] - NESTINGRUNTIME +19:19:59 4404 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:59 4414 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:59 4424 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:59 4434 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:59 4434 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:59 4444 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:59 4454 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:59 4454 [LEMMA] - WORKINGESTTIME +19:19:59 4464 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:59 4474 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:59 4474 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:59 4484 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:59 4494 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:59 4494 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:59 4504 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:59 4514 [LEMMA] - UPLOADFILE +19:19:59 4514 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:59 4524 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:59 4534 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:59 4534 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:59 4544 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:59 4544 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:59 9631 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:59 9641 [LEMMA] - NESTINGRUNTIME +19:19:59 9651 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:19:59 9661 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:59 9671 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:59 9671 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:59 9681 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:59 9681 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:59 9691 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:59 9701 [LEMMA] - WORKINGESTTIME +19:19:59 9701 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:19:59 9711 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:59 9721 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:59 9731 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:59 9741 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:59 9751 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:19:59 9761 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:19:59 9771 [LEMMA] - UPLOADFILE +19:19:59 9771 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:19:59 9781 [INFO] - Key: EN#KITTING | Val: Kitting +19:19:59 9791 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:19:59 9801 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:19:59 9811 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:19:59 9811 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:00 4912 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:00 4922 [LEMMA] - NESTINGRUNTIME +19:20:00 4922 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:00 4932 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:00 4942 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:00 4942 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:00 4952 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:00 4962 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:00 4962 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:00 4972 [LEMMA] - WORKINGESTTIME +19:20:00 4982 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:00 4982 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:00 4992 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:00 5002 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:00 5002 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:00 5012 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:00 5022 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:00 5032 [LEMMA] - UPLOADFILE +19:20:00 5032 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:00 5042 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:00 5052 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:00 5052 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:00 5062 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:00 5072 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:01 0148 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:01 0158 [LEMMA] - NESTINGRUNTIME +19:20:01 0168 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:01 0168 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:01 0178 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:01 0188 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:01 0188 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:01 0198 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:01 0208 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:01 0208 [LEMMA] - WORKINGESTTIME +19:20:01 0218 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:01 0228 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:01 0228 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:01 0238 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:01 0248 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:01 0248 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:01 0258 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:01 0268 [LEMMA] - UPLOADFILE +19:20:01 0278 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:01 0278 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:01 0288 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:01 0298 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:01 0308 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:01 0308 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:01 5399 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:01 5409 [LEMMA] - NESTINGRUNTIME +19:20:01 5419 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:01 5429 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:01 5429 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:01 5439 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:01 5439 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:01 5449 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:01 5459 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:01 5459 [LEMMA] - WORKINGESTTIME +19:20:01 5469 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:01 5479 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:01 5479 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:01 5489 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:01 5499 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:01 5499 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:01 5509 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:01 5519 [LEMMA] - UPLOADFILE +19:20:01 5519 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:01 5529 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:01 5529 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:01 5539 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:01 5549 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:01 5559 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:02 0640 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:02 0650 [LEMMA] - NESTINGRUNTIME +19:20:02 0660 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:02 0660 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:02 0670 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:02 0680 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:02 0680 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:02 0690 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:02 0700 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:02 0700 [LEMMA] - WORKINGESTTIME +19:20:02 0710 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:02 0720 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:02 0730 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:02 0740 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:02 0740 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:02 0750 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:02 0760 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:02 0770 [LEMMA] - UPLOADFILE +19:20:02 0780 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:02 0780 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:02 0790 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:02 0800 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:02 0800 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:02 0810 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:02 5902 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:02 5912 [LEMMA] - NESTINGRUNTIME +19:20:02 5912 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:02 5922 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:02 5932 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:02 5942 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:02 5942 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:02 5952 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:02 5952 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:02 5962 [LEMMA] - WORKINGESTTIME +19:20:02 5972 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:02 5972 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:02 5982 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:02 5992 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:02 5992 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:02 6002 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:02 6012 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:02 6012 [LEMMA] - UPLOADFILE +19:20:02 6022 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:02 6032 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:02 6032 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:02 6042 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:02 6052 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:02 6062 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:03 1143 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:03 1153 [LEMMA] - NESTINGRUNTIME +19:20:03 1163 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:03 1173 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:03 1173 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:03 1183 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:03 1183 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:03 1193 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:03 1203 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:03 1203 [LEMMA] - WORKINGESTTIME +19:20:03 1213 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:03 1223 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:03 1223 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:03 1233 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:03 1243 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:03 1243 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:03 1253 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:03 1263 [LEMMA] - UPLOADFILE +19:20:03 1273 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:03 1273 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:03 1283 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:03 1293 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:03 1293 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:03 1303 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:03 6405 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:03 6415 [LEMMA] - NESTINGRUNTIME +19:20:03 6425 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:03 6425 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:03 6435 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:03 6445 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:03 6445 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:03 6455 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:03 6465 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:03 6465 [LEMMA] - WORKINGESTTIME +19:20:03 6475 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:03 6475 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:03 6485 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:03 6495 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:03 6495 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:03 6505 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:03 6515 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:03 6515 [LEMMA] - UPLOADFILE +19:20:03 6525 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:03 6535 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:03 6535 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:03 6545 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:03 6545 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:03 6555 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:04 1643 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:04 1653 [LEMMA] - NESTINGRUNTIME +19:20:04 1663 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:04 1673 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:04 1673 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:04 1683 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:04 1683 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:04 1693 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:04 1703 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:04 1703 [LEMMA] - WORKINGESTTIME +19:20:04 1713 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:04 1723 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:04 1723 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:04 1733 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:04 1743 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:04 1753 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:04 1753 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:04 1763 [LEMMA] - UPLOADFILE +19:20:04 1773 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:04 1773 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:04 1783 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:04 1793 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:04 1793 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:04 1803 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:04 6894 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:04 6904 [LEMMA] - NESTINGRUNTIME +19:20:04 6914 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:04 6924 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:04 6924 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:04 6934 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:04 6934 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:04 6944 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:04 6954 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:04 6954 [LEMMA] - WORKINGESTTIME +19:20:04 6964 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:04 6974 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:04 6984 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:04 6984 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:04 6994 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:04 6994 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:04 7004 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:04 7014 [LEMMA] - UPLOADFILE +19:20:04 7014 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:04 7024 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:04 7034 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:04 7034 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:04 7044 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:04 7044 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:05 2146 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:05 2146 [LEMMA] - NESTINGRUNTIME +19:20:05 2156 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:05 2166 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:05 2166 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:05 2176 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:05 2186 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:05 2186 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:05 2196 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:05 2206 [LEMMA] - WORKINGESTTIME +19:20:05 2206 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:05 2216 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:05 2216 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:05 2226 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:05 2236 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:05 2236 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:05 2246 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:05 2256 [LEMMA] - UPLOADFILE +19:20:05 2256 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:05 2266 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:05 2276 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:05 2276 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:05 2286 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:05 2296 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:05 7387 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:05 7397 [LEMMA] - NESTINGRUNTIME +19:20:05 7407 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:05 7407 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:05 7417 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:05 7427 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:05 7427 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:05 7437 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:05 7447 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:05 7457 [LEMMA] - WORKINGESTTIME +19:20:05 7457 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:05 7467 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:05 7467 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:05 7477 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:05 7487 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:05 7497 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:05 7507 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:05 7507 [LEMMA] - UPLOADFILE +19:20:05 7517 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:05 7527 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:05 7527 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:05 7537 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:05 7547 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:05 7547 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:06 2638 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:06 2648 [LEMMA] - NESTINGRUNTIME +19:20:06 2658 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:06 2658 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:06 2668 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:06 2668 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:06 2678 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:06 2688 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:06 2688 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:06 2698 [LEMMA] - WORKINGESTTIME +19:20:06 2708 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:06 2708 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:06 2718 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:06 2728 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:06 2728 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:06 2738 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:06 2748 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:06 2758 [LEMMA] - UPLOADFILE +19:20:06 2768 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:06 2778 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:06 2778 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:06 2788 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:06 2798 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:06 2798 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:06 7890 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:06 7900 [LEMMA] - NESTINGRUNTIME +19:20:06 7910 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:06 7910 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:06 7920 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:06 7930 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:06 7940 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:06 7940 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:06 7950 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:06 7950 [LEMMA] - WORKINGESTTIME +19:20:06 7960 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:06 7970 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:06 7970 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:06 7980 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:06 7990 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:06 7990 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:06 8000 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:06 8010 [LEMMA] - UPLOADFILE +19:20:06 8010 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:06 8020 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:06 8030 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:06 8030 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:06 8040 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:06 8040 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:07 3141 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:07 3151 [LEMMA] - NESTINGRUNTIME +19:20:07 3161 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:07 3161 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:07 3171 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:07 3171 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:07 3181 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:07 3191 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:07 3201 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:07 3201 [LEMMA] - WORKINGESTTIME +19:20:07 3211 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:07 3221 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:07 3231 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:07 3241 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:07 3241 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:07 3251 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:07 3261 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:07 3271 [LEMMA] - UPLOADFILE +19:20:07 3281 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:07 3281 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:07 3291 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:07 3301 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:07 3301 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:07 3311 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:07 8403 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:07 8413 [LEMMA] - NESTINGRUNTIME +19:20:07 8423 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:07 8423 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:07 8433 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:07 8443 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:07 8443 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:07 8453 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:07 8463 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:07 8473 [LEMMA] - WORKINGESTTIME +19:20:07 8473 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:07 8483 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:07 8493 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:07 8493 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:07 8503 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:07 8513 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:07 8513 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:07 8523 [LEMMA] - UPLOADFILE +19:20:07 8533 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:07 8533 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:07 8543 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:07 8553 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:07 8553 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:07 8563 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:08 3664 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:08 3674 [LEMMA] - NESTINGRUNTIME +19:20:08 3684 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:08 3684 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:08 3694 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:08 3704 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:08 3704 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:08 3714 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:08 3724 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:08 3734 [LEMMA] - WORKINGESTTIME +19:20:08 3744 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:08 3744 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:08 3754 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:08 3754 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:08 3764 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:08 3774 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:08 3784 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:08 3794 [LEMMA] - UPLOADFILE +19:20:08 3794 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:08 3804 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:08 3804 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:08 3814 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:08 3824 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:08 3824 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:08 8915 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:08 8925 [LEMMA] - NESTINGRUNTIME +19:20:08 8935 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:08 8935 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:08 8945 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:08 8945 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:08 8955 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:08 8965 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:08 8975 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:08 8975 [LEMMA] - WORKINGESTTIME +19:20:08 8985 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:08 8995 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:08 8995 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:08 9005 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:08 9005 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:08 9015 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:08 9025 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:08 9035 [LEMMA] - UPLOADFILE +19:20:08 9035 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:08 9045 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:08 9045 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:08 9055 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:08 9065 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:08 9075 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:09 4166 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:09 4176 [LEMMA] - NESTINGRUNTIME +19:20:09 4186 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:09 4196 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:09 4196 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:09 4206 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:09 4216 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:09 4216 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:09 4226 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:09 4236 [LEMMA] - WORKINGESTTIME +19:20:09 4246 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:09 4256 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:09 4266 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:09 4266 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:09 4276 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:09 4286 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:09 4296 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:09 4306 [LEMMA] - UPLOADFILE +19:20:09 4316 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:09 4316 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:09 4326 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:09 4336 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:09 4336 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:09 4346 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:09 9432 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:09 9442 [LEMMA] - NESTINGRUNTIME +19:20:09 9452 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:09 9452 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:09 9462 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:09 9472 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:09 9472 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:09 9482 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:09 9492 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:09 9502 [LEMMA] - WORKINGESTTIME +19:20:09 9502 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:09 9512 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:09 9522 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:09 9522 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:09 9532 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:09 9532 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:09 9542 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:09 9552 [LEMMA] - UPLOADFILE +19:20:09 9552 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:09 9562 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:09 9572 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:09 9582 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:09 9592 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:09 9592 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:10 4683 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:10 4683 [LEMMA] - NESTINGRUNTIME +19:20:10 4693 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:10 4703 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:10 4713 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:10 4713 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:10 4723 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:10 4733 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:10 4743 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:10 4753 [LEMMA] - WORKINGESTTIME +19:20:10 4763 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:10 4763 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:10 4773 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:10 4783 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:10 4793 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:10 4793 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:10 4803 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:10 4813 [LEMMA] - UPLOADFILE +19:20:10 4823 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:10 4823 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:10 4833 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:10 4843 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:10 4843 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:10 4853 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:10 9955 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:10 9955 [LEMMA] - NESTINGRUNTIME +19:20:10 9965 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:10 9975 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:10 9975 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:10 9985 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:10 9995 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:10 9995 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:11 0005 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:11 0005 [LEMMA] - WORKINGESTTIME +19:20:11 0015 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:11 0025 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:11 0025 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:11 0035 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:11 0045 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:11 0055 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:11 0065 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:11 0075 [LEMMA] - UPLOADFILE +19:20:11 0075 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:11 0085 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:11 0095 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:11 0105 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:11 0105 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:11 0115 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:11 5196 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:11 5206 [LEMMA] - NESTINGRUNTIME +19:20:11 5216 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:11 5226 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:11 5226 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:11 5236 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:11 5246 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:11 5246 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:11 5256 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:11 5266 [LEMMA] - WORKINGESTTIME +19:20:11 5266 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:11 5276 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:11 5276 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:11 5286 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:11 5286 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:11 5296 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:11 5306 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:11 5306 [LEMMA] - UPLOADFILE +19:20:11 5316 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:11 5316 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:11 5326 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:11 5326 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:11 5336 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:11 5336 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:12 0438 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:12 0448 [LEMMA] - NESTINGRUNTIME +19:20:12 0458 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:12 0458 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:12 0468 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:12 0468 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:12 0478 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:12 0478 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:12 0488 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:12 0498 [LEMMA] - WORKINGESTTIME +19:20:12 0498 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:12 0508 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:12 0508 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:12 0518 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:12 0528 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:12 0528 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:12 0538 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:12 0548 [LEMMA] - UPLOADFILE +19:20:12 0548 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:12 0558 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:12 0568 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:12 0578 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:12 0588 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:12 0598 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:12 5674 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:12 5684 [LEMMA] - NESTINGRUNTIME +19:20:12 5694 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:12 5694 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:12 5704 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:12 5714 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:12 5714 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:12 5724 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:12 5734 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:12 5744 [LEMMA] - WORKINGESTTIME +19:20:12 5744 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:12 5754 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:12 5764 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:12 5774 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:12 5774 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:12 5784 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:12 5794 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:12 5794 [LEMMA] - UPLOADFILE +19:20:12 5804 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:12 5814 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:12 5814 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:12 5824 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:12 5824 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:12 5834 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:13 0936 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:13 0946 [LEMMA] - NESTINGRUNTIME +19:20:13 0946 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:13 0956 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:13 0966 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:13 0966 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:13 0976 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:13 0986 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:13 0986 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:13 0996 [LEMMA] - WORKINGESTTIME +19:20:13 1006 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:13 1006 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:13 1016 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:13 1016 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:13 1026 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:13 1036 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:13 1046 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:13 1046 [LEMMA] - UPLOADFILE +19:20:13 1056 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:13 1066 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:13 1076 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:13 1086 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:13 1086 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:13 1096 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:13 6177 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:13 6187 [LEMMA] - NESTINGRUNTIME +19:20:13 6197 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:13 6207 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:13 6217 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:13 6227 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:13 6237 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:13 6247 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:13 6257 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:13 6257 [LEMMA] - WORKINGESTTIME +19:20:13 6267 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:13 6277 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:13 6277 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:13 6287 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:13 6297 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:13 6297 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:13 6307 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:13 6317 [LEMMA] - UPLOADFILE +19:20:13 6317 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:13 6327 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:13 6337 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:13 6347 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:13 6347 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:13 6357 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:14 1448 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:14 1458 [LEMMA] - NESTINGRUNTIME +19:20:14 1468 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:14 1478 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:14 1478 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:14 1488 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:14 1498 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:14 1498 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:14 1508 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:14 1518 [LEMMA] - WORKINGESTTIME +19:20:14 1528 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:14 1528 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:14 1538 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:14 1538 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:14 1548 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:14 1558 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:14 1568 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:14 1578 [LEMMA] - UPLOADFILE +19:20:14 1578 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:14 1588 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:14 1598 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:14 1598 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:14 1608 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:14 1618 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:14 6710 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:14 6720 [LEMMA] - NESTINGRUNTIME +19:20:14 6730 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:14 6740 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:14 6750 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:14 6750 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:14 6760 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:14 6770 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:14 6770 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:14 6780 [LEMMA] - WORKINGESTTIME +19:20:14 6790 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:14 6790 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:14 6800 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:14 6800 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:14 6810 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:14 6820 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:14 6830 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:14 6840 [LEMMA] - UPLOADFILE +19:20:14 6840 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:14 6850 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:14 6860 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:14 6860 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:14 6870 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:14 6870 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:15 1971 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:15 1981 [LEMMA] - NESTINGRUNTIME +19:20:15 1981 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:15 1991 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:15 2001 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:15 2001 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:15 2011 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:15 2011 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:15 2021 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:15 2031 [LEMMA] - WORKINGESTTIME +19:20:15 2031 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:15 2041 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:15 2051 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:15 2061 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:15 2061 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:15 2071 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:15 2091 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:15 2091 [LEMMA] - UPLOADFILE +19:20:15 2101 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:15 2111 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:15 2121 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:15 2121 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:15 2131 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:15 2141 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:15 7232 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:15 7242 [LEMMA] - NESTINGRUNTIME +19:20:15 7242 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:15 7252 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:15 7262 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:15 7272 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:15 7272 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:15 7282 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:15 7292 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:15 7292 [LEMMA] - WORKINGESTTIME +19:20:15 7302 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:15 7312 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:15 7312 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:15 7322 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:15 7332 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:15 7332 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:15 7342 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:15 7352 [LEMMA] - UPLOADFILE +19:20:15 7362 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:15 7362 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:15 7372 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:15 7372 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:15 7382 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:15 7392 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:16 2483 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:16 2483 [LEMMA] - NESTINGRUNTIME +19:20:16 2493 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:16 2503 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:16 2503 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:16 2513 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:16 2523 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:16 2523 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:16 2533 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:16 2543 [LEMMA] - WORKINGESTTIME +19:20:16 2543 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:16 2553 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:16 2563 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:16 2563 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:16 2573 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:16 2583 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:16 2603 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:16 2603 [LEMMA] - UPLOADFILE +19:20:16 2613 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:16 2623 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:16 2623 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:16 2633 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:16 2643 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:16 2643 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:16 7738 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:16 7748 [LEMMA] - NESTINGRUNTIME +19:20:16 7748 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:16 7758 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:16 7768 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:16 7778 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:16 7778 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:16 7788 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:16 7798 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:16 7798 [LEMMA] - WORKINGESTTIME +19:20:16 7808 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:16 7818 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:16 7818 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:16 7828 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:16 7828 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:16 7838 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:16 7848 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:16 7848 [LEMMA] - UPLOADFILE +19:20:16 7858 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:16 7868 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:16 7868 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:16 7878 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:16 7888 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:16 7888 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:17 2981 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:17 2981 [LEMMA] - NESTINGRUNTIME +19:20:17 2991 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:17 3001 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:17 3001 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:17 3011 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:17 3021 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:17 3021 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:17 3031 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:17 3041 [LEMMA] - WORKINGESTTIME +19:20:17 3041 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:17 3051 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:17 3051 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:17 3061 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:17 3071 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:17 3081 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:17 3091 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:17 3091 [LEMMA] - UPLOADFILE +19:20:17 3101 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:17 3111 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:17 3111 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:17 3121 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:17 3131 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:17 3131 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:17 8212 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:17 8222 [LEMMA] - NESTINGRUNTIME +19:20:17 8232 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:17 8242 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:17 8252 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:17 8262 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:17 8272 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:17 8272 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:17 8282 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:17 8282 [LEMMA] - WORKINGESTTIME +19:20:17 8292 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:17 8302 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:17 8302 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:17 8312 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:17 8312 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:17 8322 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:17 8332 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:17 8342 [LEMMA] - UPLOADFILE +19:20:17 8342 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:17 8352 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:17 8362 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:17 8362 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:17 8372 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:17 8382 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:18 3473 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:18 3483 [LEMMA] - NESTINGRUNTIME +19:20:18 3483 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:18 3493 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:18 3493 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:18 3503 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:18 3513 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:18 3513 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:18 3533 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:18 3533 [LEMMA] - WORKINGESTTIME +19:20:18 3543 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:18 3553 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:18 3553 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:18 3563 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:18 3573 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:18 3583 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:18 3593 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:18 3603 [LEMMA] - UPLOADFILE +19:20:18 3613 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:18 3623 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:18 3623 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:18 3633 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:18 3643 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:18 3643 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:18 8765 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:18 8775 [LEMMA] - NESTINGRUNTIME +19:20:18 8775 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:18 8785 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:18 8795 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:18 8795 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:18 8805 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:18 8805 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:18 8815 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:18 8825 [LEMMA] - WORKINGESTTIME +19:20:18 8825 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:18 8835 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:18 8835 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:18 8845 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:18 8855 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:18 8855 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:18 8865 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:18 8875 [LEMMA] - UPLOADFILE +19:20:18 8885 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:18 8885 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:18 8895 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:18 8905 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:18 8915 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:18 8915 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:19 4020 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:19 4030 [LEMMA] - NESTINGRUNTIME +19:20:19 4030 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:19 4040 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:19 4050 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:19 4050 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:19 4060 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:19 4070 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:19 4080 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:19 4080 [LEMMA] - WORKINGESTTIME +19:20:19 4090 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:19 4100 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:19 4110 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:19 4110 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:19 4120 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:19 4130 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:19 4140 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:19 4140 [LEMMA] - UPLOADFILE +19:20:19 4150 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:19 4160 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:19 4160 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:19 4170 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:19 4180 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:19 4180 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:19 9271 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:19 9281 [LEMMA] - NESTINGRUNTIME +19:20:19 9281 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:19 9291 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:19 9291 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:19 9301 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:19 9311 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:19 9311 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:19 9321 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:19 9331 [LEMMA] - WORKINGESTTIME +19:20:19 9331 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:19 9341 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:19 9351 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:19 9351 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:19 9361 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:19 9361 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:19 9371 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:19 9381 [LEMMA] - UPLOADFILE +19:20:19 9391 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:19 9401 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:19 9401 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:19 9411 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:19 9421 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:19 9431 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:20 4517 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:20 4527 [LEMMA] - NESTINGRUNTIME +19:20:20 4537 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:20 4537 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:20 4547 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:20 4557 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:20 4557 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:20 4567 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:20 4577 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:20 4587 [LEMMA] - WORKINGESTTIME +19:20:20 4597 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:20 4597 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:20 4607 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:20 4617 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:20 4617 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:20 4627 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:20 4637 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:20 4647 [LEMMA] - UPLOADFILE +19:20:20 4657 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:20 4667 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:20 4667 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:20 4677 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:20 4687 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:20 4687 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:20 9788 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:20 9798 [LEMMA] - NESTINGRUNTIME +19:20:20 9808 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:20 9808 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:20 9818 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:20 9828 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:20 9828 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:20 9838 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:20 9848 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:20 9858 [LEMMA] - WORKINGESTTIME +19:20:20 9858 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:20 9868 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:20 9878 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:20 9878 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:20 9888 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:20 9898 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:20 9908 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:20 9918 [LEMMA] - UPLOADFILE +19:20:20 9928 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:20 9928 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:20 9938 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:20 9938 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:20 9948 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:20 9958 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:21 5049 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:21 5049 [LEMMA] - NESTINGRUNTIME +19:20:21 5059 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:21 5059 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:21 5069 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:21 5079 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:21 5079 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:21 5089 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:21 5099 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:21 5109 [LEMMA] - WORKINGESTTIME +19:20:21 5109 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:21 5119 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:21 5119 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:21 5129 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:21 5129 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:21 5139 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:21 5149 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:21 5149 [LEMMA] - UPLOADFILE +19:20:21 5159 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:21 5159 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:21 5169 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:21 5179 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:21 5179 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:21 5189 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:22 0290 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:22 0290 [LEMMA] - NESTINGRUNTIME +19:20:22 0300 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:22 0310 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:22 0310 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:22 0320 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:22 0320 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:22 0330 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:22 0330 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:22 0340 [LEMMA] - WORKINGESTTIME +19:20:22 0350 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:22 0350 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:22 0360 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:22 0360 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:22 0370 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:22 0380 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:22 0390 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:22 0390 [LEMMA] - UPLOADFILE +19:20:22 0400 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:22 0400 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:22 0410 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:22 0420 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:22 0430 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:22 0430 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:22 5542 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:22 5542 [LEMMA] - NESTINGRUNTIME +19:20:22 5552 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:22 5562 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:22 5562 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:22 5582 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:22 5582 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:22 5592 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:22 5602 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:22 5612 [LEMMA] - WORKINGESTTIME +19:20:22 5612 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:22 5622 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:22 5632 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:22 5632 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:22 5642 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:22 5642 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:22 5652 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:22 5662 [LEMMA] - UPLOADFILE +19:20:22 5672 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:22 5672 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:22 5682 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:22 5692 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:22 5692 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:22 5702 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:23 0783 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:23 0793 [LEMMA] - NESTINGRUNTIME +19:20:23 0803 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:23 0813 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:23 0813 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:23 0823 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:23 0833 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:23 0833 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:23 0843 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:23 0843 [LEMMA] - WORKINGESTTIME +19:20:23 0853 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:23 0863 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:23 0863 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:23 0873 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:23 0873 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:23 0883 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:23 0903 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:23 0913 [LEMMA] - UPLOADFILE +19:20:23 0923 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:23 0923 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:23 0933 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:23 0943 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:23 0943 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:23 0953 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:23 6039 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:23 6049 [LEMMA] - NESTINGRUNTIME +19:20:23 6049 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:23 6059 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:23 6069 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:23 6069 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:23 6079 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:23 6089 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:23 6099 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:23 6109 [LEMMA] - WORKINGESTTIME +19:20:23 6109 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:23 6119 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:23 6119 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:23 6129 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:23 6139 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:23 6139 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:23 6149 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:23 6159 [LEMMA] - UPLOADFILE +19:20:23 6159 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:23 6169 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:23 6179 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:23 6179 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:23 6189 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:23 6189 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:24 1280 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:24 1280 [LEMMA] - NESTINGRUNTIME +19:20:24 1290 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:24 1300 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:24 1310 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:24 1310 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:24 1320 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:24 1330 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:24 1330 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:24 1340 [LEMMA] - WORKINGESTTIME +19:20:24 1350 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:24 1360 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:24 1360 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:24 1370 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:24 1380 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:24 1380 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:24 1400 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:24 1410 [LEMMA] - UPLOADFILE +19:20:24 1420 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:24 1430 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:24 1440 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:24 1450 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:24 1460 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:24 1460 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:24 6551 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:24 6561 [LEMMA] - NESTINGRUNTIME +19:20:24 6571 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:24 6581 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:24 6581 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:24 6591 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:24 6601 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:24 6611 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:24 6621 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:24 6621 [LEMMA] - WORKINGESTTIME +19:20:24 6631 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:24 6631 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:24 6641 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:24 6651 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:24 6651 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:24 6661 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:24 6671 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:24 6671 [LEMMA] - UPLOADFILE +19:20:24 6681 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:24 6691 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:24 6691 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:24 6701 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:24 6711 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:24 6711 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:25 1812 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:25 1822 [LEMMA] - NESTINGRUNTIME +19:20:25 1832 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:25 1832 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:25 1842 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:25 1842 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:25 1852 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:25 1862 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:25 1872 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:25 1872 [LEMMA] - WORKINGESTTIME +19:20:25 1882 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:25 1882 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:25 1892 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:25 1902 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:25 1902 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:25 1912 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:25 1922 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:25 1932 [LEMMA] - UPLOADFILE +19:20:25 1932 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:25 1942 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:25 1952 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:25 1952 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:25 1962 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:25 1972 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:25 7055 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:25 7065 [LEMMA] - NESTINGRUNTIME +19:20:25 7065 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:25 7085 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:25 7095 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:25 7095 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:25 7105 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:25 7115 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:25 7125 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:25 7135 [LEMMA] - WORKINGESTTIME +19:20:25 7145 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:25 7145 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:25 7155 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:25 7165 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:25 7165 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:25 7175 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:25 7185 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:25 7185 [LEMMA] - UPLOADFILE +19:20:25 7195 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:25 7205 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:25 7205 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:25 7215 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:25 7215 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:25 7225 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:26 2326 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:26 2326 [LEMMA] - NESTINGRUNTIME +19:20:26 2336 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:26 2346 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:26 2346 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:26 2356 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:26 2356 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:26 2366 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:26 2376 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:26 2376 [LEMMA] - WORKINGESTTIME +19:20:26 2386 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:26 2386 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:26 2396 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:26 2406 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:26 2416 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:26 2416 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:26 2436 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:26 2436 [LEMMA] - UPLOADFILE +19:20:26 2446 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:26 2456 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:26 2466 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:26 2466 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:26 2476 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:26 2476 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:26 7567 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:26 7577 [LEMMA] - NESTINGRUNTIME +19:20:26 7587 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:26 7587 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:26 7597 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:26 7607 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:26 7607 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:26 7617 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:26 7627 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:26 7627 [LEMMA] - WORKINGESTTIME +19:20:26 7637 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:26 7637 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:26 7647 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:26 7657 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:26 7657 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:26 7667 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:26 7677 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:26 7677 [LEMMA] - UPLOADFILE +19:20:26 7687 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:26 7697 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:26 7697 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:26 7707 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:26 7717 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:26 7717 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:27 2809 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:27 2819 [LEMMA] - NESTINGRUNTIME +19:20:27 2829 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:27 2839 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:27 2839 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:27 2849 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:27 2849 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:27 2859 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:27 2869 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:27 2879 [LEMMA] - WORKINGESTTIME +19:20:27 2879 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:27 2889 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:27 2889 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:27 2899 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:27 2909 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:27 2919 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:27 2929 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:27 2939 [LEMMA] - UPLOADFILE +19:20:27 2949 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:27 2949 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:27 2959 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:27 2969 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:27 2979 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:27 2979 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:27 8070 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:27 8080 [LEMMA] - NESTINGRUNTIME +19:20:27 8090 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:27 8100 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:27 8100 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:27 8110 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:27 8120 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:27 8120 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:27 8130 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:27 8140 [LEMMA] - WORKINGESTTIME +19:20:27 8140 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:27 8150 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:27 8160 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:27 8160 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:27 8170 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:27 8180 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:27 8180 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:27 8190 [LEMMA] - UPLOADFILE +19:20:27 8200 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:27 8200 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:27 8210 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:27 8210 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:27 8220 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:27 8230 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:28 3332 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:28 3342 [LEMMA] - NESTINGRUNTIME +19:20:28 3342 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:28 3352 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:28 3362 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:28 3372 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:28 3372 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:28 3382 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:28 3392 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:28 3402 [LEMMA] - WORKINGESTTIME +19:20:28 3412 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:28 3422 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:28 3422 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:28 3432 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:28 3442 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:28 3452 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:28 3462 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:28 3472 [LEMMA] - UPLOADFILE +19:20:28 3472 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:28 3482 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:28 3482 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:28 3492 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:28 3502 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:28 3502 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:28 8593 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:28 8603 [LEMMA] - NESTINGRUNTIME +19:20:28 8603 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:28 8613 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:28 8623 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:28 8623 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:28 8633 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:28 8633 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:28 8643 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:28 8653 [LEMMA] - WORKINGESTTIME +19:20:28 8653 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:28 8663 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:28 8663 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:28 8673 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:28 8683 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:28 8683 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:28 8693 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:28 8703 [LEMMA] - UPLOADFILE +19:20:28 8703 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:28 8713 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:28 8723 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:28 8723 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:28 8733 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:28 8743 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:29 3824 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:29 3834 [LEMMA] - NESTINGRUNTIME +19:20:29 3844 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:29 3854 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:29 3854 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:29 3864 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:29 3864 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:29 3874 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:29 3884 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:29 3894 [LEMMA] - WORKINGESTTIME +19:20:29 3894 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:29 3904 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:29 3914 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:29 3924 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:29 3924 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:29 3934 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:29 3944 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:29 3954 [LEMMA] - UPLOADFILE +19:20:29 3964 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:29 3964 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:29 3974 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:29 3984 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:29 3984 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:29 3994 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:29 9086 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:29 9096 [LEMMA] - NESTINGRUNTIME +19:20:29 9096 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:29 9106 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:29 9106 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:29 9116 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:29 9126 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:29 9126 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:29 9136 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:29 9146 [LEMMA] - WORKINGESTTIME +19:20:29 9146 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:29 9156 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:29 9156 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:29 9166 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:29 9176 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:29 9176 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:29 9196 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:29 9196 [LEMMA] - UPLOADFILE +19:20:29 9206 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:29 9206 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:29 9216 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:29 9226 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:29 9226 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:29 9236 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:30 4328 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:30 4328 [LEMMA] - NESTINGRUNTIME +19:20:30 4338 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:30 4348 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:30 4348 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:30 4358 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:30 4368 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:30 4368 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:30 4378 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:30 4388 [LEMMA] - WORKINGESTTIME +19:20:30 4388 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:30 4398 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:30 4408 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:30 4408 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:30 4418 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:30 4428 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:30 4438 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:30 4438 [LEMMA] - UPLOADFILE +19:20:30 4448 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:30 4458 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:30 4458 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:30 4468 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:30 4478 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:30 4478 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:30 9569 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:30 9579 [LEMMA] - NESTINGRUNTIME +19:20:30 9589 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:30 9589 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:30 9599 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:30 9609 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:30 9609 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:30 9619 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:30 9629 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:30 9629 [LEMMA] - WORKINGESTTIME +19:20:30 9639 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:30 9639 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:30 9649 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:30 9659 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:30 9659 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:30 9669 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:30 9679 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:30 9689 [LEMMA] - UPLOADFILE +19:20:30 9689 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:30 9699 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:30 9709 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:30 9709 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:30 9719 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:30 9719 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:31 4821 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:31 4821 [LEMMA] - NESTINGRUNTIME +19:20:31 4831 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:31 4831 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:31 4841 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:31 4851 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:31 4851 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:31 4861 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:31 4861 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:31 4871 [LEMMA] - WORKINGESTTIME +19:20:31 4881 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:31 4881 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:31 4891 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:31 4901 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:31 4901 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:31 4911 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:31 4921 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:31 4931 [LEMMA] - UPLOADFILE +19:20:31 4931 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:31 4941 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:31 4951 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:31 4961 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:31 4961 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:31 4971 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:32 0062 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:32 0072 [LEMMA] - NESTINGRUNTIME +19:20:32 0072 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:32 0082 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:32 0092 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:32 0102 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:32 0112 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:32 0122 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:32 0122 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:32 0132 [LEMMA] - WORKINGESTTIME +19:20:32 0142 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:32 0142 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:32 0152 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:32 0162 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:32 0162 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:32 0172 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:32 0182 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:32 0182 [LEMMA] - UPLOADFILE +19:20:32 0192 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:32 0192 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:32 0202 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:32 0212 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:32 0212 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:32 0222 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:32 5314 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:32 5314 [LEMMA] - NESTINGRUNTIME +19:20:32 5324 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:32 5334 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:32 5334 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:32 5344 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:32 5354 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:32 5354 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:32 5364 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:32 5374 [LEMMA] - WORKINGESTTIME +19:20:32 5374 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:32 5384 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:32 5384 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:32 5394 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:32 5404 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:32 5414 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:32 5424 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:32 5434 [LEMMA] - UPLOADFILE +19:20:32 5434 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:32 5444 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:32 5454 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:32 5454 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:32 5464 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:32 5474 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:33 0575 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:33 0585 [LEMMA] - NESTINGRUNTIME +19:20:33 0585 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:33 0595 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:33 0605 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:33 0615 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:33 0615 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:33 0625 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:33 0635 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:33 0635 [LEMMA] - WORKINGESTTIME +19:20:33 0645 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:33 0645 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:33 0655 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:33 0665 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:33 0665 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:33 0675 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:33 0685 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:33 0695 [LEMMA] - UPLOADFILE +19:20:33 0695 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:33 0705 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:33 0705 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:33 0715 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:33 0725 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:33 0725 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:33 5827 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:33 5837 [LEMMA] - NESTINGRUNTIME +19:20:33 5837 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:33 5847 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:33 5847 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:33 5857 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:33 5867 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:33 5867 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:33 5877 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:33 5877 [LEMMA] - WORKINGESTTIME +19:20:33 5887 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:33 5897 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:33 5907 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:33 5917 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:33 5917 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:33 5927 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:33 5937 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:33 5947 [LEMMA] - UPLOADFILE +19:20:33 5957 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:33 5957 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:33 5967 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:33 5967 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:33 5977 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:33 5977 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:34 1068 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:34 1078 [LEMMA] - NESTINGRUNTIME +19:20:34 1088 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:34 1098 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:34 1108 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:34 1108 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:34 1118 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:34 1128 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:34 1138 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:34 1138 [LEMMA] - WORKINGESTTIME +19:20:34 1148 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:34 1148 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:34 1158 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:34 1168 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:34 1168 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:34 1178 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:34 1188 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:34 1188 [LEMMA] - UPLOADFILE +19:20:34 1198 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:34 1208 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:34 1208 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:34 1218 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:34 1228 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:34 1228 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:34 6319 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:34 6329 [LEMMA] - NESTINGRUNTIME +19:20:34 6339 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:34 6349 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:34 6349 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:34 6359 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:34 6369 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:34 6379 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:34 6379 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:34 6389 [LEMMA] - WORKINGESTTIME +19:20:34 6399 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:34 6399 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:34 6409 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:34 6419 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:34 6429 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:34 6439 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:34 6449 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:34 6449 [LEMMA] - UPLOADFILE +19:20:34 6459 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:34 6459 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:34 6469 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:34 6469 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:34 6479 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:34 6489 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:35 1591 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:35 1601 [LEMMA] - NESTINGRUNTIME +19:20:35 1611 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:35 1611 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:35 1621 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:35 1621 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:35 1631 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:35 1641 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:35 1641 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:35 1651 [LEMMA] - WORKINGESTTIME +19:20:35 1661 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:35 1661 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:35 1671 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:35 1671 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:35 1681 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:35 1691 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:35 1701 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:35 1711 [LEMMA] - UPLOADFILE +19:20:35 1711 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:35 1721 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:35 1721 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:35 1731 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:35 1741 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:35 1751 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:35 6842 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:35 6852 [LEMMA] - NESTINGRUNTIME +19:20:35 6862 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:35 6862 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:35 6872 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:35 6882 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:35 6882 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:35 6892 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:35 6902 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:35 6902 [LEMMA] - WORKINGESTTIME +19:20:35 6912 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:35 6922 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:35 6932 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:35 6942 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:35 6942 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:35 6952 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:35 6962 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:35 6972 [LEMMA] - UPLOADFILE +19:20:35 6972 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:35 6982 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:35 6992 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:35 6992 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:35 7002 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:35 7012 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:36 2103 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:36 2113 [LEMMA] - NESTINGRUNTIME +19:20:36 2113 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:36 2123 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:36 2133 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:36 2143 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:36 2143 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:36 2153 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:36 2153 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:36 2163 [LEMMA] - WORKINGESTTIME +19:20:36 2173 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:36 2173 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:36 2183 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:36 2193 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:36 2203 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:36 2203 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:36 2213 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:36 2223 [LEMMA] - UPLOADFILE +19:20:36 2223 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:36 2233 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:36 2243 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:36 2243 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:36 2253 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:36 2263 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:36 7354 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:36 7365 [LEMMA] - NESTINGRUNTIME +19:20:36 7375 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:36 7384 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:36 7384 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:36 7394 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:36 7394 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:36 7405 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:36 7415 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:36 7425 [LEMMA] - WORKINGESTTIME +19:20:36 7435 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:36 7445 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:36 7455 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:36 7465 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:36 7465 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:36 7475 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:36 7485 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:36 7485 [LEMMA] - UPLOADFILE +19:20:36 7495 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:36 7505 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:36 7505 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:36 7515 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:36 7515 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:36 7525 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:37 2626 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:37 2626 [LEMMA] - NESTINGRUNTIME +19:20:37 2636 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:37 2646 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:37 2656 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:37 2656 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:37 2666 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:37 2676 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:37 2676 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:37 2686 [LEMMA] - WORKINGESTTIME +19:20:37 2696 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:37 2696 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:37 2706 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:37 2706 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:37 2716 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:37 2726 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:37 2736 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:37 2746 [LEMMA] - UPLOADFILE +19:20:37 2746 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:37 2756 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:37 2766 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:37 2766 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:37 2776 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:37 2786 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:37 7881 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:37 7891 [LEMMA] - NESTINGRUNTIME +19:20:37 7891 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:37 7901 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:37 7911 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:37 7911 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:37 7921 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:37 7931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:37 7941 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:37 7951 [LEMMA] - WORKINGESTTIME +19:20:37 7961 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:37 7961 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:37 7971 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:37 7981 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:37 7981 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:37 7991 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:37 8001 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:37 8001 [LEMMA] - UPLOADFILE +19:20:37 8011 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:37 8021 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:37 8021 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:37 8031 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:37 8031 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:37 8041 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:38 3132 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:38 3142 [LEMMA] - NESTINGRUNTIME +19:20:38 3142 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:38 3152 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:38 3162 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:38 3162 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:38 3172 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:38 3182 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:38 3182 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:38 3192 [LEMMA] - WORKINGESTTIME +19:20:38 3192 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:38 3202 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:38 3212 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:38 3212 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:38 3222 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:38 3232 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:38 3242 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:38 3242 [LEMMA] - UPLOADFILE +19:20:38 3252 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:38 3262 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:38 3272 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:38 3282 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:38 3282 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:38 3292 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:38 8383 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:38 8383 [LEMMA] - NESTINGRUNTIME +19:20:38 8393 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:38 8403 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:38 8413 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:38 8413 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:38 8423 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:38 8433 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:38 8433 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:38 8443 [LEMMA] - WORKINGESTTIME +19:20:38 8453 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:38 8453 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:38 8463 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:38 8473 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:38 8473 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:38 8483 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:38 8494 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:38 8494 [LEMMA] - UPLOADFILE +19:20:38 8504 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:38 8504 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:38 8514 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:38 8523 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:38 8523 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:38 8534 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:39 3625 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:39 3635 [LEMMA] - NESTINGRUNTIME +19:20:39 3635 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:39 3645 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:39 3655 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:39 3655 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:39 3665 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:39 3665 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:39 3675 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:39 3685 [LEMMA] - WORKINGESTTIME +19:20:39 3685 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:39 3695 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:39 3705 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:39 3705 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:39 3715 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:39 3715 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:39 3725 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:39 3735 [LEMMA] - UPLOADFILE +19:20:39 3745 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:39 3745 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:39 3755 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:39 3765 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:39 3775 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:39 3785 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:39 8868 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:39 8868 [LEMMA] - NESTINGRUNTIME +19:20:39 8878 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:39 8888 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:39 8888 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:39 8898 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:39 8898 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:39 8908 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:39 8918 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:39 8928 [LEMMA] - WORKINGESTTIME +19:20:39 8928 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:39 8938 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:39 8948 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:39 8948 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:39 8958 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:39 8968 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:39 8968 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:39 8978 [LEMMA] - UPLOADFILE +19:20:39 8988 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:39 8988 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:39 8998 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:39 8998 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:39 9008 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:39 9018 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:40 4110 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:40 4120 [LEMMA] - NESTINGRUNTIME +19:20:40 4130 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:40 4140 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:40 4140 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:40 4150 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:40 4150 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:40 4160 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:40 4170 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:40 4170 [LEMMA] - WORKINGESTTIME +19:20:40 4180 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:40 4180 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:40 4190 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:40 4200 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:40 4210 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:40 4210 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:40 4220 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:40 4230 [LEMMA] - UPLOADFILE +19:20:40 4240 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:40 4240 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:40 4250 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:40 4260 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:40 4270 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:40 4280 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:40 9381 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:40 9391 [LEMMA] - NESTINGRUNTIME +19:20:40 9391 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:40 9401 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:40 9411 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:40 9421 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:40 9431 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:40 9431 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:40 9441 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:40 9451 [LEMMA] - WORKINGESTTIME +19:20:40 9461 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:40 9471 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:40 9481 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:40 9491 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:40 9491 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:40 9501 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:40 9511 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:40 9511 [LEMMA] - UPLOADFILE +19:20:40 9521 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:40 9531 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:40 9541 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:40 9541 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:40 9551 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:40 9561 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:41 4652 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:41 4662 [LEMMA] - NESTINGRUNTIME +19:20:41 4672 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:41 4672 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:41 4682 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:41 4692 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:41 4692 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:41 4702 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:41 4712 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:41 4712 [LEMMA] - WORKINGESTTIME +19:20:41 4722 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:41 4722 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:41 4732 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:41 4742 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:41 4752 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:41 4752 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:41 4762 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:41 4772 [LEMMA] - UPLOADFILE +19:20:41 4782 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:41 4782 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:41 4792 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:41 4802 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:41 4812 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:41 4812 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:41 9894 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:41 9904 [LEMMA] - NESTINGRUNTIME +19:20:41 9914 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:41 9924 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:41 9934 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:41 9944 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:41 9944 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:41 9954 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:41 9964 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:41 9974 [LEMMA] - WORKINGESTTIME +19:20:41 9974 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:41 9984 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:41 9984 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:41 9994 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:41 9994 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:42 0004 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:42 0014 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:42 0024 [LEMMA] - UPLOADFILE +19:20:42 0024 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:42 0034 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:42 0034 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:42 0044 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:42 0054 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:42 0054 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:42 5145 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:42 5155 [LEMMA] - NESTINGRUNTIME +19:20:42 5155 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:42 5165 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:42 5175 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:42 5175 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:42 5185 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:42 5185 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:42 5195 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:42 5205 [LEMMA] - WORKINGESTTIME +19:20:42 5205 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:42 5215 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:42 5215 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:42 5225 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:42 5235 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:42 5235 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:42 5255 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:42 5255 [LEMMA] - UPLOADFILE +19:20:42 5265 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:42 5275 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:42 5275 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:42 5285 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:42 5295 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:42 5295 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:43 0396 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:43 0406 [LEMMA] - NESTINGRUNTIME +19:20:43 0416 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:43 0426 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:43 0436 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:43 0446 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:43 0456 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:43 0466 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:43 0476 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:43 0486 [LEMMA] - WORKINGESTTIME +19:20:43 0496 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:43 0496 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:43 0506 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:43 0516 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:43 0526 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:43 0526 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:43 0546 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:43 0556 [LEMMA] - UPLOADFILE +19:20:43 0556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:43 0566 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:43 0576 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:43 0586 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:43 0586 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:43 0596 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:44 6140 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:44 6150 [LEMMA] - UPLOADFILE +19:20:44 6160 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:44 6170 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:44 6170 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:44 6180 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:44 6190 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:44 6190 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:44 6210 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:44 6220 [LEMMA] - NESTINGRUNTIME +19:20:44 6230 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:44 6240 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:44 6250 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:44 6260 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:44 6270 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:44 6280 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:44 6290 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:44 6290 [LEMMA] - WORKINGESTTIME +19:20:44 6300 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:44 6310 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:44 6310 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:44 6320 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:44 6320 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:44 6330 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:45 2601 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:45 2611 [LEMMA] - NESTINGRUNTIME +19:20:45 2621 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:45 2631 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:45 2641 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:45 2651 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:45 2661 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:45 2671 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:45 2681 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:45 2691 [LEMMA] - WORKINGESTTIME +19:20:45 2691 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:45 2701 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:45 2701 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:45 2711 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:45 2721 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:45 2731 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:45 2741 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:45 2751 [LEMMA] - UPLOADFILE +19:20:45 2761 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:45 2771 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:45 2781 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:45 2791 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:45 2801 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:45 2801 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:48 4589 Caricati 18 lemmi! +19:20:48 4619 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:48 4629 [LEMMA] - NESTINGRUNTIME +19:20:48 4639 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:48 4649 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:48 4659 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:48 4659 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:48 4669 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:48 4679 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:48 4689 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:48 4689 [LEMMA] - WORKINGESTTIME +19:20:48 4699 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:48 4709 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:48 4719 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:48 4719 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:48 4729 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:48 4739 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:48 4859 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:48 4869 [LEMMA] - UPLOADFILE +19:20:48 4879 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:48 4889 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:48 4889 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:48 4899 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:48 4909 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:48 4919 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:51 5766 Caricati 18 lemmi! +19:20:51 5786 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:51 5796 [LEMMA] - NESTINGRUNTIME +19:20:51 5806 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:51 5806 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:51 5816 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:51 5826 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:51 5826 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:51 5836 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:51 5846 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:51 5856 [LEMMA] - WORKINGESTTIME +19:20:51 5856 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:51 5866 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:51 5866 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:51 5876 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:51 5886 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:51 5886 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:51 5986 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:51 5996 [LEMMA] - UPLOADFILE +19:20:51 6006 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:51 6016 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:51 6016 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:51 6026 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:51 6036 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:51 6046 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:52 1347 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:52 1357 [LEMMA] - NESTINGRUNTIME +19:20:52 1357 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:52 1367 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:52 1377 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:52 1377 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:52 1387 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:52 1387 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:52 1397 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:52 1407 [LEMMA] - WORKINGESTTIME +19:20:52 1417 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:52 1427 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:52 1427 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:52 1437 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:52 1447 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:52 1447 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:52 1457 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:52 1467 [LEMMA] - UPLOADFILE +19:20:52 1467 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:52 1477 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:52 1487 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:52 1487 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:52 1497 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:52 1507 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:52 6608 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:52 6618 [LEMMA] - NESTINGRUNTIME +19:20:52 6618 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:52 6628 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:52 6638 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:52 6648 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:52 6648 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:52 6658 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:52 6668 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:52 6668 [LEMMA] - WORKINGESTTIME +19:20:52 6678 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:52 6688 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:52 6688 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:52 6698 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:52 6708 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:52 6708 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:52 6718 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:52 6728 [LEMMA] - UPLOADFILE +19:20:52 6738 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:52 6738 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:52 6748 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:52 6758 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:52 6768 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:52 6778 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:53 1857 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:53 1867 [LEMMA] - NESTINGRUNTIME +19:20:53 1877 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:53 1877 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:53 1887 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:53 1897 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:53 1897 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:53 1907 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:53 1907 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:53 1917 [LEMMA] - WORKINGESTTIME +19:20:53 1927 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:53 1937 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:53 1947 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:53 1947 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:53 1957 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:53 1967 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:53 1967 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:53 1977 [LEMMA] - UPLOADFILE +19:20:53 1987 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:53 1987 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:53 1997 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:53 2007 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:53 2007 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:53 2017 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:53 7119 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:53 7129 [LEMMA] - NESTINGRUNTIME +19:20:53 7139 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:53 7149 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:53 7159 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:53 7159 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:53 7169 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:53 7179 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:53 7189 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:53 7199 [LEMMA] - WORKINGESTTIME +19:20:53 7209 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:53 7209 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:53 7219 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:53 7219 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:53 7229 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:53 7239 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:53 7249 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:53 7249 [LEMMA] - UPLOADFILE +19:20:53 7259 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:53 7269 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:53 7279 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:53 7289 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:53 7299 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:53 7299 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:54 2400 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:54 2400 [LEMMA] - NESTINGRUNTIME +19:20:54 2410 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:54 2420 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:54 2430 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:54 2440 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:54 2440 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:54 2450 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:54 2460 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:54 2460 [LEMMA] - WORKINGESTTIME +19:20:54 2470 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:54 2480 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:54 2480 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:54 2490 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:54 2500 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:54 2500 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:54 2510 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:54 2520 [LEMMA] - UPLOADFILE +19:20:54 2520 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:54 2530 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:54 2540 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:54 2540 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:54 2550 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:54 2560 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:54 7673 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:54 7683 [LEMMA] - NESTINGRUNTIME +19:20:54 7683 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:54 7693 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:54 7703 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:54 7703 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:54 7713 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:54 7723 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:54 7733 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:54 7733 [LEMMA] - WORKINGESTTIME +19:20:54 7743 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:54 7753 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:54 7763 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:54 7773 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:54 7783 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:54 7793 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:54 7803 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:54 7813 [LEMMA] - UPLOADFILE +19:20:54 7823 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:54 7833 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:54 7833 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:54 7843 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:54 7853 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:54 7853 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:55 2965 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:55 2975 [LEMMA] - NESTINGRUNTIME +19:20:55 2975 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:55 2985 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:55 2995 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:55 2995 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:55 3005 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:55 3005 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:55 3015 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:55 3025 [LEMMA] - WORKINGESTTIME +19:20:55 3025 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:55 3035 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:55 3045 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:55 3045 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:55 3055 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:55 3065 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:55 3075 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:55 3085 [LEMMA] - UPLOADFILE +19:20:55 3095 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:55 3095 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:55 3105 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:55 3115 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:55 3115 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:55 3125 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:55 8228 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:55 8238 [LEMMA] - NESTINGRUNTIME +19:20:55 8248 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:55 8248 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:55 8258 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:55 8268 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:55 8278 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:55 8288 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:55 8298 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:55 8308 [LEMMA] - WORKINGESTTIME +19:20:55 8318 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:55 8318 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:55 8328 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:55 8338 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:55 8338 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:55 8348 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:55 8358 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:55 8368 [LEMMA] - UPLOADFILE +19:20:55 8378 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:55 8388 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:55 8398 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:55 8408 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:55 8408 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:55 8418 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:56 3519 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:56 3519 [LEMMA] - NESTINGRUNTIME +19:20:56 3529 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:56 3529 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:56 3539 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:56 3549 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:56 3549 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:56 3559 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:56 3569 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:56 3579 [LEMMA] - WORKINGESTTIME +19:20:56 3579 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:56 3589 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:56 3599 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:56 3609 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:56 3609 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:56 3619 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:56 3629 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:56 3639 [LEMMA] - UPLOADFILE +19:20:56 3649 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:56 3649 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:56 3729 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:56 3739 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:56 3739 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:56 3749 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:56 8871 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:56 8881 [LEMMA] - NESTINGRUNTIME +19:20:56 8891 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:56 8901 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:56 8901 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:56 8911 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:56 8921 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:56 8931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:56 8941 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:56 8951 [LEMMA] - WORKINGESTTIME +19:20:56 8951 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:56 8961 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:56 8971 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:56 8981 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:56 8981 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:56 8991 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:56 9001 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:56 9011 [LEMMA] - UPLOADFILE +19:20:56 9021 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:56 9031 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:56 9031 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:56 9041 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:56 9041 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:56 9051 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:57 4142 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:57 4152 [LEMMA] - NESTINGRUNTIME +19:20:57 4162 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:57 4162 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:57 4172 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:57 4182 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:57 4182 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:57 4192 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:57 4202 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:57 4202 [LEMMA] - WORKINGESTTIME +19:20:57 4212 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:57 4212 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:57 4222 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:57 4232 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:57 4232 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:57 4242 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:57 4252 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:57 4252 [LEMMA] - UPLOADFILE +19:20:57 4262 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:57 4272 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:57 4282 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:57 4292 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:57 4302 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:57 4302 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:57 9400 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:57 9400 [LEMMA] - NESTINGRUNTIME +19:20:57 9410 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:57 9420 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:57 9430 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:57 9440 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:57 9450 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:57 9460 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:57 9470 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:57 9470 [LEMMA] - WORKINGESTTIME +19:20:57 9480 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:57 9490 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:57 9500 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:57 9510 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:57 9510 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:57 9520 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:57 9530 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:57 9540 [LEMMA] - UPLOADFILE +19:20:57 9540 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:57 9550 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:57 9550 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:57 9560 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:57 9570 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:57 9580 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:58 4682 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:58 4682 [LEMMA] - NESTINGRUNTIME +19:20:58 4692 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:58 4692 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:58 4702 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:58 4712 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:58 4712 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:58 4722 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:58 4732 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:58 4732 [LEMMA] - WORKINGESTTIME +19:20:58 4742 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:58 4742 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:58 4752 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:58 4762 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:58 4772 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:58 4772 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:58 4782 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:58 4792 [LEMMA] - UPLOADFILE +19:20:58 4802 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:58 4802 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:58 4812 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:58 4822 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:58 4822 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:58 4832 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:58 9924 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:58 9934 [LEMMA] - NESTINGRUNTIME +19:20:58 9944 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:58 9954 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:58 9964 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:58 9974 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:58 9974 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:58 9984 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:58 9994 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:59 0004 [LEMMA] - WORKINGESTTIME +19:20:59 0004 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:59 0014 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:59 0024 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:59 0024 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:59 0034 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:59 0034 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:59 0044 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:59 0054 [LEMMA] - UPLOADFILE +19:20:59 0064 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:59 0074 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:59 0074 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:59 0084 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:59 0094 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:59 0104 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:59 5195 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:59 5206 [LEMMA] - NESTINGRUNTIME +19:20:59 5216 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:20:59 5216 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:59 5226 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:59 5236 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:59 5236 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:59 5246 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:59 5256 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:59 5266 [LEMMA] - WORKINGESTTIME +19:20:59 5276 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:20:59 5286 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:59 5286 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:59 5296 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:59 5306 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:59 5306 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:20:59 5326 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:20:59 5326 [LEMMA] - UPLOADFILE +19:20:59 5336 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:20:59 5336 [INFO] - Key: EN#KITTING | Val: Kitting +19:20:59 5346 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:20:59 5356 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:20:59 5356 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:20:59 5366 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:00 0471 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:00 0471 [LEMMA] - NESTINGRUNTIME +19:21:00 0481 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:00 0491 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:00 0501 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:00 0501 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:00 0511 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:00 0521 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:00 0521 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:00 0531 [LEMMA] - WORKINGESTTIME +19:21:00 0541 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:00 0541 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:00 0551 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:00 0561 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:00 0561 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:00 0571 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:00 0591 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:00 0591 [LEMMA] - UPLOADFILE +19:21:00 0601 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:00 0621 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:00 0621 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:00 0631 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:00 0641 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:00 0651 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:00 5743 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:00 5753 [LEMMA] - NESTINGRUNTIME +19:21:00 5763 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:00 5773 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:00 5783 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:00 5783 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:00 5793 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:00 5803 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:00 5803 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:00 5813 [LEMMA] - WORKINGESTTIME +19:21:00 5823 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:00 5823 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:00 5833 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:00 5833 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:00 5843 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:00 5853 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:00 5863 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:00 5863 [LEMMA] - UPLOADFILE +19:21:00 5873 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:00 5883 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:00 5883 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:00 5893 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:00 5903 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:00 5903 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:01 1004 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:01 1014 [LEMMA] - NESTINGRUNTIME +19:21:01 1014 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:01 1024 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:01 1034 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:01 1034 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:01 1044 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:01 1054 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:01 1064 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:01 1064 [LEMMA] - WORKINGESTTIME +19:21:01 1074 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:01 1074 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:01 1084 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:01 1094 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:01 1094 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:01 1104 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:01 1114 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:01 1124 [LEMMA] - UPLOADFILE +19:21:01 1134 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:01 1134 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:01 1144 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:01 1154 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:01 1154 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:01 1164 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:01 6256 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:01 6266 [LEMMA] - NESTINGRUNTIME +19:21:01 6266 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:01 6276 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:01 6286 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:01 6296 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:01 6306 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:01 6316 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:01 6316 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:01 6326 [LEMMA] - WORKINGESTTIME +19:21:01 6336 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:01 6336 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:01 6346 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:01 6346 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:01 6356 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:01 6366 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:01 6376 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:01 6376 [LEMMA] - UPLOADFILE +19:21:01 6386 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:01 6396 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:01 6406 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:01 6406 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:01 6416 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:01 6426 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:02 1520 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:02 1530 [LEMMA] - NESTINGRUNTIME +19:21:02 1530 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:02 1540 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:02 1550 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:02 1550 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:02 1560 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:02 1560 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:02 1570 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:02 1580 [LEMMA] - WORKINGESTTIME +19:21:02 1590 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:02 1590 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:02 1600 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:02 1600 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:02 1610 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:02 1620 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:02 1630 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:02 1640 [LEMMA] - UPLOADFILE +19:21:02 1640 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:02 1650 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:02 1660 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:02 1670 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:02 1670 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:02 1680 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:02 6771 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:02 6781 [LEMMA] - NESTINGRUNTIME +19:21:02 6791 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:02 6791 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:02 6801 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:02 6811 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:02 6821 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:02 6821 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:02 6831 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:02 6841 [LEMMA] - WORKINGESTTIME +19:21:02 6841 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:02 6851 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:02 6861 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:02 6861 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:02 6871 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:02 6871 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:02 6881 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:02 6891 [LEMMA] - UPLOADFILE +19:21:02 6901 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:02 6901 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:02 6911 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:02 6921 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:02 6921 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:02 6931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:03 2030 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:03 2040 [LEMMA] - NESTINGRUNTIME +19:21:03 2040 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:03 2050 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:03 2060 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:03 2070 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:03 2070 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:03 2080 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:03 2100 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:03 2100 [LEMMA] - WORKINGESTTIME +19:21:03 2110 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:03 2120 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:03 2130 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:03 2140 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:03 2140 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:03 2150 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:03 2160 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:03 2170 [LEMMA] - UPLOADFILE +19:21:03 2170 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:03 2180 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:03 2190 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:03 2190 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:03 2200 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:03 2210 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:03 7329 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:03 7329 [LEMMA] - NESTINGRUNTIME +19:21:03 7339 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:03 7349 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:03 7349 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:03 7359 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:03 7369 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:03 7369 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:03 7379 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:03 7389 [LEMMA] - WORKINGESTTIME +19:21:03 7389 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:03 7399 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:03 7399 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:03 7409 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:03 7419 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:03 7419 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:03 7439 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:03 7449 [LEMMA] - UPLOADFILE +19:21:03 7449 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:03 7459 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:03 7469 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:03 7469 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:03 7479 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:03 7479 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:04 2561 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:04 2571 [LEMMA] - NESTINGRUNTIME +19:21:04 2581 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:04 2591 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:04 2601 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:04 2611 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:04 2621 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:04 2631 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:04 2631 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:04 2641 [LEMMA] - WORKINGESTTIME +19:21:04 2641 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:04 2651 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:04 2661 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:04 2661 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:04 2671 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:04 2681 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:04 2691 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:04 2701 [LEMMA] - UPLOADFILE +19:21:04 2701 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:04 2711 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:04 2711 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:04 2721 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:04 2731 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:04 2731 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:04 7826 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:04 7826 [LEMMA] - NESTINGRUNTIME +19:21:04 7836 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:04 7846 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:04 7856 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:04 7866 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:04 7876 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:04 7876 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:04 7886 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:04 7896 [LEMMA] - WORKINGESTTIME +19:21:04 7896 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:04 7906 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:04 7906 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:04 7916 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:04 7926 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:04 7936 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:04 7946 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:04 7956 [LEMMA] - UPLOADFILE +19:21:04 7966 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:04 7976 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:04 7986 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:04 7986 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:04 7996 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:04 8006 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:05 3093 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:05 3093 [LEMMA] - NESTINGRUNTIME +19:21:05 3103 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:05 3113 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:05 3123 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:05 3133 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:05 3143 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:05 3143 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:05 3153 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:05 3163 [LEMMA] - WORKINGESTTIME +19:21:05 3173 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:05 3173 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:05 3183 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:05 3193 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:05 3193 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:05 3203 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:05 3213 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:05 3223 [LEMMA] - UPLOADFILE +19:21:05 3223 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:05 3233 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:05 3243 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:05 3243 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:05 3253 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:05 3263 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:05 8364 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:05 8374 [LEMMA] - NESTINGRUNTIME +19:21:05 8384 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:05 8384 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:05 8394 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:05 8404 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:05 8404 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:05 8414 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:05 8414 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:05 8424 [LEMMA] - WORKINGESTTIME +19:21:05 8434 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:05 8444 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:05 8454 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:05 8454 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:05 8464 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:05 8474 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:05 8484 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:05 8484 [LEMMA] - UPLOADFILE +19:21:05 8494 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:05 8504 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:05 8504 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:05 8514 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:05 8514 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:05 8524 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:06 3618 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:06 3628 [LEMMA] - NESTINGRUNTIME +19:21:06 3638 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:06 3638 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:06 3648 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:06 3658 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:06 3658 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:06 3668 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:06 3678 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:06 3678 [LEMMA] - WORKINGESTTIME +19:21:06 3688 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:06 3698 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:06 3698 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:06 3708 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:06 3718 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:06 3728 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:06 3738 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:06 3748 [LEMMA] - UPLOADFILE +19:21:06 3748 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:06 3768 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:06 3768 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:06 3778 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:06 3788 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:06 3788 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:06 8881 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:06 8891 [LEMMA] - NESTINGRUNTIME +19:21:06 8901 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:06 8901 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:06 8911 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:06 8921 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:06 8921 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:06 8931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:06 8941 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:06 8951 [LEMMA] - WORKINGESTTIME +19:21:06 8951 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:06 8961 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:06 8971 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:06 8971 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:06 8981 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:06 8981 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:06 8991 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:06 9001 [LEMMA] - UPLOADFILE +19:21:06 9011 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:06 9011 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:06 9021 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:06 9021 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:06 9031 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:06 9041 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:07 4136 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:07 4146 [LEMMA] - NESTINGRUNTIME +19:21:07 4146 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:07 4156 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:07 4166 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:07 4166 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:07 4176 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:07 4186 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:07 4186 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:07 4196 [LEMMA] - WORKINGESTTIME +19:21:07 4206 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:07 4216 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:07 4216 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:07 4226 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:07 4236 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:07 4236 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:07 4256 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:07 4256 [LEMMA] - UPLOADFILE +19:21:07 4266 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:07 4276 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:07 4286 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:07 4296 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:07 4296 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:07 4306 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:07 9406 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:07 9416 [LEMMA] - NESTINGRUNTIME +19:21:07 9426 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:07 9436 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:07 9446 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:07 9446 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:07 9456 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:07 9466 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:07 9476 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:07 9476 [LEMMA] - WORKINGESTTIME +19:21:07 9486 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:07 9486 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:07 9496 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:07 9496 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:07 9506 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:07 9516 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:07 9526 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:07 9526 [LEMMA] - UPLOADFILE +19:21:07 9536 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:07 9546 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:07 9546 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:07 9556 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:07 9556 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:07 9566 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:08 4658 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:08 4668 [LEMMA] - NESTINGRUNTIME +19:21:08 4668 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:08 4678 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:08 4688 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:08 4698 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:08 4698 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:08 4708 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:08 4718 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:08 4728 [LEMMA] - WORKINGESTTIME +19:21:08 4728 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:08 4738 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:08 4748 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:08 4748 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:08 4758 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:08 4768 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:08 4778 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:08 4788 [LEMMA] - UPLOADFILE +19:21:08 4798 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:08 4808 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:08 4818 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:08 4828 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:08 4828 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:08 4838 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:08 9931 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:08 9941 [LEMMA] - NESTINGRUNTIME +19:21:08 9950 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:08 9961 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:08 9971 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:08 9981 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:08 9981 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:08 9991 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:09 0001 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:09 0011 [LEMMA] - WORKINGESTTIME +19:21:09 0011 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:09 0021 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:09 0021 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:09 0031 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:09 0041 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:09 0041 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:09 0051 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:09 0061 [LEMMA] - UPLOADFILE +19:21:09 0061 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:09 0071 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:09 0081 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:09 0081 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:09 0091 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:09 0101 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:09 5194 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:09 5194 [LEMMA] - NESTINGRUNTIME +19:21:09 5203 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:09 5213 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:09 5223 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:09 5223 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:09 5233 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:09 5243 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:09 5243 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:09 5253 [LEMMA] - WORKINGESTTIME +19:21:09 5263 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:09 5273 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:09 5283 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:09 5293 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:09 5293 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:09 5303 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:09 5313 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:09 5323 [LEMMA] - UPLOADFILE +19:21:09 5333 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:09 5333 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:09 5343 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:09 5353 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:09 5353 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:09 5363 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:10 0470 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:10 0480 [LEMMA] - NESTINGRUNTIME +19:21:10 0490 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:10 0490 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:10 0500 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:10 0510 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:10 0510 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:10 0520 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:10 0530 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:10 0540 [LEMMA] - WORKINGESTTIME +19:21:10 0540 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:10 0550 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:10 0560 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:10 0570 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:10 0570 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:10 0580 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:10 0600 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:10 0610 [LEMMA] - UPLOADFILE +19:21:10 0610 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:10 0620 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:10 0630 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:10 0640 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:10 0650 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:10 0660 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:10 5752 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:10 5762 [LEMMA] - NESTINGRUNTIME +19:21:10 5762 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:10 5772 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:10 5782 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:10 5792 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:10 5802 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:10 5812 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:10 5822 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:10 5832 [LEMMA] - WORKINGESTTIME +19:21:10 5832 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:10 5842 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:10 5852 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:10 5852 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:10 5862 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:10 5872 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:10 5882 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:10 5882 [LEMMA] - UPLOADFILE +19:21:10 5892 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:10 5902 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:10 5902 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:10 5912 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:10 5922 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:10 5922 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:11 1023 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:11 1023 [LEMMA] - NESTINGRUNTIME +19:21:11 1033 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:11 1043 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:11 1053 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:11 1053 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:11 1063 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:11 1073 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:11 1073 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:11 1083 [LEMMA] - WORKINGESTTIME +19:21:11 1093 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:11 1093 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:11 1103 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:11 1113 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:11 1123 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:11 1123 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:11 1133 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:11 1143 [LEMMA] - UPLOADFILE +19:21:11 1143 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:11 1153 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:11 1163 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:11 1163 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:11 1173 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:11 1173 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:11 6275 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:11 6285 [LEMMA] - NESTINGRUNTIME +19:21:11 6295 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:11 6305 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:11 6315 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:11 6315 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:11 6325 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:11 6335 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:11 6345 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:11 6345 [LEMMA] - WORKINGESTTIME +19:21:11 6355 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:11 6355 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:11 6365 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:11 6375 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:11 6375 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:11 6385 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:11 6395 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:11 6395 [LEMMA] - UPLOADFILE +19:21:11 6405 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:11 6415 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:11 6425 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:11 6435 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:11 6445 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:11 6455 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:12 1541 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:12 1551 [LEMMA] - NESTINGRUNTIME +19:21:12 1561 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:12 1561 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:12 1571 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:12 1571 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:12 1581 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:12 1591 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:12 1591 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:12 1601 [LEMMA] - WORKINGESTTIME +19:21:12 1611 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:12 1611 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:12 1621 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:12 1621 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:12 1631 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:12 1641 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:12 1641 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:12 1651 [LEMMA] - UPLOADFILE +19:21:12 1661 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:12 1661 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:12 1671 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:12 1671 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:12 1681 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:12 1681 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:12 6818 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:12 6818 [LEMMA] - NESTINGRUNTIME +19:21:12 6828 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:12 6838 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:12 6848 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:12 6858 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:12 6858 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:12 6869 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:12 6878 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:12 6889 [LEMMA] - WORKINGESTTIME +19:21:12 6889 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:12 6899 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:12 6909 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:12 6919 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:12 6929 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:12 6939 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:12 6949 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:12 6959 [LEMMA] - UPLOADFILE +19:21:12 6969 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:12 6979 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:12 6989 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:12 6989 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:12 6999 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:12 7009 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:13 2105 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:13 2115 [LEMMA] - NESTINGRUNTIME +19:21:13 2115 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:13 2125 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:13 2135 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:13 2135 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:13 2145 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:13 2155 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:13 2155 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:13 2165 [LEMMA] - WORKINGESTTIME +19:21:13 2175 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:13 2175 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:13 2185 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:13 2185 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:13 2195 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:13 2205 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:13 2215 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:13 2215 [LEMMA] - UPLOADFILE +19:21:13 2225 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:13 2235 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:13 2235 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:13 2245 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:13 2255 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:13 2255 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:13 7364 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:13 7374 [LEMMA] - NESTINGRUNTIME +19:21:13 7384 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:13 7384 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:13 7395 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:13 7405 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:13 7405 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:13 7415 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:13 7425 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:13 7435 [LEMMA] - WORKINGESTTIME +19:21:13 7445 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:13 7455 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:13 7465 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:13 7475 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:13 7485 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:13 7485 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:13 7495 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:13 7505 [LEMMA] - UPLOADFILE +19:21:13 7515 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:13 7515 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:13 7525 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:13 7535 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:13 7545 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:13 7545 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:14 2657 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:14 2667 [LEMMA] - NESTINGRUNTIME +19:21:14 2677 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:14 2677 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:14 2687 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:14 2687 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:14 2697 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:14 2697 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:14 2707 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:14 2717 [LEMMA] - WORKINGESTTIME +19:21:14 2717 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:14 2727 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:14 2737 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:14 2737 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:14 2747 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:14 2757 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:14 2767 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:14 2777 [LEMMA] - UPLOADFILE +19:21:14 2777 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:14 2787 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:14 2797 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:14 2807 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:14 2807 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:14 2817 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:14 7918 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:14 7918 [LEMMA] - NESTINGRUNTIME +19:21:14 7928 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:14 7938 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:14 7948 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:14 7948 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:14 7958 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:14 7968 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:14 7978 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:14 7988 [LEMMA] - WORKINGESTTIME +19:21:14 7988 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:14 7998 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:14 8008 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:14 8008 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:14 8018 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:14 8028 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:14 8038 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:14 8048 [LEMMA] - UPLOADFILE +19:21:14 8048 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:14 8058 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:14 8058 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:14 8068 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:14 8078 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:14 8088 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:15 3179 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:15 3190 [LEMMA] - NESTINGRUNTIME +19:21:15 3199 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:15 3199 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:15 3209 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:15 3219 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:15 3219 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:15 3229 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:15 3239 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:15 3239 [LEMMA] - WORKINGESTTIME +19:21:15 3249 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:15 3249 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:15 3259 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:15 3269 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:15 3279 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:15 3279 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:15 3289 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:15 3299 [LEMMA] - UPLOADFILE +19:21:15 3309 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:15 3309 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:15 3319 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:15 3329 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:15 3329 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:15 3339 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:15 8431 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:15 8441 [LEMMA] - NESTINGRUNTIME +19:21:15 8451 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:15 8451 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:15 8461 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:15 8471 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:15 8471 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:15 8481 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:15 8491 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:15 8491 [LEMMA] - WORKINGESTTIME +19:21:15 8501 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:15 8501 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:15 8511 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:15 8521 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:15 8521 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:15 8531 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:15 8551 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:15 8551 [LEMMA] - UPLOADFILE +19:21:15 8561 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:15 8571 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:15 8571 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:15 8581 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:15 8591 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:15 8591 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:16 3679 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:16 3689 [LEMMA] - NESTINGRUNTIME +19:21:16 3699 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:16 3709 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:16 3709 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:16 3719 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:16 3719 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:16 3729 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:16 3739 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:16 3749 [LEMMA] - WORKINGESTTIME +19:21:16 3749 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:16 3759 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:16 3759 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:16 3769 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:16 3779 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:16 3789 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:16 3799 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:16 3799 [LEMMA] - UPLOADFILE +19:21:16 3809 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:16 3819 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:16 3819 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:16 3829 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:16 3829 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:16 3839 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:16 8941 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:16 8951 [LEMMA] - NESTINGRUNTIME +19:21:16 8961 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:16 8961 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:16 8971 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:16 8981 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:16 8981 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:16 8991 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:16 9001 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:16 9011 [LEMMA] - WORKINGESTTIME +19:21:16 9011 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:16 9021 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:16 9021 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:16 9031 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:16 9041 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:16 9041 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:16 9051 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:16 9061 [LEMMA] - UPLOADFILE +19:21:16 9071 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:16 9081 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:16 9081 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:16 9091 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:16 9101 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:16 9111 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:17 4196 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:17 4206 [LEMMA] - NESTINGRUNTIME +19:21:17 4216 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:17 4226 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:17 4226 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:17 4236 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:17 4246 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:17 4246 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:17 4256 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:17 4266 [LEMMA] - WORKINGESTTIME +19:21:17 4266 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:17 4276 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:17 4286 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:17 4296 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:17 4306 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:17 4306 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:17 4316 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:17 4326 [LEMMA] - UPLOADFILE +19:21:17 4336 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:17 4336 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:17 4346 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:17 4346 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:17 4356 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:17 4366 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:17 9469 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:17 9469 [LEMMA] - NESTINGRUNTIME +19:21:17 9479 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:17 9489 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:17 9499 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:17 9499 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:17 9509 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:17 9519 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:17 9519 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:17 9529 [LEMMA] - WORKINGESTTIME +19:21:17 9539 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:17 9539 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:17 9549 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:17 9549 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:17 9559 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:17 9569 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:17 9579 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:17 9579 [LEMMA] - UPLOADFILE +19:21:17 9589 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:17 9599 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:17 9609 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:17 9609 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:17 9619 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:17 9629 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:18 4716 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:18 4726 [LEMMA] - NESTINGRUNTIME +19:21:18 4736 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:18 4736 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:18 4746 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:18 4746 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:18 4756 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:18 4766 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:18 4776 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:18 4786 [LEMMA] - WORKINGESTTIME +19:21:18 4786 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:18 4796 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:18 4806 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:18 4806 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:18 4816 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:18 4826 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:18 4836 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:18 4836 [LEMMA] - UPLOADFILE +19:21:18 4846 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:18 4856 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:18 4856 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:18 4866 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:18 4866 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:18 4876 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:18 9989 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:18 9999 [LEMMA] - NESTINGRUNTIME +19:21:19 0009 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:19 0009 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:19 0019 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:19 0029 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:19 0039 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:19 0039 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:19 0049 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:19 0059 [LEMMA] - WORKINGESTTIME +19:21:19 0069 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:19 0079 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:19 0089 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:19 0089 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:19 0099 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:19 0109 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:19 0119 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:19 0129 [LEMMA] - UPLOADFILE +19:21:19 0129 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:19 0139 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:19 0149 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:19 0149 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:19 0159 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:19 0169 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:19 5267 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:19 5267 [LEMMA] - NESTINGRUNTIME +19:21:19 5277 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:19 5287 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:19 5287 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:19 5297 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:19 5307 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:19 5307 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:19 5317 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:19 5327 [LEMMA] - WORKINGESTTIME +19:21:19 5327 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:19 5337 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:19 5347 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:19 5347 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:19 5357 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:19 5357 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:19 5377 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:19 5377 [LEMMA] - UPLOADFILE +19:21:19 5387 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:19 5387 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:19 5397 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:19 5407 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:19 5407 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:19 5417 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:20 0620 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:20 0630 [LEMMA] - NESTINGRUNTIME +19:21:20 0640 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:20 0650 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:20 0650 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:20 0660 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:20 0660 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:20 0670 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:20 0680 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:20 0680 [LEMMA] - WORKINGESTTIME +19:21:20 0690 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:20 0700 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:20 0700 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:20 0710 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:20 0710 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:20 0720 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:20 0730 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:20 0740 [LEMMA] - UPLOADFILE +19:21:20 0740 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:20 0750 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:20 0760 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:20 0760 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:20 0770 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:20 0780 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:20 5858 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:20 5868 [LEMMA] - NESTINGRUNTIME +19:21:20 5878 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:20 5888 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:20 5888 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:20 5898 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:20 5898 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:20 5908 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:20 5918 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:20 5918 [LEMMA] - WORKINGESTTIME +19:21:20 5928 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:20 5938 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:20 5938 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:20 5948 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:20 5958 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:20 5958 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:20 5968 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:20 5978 [LEMMA] - UPLOADFILE +19:21:20 5988 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:20 5988 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:20 5998 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:20 6008 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:20 6008 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:20 6018 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:21 1109 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:21 1119 [LEMMA] - NESTINGRUNTIME +19:21:21 1129 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:21 1129 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:21 1139 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:21 1149 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:21 1159 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:21 1159 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:21 1169 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:21 1179 [LEMMA] - WORKINGESTTIME +19:21:21 1179 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:21 1189 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:21 1189 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:21 1199 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:21 1209 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:21 1209 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:21 1219 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:21 1229 [LEMMA] - UPLOADFILE +19:21:21 1229 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:21 1239 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:21 1249 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:21 1259 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:21 1269 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:21 1269 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:21 6363 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:21 6363 [LEMMA] - NESTINGRUNTIME +19:21:21 6373 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:21 6383 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:21 6393 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:21 6393 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:21 6403 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:21 6403 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:21 6413 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:21 6413 [LEMMA] - WORKINGESTTIME +19:21:21 6423 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:21 6433 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:21 6433 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:21 6443 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:21 6443 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:21 6453 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:21 6463 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:21 6473 [LEMMA] - UPLOADFILE +19:21:21 6473 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:21 6483 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:21 6483 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:21 6493 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:21 6493 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:21 6503 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:22 1588 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:22 1598 [LEMMA] - NESTINGRUNTIME +19:21:22 1598 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:22 1608 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:22 1618 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:22 1618 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:22 1628 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:22 1638 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:22 1638 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:22 1648 [LEMMA] - WORKINGESTTIME +19:21:22 1658 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:22 1658 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:22 1668 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:22 1678 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:22 1678 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:22 1688 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:22 1698 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:22 1708 [LEMMA] - UPLOADFILE +19:21:22 1708 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:22 1718 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:22 1728 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:22 1728 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:22 1738 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:22 1748 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:22 6830 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:22 6840 [LEMMA] - NESTINGRUNTIME +19:21:22 6850 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:22 6850 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:22 6860 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:22 6870 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:22 6870 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:22 6880 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:22 6890 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:22 6890 [LEMMA] - WORKINGESTTIME +19:21:22 6900 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:22 6900 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:22 6910 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:22 6920 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:22 6920 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:22 6930 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:22 6940 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:22 6940 [LEMMA] - UPLOADFILE +19:21:22 6950 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:22 6960 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:22 6970 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:22 6980 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:22 6990 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:22 6990 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:23 2093 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:23 2103 [LEMMA] - NESTINGRUNTIME +19:21:23 2113 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:23 2113 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:23 2123 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:23 2133 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:23 2133 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:23 2143 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:23 2153 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:23 2163 [LEMMA] - WORKINGESTTIME +19:21:23 2173 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:23 2173 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:23 2183 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:23 2183 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:23 2193 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:23 2203 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:23 2213 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:23 2213 [LEMMA] - UPLOADFILE +19:21:23 2223 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:23 2233 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:23 2233 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:23 2243 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:23 2243 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:23 2253 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:24 1437 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:24 1447 [LEMMA] - NESTINGRUNTIME +19:21:24 1457 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:24 1467 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:24 1477 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:24 1487 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:24 1487 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:24 1497 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:24 1507 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:24 1517 [LEMMA] - WORKINGESTTIME +19:21:24 1517 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:24 1527 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:24 1537 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:24 1547 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:24 1557 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:24 1557 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:24 1567 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:24 1577 [LEMMA] - UPLOADFILE +19:21:24 1587 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:24 1587 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:24 1597 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:24 1597 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:24 1607 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:24 1617 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:25 1431 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:25 1441 [LEMMA] - NESTINGRUNTIME +19:21:25 1451 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:25 1451 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:25 1461 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:25 1471 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:25 1471 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:25 1481 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:25 1481 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:25 1491 [LEMMA] - WORKINGESTTIME +19:21:25 1501 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:25 1501 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:25 1511 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:25 1521 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:25 1521 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:25 1531 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:25 1541 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:25 1541 [LEMMA] - UPLOADFILE +19:21:25 1551 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:25 1561 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:25 1561 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:25 1571 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:25 1581 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:25 1591 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:26 1435 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:26 1445 [LEMMA] - NESTINGRUNTIME +19:21:26 1445 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:26 1455 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:26 1465 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:26 1475 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:26 1475 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:26 1485 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:26 1495 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:26 1505 [LEMMA] - WORKINGESTTIME +19:21:26 1505 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:26 1515 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:26 1515 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:26 1525 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:26 1535 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:26 1535 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:26 1545 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:26 1555 [LEMMA] - UPLOADFILE +19:21:26 1565 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:26 1565 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:26 1575 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:26 1585 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:26 1585 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:26 1595 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:27 1434 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:27 1445 [LEMMA] - NESTINGRUNTIME +19:21:27 1455 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:27 1464 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:27 1474 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:27 1484 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:27 1484 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:27 1495 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:27 1505 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:27 1515 [LEMMA] - WORKINGESTTIME +19:21:27 1515 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:27 1525 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:27 1535 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:27 1535 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:27 1545 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:27 1555 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:27 1565 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:27 1575 [LEMMA] - UPLOADFILE +19:21:27 1585 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:27 1585 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:27 1595 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:27 1605 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:27 1605 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:27 1615 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:28 1439 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:28 1459 [LEMMA] - NESTINGRUNTIME +19:21:28 1459 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:28 1469 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:28 1479 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:28 1479 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:28 1489 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:28 1499 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:28 1509 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:28 1519 [LEMMA] - WORKINGESTTIME +19:21:28 1519 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:28 1529 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:28 1539 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:28 1549 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:28 1559 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:28 1569 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:28 1579 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:28 1589 [LEMMA] - UPLOADFILE +19:21:28 1599 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:28 1599 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:28 1609 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:28 1619 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:28 1629 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:28 1639 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:29 1441 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:29 1451 [LEMMA] - NESTINGRUNTIME +19:21:29 1451 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:29 1461 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:29 1471 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:29 1471 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:29 1481 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:29 1491 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:29 1491 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:29 1501 [LEMMA] - WORKINGESTTIME +19:21:29 1511 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:29 1511 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:29 1521 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:29 1521 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:29 1531 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:29 1541 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:29 1551 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:29 1551 [LEMMA] - UPLOADFILE +19:21:29 1561 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:29 1561 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:29 1571 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:29 1581 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:29 1581 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:29 1591 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:30 1434 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:30 1444 [LEMMA] - NESTINGRUNTIME +19:21:30 1454 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:30 1454 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:30 1464 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:30 1474 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:30 1484 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:30 1484 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:30 1494 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:30 1504 [LEMMA] - WORKINGESTTIME +19:21:30 1504 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:30 1514 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:30 1524 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:30 1524 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:30 1534 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:30 1544 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:30 1554 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:30 1554 [LEMMA] - UPLOADFILE +19:21:30 1564 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:30 1574 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:30 1574 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:30 1584 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:30 1594 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:30 1594 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:31 1436 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:31 1446 [LEMMA] - NESTINGRUNTIME +19:21:31 1446 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:31 1456 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:31 1466 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:31 1476 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:31 1486 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:31 1486 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:31 1496 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:31 1506 [LEMMA] - WORKINGESTTIME +19:21:31 1506 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:31 1516 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:31 1516 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:31 1526 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:31 1536 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:31 1536 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:31 1546 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:31 1556 [LEMMA] - UPLOADFILE +19:21:31 1556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:31 1566 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:31 1566 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:31 1576 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:31 1586 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:31 1586 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:32 1428 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:32 1438 [LEMMA] - NESTINGRUNTIME +19:21:32 1448 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:32 1448 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:32 1458 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:32 1468 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:32 1478 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:32 1478 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:32 1488 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:32 1498 [LEMMA] - WORKINGESTTIME +19:21:32 1498 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:32 1508 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:32 1518 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:32 1518 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:32 1528 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:32 1538 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:32 1548 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:32 1548 [LEMMA] - UPLOADFILE +19:21:32 1558 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:32 1568 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:32 1568 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:32 1578 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:32 1588 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:32 1588 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:33 1440 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:33 1450 [LEMMA] - NESTINGRUNTIME +19:21:33 1460 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:33 1470 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:33 1480 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:33 1490 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:33 1490 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:33 1500 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:33 1510 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:33 1520 [LEMMA] - WORKINGESTTIME +19:21:33 1520 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:33 1530 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:33 1540 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:33 1540 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:33 1550 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:33 1560 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:33 1570 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:33 1580 [LEMMA] - UPLOADFILE +19:21:33 1580 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:33 1590 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:33 1600 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:33 1610 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:33 1610 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:33 1620 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:34 1433 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:34 1443 [LEMMA] - NESTINGRUNTIME +19:21:34 1443 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:34 1453 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:34 1463 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:34 1473 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:34 1483 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:34 1483 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:34 1493 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:34 1503 [LEMMA] - WORKINGESTTIME +19:21:34 1513 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:34 1523 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:34 1523 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:34 1533 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:34 1543 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:34 1553 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:34 1563 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:34 1563 [LEMMA] - UPLOADFILE +19:21:34 1573 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:34 1583 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:34 1593 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:34 1593 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:34 1603 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:34 1613 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:35 1442 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:35 1452 [LEMMA] - NESTINGRUNTIME +19:21:35 1462 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:35 1472 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:35 1472 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:35 1482 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:35 1482 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:35 1492 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:35 1502 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:35 1512 [LEMMA] - WORKINGESTTIME +19:21:35 1522 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:35 1522 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:35 1532 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:35 1542 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:35 1552 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:35 1552 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:35 1562 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:35 1572 [LEMMA] - UPLOADFILE +19:21:35 1582 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:35 1582 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:35 1592 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:35 1602 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:35 1612 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:35 1612 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:36 1435 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:36 1445 [LEMMA] - NESTINGRUNTIME +19:21:36 1455 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:36 1465 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:36 1475 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:36 1475 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:36 1485 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:36 1495 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:36 1495 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:36 1505 [LEMMA] - WORKINGESTTIME +19:21:36 1515 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:36 1515 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:36 1525 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:36 1525 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:36 1535 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:36 1545 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:36 1555 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:36 1555 [LEMMA] - UPLOADFILE +19:21:36 1565 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:36 1575 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:36 1575 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:36 1585 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:36 1585 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:36 1595 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:37 1432 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:37 1442 [LEMMA] - NESTINGRUNTIME +19:21:37 1452 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:37 1452 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:37 1462 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:37 1472 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:37 1482 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:37 1482 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:37 1492 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:37 1502 [LEMMA] - WORKINGESTTIME +19:21:37 1502 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:37 1512 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:37 1522 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:37 1522 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:37 1532 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:37 1542 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:37 1542 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:37 1552 [LEMMA] - UPLOADFILE +19:21:37 1562 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:37 1562 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:37 1572 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:37 1572 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:37 1582 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:37 1592 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:38 1436 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:38 1446 [LEMMA] - NESTINGRUNTIME +19:21:38 1456 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:38 1466 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:38 1466 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:38 1476 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:38 1486 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:38 1486 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:38 1496 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:38 1506 [LEMMA] - WORKINGESTTIME +19:21:38 1506 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:38 1516 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:38 1516 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:38 1526 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:38 1526 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:38 1536 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:38 1546 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:38 1556 [LEMMA] - UPLOADFILE +19:21:38 1556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:38 1566 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:38 1576 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:38 1576 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:38 1586 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:38 1586 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:39 1432 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:39 1442 [LEMMA] - NESTINGRUNTIME +19:21:39 1452 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:39 1462 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:39 1472 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:39 1472 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:39 1482 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:39 1482 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:39 1492 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:39 1502 [LEMMA] - WORKINGESTTIME +19:21:39 1502 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:39 1512 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:39 1522 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:39 1522 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:39 1532 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:39 1542 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:39 1552 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:39 1552 [LEMMA] - UPLOADFILE +19:21:39 1562 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:39 1562 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:39 1572 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:39 1582 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:39 1582 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:39 1592 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:40 1436 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:40 1446 [LEMMA] - NESTINGRUNTIME +19:21:40 1456 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:40 1466 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:40 1466 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:40 1476 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:40 1486 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:40 1486 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:40 1496 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:40 1506 [LEMMA] - WORKINGESTTIME +19:21:40 1506 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:40 1516 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:40 1526 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:40 1526 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:40 1536 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:40 1546 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:40 1556 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:40 1556 [LEMMA] - UPLOADFILE +19:21:40 1566 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:40 1576 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:40 1576 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:40 1586 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:40 1586 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:40 1596 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:41 1440 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:41 1450 [LEMMA] - NESTINGRUNTIME +19:21:41 1470 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:41 1480 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:41 1480 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:41 1490 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:41 1500 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:41 1500 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:41 1510 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:41 1520 [LEMMA] - WORKINGESTTIME +19:21:41 1520 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:41 1530 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:41 1540 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:41 1540 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:41 1550 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:41 1550 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:41 1560 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:41 1570 [LEMMA] - UPLOADFILE +19:21:41 1580 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:41 1580 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:41 1590 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:41 1590 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:41 1600 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:41 1610 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:42 1437 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:42 1447 [LEMMA] - NESTINGRUNTIME +19:21:42 1457 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:42 1467 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:42 1467 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:42 1477 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:42 1487 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:42 1487 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:42 1497 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:42 1507 [LEMMA] - WORKINGESTTIME +19:21:42 1517 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:42 1517 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:42 1527 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:42 1527 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:42 1537 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:42 1547 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:42 1557 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:42 1557 [LEMMA] - UPLOADFILE +19:21:42 1567 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:42 1577 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:42 1577 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:42 1587 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:42 1597 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:42 1597 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:43 1456 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:43 1466 [LEMMA] - NESTINGRUNTIME +19:21:43 1466 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:43 1476 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:43 1486 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:43 1496 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:43 1496 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:43 1506 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:43 1516 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:43 1516 [LEMMA] - WORKINGESTTIME +19:21:43 1526 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:43 1536 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:43 1536 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:43 1546 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:43 1556 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:43 1556 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:43 1566 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:43 1576 [LEMMA] - UPLOADFILE +19:21:43 1586 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:43 1586 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:43 1596 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:43 1606 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:43 1606 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:43 1616 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:44 1439 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:44 1449 [LEMMA] - NESTINGRUNTIME +19:21:44 1459 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:44 1469 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:44 1479 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:44 1489 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:44 1499 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:44 1499 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:44 1509 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:44 1519 [LEMMA] - WORKINGESTTIME +19:21:44 1529 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:44 1529 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:44 1539 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:44 1539 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:44 1549 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:44 1559 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:44 1569 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:44 1569 [LEMMA] - UPLOADFILE +19:21:44 1579 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:44 1579 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:44 1589 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:44 1599 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:44 1599 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:44 1609 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:45 1441 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:45 1451 [LEMMA] - NESTINGRUNTIME +19:21:45 1461 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:45 1471 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:45 1481 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:45 1481 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:45 1491 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:45 1501 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:45 1511 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:45 1521 [LEMMA] - WORKINGESTTIME +19:21:45 1521 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:45 1531 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:45 1541 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:45 1541 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:45 1551 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:45 1561 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:45 1571 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:45 1571 [LEMMA] - UPLOADFILE +19:21:45 1581 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:45 1591 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:45 1601 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:45 1611 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:45 1611 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:45 1621 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:46 1433 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:46 1443 [LEMMA] - NESTINGRUNTIME +19:21:46 1453 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:46 1463 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:46 1473 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:46 1483 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:46 1483 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:46 1493 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:46 1503 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:46 1513 [LEMMA] - WORKINGESTTIME +19:21:46 1523 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:46 1523 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:46 1533 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:46 1543 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:46 1543 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:46 1553 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:46 1563 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:46 1573 [LEMMA] - UPLOADFILE +19:21:46 1573 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:46 1583 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:46 1593 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:46 1593 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:46 1603 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:46 1613 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:47 1435 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:47 1435 [LEMMA] - NESTINGRUNTIME +19:21:47 1445 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:47 1455 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:47 1465 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:47 1465 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:47 1475 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:47 1485 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:47 1495 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:47 1505 [LEMMA] - WORKINGESTTIME +19:21:47 1515 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:47 1515 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:47 1525 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:47 1535 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:47 1535 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:47 1545 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:47 1555 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:47 1565 [LEMMA] - UPLOADFILE +19:21:47 1565 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:47 1575 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:47 1585 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:47 1585 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:47 1595 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:47 1605 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:48 1458 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:48 1468 [LEMMA] - NESTINGRUNTIME +19:21:48 1478 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:48 1488 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:48 1498 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:48 1498 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:48 1508 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:48 1518 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:48 1528 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:48 1538 [LEMMA] - WORKINGESTTIME +19:21:48 1548 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:48 1548 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:48 1558 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:48 1568 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:48 1568 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:48 1578 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:48 1588 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:48 1588 [LEMMA] - UPLOADFILE +19:21:48 1598 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:48 1608 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:48 1618 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:48 1628 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:48 1628 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:48 1638 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:49 1430 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:49 1440 [LEMMA] - NESTINGRUNTIME +19:21:49 1450 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:49 1460 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:49 1460 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:49 1470 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:49 1480 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:49 1490 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:49 1500 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:49 1500 [LEMMA] - WORKINGESTTIME +19:21:49 1510 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:49 1520 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:49 1520 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:49 1530 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:49 1540 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:49 1540 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:49 1550 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:49 1560 [LEMMA] - UPLOADFILE +19:21:49 1570 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:49 1570 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:49 1580 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:49 1580 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:49 1590 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:49 1600 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:50 1432 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:50 1442 [LEMMA] - NESTINGRUNTIME +19:21:50 1442 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:50 1452 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:50 1462 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:50 1472 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:50 1482 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:50 1492 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:50 1492 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:50 1502 [LEMMA] - WORKINGESTTIME +19:21:50 1512 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:50 1512 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:50 1522 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:50 1532 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:50 1532 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:50 1542 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:50 1552 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:50 1562 [LEMMA] - UPLOADFILE +19:21:50 1562 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:50 1572 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:50 1582 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:50 1582 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:50 1592 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:50 1592 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:51 1434 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:51 1444 [LEMMA] - NESTINGRUNTIME +19:21:51 1454 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:51 1464 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:51 1474 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:51 1484 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:51 1484 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:51 1494 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:51 1504 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:51 1504 [LEMMA] - WORKINGESTTIME +19:21:51 1514 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:51 1514 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:51 1524 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:51 1534 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:51 1534 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:51 1544 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:51 1554 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:51 1554 [LEMMA] - UPLOADFILE +19:21:51 1564 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:51 1574 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:51 1574 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:51 1584 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:51 1584 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:51 1594 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:52 1437 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:52 1447 [LEMMA] - NESTINGRUNTIME +19:21:52 1457 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:52 1457 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:52 1467 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:52 1477 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:52 1487 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:52 1487 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:52 1497 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:52 1507 [LEMMA] - WORKINGESTTIME +19:21:52 1517 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:52 1517 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:52 1527 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:52 1537 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:52 1537 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:52 1547 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:52 1557 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:52 1557 [LEMMA] - UPLOADFILE +19:21:52 1567 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:52 1577 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:52 1587 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:52 1587 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:52 1597 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:52 1607 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:53 1429 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:53 1439 [LEMMA] - NESTINGRUNTIME +19:21:53 1449 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:53 1449 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:53 1459 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:53 1469 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:53 1479 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:53 1489 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:53 1499 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:53 1509 [LEMMA] - WORKINGESTTIME +19:21:53 1509 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:53 1519 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:53 1529 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:53 1529 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:53 1539 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:53 1549 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:53 1559 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:53 1559 [LEMMA] - UPLOADFILE +19:21:53 1569 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:53 1579 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:53 1589 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:53 1589 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:53 1599 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:53 1599 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:53 6700 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:53 6710 [LEMMA] - NESTINGRUNTIME +19:21:53 6720 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:53 6720 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:53 6730 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:53 6740 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:53 6740 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:53 6750 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:53 6760 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:53 6770 [LEMMA] - WORKINGESTTIME +19:21:53 6770 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:53 6780 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:53 6790 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:53 6800 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:53 6800 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:53 6810 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:53 6830 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:53 6840 [LEMMA] - UPLOADFILE +19:21:53 6840 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:53 6850 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:53 6860 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:53 6870 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:53 6870 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:53 6880 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:54 1981 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:54 1991 [LEMMA] - NESTINGRUNTIME +19:21:54 2001 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:54 2001 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:54 2011 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:54 2021 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:54 2031 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:54 2031 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:54 2041 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:54 2051 [LEMMA] - WORKINGESTTIME +19:21:54 2061 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:54 2061 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:54 2071 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:54 2081 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:54 2081 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:54 2091 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:54 2101 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:54 2111 [LEMMA] - UPLOADFILE +19:21:54 2121 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:54 2131 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:54 2141 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:54 2141 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:54 2151 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:54 2161 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:54 7263 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:54 7263 [LEMMA] - NESTINGRUNTIME +19:21:54 7273 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:54 7283 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:54 7293 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:54 7303 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:54 7303 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:54 7313 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:54 7323 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:54 7333 [LEMMA] - WORKINGESTTIME +19:21:54 7343 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:54 7343 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:54 7353 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:54 7363 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:54 7363 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:54 7373 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:54 7383 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:54 7403 [LEMMA] - UPLOADFILE +19:21:54 7413 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:54 7423 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:54 7423 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:54 7433 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:54 7433 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:54 7443 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:55 2544 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:55 2555 [LEMMA] - NESTINGRUNTIME +19:21:55 2564 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:55 2564 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:55 2574 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:55 2584 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:55 2584 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:55 2594 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:55 2604 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:55 2604 [LEMMA] - WORKINGESTTIME +19:21:55 2614 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:55 2614 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:55 2624 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:55 2634 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:55 2644 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:55 2644 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:55 2654 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:55 2664 [LEMMA] - UPLOADFILE +19:21:55 2674 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:55 2674 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:55 2684 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:55 2694 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:55 2694 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:55 2704 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:55 7816 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:55 7826 [LEMMA] - NESTINGRUNTIME +19:21:55 7836 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:55 7836 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:55 7846 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:55 7856 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:55 7856 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:55 7866 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:55 7876 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:55 7886 [LEMMA] - WORKINGESTTIME +19:21:55 7886 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:55 7896 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:55 7906 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:55 7906 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:55 7916 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:55 7916 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:55 7936 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:55 7936 [LEMMA] - UPLOADFILE +19:21:55 7946 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:55 7956 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:55 7966 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:55 7976 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:55 7986 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:55 7996 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:56 3087 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:56 3097 [LEMMA] - NESTINGRUNTIME +19:21:56 3097 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:56 3107 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:56 3107 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:56 3117 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:56 3127 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:56 3127 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:56 3137 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:56 3147 [LEMMA] - WORKINGESTTIME +19:21:56 3157 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:56 3157 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:56 3167 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:56 3177 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:56 3177 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:56 3187 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:56 3197 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:56 3207 [LEMMA] - UPLOADFILE +19:21:56 3207 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:56 3217 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:56 3227 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:56 3227 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:56 3237 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:56 3247 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:56 8333 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:56 8343 [LEMMA] - NESTINGRUNTIME +19:21:56 8353 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:56 8363 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:56 8363 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:56 8373 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:56 8383 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:56 8383 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:56 8393 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:56 8403 [LEMMA] - WORKINGESTTIME +19:21:56 8413 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:56 8413 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:56 8423 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:56 8423 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:56 8433 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:56 8443 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:56 8453 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:56 8463 [LEMMA] - UPLOADFILE +19:21:56 8473 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:56 8483 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:56 8493 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:56 8493 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:56 8503 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:56 8513 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:57 3606 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:57 3617 [LEMMA] - NESTINGRUNTIME +19:21:57 3626 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:57 3626 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:57 3636 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:57 3646 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:57 3656 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:57 3656 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:57 3666 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:57 3676 [LEMMA] - WORKINGESTTIME +19:21:57 3676 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:57 3686 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:57 3686 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:57 3696 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:57 3706 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:57 3706 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:57 3716 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:57 3726 [LEMMA] - UPLOADFILE +19:21:57 3726 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:57 3736 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:57 3746 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:57 3746 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:57 3756 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:57 3756 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:57 8859 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:57 8869 [LEMMA] - NESTINGRUNTIME +19:21:57 8879 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:57 8879 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:57 8889 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:57 8899 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:57 8899 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:57 8909 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:57 8919 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:57 8929 [LEMMA] - WORKINGESTTIME +19:21:57 8929 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:57 8939 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:57 8949 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:57 8959 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:57 8969 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:57 8969 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:57 8989 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:57 8989 [LEMMA] - UPLOADFILE +19:21:57 8999 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:57 9009 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:57 9019 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:57 9019 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:57 9029 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:57 9039 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:58 4129 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:58 4139 [LEMMA] - NESTINGRUNTIME +19:21:58 4149 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:58 4149 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:58 4159 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:58 4159 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:58 4169 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:58 4179 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:58 4179 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:58 4189 [LEMMA] - WORKINGESTTIME +19:21:58 4199 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:58 4199 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:58 4209 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:58 4209 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:58 4219 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:58 4219 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:58 4229 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:58 4239 [LEMMA] - UPLOADFILE +19:21:58 4239 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:58 4249 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:58 4259 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:58 4259 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:58 4269 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:58 4279 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:58 9430 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:58 9440 [LEMMA] - NESTINGRUNTIME +19:21:58 9460 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:58 9470 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:58 9470 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:58 9480 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:58 9490 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:58 9500 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:58 9510 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:58 9520 [LEMMA] - WORKINGESTTIME +19:21:58 9540 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:58 9550 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:58 9570 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:58 9580 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:58 9590 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:58 9600 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:58 9620 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:58 9630 [LEMMA] - UPLOADFILE +19:21:58 9640 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:58 9650 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:58 9660 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:58 9670 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:58 9670 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:58 9680 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:59 4782 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:59 4792 [LEMMA] - NESTINGRUNTIME +19:21:59 4792 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:21:59 4802 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:59 4812 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:59 4822 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:59 4822 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:59 4832 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:59 4842 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:59 4842 [LEMMA] - WORKINGESTTIME +19:21:59 4852 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:21:59 4862 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:59 4862 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:59 4872 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:59 4872 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:59 4882 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:21:59 4892 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:21:59 4902 [LEMMA] - UPLOADFILE +19:21:59 4902 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:21:59 4912 [INFO] - Key: EN#KITTING | Val: Kitting +19:21:59 4922 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:21:59 4922 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:21:59 4932 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:21:59 4942 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:00 0056 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:00 0066 [LEMMA] - NESTINGRUNTIME +19:22:00 0066 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:00 0076 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:00 0086 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:00 0096 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:00 0096 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:00 0106 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:00 0127 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:00 0137 [LEMMA] - WORKINGESTTIME +19:22:00 0137 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:00 0147 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:00 0157 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:00 0167 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:00 0177 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:00 0177 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:00 0197 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:00 0207 [LEMMA] - UPLOADFILE +19:22:00 0207 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:00 0217 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:00 0227 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:00 0237 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:00 0237 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:00 0247 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:00 5348 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:00 5348 [LEMMA] - NESTINGRUNTIME +19:22:00 5358 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:00 5368 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:00 5368 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:00 5378 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:00 5388 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:00 5388 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:00 5398 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:00 5408 [LEMMA] - WORKINGESTTIME +19:22:00 5408 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:00 5418 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:00 5428 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:00 5428 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:00 5438 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:00 5438 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:00 5448 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:00 5458 [LEMMA] - UPLOADFILE +19:22:00 5468 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:00 5478 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:00 5478 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:00 5488 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:00 5498 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:00 5508 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:01 0599 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:01 0599 [LEMMA] - NESTINGRUNTIME +19:22:01 0609 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:01 0619 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:01 0619 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:01 0629 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:01 0639 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:01 0649 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:01 0659 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:01 0659 [LEMMA] - WORKINGESTTIME +19:22:01 0669 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:01 0679 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:01 0679 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:01 0689 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:01 0689 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:01 0699 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:01 0709 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:01 0719 [LEMMA] - UPLOADFILE +19:22:01 0719 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:01 0729 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:01 0739 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:01 0739 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:01 0749 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:01 0749 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:01 5861 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:01 5861 [LEMMA] - NESTINGRUNTIME +19:22:01 5871 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:01 5881 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:01 5881 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:01 5891 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:01 5901 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:01 5901 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:01 5911 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:01 5921 [LEMMA] - WORKINGESTTIME +19:22:01 5921 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:01 5931 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:01 5941 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:01 5941 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:01 5951 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:01 5961 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:01 5971 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:01 5971 [LEMMA] - UPLOADFILE +19:22:01 5981 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:01 5991 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:01 5991 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:01 6001 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:01 6011 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:01 6011 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:02 1103 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:02 1113 [LEMMA] - NESTINGRUNTIME +19:22:02 1113 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:02 1123 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:02 1123 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:02 1133 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:02 1143 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:02 1153 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:02 1153 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:02 1163 [LEMMA] - WORKINGESTTIME +19:22:02 1173 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:02 1173 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:02 1183 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:02 1193 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:02 1193 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:02 1203 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:02 1213 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:02 1223 [LEMMA] - UPLOADFILE +19:22:02 1233 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:02 1243 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:02 1253 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:02 1263 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:02 1273 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:02 1273 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:02 6395 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:02 6405 [LEMMA] - NESTINGRUNTIME +19:22:02 6415 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:02 6425 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:02 6435 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:02 6435 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:02 6445 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:02 6455 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:02 6465 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:02 6465 [LEMMA] - WORKINGESTTIME +19:22:02 6475 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:02 6485 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:02 6495 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:02 6505 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:02 6515 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:02 6515 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:02 6525 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:02 6535 [LEMMA] - UPLOADFILE +19:22:02 6535 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:02 6545 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:02 6555 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:02 6555 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:02 6565 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:02 6565 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:03 1676 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:03 1686 [LEMMA] - NESTINGRUNTIME +19:22:03 1686 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:03 1696 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:03 1706 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:03 1716 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:03 1716 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:03 1726 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:03 1736 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:03 1746 [LEMMA] - WORKINGESTTIME +19:22:03 1746 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:03 1756 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:03 1766 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:03 1776 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:03 1786 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:03 1786 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:03 1806 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:03 1816 [LEMMA] - UPLOADFILE +19:22:03 1836 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:03 1836 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:03 1846 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:03 1856 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:03 1876 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:03 1886 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:03 6987 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:03 6997 [LEMMA] - NESTINGRUNTIME +19:22:03 7007 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:03 7007 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:03 7017 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:03 7027 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:03 7037 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:03 7037 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:03 7047 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:03 7057 [LEMMA] - WORKINGESTTIME +19:22:03 7067 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:03 7067 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:03 7077 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:03 7087 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:03 7097 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:03 7097 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:03 7107 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:03 7117 [LEMMA] - UPLOADFILE +19:22:03 7127 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:03 7127 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:03 7137 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:03 7147 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:03 7157 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:03 7167 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:04 2258 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:04 2268 [LEMMA] - NESTINGRUNTIME +19:22:04 2268 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:04 2278 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:04 2288 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:04 2288 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:04 2298 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:04 2308 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:04 2318 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:04 2328 [LEMMA] - WORKINGESTTIME +19:22:04 2338 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:04 2338 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:04 2348 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:04 2358 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:04 2358 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:04 2368 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:04 2378 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:04 2378 [LEMMA] - UPLOADFILE +19:22:04 2388 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:04 2388 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:04 2398 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:04 2408 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:04 2418 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:04 2418 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:04 7520 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:04 7520 [LEMMA] - NESTINGRUNTIME +19:22:04 7530 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:04 7540 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:04 7540 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:04 7550 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:04 7550 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:04 7560 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:04 7570 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:04 7570 [LEMMA] - WORKINGESTTIME +19:22:04 7580 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:04 7590 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:04 7590 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:04 7600 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:04 7610 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:04 7610 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:04 7620 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:04 7630 [LEMMA] - UPLOADFILE +19:22:04 7640 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:04 7650 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:04 7650 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:04 7660 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:04 7660 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:04 7670 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:05 2761 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:05 2771 [LEMMA] - NESTINGRUNTIME +19:22:05 2781 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:05 2781 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:05 2791 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:05 2801 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:05 2811 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:05 2821 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:05 2831 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:05 2831 [LEMMA] - WORKINGESTTIME +19:22:05 2841 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:05 2851 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:05 2861 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:05 2861 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:05 2871 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:05 2881 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:05 2891 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:05 2891 [LEMMA] - UPLOADFILE +19:22:05 2901 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:05 2901 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:05 2911 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:05 2921 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:05 2921 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:05 2931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:05 8031 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:05 8031 [LEMMA] - NESTINGRUNTIME +19:22:05 8041 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:05 8051 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:05 8051 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:05 8061 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:05 8061 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:05 8071 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:05 8081 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:05 8091 [LEMMA] - WORKINGESTTIME +19:22:05 8091 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:05 8101 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:05 8111 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:05 8111 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:05 8121 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:05 8121 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:05 8131 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:05 8141 [LEMMA] - UPLOADFILE +19:22:05 8151 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:05 8161 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:05 8161 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:05 8171 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:05 8181 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:05 8181 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:06 3272 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:06 3282 [LEMMA] - NESTINGRUNTIME +19:22:06 3282 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:06 3292 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:06 3302 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:06 3302 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:06 3312 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:06 3322 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:06 3322 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:06 3332 [LEMMA] - WORKINGESTTIME +19:22:06 3332 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:06 3342 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:06 3352 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:06 3352 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:06 3362 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:06 3372 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:06 3382 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:06 3382 [LEMMA] - UPLOADFILE +19:22:06 3392 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:06 3392 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:06 3402 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:06 3412 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:06 3412 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:06 3422 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:06 8524 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:06 8534 [LEMMA] - NESTINGRUNTIME +19:22:06 8534 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:06 8544 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:06 8554 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:06 8564 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:06 8564 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:06 8574 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:06 8584 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:06 8584 [LEMMA] - WORKINGESTTIME +19:22:06 8594 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:06 8594 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:06 8604 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:06 8614 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:06 8624 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:06 8624 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:06 8644 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:06 8644 [LEMMA] - UPLOADFILE +19:22:06 8654 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:06 8664 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:06 8664 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:06 8674 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:06 8684 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:06 8694 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:07 3780 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:07 3790 [LEMMA] - NESTINGRUNTIME +19:22:07 3790 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:07 3800 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:07 3811 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:07 3821 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:07 3821 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:07 3830 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:07 3840 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:07 3840 [LEMMA] - WORKINGESTTIME +19:22:07 3850 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:07 3861 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:07 3861 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:07 3871 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:07 3881 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:07 3881 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:07 3891 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:07 3901 [LEMMA] - UPLOADFILE +19:22:07 3911 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:07 3911 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:07 3921 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:07 3921 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:07 3931 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:07 3931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:07 9026 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:07 9036 [LEMMA] - NESTINGRUNTIME +19:22:07 9036 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:07 9046 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:07 9056 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:07 9056 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:07 9066 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:07 9076 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:07 9076 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:07 9086 [LEMMA] - WORKINGESTTIME +19:22:07 9096 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:07 9096 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:07 9106 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:07 9116 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:07 9116 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:07 9126 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:07 9136 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:07 9146 [LEMMA] - UPLOADFILE +19:22:07 9156 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:07 9166 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:07 9166 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:07 9176 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:07 9186 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:07 9196 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:08 4297 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:08 4297 [LEMMA] - NESTINGRUNTIME +19:22:08 4317 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:08 4317 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:08 4327 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:08 4337 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:08 4337 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:08 4347 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:08 4357 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:08 4357 [LEMMA] - WORKINGESTTIME +19:22:08 4367 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:08 4377 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:08 4377 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:08 4387 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:08 4397 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:08 4397 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:08 4407 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:08 4417 [LEMMA] - UPLOADFILE +19:22:08 4417 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:08 4427 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:08 4437 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:08 4437 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:08 4447 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:08 4447 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:08 9548 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:08 9558 [LEMMA] - NESTINGRUNTIME +19:22:08 9568 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:08 9568 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:08 9578 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:08 9588 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:08 9588 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:08 9598 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:08 9608 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:08 9608 [LEMMA] - WORKINGESTTIME +19:22:08 9618 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:08 9618 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:08 9628 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:08 9638 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:08 9638 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:08 9648 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:08 9658 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:08 9668 [LEMMA] - UPLOADFILE +19:22:08 9678 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:08 9678 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:08 9688 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:08 9688 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:08 9698 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:08 9708 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:09 4819 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:09 4829 [LEMMA] - NESTINGRUNTIME +19:22:09 4839 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:09 4849 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:09 4849 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:09 4859 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:09 4869 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:09 4869 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:09 4879 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:09 4889 [LEMMA] - WORKINGESTTIME +19:22:09 4889 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:09 4899 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:09 4909 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:09 4909 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:09 4919 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:09 4919 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:09 4939 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:09 4939 [LEMMA] - UPLOADFILE +19:22:09 4949 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:09 4959 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:09 4959 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:09 4969 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:09 4979 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:09 4989 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:10 0071 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:10 0081 [LEMMA] - NESTINGRUNTIME +19:22:10 0091 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:10 0101 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:10 0101 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:10 0111 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:10 0121 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:10 0121 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:10 0136 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:10 0141 [LEMMA] - WORKINGESTTIME +19:22:10 0151 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:10 0161 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:10 0161 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:10 0171 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:10 0181 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:10 0181 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:10 0191 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:10 0201 [LEMMA] - UPLOADFILE +19:22:10 0211 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:10 0211 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:10 0221 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:10 0221 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:10 0231 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:10 0241 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:10 5332 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:10 5342 [LEMMA] - NESTINGRUNTIME +19:22:10 5352 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:10 5352 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:10 5362 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:10 5372 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:10 5372 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:10 5382 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:10 5392 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:10 5392 [LEMMA] - WORKINGESTTIME +19:22:10 5402 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:10 5412 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:10 5412 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:10 5422 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:10 5432 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:10 5432 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:10 5452 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:10 5452 [LEMMA] - UPLOADFILE +19:22:10 5462 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:10 5472 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:10 5482 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:10 5492 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:10 5502 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:10 5502 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:11 0594 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:11 0604 [LEMMA] - NESTINGRUNTIME +19:22:11 0614 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:11 0614 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:11 0624 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:11 0634 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:11 0644 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:11 0644 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:11 0654 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:11 0664 [LEMMA] - WORKINGESTTIME +19:22:11 0664 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:11 0674 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:11 0674 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:11 0684 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:11 0694 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:11 0694 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:11 0704 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:11 0714 [LEMMA] - UPLOADFILE +19:22:11 0714 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:11 0724 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:11 0724 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:11 0734 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:11 0744 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:11 0744 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:11 5836 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:11 5846 [LEMMA] - NESTINGRUNTIME +19:22:11 5856 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:11 5856 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:11 5866 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:11 5876 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:11 5876 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:11 5886 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:11 5886 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:11 5896 [LEMMA] - WORKINGESTTIME +19:22:11 5906 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:11 5906 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:11 5916 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:11 5916 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:11 5926 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:11 5926 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:11 5936 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:11 5946 [LEMMA] - UPLOADFILE +19:22:11 5946 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:11 5956 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:11 5956 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:11 5966 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:11 5976 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:11 5983 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:12 1077 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:12 1077 [LEMMA] - NESTINGRUNTIME +19:22:12 1087 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:12 1097 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:12 1097 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:12 1107 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:12 1107 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:12 1117 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:12 1127 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:12 1127 [LEMMA] - WORKINGESTTIME +19:22:12 1137 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:12 1147 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:12 1147 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:12 1157 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:12 1157 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:12 1167 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:12 1177 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:12 1177 [LEMMA] - UPLOADFILE +19:22:12 1187 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:12 1197 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:12 1197 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:12 1207 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:12 1207 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:12 1217 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:12 6329 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:12 6339 [LEMMA] - NESTINGRUNTIME +19:22:12 6349 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:12 6349 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:12 6359 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:12 6369 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:12 6369 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:12 6379 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:12 6389 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:12 6399 [LEMMA] - WORKINGESTTIME +19:22:12 6399 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:12 6409 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:12 6419 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:12 6419 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:12 6429 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:12 6439 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:12 6449 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:12 6459 [LEMMA] - UPLOADFILE +19:22:12 6459 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:12 6469 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:12 6479 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:12 6489 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:12 6499 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:12 6509 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:13 1600 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:13 1610 [LEMMA] - NESTINGRUNTIME +19:22:13 1620 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:13 1630 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:13 1630 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:13 1640 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:13 1650 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:13 1660 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:13 1660 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:13 1670 [LEMMA] - WORKINGESTTIME +19:22:13 1680 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:13 1680 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:13 1690 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:13 1700 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:13 1700 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:13 1710 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:13 1720 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:13 1720 [LEMMA] - UPLOADFILE +19:22:13 1730 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:13 1740 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:13 1750 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:13 1750 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:13 1760 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:13 1770 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:13 6882 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:13 6882 [LEMMA] - NESTINGRUNTIME +19:22:13 6892 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:13 6902 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:13 6912 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:13 6912 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:13 6922 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:13 6932 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:13 6932 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:13 6942 [LEMMA] - WORKINGESTTIME +19:22:13 6952 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:13 6952 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:13 6962 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:13 6972 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:13 6982 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:13 6992 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:13 7002 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:13 7002 [LEMMA] - UPLOADFILE +19:22:13 7012 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:13 7022 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:13 7022 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:13 7032 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:13 7042 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:13 7052 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:14 2143 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:14 2153 [LEMMA] - NESTINGRUNTIME +19:22:14 2153 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:14 2163 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:14 2173 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:14 2183 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:14 2183 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:14 2193 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:14 2203 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:14 2213 [LEMMA] - WORKINGESTTIME +19:22:14 2213 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:14 2223 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:14 2223 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:14 2233 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:14 2243 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:14 2243 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:14 2253 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:14 2263 [LEMMA] - UPLOADFILE +19:22:14 2273 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:14 2273 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:14 2283 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:14 2293 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:14 2303 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:14 2313 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:14 7404 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:14 7404 [LEMMA] - NESTINGRUNTIME +19:22:14 7414 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:14 7424 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:14 7434 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:14 7434 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:14 7444 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:14 7454 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:14 7454 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:14 7464 [LEMMA] - WORKINGESTTIME +19:22:14 7474 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:14 7484 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:14 7494 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:14 7494 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:14 7504 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:14 7514 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:14 7524 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:14 7524 [LEMMA] - UPLOADFILE +19:22:14 7534 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:14 7544 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:14 7544 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:14 7554 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:14 7564 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:14 7574 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:15 2666 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:15 2666 [LEMMA] - NESTINGRUNTIME +19:22:15 2676 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:15 2686 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:15 2686 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:15 2696 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:15 2706 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:15 2706 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:15 2716 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:15 2726 [LEMMA] - WORKINGESTTIME +19:22:15 2726 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:15 2736 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:15 2736 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:15 2746 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:15 2756 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:15 2756 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:15 2766 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:15 2776 [LEMMA] - UPLOADFILE +19:22:15 2786 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:15 2786 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:15 2796 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:15 2806 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:15 2816 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:15 2816 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:15 7917 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:15 7917 [LEMMA] - NESTINGRUNTIME +19:22:15 7927 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:15 7937 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:15 7937 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:15 7947 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:15 7947 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:15 7957 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:15 7967 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:15 7977 [LEMMA] - WORKINGESTTIME +19:22:15 7987 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:15 7997 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:15 8007 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:15 8007 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:15 8017 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:15 8027 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:15 8047 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:15 8107 [LEMMA] - UPLOADFILE +19:22:15 8117 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:15 8137 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:15 8147 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:15 8157 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:15 8177 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:15 8187 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:16 3299 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:16 3299 [LEMMA] - NESTINGRUNTIME +19:22:16 3309 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:16 3319 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:16 3329 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:16 3329 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:16 3339 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:16 3349 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:16 3349 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:16 3359 [LEMMA] - WORKINGESTTIME +19:22:16 3369 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:16 3369 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:16 3379 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:16 3379 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:16 3389 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:16 3399 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:16 3409 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:16 3409 [LEMMA] - UPLOADFILE +19:22:16 3419 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:16 3429 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:16 3429 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:16 3439 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:16 3439 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:16 3449 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:16 8541 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:16 8541 [LEMMA] - NESTINGRUNTIME +19:22:16 8551 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:16 8561 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:16 8571 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:16 8571 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:16 8581 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:16 8591 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:16 8591 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:16 8601 [LEMMA] - WORKINGESTTIME +19:22:16 8601 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:16 8611 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:16 8621 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:16 8621 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:16 8631 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:16 8641 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:16 8651 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:16 8661 [LEMMA] - UPLOADFILE +19:22:16 8661 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:16 8671 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:16 8681 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:16 8681 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:16 8691 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:16 8701 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:17 3789 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:17 3789 [LEMMA] - NESTINGRUNTIME +19:22:17 3799 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:17 3809 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:17 3819 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:17 3829 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:17 3829 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:17 3839 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:17 3849 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:17 3849 [LEMMA] - WORKINGESTTIME +19:22:17 3859 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:17 3859 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:17 3869 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:17 3869 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:17 3879 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:17 3879 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:17 3889 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:17 3899 [LEMMA] - UPLOADFILE +19:22:17 3909 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:17 3909 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:17 3919 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:17 3919 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:17 3929 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:17 3929 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:17 9031 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:17 9041 [LEMMA] - NESTINGRUNTIME +19:22:17 9041 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:17 9051 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:17 9061 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:17 9061 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:17 9071 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:17 9071 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:17 9081 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:17 9091 [LEMMA] - WORKINGESTTIME +19:22:17 9091 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:17 9101 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:17 9111 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:17 9111 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:17 9121 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:17 9121 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:17 9131 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:17 9141 [LEMMA] - UPLOADFILE +19:22:17 9151 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:17 9161 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:17 9171 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:17 9171 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:17 9181 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:17 9191 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:18 4282 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:18 4282 [LEMMA] - NESTINGRUNTIME +19:22:18 4292 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:18 4302 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:18 4312 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:18 4322 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:18 4332 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:18 4342 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:18 4352 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:18 4362 [LEMMA] - WORKINGESTTIME +19:22:18 4372 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:18 4372 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:18 4382 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:18 4382 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:18 4392 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:18 4402 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:18 4412 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:18 4412 [LEMMA] - UPLOADFILE +19:22:18 4422 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:18 4432 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:18 4432 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:18 4442 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:18 4452 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:18 4452 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:18 9554 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:18 9554 [LEMMA] - NESTINGRUNTIME +19:22:18 9564 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:18 9574 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:18 9574 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:18 9584 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:18 9584 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:18 9594 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:18 9604 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:18 9604 [LEMMA] - WORKINGESTTIME +19:22:18 9614 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:18 9624 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:18 9634 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:18 9634 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:18 9644 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:18 9654 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:18 9664 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:18 9674 [LEMMA] - UPLOADFILE +19:22:18 9674 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:18 9684 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:18 9694 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:18 9704 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:18 9704 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:18 9714 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:19 4805 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:19 4815 [LEMMA] - NESTINGRUNTIME +19:22:19 4825 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:19 4835 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:19 4845 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:19 4855 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:19 4855 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:19 4865 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:19 4875 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:19 4885 [LEMMA] - WORKINGESTTIME +19:22:19 4885 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:19 4895 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:19 4905 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:19 4905 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:19 4915 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:19 4925 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:19 4935 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:19 4945 [LEMMA] - UPLOADFILE +19:22:19 4955 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:19 4955 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:19 4965 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:19 4975 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:19 4985 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:19 4995 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:20 0094 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:20 0104 [LEMMA] - NESTINGRUNTIME +19:22:20 0114 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:20 0114 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:20 0124 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:20 0134 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:20 0134 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:20 0144 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:20 0154 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:20 0164 [LEMMA] - WORKINGESTTIME +19:22:20 0174 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:20 0184 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:20 0194 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:20 0194 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:20 0204 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:20 0214 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:20 0224 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:20 0234 [LEMMA] - UPLOADFILE +19:22:20 0244 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:20 0254 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:20 0264 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:20 0274 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:20 0284 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:20 0284 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:20 5385 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:20 5395 [LEMMA] - NESTINGRUNTIME +19:22:20 5405 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:20 5415 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:20 5415 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:20 5425 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:20 5435 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:20 5445 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:20 5455 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:20 5455 [LEMMA] - WORKINGESTTIME +19:22:20 5465 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:20 5475 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:20 5485 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:20 5485 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:20 5495 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:20 5505 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:20 5515 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:20 5525 [LEMMA] - UPLOADFILE +19:22:20 5525 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:20 5535 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:20 5545 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:20 5545 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:20 5555 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:20 5565 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:21 0656 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:21 0666 [LEMMA] - NESTINGRUNTIME +19:22:21 0676 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:21 0686 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:21 0686 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:21 0696 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:21 0706 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:21 0706 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:21 0716 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:21 0726 [LEMMA] - WORKINGESTTIME +19:22:21 0736 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:21 0746 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:21 0756 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:21 0756 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:21 0767 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:21 0776 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:21 0786 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:21 0786 [LEMMA] - UPLOADFILE +19:22:21 0796 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:21 0807 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:21 0817 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:21 0827 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:21 0837 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:21 0847 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:21 5928 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:21 5938 [LEMMA] - NESTINGRUNTIME +19:22:21 5948 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:21 5948 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:21 5958 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:21 5968 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:21 5968 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:21 5978 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:21 5988 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:21 5998 [LEMMA] - WORKINGESTTIME +19:22:21 5998 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:21 6008 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:21 6018 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:21 6018 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:21 6028 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:21 6038 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:21 6048 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:21 6058 [LEMMA] - UPLOADFILE +19:22:21 6058 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:21 6068 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:21 6068 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:21 6078 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:21 6088 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:21 6098 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:22 1199 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:22 1209 [LEMMA] - NESTINGRUNTIME +19:22:22 1219 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:22 1219 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:22 1229 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:22 1229 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:22 1239 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:22 1249 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:22 1249 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:22 1259 [LEMMA] - WORKINGESTTIME +19:22:22 1269 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:22 1279 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:22 1289 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:22 1299 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:22 1299 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:22 1309 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:22 1319 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:22 1329 [LEMMA] - UPLOADFILE +19:22:22 1339 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:22 1349 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:22 1359 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:22 1369 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:22 1369 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:22 1379 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:22 6470 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:22 6480 [LEMMA] - NESTINGRUNTIME +19:22:22 6490 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:22 6500 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:22 6510 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:22 6510 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:22 6520 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:22 6530 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:22 6530 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:22 6540 [LEMMA] - WORKINGESTTIME +19:22:22 6550 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:22 6550 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:22 6560 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:22 6560 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:22 6570 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:22 6570 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:22 6580 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:22 6590 [LEMMA] - UPLOADFILE +19:22:22 6600 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:22 6600 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:22 6610 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:22 6620 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:22 6620 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:22 6630 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:23 1722 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:23 1732 [LEMMA] - NESTINGRUNTIME +19:22:23 1742 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:23 1752 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:23 1752 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:23 1762 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:23 1772 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:23 1782 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:23 1782 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:23 1792 [LEMMA] - WORKINGESTTIME +19:22:23 1802 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:23 1812 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:23 1822 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:23 1832 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:23 1842 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:23 1852 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:23 1862 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:23 1872 [LEMMA] - UPLOADFILE +19:22:23 1882 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:23 1882 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:23 1892 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:23 1892 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:23 1902 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:23 1912 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:23 7013 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:23 7023 [LEMMA] - NESTINGRUNTIME +19:22:23 7033 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:23 7043 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:23 7043 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:23 7053 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:23 7063 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:23 7063 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:23 7073 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:23 7083 [LEMMA] - WORKINGESTTIME +19:22:23 7093 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:23 7093 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:23 7103 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:23 7113 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:23 7113 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:23 7123 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:23 7133 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:23 7143 [LEMMA] - UPLOADFILE +19:22:23 7153 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:23 7163 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:23 7163 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:23 7173 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:23 7183 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:23 7183 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:24 2275 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:24 2285 [LEMMA] - NESTINGRUNTIME +19:22:24 2285 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:24 2295 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:24 2305 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:24 2315 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:24 2315 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:24 2325 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:24 2335 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:24 2345 [LEMMA] - WORKINGESTTIME +19:22:24 2355 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:24 2365 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:24 2365 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:24 2375 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:24 2385 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:24 2385 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:24 2395 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:24 2405 [LEMMA] - UPLOADFILE +19:22:24 2415 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:24 2415 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:24 2425 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:24 2435 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:24 2445 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:24 2445 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:24 7556 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:24 7566 [LEMMA] - NESTINGRUNTIME +19:22:24 7576 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:24 7576 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:24 7586 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:24 7596 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:24 7596 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:24 7606 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:24 7616 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:24 7616 [LEMMA] - WORKINGESTTIME +19:22:24 7626 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:24 7626 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:24 7636 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:24 7646 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:24 7656 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:24 7666 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:24 7676 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:24 7676 [LEMMA] - UPLOADFILE +19:22:24 7686 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:24 7686 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:24 7696 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:24 7706 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:24 7706 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:24 7716 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:25 2798 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:25 2808 [LEMMA] - NESTINGRUNTIME +19:22:25 2808 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:25 2818 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:25 2828 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:25 2838 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:25 2838 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:25 2848 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:25 2858 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:25 2858 [LEMMA] - WORKINGESTTIME +19:22:25 2868 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:25 2868 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:25 2878 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:25 2888 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:25 2898 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:25 2898 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:25 2908 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:25 2918 [LEMMA] - UPLOADFILE +19:22:25 2928 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:25 2928 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:25 2938 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:25 2948 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:25 2948 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:25 2958 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:27 3068 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:27 3078 [LEMMA] - UPLOADFILE +19:22:27 3078 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:27 3088 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:27 3098 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:27 3098 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:27 3108 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:27 3118 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:27 3138 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:27 3138 [LEMMA] - NESTINGRUNTIME +19:22:27 3148 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:27 3158 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:27 3168 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:27 3178 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:27 3178 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:27 3188 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:27 3198 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:27 3208 [LEMMA] - WORKINGESTTIME +19:22:27 3208 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:27 3218 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:27 3228 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:27 3228 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:27 3238 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:27 3248 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:27 9529 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:27 9529 [LEMMA] - NESTINGRUNTIME +19:22:27 9539 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:27 9549 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:27 9549 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:27 9559 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:27 9569 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:27 9569 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:27 9579 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:27 9579 [LEMMA] - WORKINGESTTIME +19:22:27 9589 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:27 9599 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:27 9599 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:27 9609 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:27 9619 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:27 9619 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:27 9629 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:27 9639 [LEMMA] - UPLOADFILE +19:22:27 9649 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:27 9659 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:27 9669 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:27 9679 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:27 9679 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:27 9689 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:28 4800 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:28 4800 [LEMMA] - NESTINGRUNTIME +19:22:28 4810 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:28 4830 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:28 4840 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:28 4840 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:28 4850 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:28 4860 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:28 4860 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:28 4870 [LEMMA] - WORKINGESTTIME +19:22:28 4880 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:28 4880 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:28 4890 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:28 4900 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:28 4900 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:28 4910 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:28 4920 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:28 4930 [LEMMA] - UPLOADFILE +19:22:28 4930 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:28 4940 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:28 4950 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:28 4950 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:28 4960 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:28 4970 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:29 0072 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:29 0082 [LEMMA] - NESTINGRUNTIME +19:22:29 0091 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:29 0091 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:29 0101 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:29 0112 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:29 0112 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:29 0122 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:29 0131 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:29 0131 [LEMMA] - WORKINGESTTIME +19:22:29 0142 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:29 0152 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:29 0162 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:29 0172 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:29 0172 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:29 0182 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:29 0192 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:29 0202 [LEMMA] - UPLOADFILE +19:22:29 0202 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:29 0212 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:29 0222 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:29 0222 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:29 0232 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:29 0242 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:29 5493 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:29 5513 [LEMMA] - NESTINGRUNTIME +19:22:29 5513 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:29 5523 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:29 5533 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:29 5543 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:29 5543 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:29 5553 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:29 5563 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:29 5563 [LEMMA] - WORKINGESTTIME +19:22:29 5573 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:29 5583 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:29 5593 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:29 5603 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:29 5603 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:29 5613 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:29 5623 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:29 5633 [LEMMA] - UPLOADFILE +19:22:29 5643 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:29 5653 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:29 5663 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:29 5673 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:29 5673 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:29 5683 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:30 0784 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:30 0784 [LEMMA] - NESTINGRUNTIME +19:22:30 0794 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:30 0804 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:30 0814 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:30 0824 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:30 0834 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:30 0844 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:30 0854 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:30 0864 [LEMMA] - WORKINGESTTIME +19:22:30 0864 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:30 0874 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:30 0884 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:30 0894 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:30 0894 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:30 0904 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:30 0914 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:30 0924 [LEMMA] - UPLOADFILE +19:22:30 0934 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:30 0944 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:30 0954 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:30 0954 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:30 0964 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:30 0984 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:30 6095 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:30 6095 [LEMMA] - NESTINGRUNTIME +19:22:30 6105 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:30 6115 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:30 6115 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:30 6125 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:30 6135 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:30 6135 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:30 6145 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:30 6155 [LEMMA] - WORKINGESTTIME +19:22:30 6165 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:30 6175 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:30 6185 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:30 6195 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:30 6195 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:30 6205 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:30 6215 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:30 6225 [LEMMA] - UPLOADFILE +19:22:30 6225 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:30 6235 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:30 6245 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:30 6245 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:30 6255 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:30 6255 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:31 1376 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:31 1376 [LEMMA] - NESTINGRUNTIME +19:22:31 1386 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:31 1396 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:31 1406 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:31 1406 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:31 1416 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:31 1426 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:31 1426 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:31 1436 [LEMMA] - WORKINGESTTIME +19:22:31 1446 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:31 1446 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:31 1456 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:31 1466 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:31 1466 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:31 1476 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:31 1486 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:31 1496 [LEMMA] - UPLOADFILE +19:22:31 1506 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:31 1506 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:31 1516 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:31 1526 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:31 1536 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:31 1536 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:31 6647 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:31 6657 [LEMMA] - NESTINGRUNTIME +19:22:31 6667 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:31 6677 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:31 6677 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:31 6687 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:31 6697 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:31 6697 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:31 6707 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:31 6717 [LEMMA] - WORKINGESTTIME +19:22:31 6727 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:31 6727 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:31 6737 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:31 6737 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:31 6747 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:31 6757 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:31 6767 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:31 6767 [LEMMA] - UPLOADFILE +19:22:31 6777 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:31 6777 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:31 6787 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:31 6797 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:31 6797 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:31 6807 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:32 1908 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:32 1908 [LEMMA] - NESTINGRUNTIME +19:22:32 1918 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:32 1928 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:32 1928 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:32 1938 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:32 1948 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:32 1948 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:32 1958 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:32 1968 [LEMMA] - WORKINGESTTIME +19:22:32 1978 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:32 1988 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:32 1998 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:32 2008 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:32 2018 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:32 2028 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:32 2038 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:32 2048 [LEMMA] - UPLOADFILE +19:22:32 2048 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:32 2058 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:32 2068 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:32 2068 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:32 2078 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:32 2088 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:32 7200 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:32 7210 [LEMMA] - NESTINGRUNTIME +19:22:32 7210 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:32 7220 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:32 7230 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:32 7230 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:32 7240 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:32 7250 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:32 7250 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:32 7260 [LEMMA] - WORKINGESTTIME +19:22:32 7270 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:32 7270 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:32 7280 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:32 7290 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:32 7290 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:32 7300 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:32 7310 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:32 7320 [LEMMA] - UPLOADFILE +19:22:32 7330 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:32 7340 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:32 7340 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:32 7350 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:32 7360 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:32 7360 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:33 2471 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:33 2471 [LEMMA] - NESTINGRUNTIME +19:22:33 2491 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:33 2491 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:33 2501 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:33 2511 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:33 2521 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:33 2531 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:33 2541 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:33 2541 [LEMMA] - WORKINGESTTIME +19:22:33 2551 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:33 2561 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:33 2561 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:33 2571 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:33 2581 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:33 2581 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:33 2591 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:33 2601 [LEMMA] - UPLOADFILE +19:22:33 2611 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:33 2611 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:33 2621 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:33 2631 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:33 2631 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:33 2641 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:33 7732 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:33 7742 [LEMMA] - NESTINGRUNTIME +19:22:33 7752 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:33 7762 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:33 7762 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:33 7772 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:33 7782 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:33 7782 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:33 7792 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:33 7802 [LEMMA] - WORKINGESTTIME +19:22:33 7802 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:33 7812 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:33 7822 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:33 7832 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:33 7842 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:33 7852 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:33 7862 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:33 7872 [LEMMA] - UPLOADFILE +19:22:33 7872 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:33 7882 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:33 7882 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:33 7892 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:33 7892 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:33 7902 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:34 3013 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:34 3023 [LEMMA] - NESTINGRUNTIME +19:22:34 3023 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:34 3033 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:34 3043 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:34 3043 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:34 3053 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:34 3053 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:34 3063 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:34 3073 [LEMMA] - WORKINGESTTIME +19:22:34 3083 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:34 3083 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:34 3093 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:34 3103 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:34 3103 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:34 3113 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:34 3123 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:34 3123 [LEMMA] - UPLOADFILE +19:22:34 3133 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:34 3143 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:34 3153 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:34 3163 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:34 3173 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:34 3173 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:34 8284 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:34 8284 [LEMMA] - NESTINGRUNTIME +19:22:34 8294 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:34 8304 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:34 8315 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:34 8315 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:34 8335 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:34 8335 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:34 8345 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:34 8355 [LEMMA] - WORKINGESTTIME +19:22:34 8365 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:34 8375 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:34 8375 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:34 8385 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:34 8385 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:34 8395 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:34 8405 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:34 8415 [LEMMA] - UPLOADFILE +19:22:34 8415 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:34 8425 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:34 8435 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:34 8435 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:34 8445 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:34 8455 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:35 3546 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:35 3556 [LEMMA] - NESTINGRUNTIME +19:22:35 3556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:35 3566 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:35 3576 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:35 3576 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:35 3586 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:35 3596 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:35 3596 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:35 3606 [LEMMA] - WORKINGESTTIME +19:22:35 3616 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:35 3616 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:35 3626 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:35 3626 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:35 3636 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:35 3636 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:35 3656 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:35 3666 [LEMMA] - UPLOADFILE +19:22:35 3676 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:35 3676 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:35 3686 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:35 3696 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:35 3706 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:35 3706 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:35 8797 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:35 8807 [LEMMA] - NESTINGRUNTIME +19:22:35 8807 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:35 8817 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:35 8827 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:35 8837 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:35 8847 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:35 8857 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:35 8867 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:35 8877 [LEMMA] - WORKINGESTTIME +19:22:35 8887 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:35 8887 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:35 8897 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:35 8907 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:35 8907 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:35 8917 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:35 8927 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:35 8937 [LEMMA] - UPLOADFILE +19:22:35 8937 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:35 8947 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:35 8947 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:35 8957 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:35 8967 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:35 8967 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:36 4078 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:36 4088 [LEMMA] - NESTINGRUNTIME +19:22:36 4098 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:36 4098 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:36 4108 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:36 4118 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:36 4118 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:36 4128 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:36 4128 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:36 4138 [LEMMA] - WORKINGESTTIME +19:22:36 4148 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:36 4148 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:36 4168 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:36 4178 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:36 4178 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:36 4188 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:36 4198 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:36 4208 [LEMMA] - UPLOADFILE +19:22:36 4208 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:36 4218 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:36 4218 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:36 4228 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:36 4238 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:36 4238 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:36 9339 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:36 9339 [LEMMA] - NESTINGRUNTIME +19:22:36 9349 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:36 9359 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:36 9359 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:36 9369 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:36 9369 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:36 9379 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:36 9389 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:36 9399 [LEMMA] - WORKINGESTTIME +19:22:36 9399 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:36 9409 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:36 9409 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:36 9419 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:36 9419 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:36 9430 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:36 9440 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:36 9449 [LEMMA] - UPLOADFILE +19:22:36 9449 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:36 9459 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:36 9470 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:36 9470 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:36 9480 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:36 9480 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:38 3763 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:38 3773 [LEMMA] - NESTINGRUNTIME +19:22:38 3783 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:38 3783 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:38 3793 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:38 3803 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:38 3803 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:38 3813 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:38 3823 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:38 3833 [LEMMA] - WORKINGESTTIME +19:22:38 3843 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:38 3853 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:38 3863 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:38 3863 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:38 3873 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:38 3883 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:38 3893 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:38 3903 [LEMMA] - UPLOADFILE +19:22:38 3903 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:38 3913 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:38 3923 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:38 3923 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:38 3933 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:38 3943 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:38 8414 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:38 8424 [LEMMA] - UPLOADFILE +19:22:38 8424 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:38 8434 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:38 8444 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:38 8444 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:38 8454 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:38 8464 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:38 8464 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:38 8474 [LEMMA] - NESTINGRUNTIME +19:22:38 8484 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:38 8484 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:38 8494 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:38 8504 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:38 8514 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:38 8524 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:38 8524 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:38 8534 [LEMMA] - WORKINGESTTIME +19:22:38 8544 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:38 8544 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:38 8554 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:38 8564 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:38 8564 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:38 8574 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:39 4555 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:39 4555 [LEMMA] - NESTINGRUNTIME +19:22:39 4565 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:39 4575 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:39 4575 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:39 4585 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:39 4595 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:39 4595 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:39 4605 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:39 4615 [LEMMA] - WORKINGESTTIME +19:22:39 4615 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:39 4625 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:39 4635 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:39 4635 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:39 4645 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:39 4655 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:39 4665 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:39 4675 [LEMMA] - UPLOADFILE +19:22:39 4675 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:39 4685 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:39 4695 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:39 4705 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:39 4705 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:39 4715 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:39 9825 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:39 9835 [LEMMA] - NESTINGRUNTIME +19:22:39 9845 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:39 9855 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:39 9855 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:39 9865 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:39 9875 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:39 9875 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:39 9885 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:39 9885 [LEMMA] - WORKINGESTTIME +19:22:39 9895 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:39 9905 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:39 9905 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:39 9915 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:39 9925 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:39 9925 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:39 9935 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:39 9945 [LEMMA] - UPLOADFILE +19:22:39 9955 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:39 9955 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:39 9965 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:39 9965 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:39 9975 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:39 9985 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:40 5066 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:40 5076 [LEMMA] - NESTINGRUNTIME +19:22:40 5086 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:40 5096 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:40 5106 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:40 5106 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:40 5116 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:40 5126 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:40 5126 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:40 5136 [LEMMA] - WORKINGESTTIME +19:22:40 5146 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:40 5146 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:40 5156 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:40 5166 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:40 5176 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:40 5186 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:40 5196 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:40 5196 [LEMMA] - UPLOADFILE +19:22:40 5206 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:40 5216 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:40 5216 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:40 5226 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:40 5236 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:40 5246 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:41 0528 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:41 0538 [LEMMA] - NESTINGRUNTIME +19:22:41 0548 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:41 0558 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:41 0558 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:41 0568 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:41 0578 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:41 0578 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:41 0588 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:41 0598 [LEMMA] - WORKINGESTTIME +19:22:41 0598 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:41 0608 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:41 0608 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:41 0618 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:41 0628 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:41 0628 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:41 0638 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:41 0648 [LEMMA] - UPLOADFILE +19:22:41 0658 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:41 0668 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:41 0668 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:41 0678 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:41 0688 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:41 0688 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:41 5799 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:41 5799 [LEMMA] - NESTINGRUNTIME +19:22:41 5809 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:41 5819 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:41 5829 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:41 5839 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:41 5839 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:41 5849 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:41 5859 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:41 5869 [LEMMA] - WORKINGESTTIME +19:22:41 5879 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:41 5879 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:41 5889 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:41 5899 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:41 5899 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:41 5909 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:41 5919 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:41 5929 [LEMMA] - UPLOADFILE +19:22:41 5939 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:41 5939 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:41 5949 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:41 5949 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:41 5959 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:41 5969 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:42 1060 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:42 1070 [LEMMA] - NESTINGRUNTIME +19:22:42 1070 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:42 1080 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:42 1090 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:42 1090 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:42 1100 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:42 1110 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:42 1120 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:42 1120 [LEMMA] - WORKINGESTTIME +19:22:42 1130 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:42 1140 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:42 1140 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:42 1150 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:42 1160 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:42 1170 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:42 1180 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:42 1190 [LEMMA] - UPLOADFILE +19:22:42 1200 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:42 1210 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:42 1210 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:42 1220 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:42 1220 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:42 1230 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:42 6332 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:42 6332 [LEMMA] - NESTINGRUNTIME +19:22:42 6342 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:42 6352 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:42 6362 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:42 6362 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:42 6372 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:42 6382 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:42 6392 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:42 6392 [LEMMA] - WORKINGESTTIME +19:22:42 6402 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:42 6402 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:42 6412 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:42 6422 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:42 6422 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:42 6432 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:42 6442 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:42 6452 [LEMMA] - UPLOADFILE +19:22:42 6452 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:42 6462 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:42 6472 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:42 6472 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:42 6482 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:42 6492 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:43 1583 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:43 1583 [LEMMA] - NESTINGRUNTIME +19:22:43 1593 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:43 1603 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:43 1603 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:43 1613 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:43 1623 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:43 1623 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:43 1633 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:43 1643 [LEMMA] - WORKINGESTTIME +19:22:43 1643 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:43 1653 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:43 1663 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:43 1663 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:43 1673 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:43 1683 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:43 1693 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:43 1693 [LEMMA] - UPLOADFILE +19:22:43 1703 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:43 1703 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:43 1713 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:43 1723 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:43 1723 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:43 1733 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:43 6825 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:43 6835 [LEMMA] - NESTINGRUNTIME +19:22:43 6835 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:43 6846 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:43 6856 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:43 6865 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:43 6865 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:43 6875 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:43 6885 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:43 6885 [LEMMA] - WORKINGESTTIME +19:22:43 6896 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:43 6906 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:43 6906 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:43 6916 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:43 6916 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:43 6926 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:43 6936 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:43 6946 [LEMMA] - UPLOADFILE +19:22:43 6946 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:43 6956 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:43 6966 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:43 6966 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:43 6976 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:43 6976 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:44 2077 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:44 2077 [LEMMA] - NESTINGRUNTIME +19:22:44 2087 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:44 2097 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:44 2097 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:44 2107 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:44 2107 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:44 2117 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:44 2127 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:44 2137 [LEMMA] - WORKINGESTTIME +19:22:44 2137 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:44 2147 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:44 2157 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:44 2157 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:44 2167 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:44 2177 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:44 2187 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:44 2197 [LEMMA] - UPLOADFILE +19:22:44 2207 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:44 2207 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:44 2217 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:44 2217 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:44 2227 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:44 2227 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:44 7328 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:44 7338 [LEMMA] - NESTINGRUNTIME +19:22:44 7348 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:44 7358 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:44 7358 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:44 7368 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:44 7368 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:44 7378 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:44 7388 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:44 7388 [LEMMA] - WORKINGESTTIME +19:22:44 7398 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:44 7408 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:44 7408 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:44 7418 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:44 7428 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:44 7428 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:44 7438 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:44 7448 [LEMMA] - UPLOADFILE +19:22:44 7458 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:44 7458 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:44 7468 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:44 7478 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:44 7478 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:44 7488 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:45 2600 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:45 2610 [LEMMA] - NESTINGRUNTIME +19:22:45 2620 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:45 2630 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:45 2640 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:45 2640 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:45 2660 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:45 2680 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:45 2690 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:45 2700 [LEMMA] - WORKINGESTTIME +19:22:45 2710 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:45 2730 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:45 2730 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:45 2740 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:45 2750 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:45 2760 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:45 2770 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:45 2780 [LEMMA] - UPLOADFILE +19:22:45 2790 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:45 2790 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:45 2800 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:45 2810 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:45 2810 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:45 2820 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:45 7911 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:45 7921 [LEMMA] - NESTINGRUNTIME +19:22:45 7931 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:45 7931 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:45 7941 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:45 7951 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:45 7961 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:45 7961 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:45 7971 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:45 7981 [LEMMA] - WORKINGESTTIME +19:22:45 7991 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:45 8001 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:45 8011 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:45 8021 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:45 8021 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:45 8031 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:45 8041 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:45 8051 [LEMMA] - UPLOADFILE +19:22:45 8061 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:45 8061 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:45 8071 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:45 8081 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:45 8081 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:45 8101 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:46 3222 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:46 3222 [LEMMA] - NESTINGRUNTIME +19:22:46 3232 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:46 3242 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:46 3252 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:46 3262 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:46 3272 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:46 3272 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:46 3282 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:46 3282 [LEMMA] - WORKINGESTTIME +19:22:46 3292 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:46 3302 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:46 3312 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:46 3312 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:46 3322 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:46 3332 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:46 3342 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:46 3352 [LEMMA] - UPLOADFILE +19:22:46 3362 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:46 3362 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:46 3372 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:46 3382 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:46 3392 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:46 3392 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:46 8493 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:46 8503 [LEMMA] - NESTINGRUNTIME +19:22:46 8513 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:46 8523 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:46 8533 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:46 8543 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:46 8553 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:46 8563 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:46 8573 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:46 8573 [LEMMA] - WORKINGESTTIME +19:22:46 8583 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:46 8583 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:46 8593 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:46 8603 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:46 8603 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:46 8613 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:46 8623 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:46 8633 [LEMMA] - UPLOADFILE +19:22:46 8643 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:46 8643 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:46 8653 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:46 8663 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:46 8673 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:46 8683 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:47 3775 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:47 3785 [LEMMA] - NESTINGRUNTIME +19:22:47 3785 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:47 3795 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:47 3805 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:47 3805 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:47 3815 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:47 3825 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:47 3835 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:47 3845 [LEMMA] - WORKINGESTTIME +19:22:47 3845 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:47 3855 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:47 3865 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:47 3875 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:47 3875 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:47 3885 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:47 3895 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:47 3905 [LEMMA] - UPLOADFILE +19:22:47 3915 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:47 3925 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:47 3925 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:47 3935 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:47 3945 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:47 3945 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:47 9046 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:47 9056 [LEMMA] - NESTINGRUNTIME +19:22:47 9066 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:47 9066 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:47 9076 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:47 9086 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:47 9086 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:47 9096 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:47 9106 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:47 9116 [LEMMA] - WORKINGESTTIME +19:22:47 9116 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:47 9126 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:47 9136 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:47 9136 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:47 9146 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:47 9156 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:47 9176 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:47 9186 [LEMMA] - UPLOADFILE +19:22:47 9196 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:47 9206 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:47 9206 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:47 9216 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:47 9216 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:47 9226 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:48 4327 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:48 4337 [LEMMA] - NESTINGRUNTIME +19:22:48 4347 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:48 4347 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:48 4357 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:48 4367 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:48 4367 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:48 4377 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:48 4387 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:48 4387 [LEMMA] - WORKINGESTTIME +19:22:48 4397 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:48 4407 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:48 4407 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:48 4417 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:48 4417 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:48 4427 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:48 4437 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:48 4437 [LEMMA] - UPLOADFILE +19:22:48 4447 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:48 4457 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:48 4457 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:48 4467 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:48 4477 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:48 4477 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:48 9568 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:48 9578 [LEMMA] - NESTINGRUNTIME +19:22:48 9588 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:48 9598 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:48 9598 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:48 9608 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:48 9618 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:48 9618 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:48 9628 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:48 9638 [LEMMA] - WORKINGESTTIME +19:22:48 9638 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:48 9648 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:48 9658 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:48 9668 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:48 9668 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:48 9678 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:48 9688 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:48 9698 [LEMMA] - UPLOADFILE +19:22:48 9708 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:48 9708 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:48 9718 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:48 9728 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:48 9728 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:48 9738 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:49 4829 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:49 4839 [LEMMA] - NESTINGRUNTIME +19:22:49 4849 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:49 4859 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:49 4859 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:49 4869 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:49 4869 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:49 4879 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:49 4889 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:49 4889 [LEMMA] - WORKINGESTTIME +19:22:49 4899 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:49 4899 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:49 4909 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:49 4919 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:49 4919 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:49 4929 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:49 4939 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:49 4949 [LEMMA] - UPLOADFILE +19:22:49 4949 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:49 4959 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:49 4969 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:49 4969 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:49 4979 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:49 4989 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:50 0100 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:50 0100 [LEMMA] - NESTINGRUNTIME +19:22:50 0110 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:50 0120 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:50 0120 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:50 0130 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:50 0140 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:50 0140 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:50 0150 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:50 0160 [LEMMA] - WORKINGESTTIME +19:22:50 0160 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:50 0170 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:50 0180 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:50 0180 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:50 0190 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:50 0200 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:50 0210 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:50 0210 [LEMMA] - UPLOADFILE +19:22:50 0220 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:50 0220 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:50 0230 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:50 0240 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:50 0250 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:50 0250 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:50 5362 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:50 5372 [LEMMA] - NESTINGRUNTIME +19:22:50 5382 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:50 5382 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:50 5392 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:50 5392 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:50 5402 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:50 5412 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:50 5412 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:50 5422 [LEMMA] - WORKINGESTTIME +19:22:50 5432 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:50 5432 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:50 5442 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:50 5452 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:50 5462 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:50 5462 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:50 5472 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:50 5482 [LEMMA] - UPLOADFILE +19:22:50 5492 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:50 5502 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:50 5512 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:50 5522 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:50 5522 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:50 5532 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:51 0637 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:51 0647 [LEMMA] - NESTINGRUNTIME +19:22:51 0657 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:51 0667 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:51 0677 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:51 0677 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:51 0687 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:51 0687 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:51 0697 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:51 0707 [LEMMA] - WORKINGESTTIME +19:22:51 0707 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:51 0717 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:51 0727 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:51 0727 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:51 0737 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:51 0747 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:51 0757 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:51 0767 [LEMMA] - UPLOADFILE +19:22:51 0767 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:51 0777 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:51 0787 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:51 0787 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:51 0797 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:51 0807 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:51 5908 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:51 5918 [LEMMA] - NESTINGRUNTIME +19:22:51 5918 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:51 5928 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:51 5938 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:51 5938 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:51 5948 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:51 5958 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:51 5968 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:51 5968 [LEMMA] - WORKINGESTTIME +19:22:51 5978 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:51 5988 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:51 5998 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:51 6008 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:51 6008 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:51 6018 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:51 6028 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:51 6038 [LEMMA] - UPLOADFILE +19:22:51 6048 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:51 6048 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:51 6058 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:51 6068 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:51 6068 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:51 6078 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:52 1169 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:52 1179 [LEMMA] - NESTINGRUNTIME +19:22:52 1179 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:52 1189 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:52 1199 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:52 1199 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:52 1209 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:52 1219 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:52 1229 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:52 1239 [LEMMA] - WORKINGESTTIME +19:22:52 1239 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:52 1249 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:52 1259 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:52 1259 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:52 1269 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:52 1269 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:52 1290 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:52 1300 [LEMMA] - UPLOADFILE +19:22:52 1310 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:52 1310 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:52 1320 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:52 1330 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:52 1340 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:52 1340 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:52 6471 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:52 6481 [LEMMA] - NESTINGRUNTIME +19:22:52 6481 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:52 6491 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:52 6501 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:52 6511 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:52 6511 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:52 6521 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:52 6531 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:52 6531 [LEMMA] - WORKINGESTTIME +19:22:52 6541 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:52 6551 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:52 6551 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:52 6561 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:52 6561 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:52 6571 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:52 6581 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:52 6581 [LEMMA] - UPLOADFILE +19:22:52 6591 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:52 6601 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:52 6601 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:52 6611 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:52 6611 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:52 6621 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:53 1720 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:53 1730 [LEMMA] - NESTINGRUNTIME +19:22:53 1730 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:53 1740 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:53 1750 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:53 1760 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:53 1760 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:53 1770 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:53 1780 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:53 1780 [LEMMA] - WORKINGESTTIME +19:22:53 1790 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:53 1800 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:53 1800 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:53 1810 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:53 1810 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:53 1820 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:53 1840 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:53 1850 [LEMMA] - UPLOADFILE +19:22:53 1860 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:53 1860 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:53 1870 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:53 1880 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:53 1880 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:53 1890 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:53 6981 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:53 6981 [LEMMA] - NESTINGRUNTIME +19:22:53 6991 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:53 7001 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:53 7011 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:53 7011 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:53 7021 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:53 7031 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:53 7041 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:53 7041 [LEMMA] - WORKINGESTTIME +19:22:53 7051 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:53 7051 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:53 7061 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:53 7071 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:53 7071 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:53 7081 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:53 7091 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:53 7101 [LEMMA] - UPLOADFILE +19:22:53 7101 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:53 7111 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:53 7111 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:53 7121 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:53 7131 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:53 7141 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:54 2241 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:54 2241 [LEMMA] - NESTINGRUNTIME +19:22:54 2251 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:54 2261 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:54 2261 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:54 2271 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:54 2281 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:54 2291 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:54 2291 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:54 2301 [LEMMA] - WORKINGESTTIME +19:22:54 2311 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:54 2321 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:54 2331 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:54 2341 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:54 2351 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:54 2361 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:54 2371 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:54 2381 [LEMMA] - UPLOADFILE +19:22:54 2381 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:54 2391 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:54 2391 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:54 2401 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:54 2411 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:54 2411 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:54 7503 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:54 7513 [LEMMA] - NESTINGRUNTIME +19:22:54 7523 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:54 7533 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:54 7533 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:54 7543 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:54 7543 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:54 7553 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:54 7563 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:54 7563 [LEMMA] - WORKINGESTTIME +19:22:54 7573 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:54 7583 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:54 7583 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:54 7593 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:54 7593 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:54 7603 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:54 7613 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:54 7623 [LEMMA] - UPLOADFILE +19:22:54 7623 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:54 7633 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:54 7633 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:54 7643 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:54 7653 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:54 7653 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:55 2753 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:55 2753 [LEMMA] - NESTINGRUNTIME +19:22:55 2763 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:55 2773 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:55 2783 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:55 2783 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:55 2793 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:55 2803 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:55 2813 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:55 2813 [LEMMA] - WORKINGESTTIME +19:22:55 2823 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:55 2833 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:55 2843 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:55 2843 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:55 2853 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:55 2863 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:55 2873 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:55 2883 [LEMMA] - UPLOADFILE +19:22:55 2883 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:55 2893 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:55 2903 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:55 2913 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:55 2913 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:55 2923 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:55 8013 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:55 8024 [LEMMA] - NESTINGRUNTIME +19:22:55 8033 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:55 8033 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:55 8043 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:55 8053 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:55 8053 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:55 8063 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:55 8073 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:55 8073 [LEMMA] - WORKINGESTTIME +19:22:55 8083 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:55 8093 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:55 8093 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:55 8103 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:55 8113 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:55 8113 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:55 8123 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:55 8133 [LEMMA] - UPLOADFILE +19:22:55 8133 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:55 8143 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:55 8143 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:55 8153 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:55 8163 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:55 8173 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:56 3259 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:56 3269 [LEMMA] - NESTINGRUNTIME +19:22:56 3279 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:56 3289 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:56 3289 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:56 3299 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:56 3309 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:56 3309 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:56 3319 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:56 3329 [LEMMA] - WORKINGESTTIME +19:22:56 3339 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:56 3349 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:56 3359 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:56 3359 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:56 3369 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:56 3369 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:56 3389 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:56 3389 [LEMMA] - UPLOADFILE +19:22:56 3399 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:56 3399 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:56 3409 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:56 3419 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:56 3419 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:56 3429 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:56 8521 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:56 8531 [LEMMA] - NESTINGRUNTIME +19:22:56 8541 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:56 8551 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:56 8551 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:56 8561 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:56 8561 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:56 8571 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:56 8581 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:56 8591 [LEMMA] - WORKINGESTTIME +19:22:56 8591 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:56 8601 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:56 8611 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:56 8611 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:56 8621 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:56 8631 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:56 8641 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:56 8641 [LEMMA] - UPLOADFILE +19:22:56 8651 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:56 8661 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:56 8661 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:56 8671 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:56 8681 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:56 8691 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:57 3779 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:57 3779 [LEMMA] - NESTINGRUNTIME +19:22:57 3789 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:57 3799 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:57 3799 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:57 3809 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:57 3819 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:57 3819 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:57 3839 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:57 3839 [LEMMA] - WORKINGESTTIME +19:22:57 3849 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:57 3859 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:57 3869 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:57 3869 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:57 3879 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:57 3889 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:57 3899 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:57 3899 [LEMMA] - UPLOADFILE +19:22:57 3909 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:57 3919 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:57 3919 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:57 3929 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:57 3939 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:57 3939 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:57 9048 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:57 9058 [LEMMA] - NESTINGRUNTIME +19:22:57 9058 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:57 9068 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:57 9078 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:57 9088 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:57 9088 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:57 9098 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:57 9108 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:57 9108 [LEMMA] - WORKINGESTTIME +19:22:57 9118 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:57 9128 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:57 9128 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:57 9138 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:57 9138 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:57 9148 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:57 9158 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:57 9178 [LEMMA] - UPLOADFILE +19:22:57 9178 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:57 9188 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:57 9198 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:57 9208 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:57 9208 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:57 9218 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:58 4319 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:58 4329 [LEMMA] - NESTINGRUNTIME +19:22:58 4329 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:58 4339 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:58 4349 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:58 4359 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:58 4359 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:58 4369 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:58 4379 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:58 4379 [LEMMA] - WORKINGESTTIME +19:22:58 4389 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:58 4399 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:58 4399 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:58 4409 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:58 4409 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:58 4419 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:58 4429 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:58 4439 [LEMMA] - UPLOADFILE +19:22:58 4439 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:58 4449 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:58 4449 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:58 4459 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:58 4469 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:58 4479 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:58 9580 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:58 9590 [LEMMA] - NESTINGRUNTIME +19:22:58 9600 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:58 9610 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:58 9610 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:58 9620 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:58 9630 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:58 9630 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:58 9640 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:58 9650 [LEMMA] - WORKINGESTTIME +19:22:58 9660 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:58 9670 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:58 9670 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:58 9680 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:58 9690 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:58 9700 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:58 9710 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:58 9720 [LEMMA] - UPLOADFILE +19:22:58 9730 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:58 9740 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:58 9750 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:58 9760 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:58 9770 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:58 9770 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:59 4882 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:59 4892 [LEMMA] - NESTINGRUNTIME +19:22:59 4902 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:22:59 4902 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:59 4912 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:59 4912 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:59 4922 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:59 4932 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:59 4942 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:59 4942 [LEMMA] - WORKINGESTTIME +19:22:59 4952 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:22:59 4962 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:59 4962 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:59 4972 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:59 4982 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:59 4982 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:22:59 5002 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:22:59 5012 [LEMMA] - UPLOADFILE +19:22:59 5022 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:22:59 5032 [INFO] - Key: EN#KITTING | Val: Kitting +19:22:59 5032 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:22:59 5042 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:22:59 5042 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:22:59 5052 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:00 0163 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:00 0173 [LEMMA] - NESTINGRUNTIME +19:23:00 0183 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:00 0193 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:00 0203 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:00 0203 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:00 0213 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:00 0223 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:00 0233 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:00 0243 [LEMMA] - WORKINGESTTIME +19:23:00 0243 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:00 0253 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:00 0263 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:00 0263 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:00 0273 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:00 0283 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:00 0293 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:00 0293 [LEMMA] - UPLOADFILE +19:23:00 0303 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:00 0313 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:00 0323 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:00 0333 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:00 0343 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:00 0353 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:00 5444 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:00 5444 [LEMMA] - NESTINGRUNTIME +19:23:00 5454 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:00 5464 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:00 5464 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:00 5474 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:00 5484 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:00 5484 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:00 5504 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:00 5514 [LEMMA] - WORKINGESTTIME +19:23:00 5514 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:00 5524 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:00 5534 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:00 5534 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:00 5544 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:00 5554 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:00 5564 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:00 5564 [LEMMA] - UPLOADFILE +19:23:00 5574 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:00 5584 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:00 5584 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:00 5594 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:00 5604 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:00 5604 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:01 0695 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:01 0705 [LEMMA] - NESTINGRUNTIME +19:23:01 0715 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:01 0725 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:01 0725 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:01 0735 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:01 0745 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:01 0745 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:01 0755 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:01 0765 [LEMMA] - WORKINGESTTIME +19:23:01 0775 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:01 0775 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:01 0785 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:01 0785 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:01 0795 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:01 0805 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:01 0815 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:01 0815 [LEMMA] - UPLOADFILE +19:23:01 0825 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:01 0835 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:01 0835 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:01 0845 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:01 0855 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:01 0865 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:01 5956 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:01 5967 [LEMMA] - NESTINGRUNTIME +19:23:01 5976 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:01 5976 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:01 5987 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:01 5997 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:01 6007 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:01 6017 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:01 6027 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:01 6027 [LEMMA] - WORKINGESTTIME +19:23:01 6037 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:01 6047 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:01 6047 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:01 6057 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:01 6057 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:01 6067 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:01 6077 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:01 6087 [LEMMA] - UPLOADFILE +19:23:01 6087 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:01 6097 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:01 6107 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:01 6107 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:01 6117 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:01 6117 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:02 1218 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:02 1228 [LEMMA] - NESTINGRUNTIME +19:23:02 1228 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:02 1238 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:02 1248 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:02 1248 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:02 1258 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:02 1268 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:02 1268 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:02 1278 [LEMMA] - WORKINGESTTIME +19:23:02 1278 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:02 1288 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:02 1298 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:02 1298 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:02 1308 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:02 1308 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:02 1318 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:02 1328 [LEMMA] - UPLOADFILE +19:23:02 1338 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:02 1348 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:02 1348 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:02 1358 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:02 1368 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:02 1368 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:02 6460 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:02 6470 [LEMMA] - NESTINGRUNTIME +19:23:02 6480 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:02 6480 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:02 6490 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:02 6500 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:02 6510 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:02 6520 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:02 6530 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:02 6530 [LEMMA] - WORKINGESTTIME +19:23:02 6540 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:02 6550 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:02 6550 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:02 6560 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:02 6570 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:02 6570 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:02 6590 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:02 6590 [LEMMA] - UPLOADFILE +19:23:02 6600 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:02 6600 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:02 6610 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:02 6620 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:02 6620 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:02 6630 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:03 1731 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:03 1741 [LEMMA] - NESTINGRUNTIME +19:23:03 1741 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:03 1751 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:03 1751 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:03 1761 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:03 1771 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:03 1771 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:03 1781 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:03 1791 [LEMMA] - WORKINGESTTIME +19:23:03 1791 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:03 1801 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:03 1811 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:03 1811 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:03 1821 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:03 1831 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:03 1841 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:03 1851 [LEMMA] - UPLOADFILE +19:23:03 1861 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:03 1861 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:03 1871 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:03 1881 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:03 1891 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:03 1901 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:03 6986 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:03 6996 [LEMMA] - NESTINGRUNTIME +19:23:03 7006 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:03 7006 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:03 7016 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:03 7026 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:03 7036 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:03 7036 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:03 7046 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:03 7056 [LEMMA] - WORKINGESTTIME +19:23:03 7056 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:03 7066 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:03 7076 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:03 7076 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:03 7086 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:03 7086 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:03 7096 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:03 7106 [LEMMA] - UPLOADFILE +19:23:03 7106 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:03 7116 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:03 7126 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:03 7126 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:03 7136 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:03 7136 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:04 2237 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:04 2237 [LEMMA] - NESTINGRUNTIME +19:23:04 2247 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:04 2257 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:04 2257 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:04 2267 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:04 2277 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:04 2277 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:04 2287 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:04 2297 [LEMMA] - WORKINGESTTIME +19:23:04 2297 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:04 2307 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:04 2307 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:04 2317 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:04 2317 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:04 2327 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:04 2347 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:04 2347 [LEMMA] - UPLOADFILE +19:23:04 2357 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:04 2367 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:04 2367 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:04 2377 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:04 2377 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:04 2387 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:04 7478 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:04 7488 [LEMMA] - NESTINGRUNTIME +19:23:04 7498 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:04 7498 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:04 7508 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:04 7518 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:04 7528 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:04 7528 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:04 7538 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:04 7548 [LEMMA] - WORKINGESTTIME +19:23:04 7548 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:04 7558 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:04 7568 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:04 7568 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:04 7578 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:04 7578 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:04 7588 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:04 7598 [LEMMA] - UPLOADFILE +19:23:04 7608 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:04 7608 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:04 7618 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:04 7628 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:04 7628 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:04 7638 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:05 2729 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:05 2729 [LEMMA] - NESTINGRUNTIME +19:23:05 2739 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:05 2749 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:05 2749 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:05 2759 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:05 2769 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:05 2769 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:05 2779 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:05 2789 [LEMMA] - WORKINGESTTIME +19:23:05 2789 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:05 2799 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:05 2809 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:05 2809 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:05 2819 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:05 2819 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:05 2839 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:05 2849 [LEMMA] - UPLOADFILE +19:23:05 2859 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:05 2859 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:05 2869 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:05 2879 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:05 2889 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:05 2899 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:05 7991 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:05 8001 [LEMMA] - NESTINGRUNTIME +19:23:05 8011 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:05 8011 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:05 8021 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:05 8031 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:05 8041 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:05 8041 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:05 8051 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:05 8061 [LEMMA] - WORKINGESTTIME +19:23:05 8061 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:05 8071 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:05 8071 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:05 8081 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:05 8091 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:05 8091 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:05 8101 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:05 8111 [LEMMA] - UPLOADFILE +19:23:05 8111 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:05 8121 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:05 8131 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:05 8131 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:05 8141 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:05 8151 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:06 3242 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:06 3242 [LEMMA] - NESTINGRUNTIME +19:23:06 3252 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:06 3262 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:06 3262 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:06 3273 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:06 3273 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:06 3282 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:06 3292 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:06 3292 [LEMMA] - WORKINGESTTIME +19:23:06 3303 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:06 3313 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:06 3313 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:06 3323 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:06 3333 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:06 3333 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:06 3353 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:06 3363 [LEMMA] - UPLOADFILE +19:23:06 3363 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:06 3373 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:06 3383 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:06 3383 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:06 3393 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:06 3403 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:06 8484 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:06 8494 [LEMMA] - NESTINGRUNTIME +19:23:06 8504 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:06 8514 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:06 8524 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:06 8534 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:06 8534 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:06 8544 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:06 8554 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:06 8554 [LEMMA] - WORKINGESTTIME +19:23:06 8564 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:06 8574 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:06 8574 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:06 8584 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:06 8594 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:06 8594 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:06 8604 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:06 8614 [LEMMA] - UPLOADFILE +19:23:06 8614 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:06 8624 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:06 8624 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:06 8634 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:06 8644 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:06 8644 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:07 3745 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:07 3745 [LEMMA] - NESTINGRUNTIME +19:23:07 3755 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:07 3765 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:07 3765 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:07 3775 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:07 3785 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:07 3785 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:07 3795 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:07 3795 [LEMMA] - WORKINGESTTIME +19:23:07 3805 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:07 3815 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:07 3815 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:07 3825 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:07 3835 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:07 3835 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:07 3855 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:07 3855 [LEMMA] - UPLOADFILE +19:23:07 3865 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:07 3875 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:07 3875 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:07 3885 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:07 3895 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:07 3895 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:07 8977 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:07 8987 [LEMMA] - NESTINGRUNTIME +19:23:07 8997 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:07 9007 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:07 9017 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:07 9027 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:07 9027 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:07 9037 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:07 9047 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:07 9057 [LEMMA] - WORKINGESTTIME +19:23:07 9057 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:07 9067 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:07 9077 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:07 9077 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:07 9087 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:07 9097 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:07 9107 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:07 9107 [LEMMA] - UPLOADFILE +19:23:07 9117 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:07 9117 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:07 9127 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:07 9127 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:07 9137 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:07 9147 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:08 4238 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:08 4248 [LEMMA] - NESTINGRUNTIME +19:23:08 4258 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:08 4268 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:08 4278 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:08 4288 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:08 4288 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:08 4298 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:08 4308 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:08 4318 [LEMMA] - WORKINGESTTIME +19:23:08 4328 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:08 4328 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:08 4338 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:08 4348 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:08 4358 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:08 4368 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:08 4388 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:08 4398 [LEMMA] - UPLOADFILE +19:23:08 4408 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:08 4418 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:08 4428 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:08 4428 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:08 4438 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:08 4438 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:08 9529 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:08 9539 [LEMMA] - NESTINGRUNTIME +19:23:08 9549 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:08 9549 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:08 9559 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:08 9569 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:08 9569 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:08 9579 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:08 9589 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:08 9589 [LEMMA] - WORKINGESTTIME +19:23:08 9599 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:08 9599 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:08 9609 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:08 9619 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:08 9619 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:08 9629 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:08 9639 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:08 9649 [LEMMA] - UPLOADFILE +19:23:08 9649 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:08 9659 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:08 9669 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:08 9669 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:08 9679 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:08 9689 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:09 4780 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:09 4790 [LEMMA] - NESTINGRUNTIME +19:23:09 4790 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:09 4800 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:09 4810 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:09 4810 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:09 4820 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:09 4830 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:09 4840 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:09 4850 [LEMMA] - WORKINGESTTIME +19:23:09 4860 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:09 4870 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:09 4870 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:09 4880 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:09 4890 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:09 4900 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:09 4900 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:09 4910 [LEMMA] - UPLOADFILE +19:23:09 4920 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:09 4920 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:09 4930 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:09 4930 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:09 4940 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:09 4940 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:10 0030 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:10 0040 [LEMMA] - NESTINGRUNTIME +19:23:10 0050 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:10 0050 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:10 0060 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:10 0060 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:10 0070 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:10 0080 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:10 0080 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:10 0090 [LEMMA] - WORKINGESTTIME +19:23:10 0100 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:10 0110 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:10 0110 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:10 0120 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:10 0130 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:10 0130 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:10 0140 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:10 0150 [LEMMA] - UPLOADFILE +19:23:10 0150 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:10 0160 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:10 0170 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:10 0180 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:10 0190 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:10 0200 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:10 5292 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:10 5302 [LEMMA] - NESTINGRUNTIME +19:23:10 5312 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:10 5312 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:10 5322 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:10 5332 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:10 5332 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:10 5342 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:10 5352 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:10 5362 [LEMMA] - WORKINGESTTIME +19:23:10 5362 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:10 5372 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:10 5372 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:10 5382 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:10 5392 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:10 5392 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:10 5402 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:10 5412 [LEMMA] - UPLOADFILE +19:23:10 5422 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:10 5422 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:10 5432 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:10 5442 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:10 5452 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:10 5452 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:11 0573 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:11 0583 [LEMMA] - NESTINGRUNTIME +19:23:11 0583 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:11 0593 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:11 0603 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:11 0603 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:11 0613 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:11 0623 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:11 0633 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:11 0633 [LEMMA] - WORKINGESTTIME +19:23:11 0643 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:11 0653 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:11 0653 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:11 0663 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:11 0673 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:11 0683 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:11 0693 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:11 0703 [LEMMA] - UPLOADFILE +19:23:11 0713 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:11 0713 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:11 0723 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:11 0733 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:11 0733 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:11 0743 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:11 5845 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:11 5855 [LEMMA] - NESTINGRUNTIME +19:23:11 5855 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:11 5865 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:11 5875 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:11 5875 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:11 5885 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:11 5895 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:11 5895 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:11 5905 [LEMMA] - WORKINGESTTIME +19:23:11 5915 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:11 5915 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:11 5925 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:11 5935 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:11 5935 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:11 5945 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:11 5955 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:11 5965 [LEMMA] - UPLOADFILE +19:23:11 5965 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:11 5975 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:11 5975 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:11 5985 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:11 5995 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:11 5995 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:12 1086 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:12 1096 [LEMMA] - NESTINGRUNTIME +19:23:12 1106 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:12 1106 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:12 1116 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:12 1116 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:12 1126 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:12 1126 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:12 1136 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:12 1146 [LEMMA] - WORKINGESTTIME +19:23:12 1146 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:12 1156 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:12 1156 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:12 1166 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:12 1176 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:12 1176 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:12 1186 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:12 1196 [LEMMA] - UPLOADFILE +19:23:12 1196 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:12 1206 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:12 1216 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:12 1216 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:12 1226 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:12 1226 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:12 6317 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:12 6317 [LEMMA] - NESTINGRUNTIME +19:23:12 6327 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:12 6337 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:12 6337 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:12 6347 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:12 6357 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:12 6367 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:12 6377 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:12 6387 [LEMMA] - WORKINGESTTIME +19:23:12 6387 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:12 6397 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:12 6407 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:12 6407 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:12 6417 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:12 6437 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:12 6447 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:12 6457 [LEMMA] - UPLOADFILE +19:23:12 6467 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:12 6477 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:12 6477 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:12 6487 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:12 6497 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:12 6507 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:13 1599 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:13 1599 [LEMMA] - NESTINGRUNTIME +19:23:13 1609 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:13 1619 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:13 1619 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:13 1629 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:13 1639 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:13 1649 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:13 1659 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:13 1659 [LEMMA] - WORKINGESTTIME +19:23:13 1669 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:13 1689 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:13 1699 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:13 1709 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:13 1719 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:13 1729 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:13 1739 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:13 1749 [LEMMA] - UPLOADFILE +19:23:13 1749 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:13 1759 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:13 1769 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:13 1769 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:13 1779 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:13 1779 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:13 6880 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:13 6890 [LEMMA] - NESTINGRUNTIME +19:23:13 6900 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:13 6900 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:13 6910 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:13 6910 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:13 6920 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:13 6930 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:13 6930 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:13 6940 [LEMMA] - WORKINGESTTIME +19:23:13 6950 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:13 6950 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:13 6960 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:13 6960 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:13 6970 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:13 6980 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:13 6990 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:13 6990 [LEMMA] - UPLOADFILE +19:23:13 7000 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:13 7010 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:13 7020 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:13 7030 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:13 7030 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:13 7040 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:14 2131 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:14 2131 [LEMMA] - NESTINGRUNTIME +19:23:14 2141 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:14 2151 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:14 2161 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:14 2171 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:14 2181 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:14 2181 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:14 2191 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:14 2201 [LEMMA] - WORKINGESTTIME +19:23:14 2211 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:14 2221 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:14 2221 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:14 2231 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:14 2231 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:14 2241 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:14 2251 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:14 2261 [LEMMA] - UPLOADFILE +19:23:14 2261 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:14 2271 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:14 2281 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:14 2281 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:14 2291 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:14 2301 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:14 7403 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:14 7403 [LEMMA] - NESTINGRUNTIME +19:23:14 7413 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:14 7433 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:14 7443 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:14 7443 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:14 7453 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:14 7453 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:14 7463 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:14 7473 [LEMMA] - WORKINGESTTIME +19:23:14 7483 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:14 7483 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:14 7493 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:14 7493 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:14 7503 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:14 7513 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:14 7523 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:14 7533 [LEMMA] - UPLOADFILE +19:23:14 7543 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:14 7543 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:14 7553 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:14 7563 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:14 7563 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:14 7573 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:15 2654 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:15 2664 [LEMMA] - NESTINGRUNTIME +19:23:15 2674 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:15 2684 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:15 2694 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:15 2704 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:15 2704 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:15 2714 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:15 2724 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:15 2724 [LEMMA] - WORKINGESTTIME +19:23:15 2734 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:15 2744 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:15 2744 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:15 2754 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:15 2754 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:15 2764 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:15 2774 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:15 2784 [LEMMA] - UPLOADFILE +19:23:15 2784 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:15 2794 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:15 2804 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:15 2804 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:15 2814 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:15 2814 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:15 7929 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:15 7939 [LEMMA] - NESTINGRUNTIME +19:23:15 7939 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:15 7949 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:15 7959 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:15 7959 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:15 7969 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:15 7969 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:15 7979 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:15 7989 [LEMMA] - WORKINGESTTIME +19:23:15 7989 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:15 7999 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:15 8009 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:15 8009 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:15 8019 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:15 8029 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:15 8039 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:15 8049 [LEMMA] - UPLOADFILE +19:23:15 8059 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:15 8059 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:15 8069 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:15 8069 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:15 8079 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:15 8089 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:16 3180 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:16 3190 [LEMMA] - NESTINGRUNTIME +19:23:16 3190 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:16 3200 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:16 3210 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:16 3210 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:16 3220 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:16 3230 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:16 3230 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:16 3240 [LEMMA] - WORKINGESTTIME +19:23:16 3250 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:16 3250 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:16 3260 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:16 3260 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:16 3270 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:16 3270 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:16 3280 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:16 3290 [LEMMA] - UPLOADFILE +19:23:16 3300 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:16 3300 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:16 3310 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:16 3320 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:16 3320 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:16 3330 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:16 8422 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:16 8432 [LEMMA] - NESTINGRUNTIME +19:23:16 8432 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:16 8442 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:16 8452 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:16 8452 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:16 8462 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:16 8462 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:16 8472 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:16 8482 [LEMMA] - WORKINGESTTIME +19:23:16 8482 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:16 8492 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:16 8502 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:16 8510 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:16 8512 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:16 8522 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:16 8532 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:16 8542 [LEMMA] - UPLOADFILE +19:23:16 8552 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:16 8562 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:16 8572 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:16 8572 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:16 8582 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:16 8582 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:17 3683 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:17 3693 [LEMMA] - NESTINGRUNTIME +19:23:17 3693 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:17 3703 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:17 3713 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:17 3723 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:17 3723 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:17 3733 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:17 3743 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:17 3743 [LEMMA] - WORKINGESTTIME +19:23:17 3753 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:17 3753 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:17 3763 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:17 3763 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:17 3773 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:17 3783 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:17 3793 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:17 3793 [LEMMA] - UPLOADFILE +19:23:17 3803 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:17 3813 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:17 3813 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:17 3823 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:17 3833 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:17 3833 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:17 8935 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:17 8935 [LEMMA] - NESTINGRUNTIME +19:23:17 8945 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:17 8955 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:17 8955 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:17 8965 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:17 8965 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:17 8975 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:17 8975 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:17 8985 [LEMMA] - WORKINGESTTIME +19:23:17 8995 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:17 8995 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:17 9005 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:17 9015 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:17 9025 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:17 9035 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:17 9045 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:17 9055 [LEMMA] - UPLOADFILE +19:23:17 9055 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:17 9065 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:17 9065 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:17 9075 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:17 9085 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:17 9085 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:18 4180 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:18 4190 [LEMMA] - NESTINGRUNTIME +19:23:18 4200 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:18 4210 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:18 4210 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:18 4220 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:18 4230 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:18 4230 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:18 4240 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:18 4250 [LEMMA] - WORKINGESTTIME +19:23:18 4250 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:18 4260 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:18 4260 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:18 4270 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:18 4280 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:18 4280 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:18 4290 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:18 4300 [LEMMA] - UPLOADFILE +19:23:18 4300 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:18 4310 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:18 4320 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:18 4330 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:18 4330 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:18 4340 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:18 9441 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:18 9451 [LEMMA] - NESTINGRUNTIME +19:23:18 9451 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:18 9461 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:18 9471 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:18 9471 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:18 9481 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:18 9491 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:18 9501 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:18 9511 [LEMMA] - WORKINGESTTIME +19:23:18 9521 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:18 9531 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:18 9541 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:18 9551 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:18 9551 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:18 9561 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:18 9571 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:18 9571 [LEMMA] - UPLOADFILE +19:23:18 9581 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:18 9591 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:18 9591 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:18 9601 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:18 9601 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:18 9611 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:19 4713 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:19 4723 [LEMMA] - NESTINGRUNTIME +19:23:19 4723 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:19 4733 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:19 4733 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:19 4743 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:19 4753 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:19 4753 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:19 4763 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:19 4773 [LEMMA] - WORKINGESTTIME +19:23:19 4773 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:19 4783 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:19 4793 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:19 4793 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:19 4803 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:19 4813 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:19 4823 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:19 4823 [LEMMA] - UPLOADFILE +19:23:19 4833 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:19 4843 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:19 4843 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:19 4853 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:19 4863 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:19 4873 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:19 9965 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:19 9975 [LEMMA] - NESTINGRUNTIME +19:23:19 9975 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:19 9985 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:19 9995 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:19 9995 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:20 0005 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:20 0015 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:20 0025 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:20 0035 [LEMMA] - WORKINGESTTIME +19:23:20 0035 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:20 0045 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:20 0055 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:20 0055 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:20 0065 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:20 0075 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:20 0085 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:20 0095 [LEMMA] - UPLOADFILE +19:23:20 0095 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:20 0105 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:20 0115 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:20 0125 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:20 0125 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:20 0135 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:20 5227 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:20 5227 [LEMMA] - NESTINGRUNTIME +19:23:20 5237 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:20 5247 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:20 5247 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:20 5257 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:20 5257 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:20 5267 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:20 5277 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:20 5277 [LEMMA] - WORKINGESTTIME +19:23:20 5287 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:20 5297 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:20 5297 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:20 5307 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:20 5307 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:20 5317 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:20 5327 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:20 5337 [LEMMA] - UPLOADFILE +19:23:20 5337 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:20 5347 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:20 5357 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:20 5367 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:20 5377 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:20 5377 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:21 0476 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:21 0486 [LEMMA] - NESTINGRUNTIME +19:23:21 0486 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:21 0496 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:21 0506 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:21 0506 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:21 0516 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:21 0526 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:21 0536 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:21 0546 [LEMMA] - WORKINGESTTIME +19:23:21 0556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:21 0566 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:21 0566 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:21 0576 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:21 0586 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:21 0586 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:21 0596 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:21 0606 [LEMMA] - UPLOADFILE +19:23:21 0606 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:21 0616 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:21 0626 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:21 0626 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:21 0636 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:21 0646 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:21 5737 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:21 5747 [LEMMA] - NESTINGRUNTIME +19:23:21 5757 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:21 5757 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:21 5767 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:21 5767 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:21 5777 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:21 5777 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:21 5787 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:21 5787 [LEMMA] - WORKINGESTTIME +19:23:21 5797 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:21 5807 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:21 5807 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:21 5817 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:21 5817 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:21 5827 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:21 5837 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:21 5837 [LEMMA] - UPLOADFILE +19:23:21 5847 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:21 5847 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:21 5857 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:21 5867 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:21 5867 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:21 5877 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:22 0969 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:22 0969 [LEMMA] - NESTINGRUNTIME +19:23:22 0979 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:22 0989 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:22 0989 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:22 0999 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:22 0999 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:22 1009 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:22 1019 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:22 1019 [LEMMA] - WORKINGESTTIME +19:23:22 1029 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:22 1029 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:22 1039 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:22 1049 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:22 1049 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:22 1059 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:22 1069 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:22 1069 [LEMMA] - UPLOADFILE +19:23:22 1079 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:22 1089 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:22 1089 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:22 1099 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:22 1099 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:22 1109 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:22 6210 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:22 6220 [LEMMA] - NESTINGRUNTIME +19:23:22 6230 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:22 6230 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:22 6240 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:22 6250 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:22 6250 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:22 6260 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:22 6270 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:22 6280 [LEMMA] - WORKINGESTTIME +19:23:22 6290 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:22 6290 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:22 6300 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:22 6310 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:22 6320 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:22 6320 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:22 6330 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:22 6340 [LEMMA] - UPLOADFILE +19:23:22 6350 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:22 6360 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:22 6370 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:22 6380 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:22 6380 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:22 6390 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:23 1481 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:23 1501 [LEMMA] - NESTINGRUNTIME +19:23:23 1511 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:23 1521 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:23 1531 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:23 1531 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:23 1541 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:23 1551 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:23 1561 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:23 1561 [LEMMA] - WORKINGESTTIME +19:23:23 1571 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:23 1581 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:23 1581 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:23 1591 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:23 1591 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:23 1601 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:23 1611 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:23 1621 [LEMMA] - UPLOADFILE +19:23:23 1631 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:23 1631 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:23 1641 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:23 1651 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:23 1661 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:23 1661 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:23 6763 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:23 6773 [LEMMA] - NESTINGRUNTIME +19:23:23 6783 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:23 6783 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:23 6793 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:23 6803 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:23 6803 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:23 6813 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:23 6823 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:23 6823 [LEMMA] - WORKINGESTTIME +19:23:23 6833 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:23 6843 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:23 6843 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:23 6853 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:23 6863 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:23 6873 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:23 6883 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:23 6883 [LEMMA] - UPLOADFILE +19:23:23 6893 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:23 6903 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:23 6903 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:23 6913 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:23 6913 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:23 6923 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:24 2034 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:24 2044 [LEMMA] - NESTINGRUNTIME +19:23:24 2054 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:24 2064 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:24 2064 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:24 2074 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:24 2084 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:24 2094 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:24 2094 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:24 2104 [LEMMA] - WORKINGESTTIME +19:23:24 2114 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:24 2124 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:24 2124 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:24 2134 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:24 2144 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:24 2154 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:24 2164 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:24 2174 [LEMMA] - UPLOADFILE +19:23:24 2184 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:24 2194 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:24 2204 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:24 2214 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:24 2214 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:24 2224 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:24 7325 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:24 7335 [LEMMA] - NESTINGRUNTIME +19:23:24 7335 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:24 7351 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:24 7355 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:24 7365 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:24 7375 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:24 7385 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:24 7395 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:24 7395 [LEMMA] - WORKINGESTTIME +19:23:24 7405 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:24 7415 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:24 7415 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:24 7425 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:24 7435 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:24 7435 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:24 7445 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:24 7455 [LEMMA] - UPLOADFILE +19:23:24 7465 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:24 7475 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:24 7475 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:24 7485 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:24 7495 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:24 7505 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:25 2627 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:25 2637 [LEMMA] - NESTINGRUNTIME +19:23:25 2637 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:25 2647 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:25 2647 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:25 2657 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:25 2667 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:25 2667 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:25 2677 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:25 2687 [LEMMA] - WORKINGESTTIME +19:23:25 2697 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:25 2707 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:25 2707 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:25 2717 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:25 2727 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:25 2727 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:25 2737 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:25 2747 [LEMMA] - UPLOADFILE +19:23:25 2757 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:25 2757 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:25 2767 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:25 2767 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:25 2777 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:25 2787 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:25 7878 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:25 7888 [LEMMA] - NESTINGRUNTIME +19:23:25 7898 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:25 7908 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:25 7918 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:25 7928 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:25 7928 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:25 7938 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:25 7948 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:25 7948 [LEMMA] - WORKINGESTTIME +19:23:25 7958 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:25 7968 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:25 7968 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:25 7978 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:25 7988 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:25 7998 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:25 8008 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:25 8018 [LEMMA] - UPLOADFILE +19:23:25 8028 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:25 8028 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:25 8038 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:25 8048 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:25 8058 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:25 8058 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:26 3159 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:26 3159 [LEMMA] - NESTINGRUNTIME +19:23:26 3169 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:26 3179 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:26 3179 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:26 3189 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:26 3199 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:26 3199 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:26 3209 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:26 3219 [LEMMA] - WORKINGESTTIME +19:23:26 3229 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:26 3229 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:26 3239 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:26 3249 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:26 3249 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:26 3259 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:26 3269 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:26 3269 [LEMMA] - UPLOADFILE +19:23:26 3279 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:26 3289 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:26 3289 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:26 3299 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:26 3309 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:26 3309 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:26 8410 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:26 8410 [LEMMA] - NESTINGRUNTIME +19:23:26 8420 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:26 8420 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:26 8430 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:26 8440 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:26 8440 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:26 8450 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:26 8460 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:26 8460 [LEMMA] - WORKINGESTTIME +19:23:26 8470 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:26 8470 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:26 8480 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:26 8480 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:26 8490 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:26 8500 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:26 8510 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:26 8510 [LEMMA] - UPLOADFILE +19:23:26 8530 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:26 8540 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:26 8540 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:26 8550 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:26 8560 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:26 8560 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:27 3651 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:27 3661 [LEMMA] - NESTINGRUNTIME +19:23:27 3671 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:27 3681 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:27 3701 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:27 3701 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:27 3711 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:27 3721 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:27 3731 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:27 3741 [LEMMA] - WORKINGESTTIME +19:23:27 3751 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:27 3761 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:27 3771 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:27 3781 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:27 3781 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:27 3791 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:27 3801 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:27 3811 [LEMMA] - UPLOADFILE +19:23:27 3821 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:27 3821 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:27 3831 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:27 3841 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:27 3851 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:27 3861 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:27 8962 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:27 8962 [LEMMA] - NESTINGRUNTIME +19:23:27 8972 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:27 8982 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:27 8982 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:27 8992 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:27 9003 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:27 9003 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:27 9013 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:27 9023 [LEMMA] - WORKINGESTTIME +19:23:27 9033 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:27 9043 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:27 9053 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:27 9053 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:27 9063 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:27 9073 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:27 9083 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:27 9093 [LEMMA] - UPLOADFILE +19:23:27 9093 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:27 9103 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:27 9113 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:27 9113 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:27 9123 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:27 9123 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:28 4264 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:28 4274 [LEMMA] - NESTINGRUNTIME +19:23:28 4274 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:28 4294 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:28 4304 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:28 4304 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:28 4314 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:28 4324 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:28 4334 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:28 4344 [LEMMA] - WORKINGESTTIME +19:23:28 4354 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:28 4364 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:28 4364 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:28 4374 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:28 4384 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:28 4384 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:28 4394 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:28 4404 [LEMMA] - UPLOADFILE +19:23:28 4414 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:28 4414 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:28 4424 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:28 4434 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:28 4444 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:28 4444 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:28 9536 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:28 9546 [LEMMA] - NESTINGRUNTIME +19:23:28 9556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:28 9566 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:28 9566 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:28 9576 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:28 9576 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:28 9586 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:28 9596 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:28 9596 [LEMMA] - WORKINGESTTIME +19:23:28 9606 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:28 9616 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:28 9616 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:28 9626 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:28 9636 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:28 9646 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:28 9656 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:28 9656 [LEMMA] - UPLOADFILE +19:23:28 9666 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:28 9666 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:28 9676 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:28 9686 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:28 9686 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:28 9696 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:29 4787 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:29 4797 [LEMMA] - NESTINGRUNTIME +19:23:29 4797 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:29 4807 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:29 4817 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:29 4817 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:29 4827 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:29 4827 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:29 4837 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:29 4847 [LEMMA] - WORKINGESTTIME +19:23:29 4857 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:29 4867 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:29 4867 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:29 4877 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:29 4877 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:29 4887 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:29 4897 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:29 4907 [LEMMA] - UPLOADFILE +19:23:29 4907 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:29 4917 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:29 4917 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:29 4927 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:29 4937 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:29 4937 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:30 0039 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:30 0049 [LEMMA] - NESTINGRUNTIME +19:23:30 0059 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:30 0059 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:30 0069 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:30 0079 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:30 0079 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:30 0089 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:30 0099 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:30 0099 [LEMMA] - WORKINGESTTIME +19:23:30 0109 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:30 0109 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:30 0119 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:30 0119 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:30 0129 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:30 0139 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:30 0149 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:30 0149 [LEMMA] - UPLOADFILE +19:23:30 0159 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:30 0169 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:30 0169 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:30 0179 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:30 0189 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:30 0199 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:30 5308 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:30 5318 [LEMMA] - NESTINGRUNTIME +19:23:30 5318 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:30 5328 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:30 5338 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:30 5338 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:30 5348 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:30 5358 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:30 5368 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:30 5378 [LEMMA] - WORKINGESTTIME +19:23:30 5388 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:30 5398 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:30 5398 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:30 5408 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:30 5418 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:30 5418 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:30 5438 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:30 5438 [LEMMA] - UPLOADFILE +19:23:30 5448 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:30 5458 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:30 5458 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:30 5468 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:30 5478 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:30 5488 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:31 0575 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:31 0585 [LEMMA] - NESTINGRUNTIME +19:23:31 0585 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:31 0595 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:31 0605 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:31 0605 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:31 0615 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:31 0625 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:31 0625 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:31 0635 [LEMMA] - WORKINGESTTIME +19:23:31 0635 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:31 0645 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:31 0655 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:31 0655 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:31 0665 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:31 0665 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:31 0675 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:31 0685 [LEMMA] - UPLOADFILE +19:23:31 0695 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:31 0705 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:31 0715 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:31 0715 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:31 0725 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:31 0735 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:31 5817 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:31 5828 [LEMMA] - NESTINGRUNTIME +19:23:31 5837 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:31 5847 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:31 5847 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:31 5857 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:31 5867 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:31 5867 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:31 5877 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:31 5887 [LEMMA] - WORKINGESTTIME +19:23:31 5887 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:31 5897 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:31 5897 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:31 5907 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:31 5917 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:31 5917 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:31 5927 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:31 5937 [LEMMA] - UPLOADFILE +19:23:31 5947 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:31 5947 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:31 5957 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:31 5967 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:31 5967 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:31 5977 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:32 1079 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:32 1089 [LEMMA] - NESTINGRUNTIME +19:23:32 1089 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:32 1099 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:32 1109 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:32 1109 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:32 1119 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:32 1119 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:32 1129 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:32 1139 [LEMMA] - WORKINGESTTIME +19:23:32 1139 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:32 1149 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:32 1159 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:32 1159 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:32 1169 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:32 1179 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:32 1189 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:32 1199 [LEMMA] - UPLOADFILE +19:23:32 1209 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:32 1209 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:32 1219 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:32 1229 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:32 1239 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:32 1239 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:32 6320 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:32 6330 [LEMMA] - NESTINGRUNTIME +19:23:32 6340 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:32 6350 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:32 6350 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:32 6360 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:32 6370 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:32 6380 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:32 6390 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:32 6390 [LEMMA] - WORKINGESTTIME +19:23:32 6400 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:32 6410 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:32 6410 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:32 6420 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:32 6420 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:32 6430 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:32 6440 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:32 6450 [LEMMA] - UPLOADFILE +19:23:32 6450 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:32 6460 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:32 6460 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:32 6470 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:32 6470 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:32 6480 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:33 1602 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:33 1602 [LEMMA] - NESTINGRUNTIME +19:23:33 1612 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:33 1622 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:33 1622 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:33 1632 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:33 1642 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:33 1642 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:33 1652 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:33 1662 [LEMMA] - WORKINGESTTIME +19:23:33 1662 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:33 1672 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:33 1672 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:33 1682 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:33 1692 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:33 1702 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:33 1712 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:33 1712 [LEMMA] - UPLOADFILE +19:23:33 1722 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:33 1732 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:33 1732 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:33 1742 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:33 1752 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:33 1752 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:33 6857 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:33 6867 [LEMMA] - NESTINGRUNTIME +19:23:33 6877 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:33 6887 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:33 6887 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:33 6897 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:33 6897 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:33 6907 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:33 6917 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:33 6917 [LEMMA] - WORKINGESTTIME +19:23:33 6927 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:33 6937 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:33 6937 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:33 6947 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:33 6957 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:33 6957 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:33 6967 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:33 6977 [LEMMA] - UPLOADFILE +19:23:33 6987 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:33 6997 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:33 6997 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:33 7007 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:33 7007 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:33 7027 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:34 2109 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:34 2119 [LEMMA] - NESTINGRUNTIME +19:23:34 2128 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:34 2138 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:34 2149 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:34 2149 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:34 2158 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:34 2158 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:34 2168 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:34 2168 [LEMMA] - WORKINGESTTIME +19:23:34 2179 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:34 2189 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:34 2189 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:34 2199 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:34 2209 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:34 2209 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:34 2219 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:34 2229 [LEMMA] - UPLOADFILE +19:23:34 2239 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:34 2249 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:34 2249 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:34 2259 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:34 2259 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:34 2269 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:34 7370 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:34 7380 [LEMMA] - NESTINGRUNTIME +19:23:34 7390 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:34 7400 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:34 7400 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:34 7410 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:34 7420 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:34 7420 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:34 7430 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:34 7430 [LEMMA] - WORKINGESTTIME +19:23:34 7440 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:34 7450 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:34 7450 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:34 7460 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:34 7460 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:34 7470 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:34 7480 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:34 7490 [LEMMA] - UPLOADFILE +19:23:34 7490 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:34 7500 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:34 7500 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:34 7510 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:34 7520 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:34 7520 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:35 2621 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:35 2621 [LEMMA] - NESTINGRUNTIME +19:23:35 2631 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:35 2641 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:35 2641 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:35 2651 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:35 2651 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:35 2661 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:35 2671 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:35 2671 [LEMMA] - WORKINGESTTIME +19:23:35 2681 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:35 2691 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:35 2701 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:35 2711 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:35 2721 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:35 2721 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:35 2741 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:35 2741 [LEMMA] - UPLOADFILE +19:23:35 2751 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:35 2751 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:35 2761 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:35 2771 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:35 2771 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:35 2781 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:35 7872 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:35 7882 [LEMMA] - NESTINGRUNTIME +19:23:35 7892 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:35 7902 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:35 7902 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:35 7912 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:35 7922 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:35 7922 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:35 7932 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:35 7942 [LEMMA] - WORKINGESTTIME +19:23:35 7942 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:35 7952 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:35 7962 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:35 7962 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:35 7972 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:35 7982 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:35 7992 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:35 7992 [LEMMA] - UPLOADFILE +19:23:35 8002 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:35 8012 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:35 8012 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:35 8022 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:35 8032 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:35 8042 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:36 3143 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:36 3153 [LEMMA] - NESTINGRUNTIME +19:23:36 3153 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:36 3163 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:36 3173 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:36 3173 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:36 3183 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:36 3193 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:36 3193 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:36 3203 [LEMMA] - WORKINGESTTIME +19:23:36 3213 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:36 3223 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:36 3233 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:36 3233 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:36 3243 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:36 3253 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:36 3263 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:36 3263 [LEMMA] - UPLOADFILE +19:23:36 3273 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:36 3283 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:36 3283 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:36 3293 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:36 3303 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:36 3303 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:36 8394 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:36 8404 [LEMMA] - NESTINGRUNTIME +19:23:36 8414 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:36 8424 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:36 8424 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:36 8434 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:36 8434 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:36 8444 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:36 8454 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:36 8454 [LEMMA] - WORKINGESTTIME +19:23:36 8464 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:36 8474 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:36 8474 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:36 8484 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:36 8494 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:36 8494 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:36 8504 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:36 8514 [LEMMA] - UPLOADFILE +19:23:36 8514 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:36 8534 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:36 8544 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:36 8544 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:36 8554 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:36 8564 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:37 3646 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:37 3646 [LEMMA] - NESTINGRUNTIME +19:23:37 3656 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:37 3666 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:37 3666 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:37 3676 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:37 3686 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:37 3686 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:37 3706 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:37 3716 [LEMMA] - WORKINGESTTIME +19:23:37 3716 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:37 3726 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:37 3736 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:37 3736 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:37 3746 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:37 3746 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:37 3756 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:37 3766 [LEMMA] - UPLOADFILE +19:23:37 3766 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:37 3776 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:37 3786 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:37 3786 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:37 3796 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:37 3796 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:37 8903 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:37 8903 [LEMMA] - NESTINGRUNTIME +19:23:37 8913 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:37 8923 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:37 8923 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:37 8933 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:37 8933 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:37 8943 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:37 8953 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:37 8953 [LEMMA] - WORKINGESTTIME +19:23:37 8963 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:37 8963 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:37 8973 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:37 8973 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:37 8983 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:37 8993 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:37 9003 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:37 9003 [LEMMA] - UPLOADFILE +19:23:37 9013 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:37 9013 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:37 9023 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:37 9033 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:37 9043 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:37 9043 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:38 4145 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:38 4145 [LEMMA] - NESTINGRUNTIME +19:23:38 4155 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:38 4165 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:38 4175 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:38 4185 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:38 4195 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:38 4205 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:38 4215 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:38 4225 [LEMMA] - WORKINGESTTIME +19:23:38 4235 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:38 4245 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:38 4245 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:38 4255 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:38 4265 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:38 4275 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:38 4285 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:38 4295 [LEMMA] - UPLOADFILE +19:23:38 4305 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:38 4305 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:38 4315 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:38 4325 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:38 4325 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:38 4335 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:38 9426 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:38 9436 [LEMMA] - NESTINGRUNTIME +19:23:38 9436 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:38 9446 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:38 9456 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:38 9456 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:38 9466 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:38 9476 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:38 9486 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:38 9496 [LEMMA] - WORKINGESTTIME +19:23:38 9496 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:38 9506 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:38 9516 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:38 9526 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:38 9536 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:38 9546 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:38 9556 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:38 9566 [LEMMA] - UPLOADFILE +19:23:38 9576 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:38 9586 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:38 9586 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:38 9596 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:38 9606 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:38 9606 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:39 4718 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:39 4728 [LEMMA] - NESTINGRUNTIME +19:23:39 4738 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:39 4738 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:39 4748 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:39 4758 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:39 4758 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:39 4768 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:39 4778 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:39 4778 [LEMMA] - WORKINGESTTIME +19:23:39 4788 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:39 4798 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:39 4808 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:39 4808 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:39 4818 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:39 4828 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:39 4838 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:39 4838 [LEMMA] - UPLOADFILE +19:23:39 4848 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:39 4858 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:39 4868 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:39 4878 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:39 4878 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:39 4888 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:39 9989 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:39 9999 [LEMMA] - NESTINGRUNTIME +19:23:39 9999 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:40 0009 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:40 0009 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:40 0019 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:40 0029 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:40 0039 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:40 0039 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:40 0049 [LEMMA] - WORKINGESTTIME +19:23:40 0059 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:40 0059 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:40 0069 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:40 0079 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:40 0079 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:40 0089 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:40 0099 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:40 0109 [LEMMA] - UPLOADFILE +19:23:40 0109 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:40 0119 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:40 0119 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:40 0129 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:40 0139 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:40 0139 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:40 5230 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:40 5240 [LEMMA] - NESTINGRUNTIME +19:23:40 5240 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:40 5250 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:40 5260 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:40 5260 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:40 5270 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:40 5280 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:40 5280 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:40 5290 [LEMMA] - WORKINGESTTIME +19:23:40 5300 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:40 5300 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:40 5310 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:40 5320 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:40 5320 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:40 5330 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:40 5340 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:40 5340 [LEMMA] - UPLOADFILE +19:23:40 5350 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:40 5360 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:40 5370 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:40 5380 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:40 5380 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:40 5390 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:41 0492 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:41 0492 [LEMMA] - NESTINGRUNTIME +19:23:41 0502 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:41 0502 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:41 0512 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:41 0522 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:41 0532 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:41 0542 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:41 0552 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:41 0552 [LEMMA] - WORKINGESTTIME +19:23:41 0562 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:41 0572 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:41 0572 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:41 0582 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:41 0592 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:41 0602 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:41 0602 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:41 0612 [LEMMA] - UPLOADFILE +19:23:41 0622 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:41 0632 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:41 0632 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:41 0642 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:41 0652 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:41 0652 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:41 5750 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:41 5760 [LEMMA] - NESTINGRUNTIME +19:23:41 5760 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:41 5770 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:41 5780 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:41 5780 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:41 5790 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:41 5800 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:41 5810 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:41 5810 [LEMMA] - WORKINGESTTIME +19:23:41 5820 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:41 5820 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:41 5830 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:41 5840 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:41 5840 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:41 5850 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:41 5860 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:41 5870 [LEMMA] - UPLOADFILE +19:23:41 5870 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:41 5880 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:41 5890 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:41 5900 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:41 5900 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:41 5910 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:42 1011 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:42 1021 [LEMMA] - NESTINGRUNTIME +19:23:42 1031 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:42 1041 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:42 1051 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:42 1061 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:42 1061 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:42 1071 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:42 1081 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:42 1091 [LEMMA] - WORKINGESTTIME +19:23:42 1091 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:42 1101 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:42 1111 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:42 1111 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:42 1121 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:42 1131 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:42 1141 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:42 1151 [LEMMA] - UPLOADFILE +19:23:42 1151 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:42 1161 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:42 1171 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:42 1171 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:42 1181 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:42 1191 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:42 6277 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:42 6287 [LEMMA] - NESTINGRUNTIME +19:23:42 6297 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:42 6297 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:42 6307 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:42 6317 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:42 6317 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:42 6327 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:42 6337 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:42 6347 [LEMMA] - WORKINGESTTIME +19:23:42 6347 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:42 6357 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:42 6367 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:42 6377 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:42 6377 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:42 6387 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:42 6397 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:42 6407 [LEMMA] - UPLOADFILE +19:23:42 6407 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:42 6417 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:42 6417 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:42 6427 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:42 6437 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:42 6437 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:43 1538 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:43 1548 [LEMMA] - NESTINGRUNTIME +19:23:43 1558 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:43 1558 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:43 1568 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:43 1578 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:43 1578 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:43 1588 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:43 1598 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:43 1608 [LEMMA] - WORKINGESTTIME +19:23:43 1608 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:43 1618 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:43 1628 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:43 1628 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:43 1638 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:43 1648 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:43 1658 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:43 1658 [LEMMA] - UPLOADFILE +19:23:43 1668 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:43 1678 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:43 1678 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:43 1688 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:43 1698 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:43 1698 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:43 6797 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:43 6797 [LEMMA] - NESTINGRUNTIME +19:23:43 6807 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:43 6817 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:43 6827 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:43 6837 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:43 6837 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:43 6847 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:43 6867 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:43 6867 [LEMMA] - WORKINGESTTIME +19:23:43 6877 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:43 6887 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:43 6897 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:43 6907 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:43 6917 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:43 6917 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:43 6937 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:43 6937 [LEMMA] - UPLOADFILE +19:23:43 6947 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:43 6957 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:43 6957 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:43 6967 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:43 6977 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:43 6987 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:44 2099 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:44 2099 [LEMMA] - NESTINGRUNTIME +19:23:44 2109 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:44 2119 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:44 2129 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:44 2129 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:44 2139 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:44 2149 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:44 2159 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:44 2159 [LEMMA] - WORKINGESTTIME +19:23:44 2169 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:44 2179 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:44 2179 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:44 2189 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:44 2199 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:44 2209 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:44 2219 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:44 2229 [LEMMA] - UPLOADFILE +19:23:44 2229 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:44 2239 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:44 2249 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:44 2249 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:44 2259 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:44 2269 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:44 7381 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:44 7391 [LEMMA] - NESTINGRUNTIME +19:23:44 7401 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:44 7401 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:44 7411 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:44 7421 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:44 7421 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:44 7431 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:44 7431 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:44 7441 [LEMMA] - WORKINGESTTIME +19:23:44 7451 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:44 7451 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:44 7461 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:44 7461 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:44 7471 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:44 7481 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:44 7491 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:44 7491 [LEMMA] - UPLOADFILE +19:23:44 7501 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:44 7501 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:44 7511 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:44 7511 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:44 7521 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:44 7531 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:45 2629 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:45 2629 [LEMMA] - NESTINGRUNTIME +19:23:45 2639 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:45 2649 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:45 2649 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:45 2659 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:45 2659 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:45 2669 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:45 2679 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:45 2679 [LEMMA] - WORKINGESTTIME +19:23:45 2689 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:45 2699 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:45 2699 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:45 2709 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:45 2719 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:45 2729 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:45 2739 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:45 2739 [LEMMA] - UPLOADFILE +19:23:45 2749 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:45 2749 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:45 2759 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:45 2769 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:45 2769 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:45 2779 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:45 7881 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:45 7891 [LEMMA] - NESTINGRUNTIME +19:23:45 7891 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:45 7901 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:45 7901 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:45 7911 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:45 7911 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:45 7921 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:45 7931 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:45 7931 [LEMMA] - WORKINGESTTIME +19:23:45 7941 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:45 7951 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:45 7951 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:45 7961 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:45 7961 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:45 7971 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:45 7981 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:45 7981 [LEMMA] - UPLOADFILE +19:23:45 7991 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:45 8001 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:45 8001 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:45 8011 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:45 8011 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:45 8021 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:46 3103 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:46 3113 [LEMMA] - NESTINGRUNTIME +19:23:46 3123 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:46 3133 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:46 3133 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:46 3143 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:46 3143 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:46 3153 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:46 3163 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:46 3163 [LEMMA] - WORKINGESTTIME +19:23:46 3173 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:46 3183 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:46 3183 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:46 3193 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:46 3203 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:46 3213 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:46 3223 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:46 3223 [LEMMA] - UPLOADFILE +19:23:46 3233 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:46 3233 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:46 3243 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:46 3253 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:46 3263 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:46 3263 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:46 8352 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:46 8362 [LEMMA] - NESTINGRUNTIME +19:23:46 8372 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:46 8382 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:46 8392 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:46 8402 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:46 8402 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:46 8412 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:46 8422 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:46 8422 [LEMMA] - WORKINGESTTIME +19:23:46 8432 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:46 8442 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:46 8442 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:46 8452 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:46 8452 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:46 8462 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:46 8472 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:46 8472 [LEMMA] - UPLOADFILE +19:23:46 8482 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:46 8482 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:46 8492 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:46 8502 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:46 8502 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:46 8512 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:47 3610 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:47 3610 [LEMMA] - NESTINGRUNTIME +19:23:47 3620 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:47 3630 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:47 3630 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:47 3640 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:47 3640 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:47 3650 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:47 3660 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:47 3670 [LEMMA] - WORKINGESTTIME +19:23:47 3670 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:47 3680 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:47 3690 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:47 3690 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:47 3700 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:47 3710 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:47 3720 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:47 3730 [LEMMA] - UPLOADFILE +19:23:47 3740 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:47 3740 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:47 3750 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:47 3760 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:47 3760 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:47 3770 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:47 8852 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:47 8862 [LEMMA] - NESTINGRUNTIME +19:23:47 8872 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:47 8882 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:47 8882 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:47 8892 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:47 8902 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:47 8902 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:47 8912 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:47 8922 [LEMMA] - WORKINGESTTIME +19:23:47 8922 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:47 8932 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:47 8942 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:47 8942 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:47 8952 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:47 8952 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:47 8962 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:47 8972 [LEMMA] - UPLOADFILE +19:23:47 8982 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:47 8982 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:47 8992 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:47 9002 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:47 9002 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:47 9012 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:48 4123 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:48 4133 [LEMMA] - NESTINGRUNTIME +19:23:48 4143 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:48 4143 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:48 4153 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:48 4163 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:48 4173 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:48 4173 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:48 4183 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:48 4193 [LEMMA] - WORKINGESTTIME +19:23:48 4193 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:48 4213 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:48 4223 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:48 4223 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:48 4234 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:48 4243 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:48 4253 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:48 4263 [LEMMA] - UPLOADFILE +19:23:48 4263 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:48 4273 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:48 4273 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:48 4283 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:48 4293 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:48 4293 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:48 9393 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:48 9403 [LEMMA] - NESTINGRUNTIME +19:23:48 9413 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:48 9413 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:48 9423 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:48 9433 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:48 9433 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:48 9443 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:48 9453 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:48 9453 [LEMMA] - WORKINGESTTIME +19:23:48 9463 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:48 9473 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:48 9473 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:48 9483 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:48 9493 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:48 9493 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:48 9503 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:48 9513 [LEMMA] - UPLOADFILE +19:23:48 9523 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:48 9523 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:48 9533 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:48 9543 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:48 9553 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:48 9563 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:49 4660 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:49 4670 [LEMMA] - NESTINGRUNTIME +19:23:49 4670 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:49 4680 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:49 4680 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:49 4690 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:49 4700 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:49 4710 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:49 4720 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:49 4720 [LEMMA] - WORKINGESTTIME +19:23:49 4730 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:49 4730 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:49 4740 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:49 4750 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:49 4750 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:49 4760 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:49 4770 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:49 4770 [LEMMA] - UPLOADFILE +19:23:49 4780 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:49 4780 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:49 4790 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:49 4800 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:49 4800 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:49 4810 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:49 9897 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:49 9907 [LEMMA] - NESTINGRUNTIME +19:23:49 9907 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:49 9917 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:49 9927 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:49 9927 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:49 9937 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:49 9947 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:49 9947 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:49 9957 [LEMMA] - WORKINGESTTIME +19:23:49 9967 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:49 9967 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:49 9977 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:49 9987 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:49 9987 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:49 9997 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:50 0007 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:50 0017 [LEMMA] - UPLOADFILE +19:23:50 0017 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:50 0027 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:50 0037 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:50 0037 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:50 0047 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:50 0057 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:50 5159 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:50 5159 [LEMMA] - NESTINGRUNTIME +19:23:50 5169 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:50 5179 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:50 5179 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:50 5189 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:50 5199 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:50 5199 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:50 5209 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:50 5219 [LEMMA] - WORKINGESTTIME +19:23:50 5229 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:50 5239 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:50 5239 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:50 5249 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:50 5259 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:50 5269 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:50 5279 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:50 5279 [LEMMA] - UPLOADFILE +19:23:50 5289 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:50 5289 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:50 5299 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:50 5309 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:50 5309 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:50 5319 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:51 0430 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:51 0430 [LEMMA] - NESTINGRUNTIME +19:23:51 0440 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:51 0450 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:51 0450 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:51 0460 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:51 0460 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:51 0470 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:51 0470 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:51 0480 [LEMMA] - WORKINGESTTIME +19:23:51 0480 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:51 0490 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:51 0500 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:51 0500 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:51 0510 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:51 0510 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:51 0520 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:51 0530 [LEMMA] - UPLOADFILE +19:23:51 0540 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:51 0550 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:51 0550 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:51 0560 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:51 0560 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:51 0570 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:51 5663 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:51 5663 [LEMMA] - NESTINGRUNTIME +19:23:51 5673 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:51 5683 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:51 5693 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:51 5703 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:51 5713 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:51 5723 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:51 5733 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:51 5743 [LEMMA] - WORKINGESTTIME +19:23:51 5753 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:51 5753 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:51 5763 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:51 5773 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:51 5773 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:51 5783 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:51 5793 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:51 5803 [LEMMA] - UPLOADFILE +19:23:51 5813 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:51 5813 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:51 5823 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:51 5823 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:51 5833 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:51 5843 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:52 0955 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:52 0955 [LEMMA] - NESTINGRUNTIME +19:23:52 0965 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:52 0975 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:52 0975 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:52 0985 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:52 0995 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:52 0995 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:52 1005 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:52 1005 [LEMMA] - WORKINGESTTIME +19:23:52 1015 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:52 1025 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:52 1035 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:52 1045 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:52 1045 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:52 1055 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:52 1065 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:52 1075 [LEMMA] - UPLOADFILE +19:23:52 1085 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:52 1085 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:52 1095 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:52 1095 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:52 1105 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:52 1115 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:52 6208 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:52 6218 [LEMMA] - NESTINGRUNTIME +19:23:52 6228 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:52 6238 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:52 6248 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:52 6248 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:52 6258 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:52 6258 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:52 6268 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:52 6278 [LEMMA] - WORKINGESTTIME +19:23:52 6288 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:52 6288 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:52 6298 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:52 6298 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:52 6308 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:52 6318 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:52 6328 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:52 6338 [LEMMA] - UPLOADFILE +19:23:52 6348 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:52 6348 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:52 6358 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:52 6368 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:52 6378 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:52 6388 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:53 1475 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:53 1485 [LEMMA] - NESTINGRUNTIME +19:23:53 1495 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:53 1495 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:53 1505 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:53 1515 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:53 1515 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:53 1525 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:53 1535 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:53 1535 [LEMMA] - WORKINGESTTIME +19:23:53 1545 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:53 1555 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:53 1555 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:53 1565 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:53 1575 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:53 1575 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:53 1585 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:53 1595 [LEMMA] - UPLOADFILE +19:23:53 1605 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:53 1605 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:53 1615 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:53 1625 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:53 1625 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:53 1635 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:53 6731 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:53 6731 [LEMMA] - NESTINGRUNTIME +19:23:53 6741 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:53 6751 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:53 6751 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:53 6761 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:53 6771 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:53 6781 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:53 6781 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:53 6791 [LEMMA] - WORKINGESTTIME +19:23:53 6801 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:53 6801 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:53 6811 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:53 6821 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:53 6821 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:53 6831 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:53 6841 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:53 6851 [LEMMA] - UPLOADFILE +19:23:53 6851 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:53 6861 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:53 6871 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:53 6881 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:53 6891 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:53 6891 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:54 1973 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:54 1983 [LEMMA] - NESTINGRUNTIME +19:23:54 1993 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:54 2003 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:54 2003 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:54 2013 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:54 2023 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:54 2023 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:54 2043 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:54 2043 [LEMMA] - WORKINGESTTIME +19:23:54 2053 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:54 2063 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:54 2073 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:54 2073 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:54 2083 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:54 2083 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:54 2093 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:54 2103 [LEMMA] - UPLOADFILE +19:23:54 2113 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:54 2123 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:54 2133 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:54 2143 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:54 2143 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:54 2153 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:54 7265 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:54 7275 [LEMMA] - NESTINGRUNTIME +19:23:54 7275 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:54 7285 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:54 7295 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:54 7295 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:54 7305 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:54 7315 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:54 7325 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:54 7325 [LEMMA] - WORKINGESTTIME +19:23:54 7335 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:54 7345 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:54 7345 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:54 7355 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:54 7355 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:54 7365 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:54 7385 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:54 7395 [LEMMA] - UPLOADFILE +19:23:54 7395 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:54 7405 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:54 7415 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:54 7425 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:54 7425 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:54 7435 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:55 2536 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:55 2546 [LEMMA] - NESTINGRUNTIME +19:23:55 2556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:55 2556 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:55 2567 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:55 2576 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:55 2576 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:55 2586 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:55 2597 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:55 2607 [LEMMA] - WORKINGESTTIME +19:23:55 2607 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:55 2617 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:55 2617 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:55 2627 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:55 2627 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:55 2637 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:55 2647 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:55 2657 [LEMMA] - UPLOADFILE +19:23:55 2657 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:55 2667 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:55 2677 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:55 2677 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:55 2687 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:55 2697 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:55 7788 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:55 7798 [LEMMA] - NESTINGRUNTIME +19:23:55 7808 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:55 7808 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:55 7818 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:55 7828 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:55 7838 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:55 7838 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:55 7848 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:55 7858 [LEMMA] - WORKINGESTTIME +19:23:55 7868 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:55 7868 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:55 7878 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:55 7888 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:55 7898 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:55 7898 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:55 7908 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:55 7918 [LEMMA] - UPLOADFILE +19:23:55 7928 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:55 7928 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:55 7938 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:55 7948 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:55 7948 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:55 7958 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:56 3049 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:56 3059 [LEMMA] - NESTINGRUNTIME +19:23:56 3069 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:56 3079 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:56 3089 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:56 3099 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:56 3109 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:56 3109 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:56 3119 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:56 3129 [LEMMA] - WORKINGESTTIME +19:23:56 3129 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:56 3139 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:56 3149 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:56 3149 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:56 3159 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:56 3169 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:56 3179 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:56 3189 [LEMMA] - UPLOADFILE +19:23:56 3189 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:56 3199 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:56 3209 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:56 3219 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:56 3229 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:56 3239 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:59 5806 Caricati 18 lemmi! +19:23:59 5836 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:59 5836 [LEMMA] - NESTINGRUNTIME +19:23:59 5846 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:23:59 5856 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:59 5866 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:59 5886 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:59 5896 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:59 5906 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:59 5916 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:59 5926 [LEMMA] - WORKINGESTTIME +19:23:59 5936 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:23:59 5946 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:59 5956 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:59 5956 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:59 5966 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:59 5976 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:23:59 6136 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:23:59 6146 [LEMMA] - UPLOADFILE +19:23:59 6156 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:23:59 6166 [INFO] - Key: EN#KITTING | Val: Kitting +19:23:59 6176 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:23:59 6176 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:23:59 6186 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:23:59 6196 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:02 5403 Caricati 18 lemmi! +19:24:02 5433 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:02 5443 [LEMMA] - NESTINGRUNTIME +19:24:02 5443 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:02 5453 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:02 5463 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:02 5473 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:02 5473 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:02 5483 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:02 5493 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:02 5503 [LEMMA] - WORKINGESTTIME +19:24:02 5503 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:02 5513 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:02 5523 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:02 5533 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:02 5533 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:02 5543 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:02 5653 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:02 5663 [LEMMA] - UPLOADFILE +19:24:02 5673 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:02 5683 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:02 5693 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:02 5693 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:02 5713 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:02 5713 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:03 1115 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:03 1125 [LEMMA] - NESTINGRUNTIME +19:24:03 1135 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:03 1135 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:03 1145 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:03 1155 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:03 1155 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:03 1165 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:03 1175 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:03 1175 [LEMMA] - WORKINGESTTIME +19:24:03 1185 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:03 1195 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:03 1195 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:03 1205 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:03 1215 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:03 1225 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:03 1235 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:03 1245 [LEMMA] - UPLOADFILE +19:24:03 1245 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:03 1255 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:03 1265 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:03 1265 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:03 1275 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:03 1275 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:03 6367 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:03 6377 [LEMMA] - NESTINGRUNTIME +19:24:03 6387 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:03 6397 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:03 6397 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:03 6407 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:03 6407 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:03 6417 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:03 6427 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:03 6427 [LEMMA] - WORKINGESTTIME +19:24:03 6437 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:03 6447 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:03 6447 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:03 6457 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:03 6457 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:03 6467 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:03 6477 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:03 6477 [LEMMA] - UPLOADFILE +19:24:03 6487 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:03 6497 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:03 6497 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:03 6507 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:03 6517 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:03 6517 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:04 1600 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:04 1610 [LEMMA] - NESTINGRUNTIME +19:24:04 1620 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:04 1630 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:04 1630 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:04 1640 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:04 1640 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:04 1650 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:04 1660 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:04 1660 [LEMMA] - WORKINGESTTIME +19:24:04 1670 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:04 1680 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:04 1690 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:04 1690 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:04 1700 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:04 1710 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:04 1730 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:04 1740 [LEMMA] - UPLOADFILE +19:24:04 1740 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:04 1750 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:04 1760 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:04 1760 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:04 1770 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:04 1780 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:04 6881 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:04 6891 [LEMMA] - NESTINGRUNTIME +19:24:04 6901 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:04 6901 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:04 6911 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:04 6921 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:04 6921 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:04 6931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:04 6941 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:04 6941 [LEMMA] - WORKINGESTTIME +19:24:04 6951 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:04 6961 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:04 6961 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:04 6971 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:04 6971 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:04 6981 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:04 6991 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:04 6991 [LEMMA] - UPLOADFILE +19:24:04 7001 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:04 7011 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:04 7011 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:04 7021 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:04 7021 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:04 7031 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:05 2133 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:05 2143 [LEMMA] - NESTINGRUNTIME +19:24:05 2143 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:05 2153 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:05 2153 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:05 2163 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:05 2173 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:05 2173 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:05 2183 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:05 2193 [LEMMA] - WORKINGESTTIME +19:24:05 2203 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:05 2203 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:05 2213 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:05 2223 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:05 2233 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:05 2243 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:05 2253 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:05 2253 [LEMMA] - UPLOADFILE +19:24:05 2263 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:05 2273 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:05 2283 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:05 2283 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:05 2293 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:05 2303 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:05 7404 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:05 7414 [LEMMA] - NESTINGRUNTIME +19:24:05 7424 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:05 7434 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:05 7434 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:05 7444 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:05 7444 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:05 7454 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:05 7464 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:05 7464 [LEMMA] - WORKINGESTTIME +19:24:05 7474 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:05 7474 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:05 7484 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:05 7494 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:05 7504 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:05 7504 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:05 7514 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:05 7524 [LEMMA] - UPLOADFILE +19:24:05 7534 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:05 7534 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:05 7544 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:05 7564 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:05 7574 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:05 7574 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:06 2665 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:06 2675 [LEMMA] - NESTINGRUNTIME +19:24:06 2685 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:06 2685 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:06 2695 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:06 2705 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:06 2715 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:06 2725 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:06 2755 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:06 2765 [LEMMA] - WORKINGESTTIME +19:24:06 2775 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:06 2785 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:06 2785 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:06 2795 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:06 2805 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:06 2805 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:06 2815 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:06 2825 [LEMMA] - UPLOADFILE +19:24:06 2835 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:06 2835 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:06 2845 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:06 2845 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:06 2855 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:06 2865 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:06 7976 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:06 7986 [LEMMA] - NESTINGRUNTIME +19:24:06 7996 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:06 8006 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:06 8006 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:06 8016 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:06 8026 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:06 8036 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:06 8046 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:06 8056 [LEMMA] - WORKINGESTTIME +19:24:06 8066 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:06 8076 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:06 8086 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:06 8106 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:06 8116 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:06 8126 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:06 8146 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:06 8156 [LEMMA] - UPLOADFILE +19:24:06 8166 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:06 8166 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:06 8176 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:06 8186 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:06 8196 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:06 8196 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:07 3317 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:07 3327 [LEMMA] - NESTINGRUNTIME +19:24:07 3337 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:07 3347 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:07 3347 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:07 3357 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:07 3367 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:07 3377 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:07 3387 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:07 3397 [LEMMA] - WORKINGESTTIME +19:24:07 3407 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:07 3417 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:07 3427 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:07 3437 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:07 3437 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:07 3447 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:07 3457 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:07 3457 [LEMMA] - UPLOADFILE +19:24:07 3467 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:07 3477 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:07 3487 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:07 3487 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:07 3497 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:07 3497 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:07 8609 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:07 8619 [LEMMA] - NESTINGRUNTIME +19:24:07 8619 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:07 8629 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:07 8629 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:07 8639 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:07 8649 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:07 8649 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:07 8659 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:07 8659 [LEMMA] - WORKINGESTTIME +19:24:07 8669 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:07 8669 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:07 8679 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:07 8689 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:07 8689 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:07 8699 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:07 8719 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:07 8729 [LEMMA] - UPLOADFILE +19:24:07 8739 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:07 8749 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:07 8749 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:07 8759 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:07 8759 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:07 8769 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:08 3860 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:08 3860 [LEMMA] - NESTINGRUNTIME +19:24:08 3870 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:08 3880 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:08 3890 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:08 3900 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:08 3900 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:08 3910 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:08 3920 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:08 3920 [LEMMA] - WORKINGESTTIME +19:24:08 3930 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:08 3940 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:08 3940 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:08 3950 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:08 3960 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:08 3960 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:08 3970 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:08 3980 [LEMMA] - UPLOADFILE +19:24:08 3990 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:08 3990 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:08 4000 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:08 4010 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:08 4010 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:08 4020 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:08 9118 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:08 9118 [LEMMA] - NESTINGRUNTIME +19:24:08 9128 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:08 9138 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:08 9138 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:08 9148 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:08 9148 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:08 9158 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:08 9168 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:08 9168 [LEMMA] - WORKINGESTTIME +19:24:08 9178 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:08 9188 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:08 9188 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:08 9198 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:08 9198 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:08 9208 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:08 9218 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:08 9228 [LEMMA] - UPLOADFILE +19:24:08 9238 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:08 9238 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:08 9248 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:08 9258 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:08 9258 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:08 9268 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:09 4369 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:09 4379 [LEMMA] - NESTINGRUNTIME +19:24:09 4379 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:09 4389 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:09 4399 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:09 4399 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:09 4409 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:09 4419 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:09 4429 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:09 4439 [LEMMA] - WORKINGESTTIME +19:24:09 4439 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:09 4449 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:09 4449 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:09 4459 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:09 4469 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:09 4479 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:09 4489 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:09 4489 [LEMMA] - UPLOADFILE +19:24:09 4499 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:09 4509 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:09 4519 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:09 4519 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:09 4529 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:09 4539 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:09 9631 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:09 9641 [LEMMA] - NESTINGRUNTIME +19:24:09 9641 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:09 9651 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:09 9651 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:09 9661 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:09 9671 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:09 9671 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:09 9681 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:09 9691 [LEMMA] - WORKINGESTTIME +19:24:09 9701 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:09 9701 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:09 9711 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:09 9721 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:09 9721 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:09 9731 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:09 9741 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:09 9751 [LEMMA] - UPLOADFILE +19:24:09 9761 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:09 9761 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:09 9771 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:09 9781 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:09 9781 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:09 9791 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:10 4892 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:10 4902 [LEMMA] - NESTINGRUNTIME +19:24:10 4912 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:10 4912 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:10 4922 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:10 4922 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:10 4932 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:10 4942 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:10 4942 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:10 4952 [LEMMA] - WORKINGESTTIME +19:24:10 4962 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:10 4962 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:10 4972 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:10 4982 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:10 4982 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:10 4992 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:10 5002 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:10 5012 [LEMMA] - UPLOADFILE +19:24:10 5012 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:10 5022 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:10 5032 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:10 5032 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:10 5042 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:10 5052 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:11 0153 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:11 0153 [LEMMA] - NESTINGRUNTIME +19:24:11 0163 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:11 0173 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:11 0173 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:11 0183 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:11 0183 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:11 0193 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:11 0203 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:11 0213 [LEMMA] - WORKINGESTTIME +19:24:11 0213 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:11 0223 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:11 0233 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:11 0233 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:11 0243 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:11 0253 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:11 0263 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:11 0263 [LEMMA] - UPLOADFILE +19:24:11 0273 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:11 0283 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:11 0283 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:11 0293 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:11 0293 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:11 0303 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:11 5404 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:11 5414 [LEMMA] - NESTINGRUNTIME +19:24:11 5414 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:11 5424 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:11 5434 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:11 5434 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:11 5444 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:11 5454 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:11 5454 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:11 5464 [LEMMA] - WORKINGESTTIME +19:24:11 5464 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:11 5474 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:11 5484 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:11 5484 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:11 5494 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:11 5494 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:11 5504 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:11 5514 [LEMMA] - UPLOADFILE +19:24:11 5524 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:11 5524 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:11 5534 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:11 5534 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:11 5544 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:11 5554 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:12 0650 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:12 0660 [LEMMA] - NESTINGRUNTIME +19:24:12 0670 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:12 0670 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:12 0680 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:12 0680 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:12 0690 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:12 0690 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:12 0700 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:12 0710 [LEMMA] - WORKINGESTTIME +19:24:12 0710 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:12 0720 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:12 0730 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:12 0730 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:12 0740 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:12 0750 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:12 0760 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:12 0760 [LEMMA] - UPLOADFILE +19:24:12 0770 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:12 0770 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:12 0780 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:12 0780 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:12 0790 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:12 0800 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:12 5881 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:12 5891 [LEMMA] - NESTINGRUNTIME +19:24:12 5901 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:12 5911 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:12 5911 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:12 5921 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:12 5931 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:12 5931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:12 5941 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:12 5951 [LEMMA] - WORKINGESTTIME +19:24:12 5951 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:12 5961 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:12 5971 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:12 5971 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:12 5981 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:12 5991 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:12 6001 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:12 6001 [LEMMA] - UPLOADFILE +19:24:12 6011 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:12 6021 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:12 6021 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:12 6031 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:12 6041 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:12 6051 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:13 1155 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:13 1165 [LEMMA] - NESTINGRUNTIME +19:24:13 1175 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:13 1175 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:13 1185 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:13 1195 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:13 1195 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:13 1205 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:13 1215 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:13 1215 [LEMMA] - WORKINGESTTIME +19:24:13 1225 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:13 1235 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:13 1235 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:13 1245 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:13 1245 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:13 1255 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:13 1265 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:13 1275 [LEMMA] - UPLOADFILE +19:24:13 1275 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:13 1285 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:13 1295 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:13 1295 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:13 1305 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:13 1315 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:13 6397 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:13 6407 [LEMMA] - NESTINGRUNTIME +19:24:13 6417 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:13 6417 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:13 6427 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:13 6437 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:13 6437 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:13 6447 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:13 6457 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:13 6457 [LEMMA] - WORKINGESTTIME +19:24:13 6467 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:13 6477 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:13 6477 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:13 6487 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:13 6497 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:13 6497 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:13 6507 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:13 6517 [LEMMA] - UPLOADFILE +19:24:13 6527 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:13 6527 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:13 6537 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:13 6537 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:13 6547 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:13 6557 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:14 1658 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:14 1668 [LEMMA] - NESTINGRUNTIME +19:24:14 1678 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:14 1678 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:14 1688 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:14 1698 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:14 1698 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:14 1708 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:14 1718 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:14 1728 [LEMMA] - WORKINGESTTIME +19:24:14 1738 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:14 1748 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:14 1758 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:14 1758 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:14 1768 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:14 1768 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:14 1778 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:14 1788 [LEMMA] - UPLOADFILE +19:24:14 1798 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:14 1798 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:14 1808 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:14 1818 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:14 1818 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:14 1828 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:14 6919 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:14 6929 [LEMMA] - NESTINGRUNTIME +19:24:14 6939 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:14 6939 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:14 6949 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:14 6959 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:14 6959 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:14 6969 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:14 6979 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:14 6989 [LEMMA] - WORKINGESTTIME +19:24:14 6989 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:14 6999 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:14 7009 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:14 7019 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:14 7019 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:14 7029 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:14 7039 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:14 7049 [LEMMA] - UPLOADFILE +19:24:14 7059 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:14 7069 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:14 7079 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:14 7079 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:14 7089 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:14 7099 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:15 2191 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:15 2201 [LEMMA] - NESTINGRUNTIME +19:24:15 2211 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:15 2221 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:15 2231 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:15 2231 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:15 2241 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:15 2251 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:15 2251 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:15 2261 [LEMMA] - WORKINGESTTIME +19:24:15 2271 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:15 2271 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:15 2281 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:15 2291 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:15 2291 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:15 2301 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:15 2311 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:15 2321 [LEMMA] - UPLOADFILE +19:24:15 2321 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:15 2331 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:15 2341 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:15 2341 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:15 2351 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:15 2361 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:15 7462 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:15 7472 [LEMMA] - NESTINGRUNTIME +19:24:15 7472 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:15 7482 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:15 7492 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:15 7502 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:15 7502 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:15 7512 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:15 7512 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:15 7522 [LEMMA] - WORKINGESTTIME +19:24:15 7532 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:15 7542 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:15 7542 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:15 7552 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:15 7562 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:15 7572 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:15 7582 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:15 7592 [LEMMA] - UPLOADFILE +19:24:15 7602 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:15 7602 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:15 7612 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:15 7622 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:15 7632 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:15 7642 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:16 2743 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:16 2753 [LEMMA] - NESTINGRUNTIME +19:24:16 2763 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:16 2763 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:16 2773 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:16 2783 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:16 2783 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:16 2793 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:16 2803 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:16 2803 [LEMMA] - WORKINGESTTIME +19:24:16 2813 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:16 2813 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:16 2823 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:16 2833 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:16 2833 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:16 2843 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:16 2853 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:16 2863 [LEMMA] - UPLOADFILE +19:24:16 2863 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:16 2873 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:16 2883 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:16 2893 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:16 2903 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:16 2903 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:16 8004 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:16 8014 [LEMMA] - NESTINGRUNTIME +19:24:16 8014 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:16 8024 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:16 8034 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:16 8034 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:16 8044 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:16 8054 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:16 8064 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:16 8074 [LEMMA] - WORKINGESTTIME +19:24:16 8084 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:16 8084 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:16 8094 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:16 8104 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:16 8104 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:16 8114 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:16 8124 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:16 8124 [LEMMA] - UPLOADFILE +19:24:16 8134 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:16 8144 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:16 8144 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:16 8154 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:16 8164 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:16 8164 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:17 3266 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:17 3276 [LEMMA] - NESTINGRUNTIME +19:24:17 3286 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:17 3286 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:17 3296 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:17 3296 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:17 3306 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:17 3316 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:17 3316 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:17 3326 [LEMMA] - WORKINGESTTIME +19:24:17 3336 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:17 3336 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:17 3346 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:17 3356 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:17 3356 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:17 3366 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:17 3386 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:17 3396 [LEMMA] - UPLOADFILE +19:24:17 3406 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:17 3406 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:17 3416 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:17 3426 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:17 3426 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:17 3436 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:17 8518 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:17 8528 [LEMMA] - NESTINGRUNTIME +19:24:17 8538 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:17 8548 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:17 8548 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:17 8568 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:17 8578 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:17 8588 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:17 8598 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:17 8598 [LEMMA] - WORKINGESTTIME +19:24:17 8608 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:17 8618 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:17 8618 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:17 8628 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:17 8628 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:17 8638 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:17 8648 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:17 8658 [LEMMA] - UPLOADFILE +19:24:17 8658 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:17 8668 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:17 8668 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:17 8678 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:17 8688 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:17 8698 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:18 3811 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:18 3811 [LEMMA] - NESTINGRUNTIME +19:24:18 3821 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:18 3831 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:18 3831 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:18 3841 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:18 3851 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:18 3851 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:18 3861 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:18 3871 [LEMMA] - WORKINGESTTIME +19:24:18 3871 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:18 3891 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:18 3901 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:18 3911 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:18 3911 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:18 3921 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:18 3931 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:18 3931 [LEMMA] - UPLOADFILE +19:24:18 3941 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:18 3951 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:18 3951 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:18 3961 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:18 3971 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:18 3971 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:18 9072 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:18 9082 [LEMMA] - NESTINGRUNTIME +19:24:18 9092 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:18 9102 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:18 9102 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:18 9112 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:18 9122 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:18 9122 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:18 9132 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:18 9142 [LEMMA] - WORKINGESTTIME +19:24:18 9142 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:18 9152 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:18 9162 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:18 9162 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:18 9172 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:18 9182 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:18 9192 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:18 9192 [LEMMA] - UPLOADFILE +19:24:18 9202 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:18 9212 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:18 9222 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:18 9232 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:18 9232 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:18 9242 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:19 4334 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:19 4344 [LEMMA] - NESTINGRUNTIME +19:24:19 4354 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:19 4354 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:19 4364 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:19 4374 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:19 4374 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:19 4384 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:19 4394 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:19 4404 [LEMMA] - WORKINGESTTIME +19:24:19 4414 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:19 4424 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:19 4434 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:19 4434 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:19 4444 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:19 4454 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:19 4464 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:19 4474 [LEMMA] - UPLOADFILE +19:24:19 4474 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:19 4484 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:19 4494 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:19 4494 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:19 4504 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:19 4504 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:19 9605 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:19 9615 [LEMMA] - NESTINGRUNTIME +19:24:19 9625 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:19 9625 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:19 9635 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:19 9645 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:19 9645 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:19 9655 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:19 9665 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:19 9665 [LEMMA] - WORKINGESTTIME +19:24:19 9675 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:19 9685 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:19 9685 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:19 9695 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:19 9705 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:19 9705 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:19 9725 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:19 9735 [LEMMA] - UPLOADFILE +19:24:19 9745 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:19 9745 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:19 9755 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:19 9765 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:19 9775 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:19 9785 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:20 4886 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:20 4896 [LEMMA] - NESTINGRUNTIME +19:24:20 4906 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:20 4916 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:20 4916 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:20 4926 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:20 4936 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:20 4936 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:20 4946 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:20 4956 [LEMMA] - WORKINGESTTIME +19:24:20 4956 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:20 4966 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:20 4976 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:20 4976 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:20 4986 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:20 4986 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:20 4996 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:20 5006 [LEMMA] - UPLOADFILE +19:24:20 5016 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:20 5016 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:20 5026 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:20 5036 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:20 5036 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:20 5046 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:21 0157 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:21 0157 [LEMMA] - NESTINGRUNTIME +19:24:21 0167 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:21 0167 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:21 0177 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:21 0187 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:21 0187 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:21 0197 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:21 0207 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:21 0217 [LEMMA] - WORKINGESTTIME +19:24:21 0217 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:21 0227 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:21 0237 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:21 0247 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:21 0247 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:21 0257 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:21 0267 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:21 0277 [LEMMA] - UPLOADFILE +19:24:21 0277 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:21 0287 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:21 0287 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:21 0297 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:21 0307 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:21 0307 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:21 5399 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:21 5409 [LEMMA] - NESTINGRUNTIME +19:24:21 5419 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:21 5429 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:21 5429 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:21 5439 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:21 5439 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:21 5449 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:21 5449 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:21 5459 [LEMMA] - WORKINGESTTIME +19:24:21 5469 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:21 5469 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:21 5479 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:21 5479 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:21 5489 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:21 5489 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:21 5499 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:21 5509 [LEMMA] - UPLOADFILE +19:24:21 5509 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:21 5519 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:21 5519 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:21 5529 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:21 5529 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:21 5539 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:22 0640 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:22 0650 [LEMMA] - NESTINGRUNTIME +19:24:22 0650 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:22 0660 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:22 0670 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:22 0670 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:22 0680 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:22 0680 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:22 0690 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:22 0700 [LEMMA] - WORKINGESTTIME +19:24:22 0700 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:22 0710 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:22 0720 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:22 0720 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:22 0730 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:22 0740 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:22 0750 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:22 0760 [LEMMA] - UPLOADFILE +19:24:22 0760 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:22 0770 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:22 0780 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:22 0780 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:22 0790 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:22 0790 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:22 5882 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:22 5892 [LEMMA] - NESTINGRUNTIME +19:24:22 5902 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:22 5912 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:22 5922 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:22 5932 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:22 5932 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:22 5942 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:22 5952 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:22 5962 [LEMMA] - WORKINGESTTIME +19:24:22 5972 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:22 5972 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:22 5982 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:22 5992 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:22 6002 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:22 6002 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:22 6022 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:22 6022 [LEMMA] - UPLOADFILE +19:24:22 6032 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:22 6042 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:22 6062 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:22 6072 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:22 6082 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:22 6092 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:23 1183 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:23 1193 [LEMMA] - NESTINGRUNTIME +19:24:23 1193 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:23 1203 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:23 1213 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:23 1223 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:23 1233 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:23 1243 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:23 1243 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:23 1253 [LEMMA] - WORKINGESTTIME +19:24:23 1263 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:23 1273 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:23 1273 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:23 1283 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:23 1293 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:23 1303 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:23 1313 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:23 1313 [LEMMA] - UPLOADFILE +19:24:23 1323 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:23 1333 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:23 1333 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:23 1343 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:23 1353 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:23 1353 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:23 6464 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:23 6474 [LEMMA] - NESTINGRUNTIME +19:24:23 6484 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:23 6484 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:23 6494 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:23 6504 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:23 6504 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:23 6514 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:23 6524 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:23 6534 [LEMMA] - WORKINGESTTIME +19:24:23 6534 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:23 6544 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:23 6554 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:23 6564 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:23 6574 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:23 6584 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:23 6594 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:23 6604 [LEMMA] - UPLOADFILE +19:24:23 6604 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:23 6614 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:23 6624 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:23 6624 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:23 6634 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:23 6644 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:24 1765 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:24 1775 [LEMMA] - NESTINGRUNTIME +19:24:24 1785 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:24 1795 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:24 1805 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:24 1815 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:24 1825 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:24 1825 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:24 1835 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:24 1845 [LEMMA] - WORKINGESTTIME +19:24:24 1855 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:24 1865 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:24 1875 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:24 1885 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:24 1895 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:24 1905 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:24 1925 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:24 1935 [LEMMA] - UPLOADFILE +19:24:24 1945 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:24 1955 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:24 1965 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:24 1975 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:24 1985 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:24 1985 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:24 7086 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:24 7096 [LEMMA] - NESTINGRUNTIME +19:24:24 7106 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:24 7106 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:24 7116 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:24 7126 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:24 7126 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:24 7136 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:24 7146 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:24 7146 [LEMMA] - WORKINGESTTIME +19:24:24 7156 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:24 7156 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:24 7166 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:24 7176 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:24 7176 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:24 7186 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:24 7196 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:24 7196 [LEMMA] - UPLOADFILE +19:24:24 7206 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:24 7216 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:24 7226 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:24 7236 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:24 7246 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:24 7246 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:25 2358 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:25 2368 [LEMMA] - NESTINGRUNTIME +19:24:25 2368 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:25 2378 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:25 2388 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:25 2398 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:25 2408 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:25 2418 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:25 2428 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:25 2438 [LEMMA] - WORKINGESTTIME +19:24:25 2438 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:25 2448 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:25 2458 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:25 2458 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:25 2468 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:25 2478 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:25 2488 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:25 2498 [LEMMA] - UPLOADFILE +19:24:25 2498 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:25 2508 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:25 2518 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:25 2518 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:25 2528 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:25 2528 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:25 7639 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:25 7649 [LEMMA] - NESTINGRUNTIME +19:24:25 7649 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:25 7659 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:25 7669 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:25 7669 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:25 7679 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:25 7689 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:25 7699 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:25 7699 [LEMMA] - WORKINGESTTIME +19:24:25 7709 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:25 7709 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:25 7719 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:25 7739 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:25 7739 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:25 7749 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:25 7759 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:25 7769 [LEMMA] - UPLOADFILE +19:24:25 7779 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:25 7779 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:25 7789 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:25 7799 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:25 7799 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:25 7809 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:26 2920 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:26 2920 [LEMMA] - NESTINGRUNTIME +19:24:26 2930 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:26 2940 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:26 2940 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:26 2950 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:26 2960 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:26 2960 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:26 2970 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:26 2980 [LEMMA] - WORKINGESTTIME +19:24:26 2980 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:26 2990 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:26 2990 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:26 3000 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:26 3010 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:26 3010 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:26 3020 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:26 3030 [LEMMA] - UPLOADFILE +19:24:26 3030 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:26 3040 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:26 3050 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:26 3050 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:26 3060 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:26 3070 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:26 8172 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:26 8182 [LEMMA] - NESTINGRUNTIME +19:24:26 8182 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:26 8192 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:26 8202 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:26 8212 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:26 8212 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:26 8222 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:26 8232 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:26 8242 [LEMMA] - WORKINGESTTIME +19:24:26 8252 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:26 8262 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:26 8262 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:26 8272 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:26 8272 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:26 8282 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:26 8292 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:26 8302 [LEMMA] - UPLOADFILE +19:24:26 8302 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:26 8312 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:26 8322 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:26 8322 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:26 8332 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:26 8332 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:27 3453 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:27 3453 [LEMMA] - NESTINGRUNTIME +19:24:27 3463 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:27 3473 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:27 3483 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:27 3483 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:27 3493 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:27 3503 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:27 3503 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:27 3513 [LEMMA] - WORKINGESTTIME +19:24:27 3523 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:27 3523 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:27 3533 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:27 3543 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:27 3543 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:27 3553 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:27 3573 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:27 3583 [LEMMA] - UPLOADFILE +19:24:27 3593 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:27 3593 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:27 3603 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:27 3613 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:27 3613 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:27 3623 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:27 8714 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:27 8724 [LEMMA] - NESTINGRUNTIME +19:24:27 8744 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:27 8744 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:27 8754 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:27 8764 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:27 8764 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:27 8774 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:27 8784 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:27 8784 [LEMMA] - WORKINGESTTIME +19:24:27 8794 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:27 8804 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:27 8804 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:27 8814 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:27 8824 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:27 8824 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:27 8834 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:27 8844 [LEMMA] - UPLOADFILE +19:24:27 8854 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:27 8864 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:27 8874 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:27 8874 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:27 8884 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:27 8894 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:28 3995 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:28 4005 [LEMMA] - NESTINGRUNTIME +19:24:28 4015 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:28 4025 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:28 4035 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:28 4035 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:28 4045 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:28 4055 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:28 4065 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:28 4075 [LEMMA] - WORKINGESTTIME +19:24:28 4085 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:28 4095 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:28 4095 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:28 4105 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:28 4115 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:28 4125 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:28 4135 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:28 4145 [LEMMA] - UPLOADFILE +19:24:28 4145 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:28 4155 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:28 4165 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:28 4175 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:28 4175 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:28 4185 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:28 9277 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:28 9287 [LEMMA] - NESTINGRUNTIME +19:24:28 9297 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:28 9307 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:28 9317 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:28 9327 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:28 9337 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:28 9347 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:28 9357 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:28 9357 [LEMMA] - WORKINGESTTIME +19:24:28 9367 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:28 9377 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:28 9387 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:28 9387 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:28 9397 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:28 9407 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:28 9427 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:28 9437 [LEMMA] - UPLOADFILE +19:24:28 9437 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:28 9447 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:28 9457 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:28 9457 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:28 9467 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:28 9477 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:29 4578 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:29 4588 [LEMMA] - NESTINGRUNTIME +19:24:29 4598 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:29 4598 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:29 4608 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:29 4608 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:29 4618 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:29 4628 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:29 4628 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:29 4638 [LEMMA] - WORKINGESTTIME +19:24:29 4648 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:29 4648 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:29 4658 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:29 4668 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:29 4668 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:29 4678 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:29 4688 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:29 4698 [LEMMA] - UPLOADFILE +19:24:29 4698 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:29 4708 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:29 4708 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:29 4718 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:29 4728 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:29 4738 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:29 9829 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:29 9829 [LEMMA] - NESTINGRUNTIME +19:24:29 9839 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:29 9849 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:29 9849 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:29 9859 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:29 9859 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:29 9869 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:29 9879 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:29 9879 [LEMMA] - WORKINGESTTIME +19:24:29 9889 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:29 9899 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:29 9909 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:29 9919 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:29 9919 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:29 9929 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:29 9939 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:29 9949 [LEMMA] - UPLOADFILE +19:24:29 9949 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:29 9959 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:29 9969 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:29 9969 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:29 9979 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:29 9979 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:30 5081 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:30 5091 [LEMMA] - NESTINGRUNTIME +19:24:30 5091 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:30 5101 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:30 5111 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:30 5111 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:30 5121 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:30 5131 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:30 5131 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:30 5141 [LEMMA] - WORKINGESTTIME +19:24:30 5151 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:30 5151 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:30 5161 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:30 5161 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:30 5171 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:30 5171 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:30 5181 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:30 5191 [LEMMA] - UPLOADFILE +19:24:30 5201 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:30 5201 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:30 5211 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:30 5211 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:30 5221 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:30 5231 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:31 0332 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:31 0332 [LEMMA] - NESTINGRUNTIME +19:24:31 0342 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:31 0352 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:31 0362 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:31 0362 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:31 0372 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:31 0372 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:31 0382 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:31 0392 [LEMMA] - WORKINGESTTIME +19:24:31 0402 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:31 0412 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:31 0422 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:31 0432 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:31 0442 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:31 0442 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:31 0452 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:31 0462 [LEMMA] - UPLOADFILE +19:24:31 0472 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:31 0472 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:31 0482 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:31 0492 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:31 0492 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:31 0502 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:31 5603 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:31 5613 [LEMMA] - NESTINGRUNTIME +19:24:31 5623 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:31 5633 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:31 5633 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:31 5643 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:31 5653 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:31 5653 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:31 5663 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:31 5673 [LEMMA] - WORKINGESTTIME +19:24:31 5673 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:31 5683 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:31 5693 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:31 5703 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:31 5703 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:31 5713 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:31 5723 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:31 5743 [LEMMA] - UPLOADFILE +19:24:31 5743 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:31 5753 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:31 5763 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:31 5773 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:31 5773 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:31 5783 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:32 0875 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:32 0885 [LEMMA] - NESTINGRUNTIME +19:24:32 0895 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:32 0905 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:32 0925 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:32 0935 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:32 0935 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:32 0945 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:32 0955 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:32 0965 [LEMMA] - WORKINGESTTIME +19:24:32 0975 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:32 0975 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:32 0985 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:32 0985 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:32 0995 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:32 1005 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:32 1015 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:32 1025 [LEMMA] - UPLOADFILE +19:24:32 1035 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:32 1035 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:32 1045 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:32 1055 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:32 1065 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:32 1065 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:32 6206 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:32 6216 [LEMMA] - NESTINGRUNTIME +19:24:32 6246 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:32 6256 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:32 6266 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:32 6276 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:32 6276 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:32 6286 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:32 6306 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:32 6316 [LEMMA] - WORKINGESTTIME +19:24:32 6316 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:32 6326 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:32 6336 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:32 6346 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:32 6356 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:32 6366 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:32 6386 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:32 6416 [LEMMA] - UPLOADFILE +19:24:32 6426 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:32 6436 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:32 6436 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:32 6446 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:32 6466 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:32 6466 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:33 1577 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:33 1587 [LEMMA] - NESTINGRUNTIME +19:24:33 1597 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:33 1607 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:33 1617 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:33 1627 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:33 1637 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:33 1637 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:33 1647 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:33 1657 [LEMMA] - WORKINGESTTIME +19:24:33 1667 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:33 1667 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:33 1677 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:33 1687 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:33 1697 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:33 1707 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:33 1717 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:33 1727 [LEMMA] - UPLOADFILE +19:24:33 1737 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:33 1747 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:33 1757 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:33 1767 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:33 1777 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:33 1787 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:33 6888 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:33 6898 [LEMMA] - NESTINGRUNTIME +19:24:33 6908 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:33 6918 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:33 6918 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:33 6928 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:33 6938 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:33 6948 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:33 6948 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:33 6958 [LEMMA] - WORKINGESTTIME +19:24:33 6968 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:33 6978 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:33 6988 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:33 6988 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:33 6998 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:33 6998 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:33 7018 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:33 7018 [LEMMA] - UPLOADFILE +19:24:33 7028 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:33 7038 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:33 7048 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:33 7048 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:33 7058 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:33 7068 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:34 2169 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:34 2179 [LEMMA] - NESTINGRUNTIME +19:24:34 2189 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:34 2199 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:34 2199 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:34 2209 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:34 2219 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:34 2229 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:34 2239 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:34 2249 [LEMMA] - WORKINGESTTIME +19:24:34 2259 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:34 2269 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:34 2279 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:34 2279 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:34 2289 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:34 2299 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:34 2309 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:34 2319 [LEMMA] - UPLOADFILE +19:24:34 2319 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:34 2329 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:34 2329 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:34 2339 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:34 2349 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:34 2349 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:34 7446 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:34 7446 [LEMMA] - NESTINGRUNTIME +19:24:34 7456 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:34 7466 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:34 7466 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:34 7476 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:34 7486 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:34 7486 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:34 7496 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:34 7506 [LEMMA] - WORKINGESTTIME +19:24:34 7506 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:34 7516 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:34 7516 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:34 7526 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:34 7536 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:34 7536 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:34 7546 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:34 7556 [LEMMA] - UPLOADFILE +19:24:34 7556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:34 7566 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:34 7576 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:34 7586 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:34 7586 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:34 7596 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:35 2687 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:35 2687 [LEMMA] - NESTINGRUNTIME +19:24:35 2697 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:35 2707 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:35 2717 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:35 2717 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:35 2727 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:35 2747 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:35 2757 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:35 2757 [LEMMA] - WORKINGESTTIME +19:24:35 2767 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:35 2777 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:35 2777 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:35 2787 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:35 2797 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:35 2797 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:35 2807 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:35 2817 [LEMMA] - UPLOADFILE +19:24:35 2817 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:35 2827 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:35 2837 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:35 2837 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:35 2847 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:35 2857 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:35 7948 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:35 7958 [LEMMA] - NESTINGRUNTIME +19:24:35 7958 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:35 7968 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:35 7968 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:35 7978 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:35 7988 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:35 7988 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:35 7998 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:35 8008 [LEMMA] - WORKINGESTTIME +19:24:35 8008 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:35 8018 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:35 8028 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:35 8028 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:35 8038 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:35 8038 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:35 8048 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:35 8068 [LEMMA] - UPLOADFILE +19:24:35 8068 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:35 8078 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:35 8088 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:35 8098 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:35 8098 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:35 8108 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:36 3200 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:36 3200 [LEMMA] - NESTINGRUNTIME +19:24:36 3210 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:36 3220 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:36 3230 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:36 3240 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:36 3250 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:36 3260 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:36 3260 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:36 3270 [LEMMA] - WORKINGESTTIME +19:24:36 3280 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:36 3280 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:36 3290 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:36 3290 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:36 3300 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:36 3310 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:36 3320 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:36 3320 [LEMMA] - UPLOADFILE +19:24:36 3330 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:36 3330 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:36 3340 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:36 3350 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:36 3350 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:36 3360 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:36 8451 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:36 8462 [LEMMA] - NESTINGRUNTIME +19:24:36 8471 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:36 8471 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:36 8481 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:36 8481 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:36 8491 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:36 8491 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:36 8501 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:36 8511 [LEMMA] - WORKINGESTTIME +19:24:36 8511 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:36 8521 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:36 8531 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:36 8531 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:36 8541 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:36 8541 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:36 8562 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:36 8582 [LEMMA] - UPLOADFILE +19:24:36 8592 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:36 8592 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:36 8602 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:36 8602 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:36 8612 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:36 8622 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:37 3723 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:37 3733 [LEMMA] - NESTINGRUNTIME +19:24:37 3743 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:37 3753 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:37 3763 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:37 3763 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:37 3773 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:37 3773 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:37 3783 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:37 3793 [LEMMA] - WORKINGESTTIME +19:24:37 3793 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:37 3803 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:37 3813 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:37 3813 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:37 3823 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:37 3823 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:37 3843 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:37 3843 [LEMMA] - UPLOADFILE +19:24:37 3853 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:37 3853 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:37 3863 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:37 3873 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:37 3873 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:37 3883 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:37 8984 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:37 8984 [LEMMA] - NESTINGRUNTIME +19:24:37 8994 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:37 9004 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:37 9014 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:37 9014 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:37 9024 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:37 9034 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:37 9034 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:37 9044 [LEMMA] - WORKINGESTTIME +19:24:37 9054 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:37 9064 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:37 9064 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:37 9074 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:37 9084 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:37 9094 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:37 9104 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:37 9114 [LEMMA] - UPLOADFILE +19:24:37 9124 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:37 9134 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:37 9144 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:37 9144 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:37 9154 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:37 9164 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:38 4265 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:38 4275 [LEMMA] - NESTINGRUNTIME +19:24:38 4285 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:38 4285 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:38 4295 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:38 4305 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:38 4305 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:38 4315 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:38 4325 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:38 4335 [LEMMA] - WORKINGESTTIME +19:24:38 4335 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:38 4345 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:38 4355 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:38 4355 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:38 4365 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:38 4375 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:38 4375 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:38 4385 [LEMMA] - UPLOADFILE +19:24:38 4395 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:38 4405 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:38 4415 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:38 4425 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:38 4425 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:38 4435 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:38 9517 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:38 9527 [LEMMA] - NESTINGRUNTIME +19:24:38 9537 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:38 9537 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:38 9547 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:38 9557 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:38 9567 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:38 9577 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:38 9587 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:38 9597 [LEMMA] - WORKINGESTTIME +19:24:38 9597 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:38 9607 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:38 9607 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:38 9617 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:38 9627 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:38 9627 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:38 9647 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:38 9647 [LEMMA] - UPLOADFILE +19:24:38 9657 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:38 9657 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:38 9667 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:38 9677 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:38 9677 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:38 9687 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:39 1157 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:39 1157 [LEMMA] - UPLOADFILE +19:24:39 1167 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:39 1177 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:39 1187 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:39 1187 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:39 1197 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:39 1197 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:39 1207 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:39 1217 [LEMMA] - NESTINGRUNTIME +19:24:39 1217 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:39 1237 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:39 1247 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:39 1247 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:39 1257 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:39 1267 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:39 1277 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:39 1277 [LEMMA] - WORKINGESTTIME +19:24:39 1287 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:39 1297 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:39 1297 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:39 1307 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:39 1307 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:39 1317 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:39 7599 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:39 7609 [LEMMA] - NESTINGRUNTIME +19:24:39 7609 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:39 7619 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:39 7629 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:39 7629 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:39 7639 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:39 7639 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:39 7649 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:39 7659 [LEMMA] - WORKINGESTTIME +19:24:39 7659 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:39 7669 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:39 7679 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:39 7679 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:39 7689 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:39 7699 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:39 7709 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:39 7709 [LEMMA] - UPLOADFILE +19:24:39 7719 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:39 7719 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:39 7729 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:39 7739 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:39 7749 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:39 7759 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:40 2878 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:40 2888 [LEMMA] - NESTINGRUNTIME +19:24:40 2888 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:40 2898 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:40 2908 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:40 2918 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:40 2928 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:40 2928 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:40 2938 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:40 2948 [LEMMA] - WORKINGESTTIME +19:24:40 2948 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:40 2958 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:40 2968 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:40 2968 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:40 2978 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:40 2978 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:40 2988 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:40 2998 [LEMMA] - UPLOADFILE +19:24:40 3008 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:40 3008 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:40 3018 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:40 3028 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:40 3028 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:40 3038 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:40 8129 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:40 8139 [LEMMA] - NESTINGRUNTIME +19:24:40 8149 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:40 8149 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:40 8159 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:40 8169 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:40 8169 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:40 8179 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:40 8189 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:40 8189 [LEMMA] - WORKINGESTTIME +19:24:40 8199 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:40 8209 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:40 8209 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:40 8219 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:40 8229 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:40 8229 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:40 8249 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:40 8259 [LEMMA] - UPLOADFILE +19:24:40 8269 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:40 8269 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:40 8279 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:40 8289 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:40 8289 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:40 8299 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:41 3561 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:41 3571 [LEMMA] - NESTINGRUNTIME +19:24:41 3581 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:41 3591 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:41 3601 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:41 3601 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:41 3611 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:41 3621 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:41 3621 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:41 3631 [LEMMA] - WORKINGESTTIME +19:24:41 3641 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:41 3651 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:41 3651 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:41 3661 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:41 3671 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:41 3671 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:41 3681 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:41 3691 [LEMMA] - UPLOADFILE +19:24:41 3701 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:41 3711 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:41 3721 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:41 3721 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:41 3731 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:41 3741 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:41 8832 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:41 8842 [LEMMA] - NESTINGRUNTIME +19:24:41 8842 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:41 8852 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:41 8862 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:41 8862 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:41 8872 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:41 8872 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:41 8882 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:41 8892 [LEMMA] - WORKINGESTTIME +19:24:41 8902 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:41 8912 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:41 8922 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:41 8932 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:41 8932 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:41 8942 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:41 8952 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:41 8952 [LEMMA] - UPLOADFILE +19:24:41 8962 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:41 8972 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:41 8972 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:41 8982 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:41 8992 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:41 8992 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:42 4105 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:42 4115 [LEMMA] - NESTINGRUNTIME +19:24:42 4125 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:42 4125 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:42 4135 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:42 4135 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:42 4145 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:42 4155 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:42 4155 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:42 4165 [LEMMA] - WORKINGESTTIME +19:24:42 4175 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:42 4175 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:42 4185 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:42 4185 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:42 4195 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:42 4195 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:42 4215 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:42 4215 [LEMMA] - UPLOADFILE +19:24:42 4225 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:42 4235 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:42 4245 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:42 4245 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:42 4255 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:42 4265 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:42 9356 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:42 9356 [LEMMA] - NESTINGRUNTIME +19:24:42 9366 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:42 9376 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:42 9376 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:42 9386 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:42 9396 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:42 9406 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:42 9416 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:42 9426 [LEMMA] - WORKINGESTTIME +19:24:42 9436 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:42 9436 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:42 9446 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:42 9456 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:42 9456 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:42 9466 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:42 9476 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:42 9476 [LEMMA] - UPLOADFILE +19:24:42 9486 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:42 9496 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:42 9496 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:42 9506 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:42 9506 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:42 9516 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:43 4618 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:43 4628 [LEMMA] - NESTINGRUNTIME +19:24:43 4638 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:43 4638 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:43 4648 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:43 4648 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:43 4658 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:43 4658 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:43 4668 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:43 4678 [LEMMA] - WORKINGESTTIME +19:24:43 4678 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:43 4688 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:43 4698 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:43 4698 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:43 4708 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:43 4708 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:43 4718 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:43 4728 [LEMMA] - UPLOADFILE +19:24:43 4738 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:43 4748 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:43 4758 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:43 4758 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:43 4768 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:43 4778 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:43 9879 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:43 9879 [LEMMA] - NESTINGRUNTIME +19:24:43 9889 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:43 9899 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:43 9909 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:43 9919 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:43 9929 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:43 9929 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:43 9939 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:43 9949 [LEMMA] - WORKINGESTTIME +19:24:43 9949 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:43 9959 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:43 9969 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:43 9969 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:43 9979 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:43 9989 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:43 9999 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:43 9999 [LEMMA] - UPLOADFILE +19:24:44 0009 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:44 0019 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:44 0019 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:44 0029 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:44 0029 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:44 0039 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:44 5151 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:44 5151 [LEMMA] - NESTINGRUNTIME +19:24:44 5161 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:44 5171 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:44 5171 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:44 5181 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:44 5191 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:44 5191 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:44 5201 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:44 5201 [LEMMA] - WORKINGESTTIME +19:24:44 5211 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:44 5221 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:44 5221 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:44 5231 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:44 5241 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:44 5251 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:44 5261 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:44 5271 [LEMMA] - UPLOADFILE +19:24:44 5271 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:44 5281 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:44 5291 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:44 5291 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:44 5301 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:44 5301 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:45 0394 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:45 0404 [LEMMA] - NESTINGRUNTIME +19:24:45 0414 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:45 0424 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:45 0424 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:45 0434 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:45 0444 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:45 0444 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:45 0454 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:45 0464 [LEMMA] - WORKINGESTTIME +19:24:45 0474 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:45 0474 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:45 0484 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:45 0494 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:45 0494 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:45 0504 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:45 0514 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:45 0524 [LEMMA] - UPLOADFILE +19:24:45 0534 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:45 0534 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:45 0544 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:45 0554 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:45 0554 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:45 0564 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:45 5655 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:45 5665 [LEMMA] - NESTINGRUNTIME +19:24:45 5675 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:45 5675 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:45 5685 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:45 5695 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:45 5695 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:45 5705 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:45 5715 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:45 5725 [LEMMA] - WORKINGESTTIME +19:24:45 5725 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:45 5735 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:45 5745 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:45 5755 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:45 5765 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:45 5765 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:45 5775 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:45 5785 [LEMMA] - UPLOADFILE +19:24:45 5785 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:45 5795 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:45 5805 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:45 5805 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:45 5815 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:45 5825 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:46 0917 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:46 0927 [LEMMA] - NESTINGRUNTIME +19:24:46 0927 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:46 0937 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:46 0947 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:46 0957 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:46 0957 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:46 0967 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:46 0977 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:46 0987 [LEMMA] - WORKINGESTTIME +19:24:46 0987 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:46 0997 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:46 1007 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:46 1007 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:46 1017 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:46 1027 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:46 1037 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:46 1047 [LEMMA] - UPLOADFILE +19:24:46 1047 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:46 1057 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:46 1067 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:46 1077 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:46 1087 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:46 1097 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:46 6188 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:46 6198 [LEMMA] - NESTINGRUNTIME +19:24:46 6208 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:46 6218 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:46 6218 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:46 6228 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:46 6248 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:46 6258 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:46 6268 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:46 6268 [LEMMA] - WORKINGESTTIME +19:24:46 6278 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:46 6288 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:46 6298 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:46 6309 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:46 6309 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:46 6318 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:46 6339 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:46 6349 [LEMMA] - UPLOADFILE +19:24:46 6349 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:46 6359 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:46 6369 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:46 6369 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:46 6379 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:46 6389 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:47 1490 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:47 1500 [LEMMA] - NESTINGRUNTIME +19:24:47 1500 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:47 1510 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:47 1520 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:47 1530 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:47 1530 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:47 1540 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:47 1550 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:47 1550 [LEMMA] - WORKINGESTTIME +19:24:47 1560 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:47 1570 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:47 1580 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:47 1590 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:47 1600 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:47 1600 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:47 1610 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:47 1620 [LEMMA] - UPLOADFILE +19:24:47 1630 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:47 1630 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:47 1640 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:47 1650 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:47 1650 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:47 1660 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:47 6751 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:47 6761 [LEMMA] - NESTINGRUNTIME +19:24:47 6771 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:47 6771 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:47 6781 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:47 6791 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:47 6791 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:47 6802 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:47 6811 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:47 6811 [LEMMA] - WORKINGESTTIME +19:24:47 6821 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:47 6831 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:47 6831 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:47 6842 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:47 6852 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:47 6852 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:47 6862 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:47 6872 [LEMMA] - UPLOADFILE +19:24:47 6872 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:47 6882 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:47 6892 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:47 6892 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:47 6902 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:47 6912 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:48 2024 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:48 2034 [LEMMA] - NESTINGRUNTIME +19:24:48 2034 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:48 2044 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:48 2054 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:48 2054 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:48 2064 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:48 2074 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:48 2084 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:48 2094 [LEMMA] - WORKINGESTTIME +19:24:48 2094 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:48 2104 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:48 2114 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:48 2114 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:48 2124 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:48 2134 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:48 2144 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:48 2144 [LEMMA] - UPLOADFILE +19:24:48 2154 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:48 2164 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:48 2164 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:48 2174 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:48 2184 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:48 2184 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:48 7277 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:48 7287 [LEMMA] - NESTINGRUNTIME +19:24:48 7297 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:48 7297 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:48 7307 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:48 7317 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:48 7317 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:48 7327 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:48 7327 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:48 7337 [LEMMA] - WORKINGESTTIME +19:24:48 7347 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:48 7347 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:48 7357 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:48 7367 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:48 7367 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:48 7377 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:48 7387 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:48 7397 [LEMMA] - UPLOADFILE +19:24:48 7407 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:48 7417 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:48 7427 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:48 7427 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:48 7437 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:48 7447 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:49 2552 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:49 2562 [LEMMA] - NESTINGRUNTIME +19:24:49 2572 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:49 2582 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:49 2592 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:49 2602 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:49 2602 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:49 2612 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:49 2622 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:49 2622 [LEMMA] - WORKINGESTTIME +19:24:49 2632 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:49 2642 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:49 2642 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:49 2652 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:49 2662 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:49 2662 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:49 2672 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:49 2682 [LEMMA] - UPLOADFILE +19:24:49 2692 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:49 2692 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:49 2702 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:49 2712 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:49 2712 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:49 2722 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:49 7814 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:49 7824 [LEMMA] - NESTINGRUNTIME +19:24:49 7834 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:49 7834 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:49 7844 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:49 7854 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:49 7854 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:49 7864 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:49 7874 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:49 7874 [LEMMA] - WORKINGESTTIME +19:24:49 7884 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:49 7884 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:49 7894 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:49 7904 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:49 7914 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:49 7914 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:49 7934 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:49 7934 [LEMMA] - UPLOADFILE +19:24:49 7944 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:49 7954 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:49 7954 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:49 7964 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:49 7974 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:49 7974 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:50 3067 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:50 3077 [LEMMA] - NESTINGRUNTIME +19:24:50 3087 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:50 3097 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:50 3097 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:50 3107 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:50 3117 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:50 3127 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:50 3127 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:50 3137 [LEMMA] - WORKINGESTTIME +19:24:50 3147 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:50 3147 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:50 3157 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:50 3157 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:50 3167 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:50 3167 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:50 3187 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:50 3187 [LEMMA] - UPLOADFILE +19:24:50 3197 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:50 3197 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:50 3207 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:50 3217 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:50 3217 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:50 3227 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:50 8327 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:50 8327 [LEMMA] - NESTINGRUNTIME +19:24:50 8337 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:50 8347 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:50 8347 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:50 8357 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:50 8357 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:50 8367 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:50 8377 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:50 8377 [LEMMA] - WORKINGESTTIME +19:24:50 8387 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:50 8397 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:50 8397 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:50 8407 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:50 8417 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:50 8427 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:50 8437 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:50 8447 [LEMMA] - UPLOADFILE +19:24:50 8457 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:50 8467 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:50 8467 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:50 8477 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:50 8487 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:50 8487 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:51 3600 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:51 3610 [LEMMA] - NESTINGRUNTIME +19:24:51 3610 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:51 3620 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:51 3630 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:51 3630 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:51 3640 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:51 3640 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:51 3650 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:51 3650 [LEMMA] - WORKINGESTTIME +19:24:51 3660 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:51 3670 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:51 3670 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:51 3680 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:51 3680 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:51 3690 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:51 3700 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:51 3710 [LEMMA] - UPLOADFILE +19:24:51 3710 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:51 3720 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:51 3730 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:51 3740 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:51 3750 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:51 3760 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:51 8849 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:51 8849 [LEMMA] - NESTINGRUNTIME +19:24:51 8859 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:51 8869 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:51 8869 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:51 8879 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:51 8879 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:51 8889 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:51 8899 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:51 8909 [LEMMA] - WORKINGESTTIME +19:24:51 8919 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:51 8929 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:51 8929 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:51 8939 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:51 8949 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:51 8949 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:51 8959 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:51 8969 [LEMMA] - UPLOADFILE +19:24:51 8969 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:51 8979 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:51 8989 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:51 8989 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:51 8999 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:51 9009 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:52 4111 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:52 4111 [LEMMA] - NESTINGRUNTIME +19:24:52 4120 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:52 4130 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:52 4140 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:52 4140 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:52 4150 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:52 4150 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:52 4161 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:52 4171 [LEMMA] - WORKINGESTTIME +19:24:52 4181 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:52 4181 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:52 4191 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:52 4201 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:52 4201 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:52 4211 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:52 4221 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:52 4221 [LEMMA] - UPLOADFILE +19:24:52 4231 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:52 4241 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:52 4251 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:52 4261 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:52 4271 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:52 4271 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:52 9353 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:52 9363 [LEMMA] - NESTINGRUNTIME +19:24:52 9373 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:52 9383 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:52 9383 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:52 9393 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:52 9393 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:52 9403 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:52 9423 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:52 9423 [LEMMA] - WORKINGESTTIME +19:24:52 9433 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:52 9443 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:52 9443 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:52 9453 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:52 9463 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:52 9463 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:52 9473 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:52 9483 [LEMMA] - UPLOADFILE +19:24:52 9493 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:52 9493 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:52 9503 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:52 9503 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:52 9513 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:52 9523 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:53 4626 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:53 4626 [LEMMA] - NESTINGRUNTIME +19:24:53 4636 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:53 4646 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:53 4646 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:53 4656 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:53 4656 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:53 4666 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:53 4676 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:53 4676 [LEMMA] - WORKINGESTTIME +19:24:53 4686 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:53 4696 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:53 4696 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:53 4706 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:53 4706 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:53 4716 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:53 4726 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:53 4736 [LEMMA] - UPLOADFILE +19:24:53 4746 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:53 4756 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:53 4756 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:53 4766 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:53 4776 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:53 4776 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:53 9858 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:53 9868 [LEMMA] - NESTINGRUNTIME +19:24:53 9878 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:53 9888 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:53 9888 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:53 9898 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:53 9908 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:53 9918 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:53 9918 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:53 9928 [LEMMA] - WORKINGESTTIME +19:24:53 9938 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:53 9948 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:53 9948 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:53 9958 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:53 9968 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:53 9968 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:53 9978 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:53 9988 [LEMMA] - UPLOADFILE +19:24:53 9988 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:53 9998 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:53 9998 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:54 0008 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:54 0018 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:54 0018 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:54 5119 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:54 5119 [LEMMA] - NESTINGRUNTIME +19:24:54 5129 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:54 5139 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:54 5139 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:54 5149 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:54 5149 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:54 5159 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:54 5169 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:54 5179 [LEMMA] - WORKINGESTTIME +19:24:54 5179 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:54 5189 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:54 5199 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:54 5199 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:54 5209 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:54 5209 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:54 5219 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:54 5229 [LEMMA] - UPLOADFILE +19:24:54 5240 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:54 5250 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:54 5260 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:54 5260 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:54 5270 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:54 5270 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:55 0352 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:55 0362 [LEMMA] - NESTINGRUNTIME +19:24:55 0372 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:55 0372 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:55 0382 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:55 0392 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:55 0392 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:55 0402 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:55 0422 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:55 0432 [LEMMA] - WORKINGESTTIME +19:24:55 0432 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:55 0442 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:55 0452 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:55 0452 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:55 0462 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:55 0472 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:55 0482 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:55 0492 [LEMMA] - UPLOADFILE +19:24:55 0492 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:55 0502 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:55 0512 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:55 0512 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:55 0522 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:55 0532 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:55 5634 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:55 5644 [LEMMA] - NESTINGRUNTIME +19:24:55 5644 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:55 5654 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:55 5654 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:55 5664 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:55 5674 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:55 5674 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:55 5684 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:55 5684 [LEMMA] - WORKINGESTTIME +19:24:55 5694 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:55 5694 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:55 5704 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:55 5714 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:55 5714 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:55 5724 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:55 5734 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:55 5754 [LEMMA] - UPLOADFILE +19:24:55 5754 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:55 5764 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:55 5774 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:55 5774 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:55 5784 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:55 5794 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:56 0875 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:56 0885 [LEMMA] - NESTINGRUNTIME +19:24:56 0895 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:56 0905 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:56 0915 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:56 0925 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:56 0925 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:56 0935 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:56 0945 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:56 0945 [LEMMA] - WORKINGESTTIME +19:24:56 0955 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:56 0965 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:56 0965 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:56 0975 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:56 0975 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:56 0985 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:56 0995 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:56 1005 [LEMMA] - UPLOADFILE +19:24:56 1015 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:56 1015 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:56 1025 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:56 1035 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:56 1045 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:56 1045 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:56 6149 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:56 6159 [LEMMA] - NESTINGRUNTIME +19:24:56 6169 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:56 6179 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:56 6179 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:56 6189 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:56 6199 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:56 6199 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:56 6209 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:56 6219 [LEMMA] - WORKINGESTTIME +19:24:56 6229 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:56 6239 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:56 6239 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:56 6249 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:56 6259 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:56 6269 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:56 6279 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:56 6289 [LEMMA] - UPLOADFILE +19:24:56 6289 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:56 6299 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:56 6309 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:56 6309 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:56 6319 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:56 6329 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:57 1431 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:57 1441 [LEMMA] - NESTINGRUNTIME +19:24:57 1441 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:57 1451 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:57 1461 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:57 1461 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:57 1471 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:57 1481 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:57 1481 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:57 1491 [LEMMA] - WORKINGESTTIME +19:24:57 1501 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:57 1501 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:57 1511 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:57 1521 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:57 1521 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:57 1531 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:57 1541 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:57 1541 [LEMMA] - UPLOADFILE +19:24:57 1551 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:57 1561 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:57 1561 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:57 1571 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:57 1581 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:57 1581 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:57 6683 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:57 6683 [LEMMA] - NESTINGRUNTIME +19:24:57 6693 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:57 6703 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:57 6703 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:57 6713 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:57 6713 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:57 6723 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:57 6733 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:57 6753 [LEMMA] - WORKINGESTTIME +19:24:57 6763 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:57 6763 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:57 6773 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:57 6783 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:57 6783 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:57 6793 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:57 6803 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:57 6803 [LEMMA] - UPLOADFILE +19:24:57 6813 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:57 6823 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:57 6823 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:57 6833 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:57 6833 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:57 6843 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:58 1955 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:58 1955 [LEMMA] - NESTINGRUNTIME +19:24:58 1965 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:58 1975 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:58 1975 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:58 1985 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:58 1985 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:58 1995 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:58 2005 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:58 2015 [LEMMA] - WORKINGESTTIME +19:24:58 2025 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:58 2025 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:58 2035 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:58 2045 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:58 2055 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:58 2055 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:58 2075 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:58 2085 [LEMMA] - UPLOADFILE +19:24:58 2095 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:58 2105 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:58 2115 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:58 2125 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:58 2135 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:58 2135 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:58 7236 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:58 7246 [LEMMA] - NESTINGRUNTIME +19:24:58 7256 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:58 7256 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:58 7266 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:58 7276 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:58 7276 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:58 7286 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:58 7296 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:58 7306 [LEMMA] - WORKINGESTTIME +19:24:58 7306 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:58 7316 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:58 7326 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:58 7336 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:58 7336 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:58 7346 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:58 7356 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:58 7366 [LEMMA] - UPLOADFILE +19:24:58 7366 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:58 7376 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:58 7386 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:58 7386 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:58 7396 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:58 7406 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:59 2508 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:59 2518 [LEMMA] - NESTINGRUNTIME +19:24:59 2518 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:59 2528 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:59 2548 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:59 2558 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:59 2558 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:59 2568 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:59 2578 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:59 2598 [LEMMA] - WORKINGESTTIME +19:24:59 2608 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:59 2618 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:59 2628 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:59 2638 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:59 2648 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:59 2648 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:59 2658 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:59 2668 [LEMMA] - UPLOADFILE +19:24:59 2678 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:59 2678 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:59 2688 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:59 2698 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:59 2708 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:59 2708 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:59 7810 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:59 7820 [LEMMA] - NESTINGRUNTIME +19:24:59 7820 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:24:59 7830 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:59 7830 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:59 7840 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:59 7850 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:59 7850 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:59 7860 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:59 7870 [LEMMA] - WORKINGESTTIME +19:24:59 7870 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:24:59 7880 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:59 7890 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:59 7890 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:59 7900 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:59 7900 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:24:59 7910 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:24:59 7920 [LEMMA] - UPLOADFILE +19:24:59 7930 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:24:59 7940 [INFO] - Key: EN#KITTING | Val: Kitting +19:24:59 7940 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:24:59 7950 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:24:59 7960 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:24:59 7960 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:00 3042 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:00 3052 [LEMMA] - NESTINGRUNTIME +19:25:00 3062 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:00 3082 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:00 3092 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:00 3092 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:00 3102 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:00 3112 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:00 3122 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:00 3132 [LEMMA] - WORKINGESTTIME +19:25:00 3132 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:00 3142 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:00 3152 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:00 3152 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:00 3162 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:00 3172 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:00 3182 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:00 3182 [LEMMA] - UPLOADFILE +19:25:00 3192 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:00 3202 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:00 3202 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:00 3212 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:00 3222 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:00 3222 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:00 8323 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:00 8323 [LEMMA] - NESTINGRUNTIME +19:25:00 8333 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:00 8343 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:00 8343 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:00 8353 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:00 8353 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:00 8363 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:00 8373 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:00 8383 [LEMMA] - WORKINGESTTIME +19:25:00 8383 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:00 8393 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:00 8403 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:00 8403 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:00 8413 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:00 8423 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:00 8433 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:00 8443 [LEMMA] - UPLOADFILE +19:25:00 8453 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:00 8453 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:00 8463 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:00 8473 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:00 8473 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:00 8483 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:01 3574 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:01 3584 [LEMMA] - NESTINGRUNTIME +19:25:01 3594 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:01 3594 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:01 3604 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:01 3614 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:01 3614 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:01 3624 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:01 3634 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:01 3634 [LEMMA] - WORKINGESTTIME +19:25:01 3644 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:01 3644 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:01 3654 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:01 3664 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:01 3664 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:01 3674 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:01 3684 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:01 3694 [LEMMA] - UPLOADFILE +19:25:01 3704 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:01 3704 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:01 3714 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:01 3724 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:01 3734 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:01 3734 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:01 8845 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:01 8855 [LEMMA] - NESTINGRUNTIME +19:25:01 8855 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:01 8865 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:01 8875 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:01 8875 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:01 8885 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:01 8895 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:01 8895 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:01 8905 [LEMMA] - WORKINGESTTIME +19:25:01 8925 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:01 8925 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:01 8935 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:01 8945 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:01 8955 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:01 8955 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:01 8965 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:01 8975 [LEMMA] - UPLOADFILE +19:25:01 8975 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:01 8985 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:01 8995 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:01 8995 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:01 9005 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:01 9005 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:02 4098 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:02 4108 [LEMMA] - NESTINGRUNTIME +19:25:02 4108 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:02 4118 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:02 4128 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:02 4128 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:02 4138 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:02 4138 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:02 4148 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:02 4158 [LEMMA] - WORKINGESTTIME +19:25:02 4158 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:02 4168 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:02 4178 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:02 4178 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:02 4188 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:02 4198 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:02 4208 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:02 4218 [LEMMA] - UPLOADFILE +19:25:02 4218 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:02 4228 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:02 4238 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:02 4238 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:02 4258 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:02 4258 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:02 9358 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:02 9368 [LEMMA] - NESTINGRUNTIME +19:25:02 9368 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:02 9378 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:02 9388 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:02 9398 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:02 9398 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:02 9408 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:02 9428 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:02 9438 [LEMMA] - WORKINGESTTIME +19:25:02 9448 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:02 9448 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:02 9458 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:02 9468 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:02 9468 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:02 9478 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:02 9488 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:02 9498 [LEMMA] - UPLOADFILE +19:25:02 9498 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:02 9508 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:02 9518 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:02 9518 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:02 9528 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:02 9538 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:03 4621 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:03 4631 [LEMMA] - NESTINGRUNTIME +19:25:03 4641 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:03 4641 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:03 4651 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:03 4661 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:03 4661 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:03 4671 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:03 4681 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:03 4681 [LEMMA] - WORKINGESTTIME +19:25:03 4691 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:03 4691 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:03 4701 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:03 4711 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:03 4711 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:03 4721 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:03 4731 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:03 4741 [LEMMA] - UPLOADFILE +19:25:03 4751 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:03 4761 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:03 4771 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:03 4771 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:03 4781 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:03 4791 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:03 9892 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:03 9902 [LEMMA] - NESTINGRUNTIME +19:25:03 9912 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:03 9922 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:03 9942 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:03 9952 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:03 9952 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:03 9962 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:03 9972 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:03 9982 [LEMMA] - WORKINGESTTIME +19:25:03 9982 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:03 9992 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:03 9992 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:04 0002 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:04 0012 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:04 0012 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:04 0032 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:04 0042 [LEMMA] - UPLOADFILE +19:25:04 0042 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:04 0052 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:04 0072 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:04 0082 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:04 0092 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:04 0102 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:04 5194 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:04 5204 [LEMMA] - NESTINGRUNTIME +19:25:04 5204 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:04 5214 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:04 5224 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:04 5224 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:04 5235 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:04 5245 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:04 5255 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:04 5265 [LEMMA] - WORKINGESTTIME +19:25:04 5265 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:04 5275 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:04 5285 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:04 5295 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:04 5295 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:04 5305 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:04 5315 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:04 5315 [LEMMA] - UPLOADFILE +19:25:04 5325 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:04 5335 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:04 5335 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:04 5345 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:04 5355 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:04 5365 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:05 0457 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:05 0467 [LEMMA] - NESTINGRUNTIME +19:25:05 0477 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:05 0477 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:05 0487 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:05 0487 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:05 0497 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:05 0507 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:05 0507 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:05 0517 [LEMMA] - WORKINGESTTIME +19:25:05 0527 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:05 0527 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:05 0537 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:05 0547 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:05 0547 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:05 0557 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:05 0567 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:05 0577 [LEMMA] - UPLOADFILE +19:25:05 0587 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:05 0587 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:05 0597 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:05 0607 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:05 0617 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:05 0617 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:05 5699 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:05 5709 [LEMMA] - NESTINGRUNTIME +19:25:05 5719 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:05 5719 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:05 5729 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:05 5739 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:05 5749 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:05 5749 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:05 5769 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:05 5779 [LEMMA] - WORKINGESTTIME +19:25:05 5779 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:05 5789 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:05 5799 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:05 5809 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:05 5809 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:05 5819 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:05 5829 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:05 5839 [LEMMA] - UPLOADFILE +19:25:05 5839 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:05 5849 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:05 5849 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:05 5859 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:05 5869 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:05 5879 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:06 0961 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:06 0971 [LEMMA] - NESTINGRUNTIME +19:25:06 0981 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:06 0981 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:06 0991 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:06 1001 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:06 1001 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:06 1011 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:06 1021 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:06 1031 [LEMMA] - WORKINGESTTIME +19:25:06 1031 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:06 1041 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:06 1051 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:06 1051 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:06 1061 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:06 1071 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:06 1071 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:06 1081 [LEMMA] - UPLOADFILE +19:25:06 1091 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:06 1101 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:06 1101 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:06 1111 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:06 1121 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:06 1121 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:06 6233 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:06 6243 [LEMMA] - NESTINGRUNTIME +19:25:06 6253 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:06 6263 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:06 6273 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:06 6283 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:06 6293 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:06 6303 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:06 6313 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:06 6323 [LEMMA] - WORKINGESTTIME +19:25:06 6323 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:06 6333 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:06 6343 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:06 6353 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:06 6353 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:06 6363 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:06 6373 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:06 6373 [LEMMA] - UPLOADFILE +19:25:06 6383 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:06 6393 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:06 6393 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:06 6403 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:06 6413 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:06 6423 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:07 1515 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:07 1525 [LEMMA] - NESTINGRUNTIME +19:25:07 1535 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:07 1545 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:07 1545 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:07 1555 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:07 1565 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:07 1575 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:07 1585 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:07 1595 [LEMMA] - WORKINGESTTIME +19:25:07 1605 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:07 1615 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:07 1615 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:07 1625 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:07 1635 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:07 1635 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:07 1645 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:07 1655 [LEMMA] - UPLOADFILE +19:25:07 1665 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:07 1675 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:07 1675 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:07 1685 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:07 1695 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:07 1695 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:07 6787 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:07 6797 [LEMMA] - NESTINGRUNTIME +19:25:07 6807 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:07 6807 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:07 6817 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:07 6827 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:07 6827 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:07 6837 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:07 6847 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:07 6857 [LEMMA] - WORKINGESTTIME +19:25:07 6857 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:07 6867 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:07 6877 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:07 6887 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:07 6887 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:07 6897 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:07 6907 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:07 6917 [LEMMA] - UPLOADFILE +19:25:07 6927 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:07 6937 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:07 6947 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:07 6957 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:07 6967 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:07 6967 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:08 2079 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:08 2089 [LEMMA] - NESTINGRUNTIME +19:25:08 2099 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:08 2099 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:08 2109 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:08 2119 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:08 2119 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:08 2129 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:08 2129 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:08 2139 [LEMMA] - WORKINGESTTIME +19:25:08 2149 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:08 2149 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:08 2159 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:08 2159 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:08 2169 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:08 2179 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:08 2189 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:08 2189 [LEMMA] - UPLOADFILE +19:25:08 2199 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:08 2209 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:08 2209 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:08 2219 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:08 2229 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:08 2229 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:08 7330 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:08 7330 [LEMMA] - NESTINGRUNTIME +19:25:08 7340 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:08 7350 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:08 7360 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:08 7360 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:08 7370 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:08 7380 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:08 7380 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:08 7390 [LEMMA] - WORKINGESTTIME +19:25:08 7400 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:08 7410 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:08 7420 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:08 7430 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:08 7430 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:08 7440 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:08 7460 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:08 7460 [LEMMA] - UPLOADFILE +19:25:08 7470 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:08 7480 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:08 7480 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:08 7490 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:08 7500 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:08 7510 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:09 2611 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:09 2611 [LEMMA] - NESTINGRUNTIME +19:25:09 2621 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:09 2621 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:09 2631 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:09 2641 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:09 2641 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:09 2651 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:09 2661 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:09 2661 [LEMMA] - WORKINGESTTIME +19:25:09 2671 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:09 2671 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:09 2681 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:09 2691 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:09 2691 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:09 2701 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:09 2711 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:09 2721 [LEMMA] - UPLOADFILE +19:25:09 2731 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:09 2731 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:09 2741 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:09 2751 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:09 2761 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:09 2761 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:09 7862 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:09 7862 [LEMMA] - NESTINGRUNTIME +19:25:09 7872 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:09 7882 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:09 7882 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:09 7892 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:09 7902 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:09 7902 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:09 7912 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:09 7922 [LEMMA] - WORKINGESTTIME +19:25:09 7932 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:09 7942 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:09 7942 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:09 7952 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:09 7962 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:09 7972 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:09 7982 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:09 7982 [LEMMA] - UPLOADFILE +19:25:09 7992 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:09 8002 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:09 8012 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:09 8012 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:09 8022 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:09 8022 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:10 3124 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:10 3134 [LEMMA] - NESTINGRUNTIME +19:25:10 3144 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:10 3144 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:10 3154 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:10 3164 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:10 3164 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:10 3174 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:10 3184 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:10 3184 [LEMMA] - WORKINGESTTIME +19:25:10 3194 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:10 3194 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:10 3204 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:10 3214 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:10 3224 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:10 3224 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:10 3234 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:10 3244 [LEMMA] - UPLOADFILE +19:25:10 3254 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:10 3264 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:10 3264 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:10 3274 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:10 3284 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:10 3294 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:10 8385 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:10 8385 [LEMMA] - NESTINGRUNTIME +19:25:10 8395 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:10 8405 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:10 8415 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:10 8425 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:10 8425 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:10 8435 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:10 8445 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:10 8455 [LEMMA] - WORKINGESTTIME +19:25:10 8455 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:10 8465 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:10 8475 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:10 8475 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:10 8485 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:10 8495 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:10 8505 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:10 8505 [LEMMA] - UPLOADFILE +19:25:10 8515 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:10 8525 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:10 8525 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:10 8535 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:10 8545 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:10 8545 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:11 3646 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:11 3646 [LEMMA] - NESTINGRUNTIME +19:25:11 3656 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:11 3666 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:11 3666 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:11 3676 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:11 3676 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:11 3686 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:11 3696 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:11 3696 [LEMMA] - WORKINGESTTIME +19:25:11 3706 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:11 3706 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:11 3716 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:11 3716 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:11 3726 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:11 3736 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:11 3736 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:11 3746 [LEMMA] - UPLOADFILE +19:25:11 3756 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:11 3766 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:11 3766 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:11 3776 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:11 3776 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:11 3786 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:11 8876 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:11 8876 [LEMMA] - NESTINGRUNTIME +19:25:11 8886 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:11 8896 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:11 8896 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:11 8906 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:11 8906 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:11 8916 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:11 8926 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:11 8936 [LEMMA] - WORKINGESTTIME +19:25:11 8936 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:11 8946 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:11 8946 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:11 8956 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:11 8966 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:11 8966 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:11 8976 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:11 8986 [LEMMA] - UPLOADFILE +19:25:11 8986 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:11 8996 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:11 8996 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:11 9006 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:11 9006 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:11 9016 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:12 4128 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:12 4138 [LEMMA] - NESTINGRUNTIME +19:25:12 4138 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:12 4148 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:12 4148 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:12 4158 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:12 4158 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:12 4168 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:12 4178 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:12 4178 [LEMMA] - WORKINGESTTIME +19:25:12 4188 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:12 4198 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:12 4198 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:12 4208 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:12 4218 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:12 4218 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:12 4228 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:12 4238 [LEMMA] - UPLOADFILE +19:25:12 4248 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:12 4258 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:12 4258 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:12 4268 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:12 4278 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:12 4288 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:12 9369 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:12 9380 [LEMMA] - NESTINGRUNTIME +19:25:12 9389 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:12 9389 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:12 9399 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:12 9409 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:12 9409 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:12 9419 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:12 9429 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:12 9439 [LEMMA] - WORKINGESTTIME +19:25:12 9449 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:12 9459 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:12 9469 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:12 9469 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:12 9479 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:12 9479 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:12 9489 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:12 9499 [LEMMA] - UPLOADFILE +19:25:12 9499 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:12 9509 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:12 9519 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:12 9519 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:12 9529 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:12 9529 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:13 4641 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:13 4641 [LEMMA] - NESTINGRUNTIME +19:25:13 4651 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:13 4661 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:13 4661 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:13 4671 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:13 4681 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:13 4681 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:13 4691 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:13 4691 [LEMMA] - WORKINGESTTIME +19:25:13 4701 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:13 4711 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:13 4711 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:13 4721 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:13 4731 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:13 4731 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:13 4741 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:13 4751 [LEMMA] - UPLOADFILE +19:25:13 4751 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:13 4761 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:13 4771 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:13 4781 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:13 4791 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:13 4791 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:13 9882 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:13 9892 [LEMMA] - NESTINGRUNTIME +19:25:13 9902 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:13 9912 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:13 9922 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:13 9922 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:13 9932 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:13 9942 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:13 9952 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:13 9952 [LEMMA] - WORKINGESTTIME +19:25:13 9962 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:13 9972 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:13 9972 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:13 9982 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:13 9982 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:13 9992 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:14 0002 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:14 0012 [LEMMA] - UPLOADFILE +19:25:14 0012 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:14 0022 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:14 0032 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:14 0032 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:14 0042 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:14 0042 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:14 5153 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:14 5163 [LEMMA] - NESTINGRUNTIME +19:25:14 5173 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:14 5173 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:14 5183 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:14 5193 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:14 5193 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:14 5203 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:14 5203 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:14 5213 [LEMMA] - WORKINGESTTIME +19:25:14 5223 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:14 5223 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:14 5233 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:14 5233 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:14 5243 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:14 5253 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:14 5274 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:14 5283 [LEMMA] - UPLOADFILE +19:25:14 5293 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:14 5293 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:14 5303 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:14 5303 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:14 5314 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:14 5324 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:15 0396 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:15 0406 [LEMMA] - NESTINGRUNTIME +19:25:15 0416 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:15 0426 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:15 0436 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:15 0436 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:15 0446 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:15 0456 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:15 0456 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:15 0466 [LEMMA] - WORKINGESTTIME +19:25:15 0476 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:15 0476 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:15 0486 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:15 0486 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:15 0496 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:15 0506 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:15 0516 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:15 0516 [LEMMA] - UPLOADFILE +19:25:15 0526 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:15 0526 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:15 0536 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:15 0546 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:15 0546 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:15 0556 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:15 5647 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:15 5647 [LEMMA] - NESTINGRUNTIME +19:25:15 5657 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:15 5667 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:15 5667 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:15 5677 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:15 5687 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:15 5687 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:15 5697 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:15 5697 [LEMMA] - WORKINGESTTIME +19:25:15 5707 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:15 5717 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:15 5717 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:15 5727 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:15 5737 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:15 5737 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:15 5747 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:15 5757 [LEMMA] - UPLOADFILE +19:25:15 5767 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:15 5777 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:15 5777 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:15 5787 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:15 5797 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:15 5807 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:16 0891 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:16 0891 [LEMMA] - NESTINGRUNTIME +19:25:16 0901 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:16 0911 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:16 0911 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:16 0921 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:16 0931 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:16 0931 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:16 0941 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:16 0951 [LEMMA] - WORKINGESTTIME +19:25:16 0961 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:16 0961 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:16 0971 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:16 0971 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:16 0981 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:16 0981 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:16 0991 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:16 1001 [LEMMA] - UPLOADFILE +19:25:16 1011 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:16 1011 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:16 1021 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:16 1031 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:16 1031 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:16 1041 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:16 6143 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:16 6153 [LEMMA] - NESTINGRUNTIME +19:25:16 6163 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:16 6163 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:16 6173 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:16 6183 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:16 6183 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:16 6193 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:16 6203 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:16 6203 [LEMMA] - WORKINGESTTIME +19:25:16 6213 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:16 6223 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:16 6223 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:16 6233 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:16 6243 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:16 6243 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:16 6263 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:16 6273 [LEMMA] - UPLOADFILE +19:25:16 6283 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:16 6283 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:16 6293 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:16 6303 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:16 6303 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:16 6313 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:17 1415 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:17 1425 [LEMMA] - NESTINGRUNTIME +19:25:17 1425 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:17 1435 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:17 1445 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:17 1445 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:17 1455 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:17 1465 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:17 1465 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:17 1475 [LEMMA] - WORKINGESTTIME +19:25:17 1485 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:17 1485 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:17 1495 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:17 1505 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:17 1505 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:17 1515 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:17 1525 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:17 1535 [LEMMA] - UPLOADFILE +19:25:17 1535 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:17 1545 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:17 1555 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:17 1565 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:17 1565 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:17 1575 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:17 6676 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:17 6686 [LEMMA] - NESTINGRUNTIME +19:25:17 6686 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:17 6696 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:17 6706 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:17 6706 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:17 6716 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:17 6716 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:17 6726 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:17 6736 [LEMMA] - WORKINGESTTIME +19:25:17 6746 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:17 6746 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:17 6756 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:17 6766 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:17 6776 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:17 6776 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:17 6786 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:17 6796 [LEMMA] - UPLOADFILE +19:25:17 6806 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:17 6806 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:17 6816 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:17 6826 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:17 6826 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:17 6836 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:18 1928 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:18 1938 [LEMMA] - NESTINGRUNTIME +19:25:18 1938 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:18 1948 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:18 1958 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:18 1968 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:18 1968 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:18 1978 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:18 1988 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:18 1998 [LEMMA] - WORKINGESTTIME +19:25:18 1998 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:18 2008 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:18 2018 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:18 2018 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:18 2028 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:18 2028 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:18 2048 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:18 2048 [LEMMA] - UPLOADFILE +19:25:18 2058 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:18 2068 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:18 2068 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:18 2078 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:18 2088 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:18 2098 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:18 7191 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:18 7191 [LEMMA] - NESTINGRUNTIME +19:25:18 7201 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:18 7211 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:18 7211 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:18 7221 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:18 7221 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:18 7231 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:18 7241 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:18 7241 [LEMMA] - WORKINGESTTIME +19:25:18 7251 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:18 7261 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:18 7261 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:18 7271 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:18 7281 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:18 7281 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:18 7291 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:18 7301 [LEMMA] - UPLOADFILE +19:25:18 7311 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:18 7311 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:18 7321 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:18 7331 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:18 7331 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:18 7341 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:19 2432 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:19 2442 [LEMMA] - NESTINGRUNTIME +19:25:19 2452 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:19 2462 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:19 2462 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:19 2472 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:19 2472 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:19 2482 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:19 2492 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:19 2502 [LEMMA] - WORKINGESTTIME +19:25:19 2502 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:19 2512 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:19 2522 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:19 2522 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:19 2532 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:19 2542 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:19 2552 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:19 2562 [LEMMA] - UPLOADFILE +19:25:19 2562 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:19 2572 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:19 2582 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:19 2592 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:19 2602 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:19 2612 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:19 7713 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:19 7713 [LEMMA] - NESTINGRUNTIME +19:25:19 7723 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:19 7733 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:19 7733 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:19 7743 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:19 7753 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:19 7753 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:19 7763 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:19 7773 [LEMMA] - WORKINGESTTIME +19:25:19 7783 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:19 7783 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:19 7793 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:19 7803 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:19 7803 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:19 7813 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:19 7823 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:19 7823 [LEMMA] - UPLOADFILE +19:25:19 7833 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:19 7843 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:19 7843 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:19 7853 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:19 7863 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:19 7863 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:20 2955 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:20 2965 [LEMMA] - NESTINGRUNTIME +19:25:20 2975 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:20 2985 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:20 2985 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:20 2995 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:20 2995 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:20 3005 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:20 3015 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:20 3025 [LEMMA] - WORKINGESTTIME +19:25:20 3025 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:20 3035 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:20 3045 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:20 3045 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:20 3055 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:20 3065 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:20 3075 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:20 3085 [LEMMA] - UPLOADFILE +19:25:20 3085 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:20 3095 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:20 3105 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:20 3115 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:20 3115 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:20 3125 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:20 8228 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:20 8228 [LEMMA] - NESTINGRUNTIME +19:25:20 8238 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:20 8248 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:20 8258 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:20 8258 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:20 8268 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:20 8278 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:20 8278 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:20 8288 [LEMMA] - WORKINGESTTIME +19:25:20 8298 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:20 8298 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:20 8308 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:20 8308 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:20 8318 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:20 8328 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:20 8338 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:20 8338 [LEMMA] - UPLOADFILE +19:25:20 8348 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:20 8358 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:20 8358 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:20 8368 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:20 8368 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:20 8378 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:21 3479 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:21 3479 [LEMMA] - NESTINGRUNTIME +19:25:21 3489 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:21 3499 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:21 3499 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:21 3509 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:21 3519 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:21 3519 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:21 3529 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:21 3529 [LEMMA] - WORKINGESTTIME +19:25:21 3539 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:21 3549 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:21 3549 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:21 3559 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:21 3569 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:21 3569 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:21 3579 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:21 3589 [LEMMA] - UPLOADFILE +19:25:21 3599 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:21 3609 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:21 3619 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:21 3619 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:21 3629 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:21 3639 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:21 8731 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:21 8731 [LEMMA] - NESTINGRUNTIME +19:25:21 8741 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:21 8751 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:21 8751 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:21 8761 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:21 8771 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:21 8771 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:21 8781 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:21 8791 [LEMMA] - WORKINGESTTIME +19:25:21 8791 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:21 8801 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:21 8801 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:21 8811 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:21 8811 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:21 8821 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:21 8831 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:21 8831 [LEMMA] - UPLOADFILE +19:25:21 8841 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:21 8851 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:21 8851 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:21 8861 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:21 8861 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:21 8871 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:22 3965 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:22 3975 [LEMMA] - NESTINGRUNTIME +19:25:22 3975 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:22 3985 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:22 3995 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:22 4005 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:22 4005 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:22 4015 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:22 4025 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:22 4035 [LEMMA] - WORKINGESTTIME +19:25:22 4035 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:22 4045 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:22 4055 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:22 4065 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:22 4065 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:22 4075 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:22 4085 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:22 4095 [LEMMA] - UPLOADFILE +19:25:22 4105 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:22 4115 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:22 4125 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:22 4125 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:22 4135 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:22 4145 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:22 9246 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:22 9256 [LEMMA] - NESTINGRUNTIME +19:25:22 9266 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:22 9276 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:22 9276 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:22 9286 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:22 9296 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:22 9296 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:22 9306 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:22 9316 [LEMMA] - WORKINGESTTIME +19:25:22 9326 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:22 9326 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:22 9336 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:22 9346 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:22 9346 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:22 9356 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:22 9366 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:22 9366 [LEMMA] - UPLOADFILE +19:25:22 9376 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:22 9386 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:22 9386 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:22 9396 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:22 9396 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:22 9406 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:23 4508 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:23 4518 [LEMMA] - NESTINGRUNTIME +19:25:23 4528 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:23 4528 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:23 4538 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:23 4548 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:23 4558 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:23 4558 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:23 4568 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:23 4578 [LEMMA] - WORKINGESTTIME +19:25:23 4588 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:23 4598 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:23 4598 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:23 4608 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:23 4618 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:23 4628 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:23 4648 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:23 4648 [LEMMA] - UPLOADFILE +19:25:23 4658 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:23 4668 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:23 4678 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:23 4678 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:23 4688 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:23 4688 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:23 9795 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:23 9805 [LEMMA] - NESTINGRUNTIME +19:25:23 9815 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:23 9815 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:23 9825 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:23 9825 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:23 9835 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:23 9845 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:23 9845 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:23 9855 [LEMMA] - WORKINGESTTIME +19:25:23 9865 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:23 9865 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:23 9875 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:23 9875 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:23 9885 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:23 9895 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:23 9905 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:23 9905 [LEMMA] - UPLOADFILE +19:25:23 9915 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:23 9915 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:23 9925 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:23 9935 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:23 9945 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:23 9955 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:24 5045 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:24 5045 [LEMMA] - NESTINGRUNTIME +19:25:24 5055 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:24 5065 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:24 5065 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:24 5075 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:24 5075 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:24 5085 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:24 5095 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:24 5105 [LEMMA] - WORKINGESTTIME +19:25:24 5115 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:24 5125 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:24 5125 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:24 5135 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:24 5135 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:24 5145 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:24 5155 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:24 5165 [LEMMA] - UPLOADFILE +19:25:24 5165 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:24 5175 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:24 5185 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:24 5185 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:24 5195 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:24 5205 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:25 0316 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:25 0316 [LEMMA] - NESTINGRUNTIME +19:25:25 0326 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:25 0336 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:25 0346 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:25 0346 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:25 0356 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:25 0366 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:25 0366 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:25 0376 [LEMMA] - WORKINGESTTIME +19:25:25 0386 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:25 0396 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:25 0396 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:25 0406 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:25 0416 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:25 0416 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:25 0436 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:25 0446 [LEMMA] - UPLOADFILE +19:25:25 0446 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:25 0456 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:25 0466 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:25 0466 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:25 0476 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:25 0476 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:25 5567 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:25 5577 [LEMMA] - NESTINGRUNTIME +19:25:25 5587 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:25 5597 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:25 5607 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:25 5617 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:25 5617 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:25 5627 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:25 5637 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:25 5647 [LEMMA] - WORKINGESTTIME +19:25:25 5657 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:25 5667 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:25 5667 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:25 5677 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:25 5687 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:25 5687 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:25 5697 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:25 5707 [LEMMA] - UPLOADFILE +19:25:25 5707 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:25 5717 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:25 5727 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:25 5727 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:25 5737 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:25 5747 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:26 0848 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:26 0858 [LEMMA] - NESTINGRUNTIME +19:25:26 0858 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:26 0868 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:26 0868 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:26 0878 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:26 0878 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:26 0888 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:26 0898 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:26 0908 [LEMMA] - WORKINGESTTIME +19:25:26 0908 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:26 0918 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:26 0918 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:26 0928 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:26 0938 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:26 0948 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:26 0958 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:26 0968 [LEMMA] - UPLOADFILE +19:25:26 0978 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:26 0988 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:26 0988 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:26 0998 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:26 1008 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:26 1008 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:26 6110 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:26 6120 [LEMMA] - NESTINGRUNTIME +19:25:26 6130 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:26 6140 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:26 6150 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:26 6160 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:26 6170 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:26 6170 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:26 6180 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:26 6190 [LEMMA] - WORKINGESTTIME +19:25:26 6200 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:26 6200 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:26 6210 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:26 6220 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:26 6220 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:26 6230 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:26 6240 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:26 6250 [LEMMA] - UPLOADFILE +19:25:26 6260 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:26 6260 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:26 6280 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:26 6290 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:26 6300 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:26 6310 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:27 1411 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:27 1421 [LEMMA] - NESTINGRUNTIME +19:25:27 1421 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:27 1441 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:27 1451 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:27 1451 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:27 1461 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:27 1471 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:27 1481 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:27 1481 [LEMMA] - WORKINGESTTIME +19:25:27 1491 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:27 1491 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:27 1501 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:27 1511 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:27 1511 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:27 1521 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:27 1531 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:27 1541 [LEMMA] - UPLOADFILE +19:25:27 1541 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:27 1551 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:27 1551 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:27 1561 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:27 1571 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:27 1571 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:27 6682 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:27 6692 [LEMMA] - NESTINGRUNTIME +19:25:27 6692 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:27 6702 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:27 6702 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:27 6712 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:27 6722 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:27 6732 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:27 6732 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:27 6742 [LEMMA] - WORKINGESTTIME +19:25:27 6752 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:27 6752 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:27 6762 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:27 6772 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:27 6782 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:27 6792 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:27 6802 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:27 6812 [LEMMA] - UPLOADFILE +19:25:27 6822 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:27 6832 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:27 6832 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:27 6842 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:27 6842 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:27 6852 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:28 1944 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:28 1954 [LEMMA] - NESTINGRUNTIME +19:25:28 1954 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:28 1964 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:28 1974 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:28 1974 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:28 1984 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:28 1984 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:28 1994 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:28 2004 [LEMMA] - WORKINGESTTIME +19:25:28 2014 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:28 2014 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:28 2024 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:28 2024 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:28 2034 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:28 2044 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:28 2054 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:28 2054 [LEMMA] - UPLOADFILE +19:25:28 2064 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:28 2064 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:28 2074 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:28 2084 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:28 2084 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:28 2094 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:28 7186 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:28 7196 [LEMMA] - NESTINGRUNTIME +19:25:28 7196 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:28 7206 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:28 7216 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:28 7216 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:28 7226 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:28 7226 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:28 7236 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:28 7246 [LEMMA] - WORKINGESTTIME +19:25:28 7246 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:28 7256 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:28 7266 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:28 7276 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:28 7286 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:28 7296 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:28 7306 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:28 7306 [LEMMA] - UPLOADFILE +19:25:28 7316 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:28 7326 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:28 7336 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:28 7336 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:28 7346 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:28 7356 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:29 2457 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:29 2467 [LEMMA] - NESTINGRUNTIME +19:25:29 2467 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:29 2477 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:29 2487 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:29 2487 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:29 2497 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:29 2507 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:29 2507 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:29 2517 [LEMMA] - WORKINGESTTIME +19:25:29 2527 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:29 2527 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:29 2537 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:29 2547 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:29 2547 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:29 2557 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:29 2567 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:29 2577 [LEMMA] - UPLOADFILE +19:25:29 2577 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:29 2587 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:29 2597 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:29 2607 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:29 2617 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:29 2617 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:29 7719 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:29 7729 [LEMMA] - NESTINGRUNTIME +19:25:29 7729 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:29 7739 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:29 7749 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:29 7749 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:29 7759 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:29 7769 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:29 7779 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:29 7789 [LEMMA] - WORKINGESTTIME +19:25:29 7789 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:29 7799 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:29 7809 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:29 7809 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:29 7819 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:29 7829 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:29 7829 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:29 7839 [LEMMA] - UPLOADFILE +19:25:29 7849 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:29 7849 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:29 7859 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:29 7869 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:29 7869 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:29 7879 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:30 2982 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:30 2992 [LEMMA] - NESTINGRUNTIME +19:25:30 2992 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:30 3002 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:30 3012 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:30 3012 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:30 3022 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:30 3022 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:30 3032 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:30 3042 [LEMMA] - WORKINGESTTIME +19:25:30 3042 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:30 3052 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:30 3052 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:30 3062 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:30 3062 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:30 3072 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:30 3082 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:30 3092 [LEMMA] - UPLOADFILE +19:25:30 3092 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:30 3102 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:30 3112 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:30 3112 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:30 3122 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:30 3132 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:30 8233 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:30 8243 [LEMMA] - NESTINGRUNTIME +19:25:30 8243 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:30 8253 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:30 8263 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:30 8273 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:30 8273 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:30 8283 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:30 8293 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:30 8303 [LEMMA] - WORKINGESTTIME +19:25:30 8313 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:30 8313 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:30 8323 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:30 8333 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:30 8333 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:30 8343 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:30 8353 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:30 8363 [LEMMA] - UPLOADFILE +19:25:30 8363 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:30 8373 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:30 8383 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:30 8383 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:30 8393 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:30 8403 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:31 3525 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:31 3535 [LEMMA] - NESTINGRUNTIME +19:25:31 3535 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:31 3545 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:31 3555 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:31 3565 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:31 3565 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:31 3575 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:31 3585 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:31 3585 [LEMMA] - WORKINGESTTIME +19:25:31 3595 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:31 3605 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:31 3615 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:31 3615 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:31 3625 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:31 3625 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:31 3645 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:31 3645 [LEMMA] - UPLOADFILE +19:25:31 3655 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:31 3655 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:31 3665 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:31 3665 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:31 3675 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:31 3685 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:31 8776 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:31 8786 [LEMMA] - NESTINGRUNTIME +19:25:31 8796 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:31 8806 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:31 8816 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:31 8816 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:31 8826 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:31 8826 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:31 8836 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:31 8846 [LEMMA] - WORKINGESTTIME +19:25:31 8856 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:31 8866 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:31 8876 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:31 8876 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:31 8886 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:31 8896 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:31 8906 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:31 8916 [LEMMA] - UPLOADFILE +19:25:31 8926 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:31 8936 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:31 8946 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:31 8946 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:31 8956 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:31 8966 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:32 4055 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:32 4065 [LEMMA] - NESTINGRUNTIME +19:25:32 4065 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:32 4075 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:32 4075 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:32 4085 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:32 4095 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:32 4095 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:32 4105 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:32 4115 [LEMMA] - WORKINGESTTIME +19:25:32 4125 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:32 4135 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:32 4135 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:32 4145 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:32 4155 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:32 4155 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:32 4165 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:32 4175 [LEMMA] - UPLOADFILE +19:25:32 4175 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:32 4185 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:32 4195 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:32 4195 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:32 4205 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:32 4215 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:32 9306 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:32 9316 [LEMMA] - NESTINGRUNTIME +19:25:32 9326 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:32 9336 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:32 9346 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:32 9346 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:32 9356 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:32 9366 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:32 9366 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:32 9376 [LEMMA] - WORKINGESTTIME +19:25:32 9386 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:32 9386 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:32 9396 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:32 9406 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:32 9406 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:32 9416 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:32 9426 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:32 9436 [LEMMA] - UPLOADFILE +19:25:32 9446 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:32 9456 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:32 9466 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:32 9476 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:32 9486 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:32 9486 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:33 4587 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:33 4597 [LEMMA] - NESTINGRUNTIME +19:25:33 4607 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:33 4617 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:33 4617 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:33 4627 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:33 4637 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:33 4647 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:33 4657 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:33 4657 [LEMMA] - WORKINGESTTIME +19:25:33 4667 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:33 4667 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:33 4677 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:33 4687 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:33 4687 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:33 4697 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:33 4707 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:33 4707 [LEMMA] - UPLOADFILE +19:25:33 4717 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:33 4727 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:33 4727 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:33 4737 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:33 4737 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:33 4747 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:33 9849 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:33 9859 [LEMMA] - NESTINGRUNTIME +19:25:33 9859 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:33 9869 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:33 9879 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:33 9889 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:33 9889 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:33 9899 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:33 9909 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:33 9909 [LEMMA] - WORKINGESTTIME +19:25:33 9919 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:33 9929 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:33 9939 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:33 9949 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:33 9959 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:33 9959 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:33 9969 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:33 9979 [LEMMA] - UPLOADFILE +19:25:33 9989 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:33 9999 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:34 0009 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:34 0009 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:34 0019 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:34 0029 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:34 5120 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:34 5130 [LEMMA] - NESTINGRUNTIME +19:25:34 5130 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:34 5140 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:34 5150 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:34 5150 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:34 5160 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:34 5160 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:34 5170 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:34 5180 [LEMMA] - WORKINGESTTIME +19:25:34 5180 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:34 5190 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:34 5190 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:34 5200 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:34 5210 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:34 5210 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:34 5220 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:34 5230 [LEMMA] - UPLOADFILE +19:25:34 5230 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:34 5240 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:34 5250 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:34 5250 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:34 5260 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:34 5270 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:35 0361 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:35 0361 [LEMMA] - NESTINGRUNTIME +19:25:35 0371 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:35 0381 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:35 0391 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:35 0391 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:35 0401 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:35 0411 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:35 0411 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:35 0421 [LEMMA] - WORKINGESTTIME +19:25:35 0441 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:35 0451 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:35 0461 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:35 0461 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:35 0471 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:35 0481 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:35 0491 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:35 0491 [LEMMA] - UPLOADFILE +19:25:35 0501 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:35 0512 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:35 0522 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:35 0522 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:35 0532 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:35 0542 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:35 5633 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:35 5643 [LEMMA] - NESTINGRUNTIME +19:25:35 5653 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:35 5653 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:35 5663 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:35 5673 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:35 5673 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:35 5683 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:35 5683 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:35 5693 [LEMMA] - WORKINGESTTIME +19:25:35 5703 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:35 5703 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:35 5713 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:35 5723 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:35 5723 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:35 5733 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:35 5743 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:35 5753 [LEMMA] - UPLOADFILE +19:25:35 5753 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:35 5763 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:35 5773 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:35 5783 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:35 5793 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:35 5793 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:36 0884 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:36 0894 [LEMMA] - NESTINGRUNTIME +19:25:36 0894 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:36 0904 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:36 0914 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:36 0914 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:36 0924 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:36 0934 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:36 0944 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:36 0954 [LEMMA] - WORKINGESTTIME +19:25:36 0954 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:36 0964 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:36 0974 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:36 0974 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:36 0984 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:36 0994 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:36 1004 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:36 1014 [LEMMA] - UPLOADFILE +19:25:36 1014 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:36 1024 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:36 1034 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:36 1034 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:36 1044 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:36 1054 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:36 6205 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:36 6215 [LEMMA] - NESTINGRUNTIME +19:25:36 6235 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:36 6245 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:36 6265 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:36 6265 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:36 6275 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:36 6285 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:36 6295 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:36 6305 [LEMMA] - WORKINGESTTIME +19:25:36 6315 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:36 6325 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:36 6335 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:36 6345 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:36 6355 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:36 6355 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:36 6365 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:36 6375 [LEMMA] - UPLOADFILE +19:25:36 6385 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:36 6395 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:36 6405 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:36 6415 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:36 6425 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:36 6435 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:37 1536 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:37 1546 [LEMMA] - NESTINGRUNTIME +19:25:37 1546 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:37 1556 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:37 1556 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:37 1566 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:37 1576 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:37 1586 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:37 1586 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:37 1606 [LEMMA] - WORKINGESTTIME +19:25:37 1616 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:37 1616 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:37 1626 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:37 1636 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:37 1636 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:37 1646 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:37 1656 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:37 1666 [LEMMA] - UPLOADFILE +19:25:37 1676 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:37 1686 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:37 1686 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:37 1696 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:37 1696 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:37 1706 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:37 6797 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:37 6807 [LEMMA] - NESTINGRUNTIME +19:25:37 6817 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:37 6817 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:37 6827 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:37 6837 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:37 6837 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:37 6847 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:37 6857 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:37 6857 [LEMMA] - WORKINGESTTIME +19:25:37 6867 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:37 6877 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:37 6877 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:37 6887 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:37 6887 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:37 6897 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:37 6907 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:37 6907 [LEMMA] - UPLOADFILE +19:25:37 6917 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:37 6927 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:37 6927 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:37 6937 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:37 6947 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:37 6957 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:38 2049 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:38 2059 [LEMMA] - NESTINGRUNTIME +19:25:38 2069 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:38 2069 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:38 2079 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:38 2089 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:38 2089 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:38 2099 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:38 2109 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:38 2119 [LEMMA] - WORKINGESTTIME +19:25:38 2119 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:38 2129 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:38 2139 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:38 2139 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:38 2149 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:38 2149 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:38 2169 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:38 2169 [LEMMA] - UPLOADFILE +19:25:38 2179 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:38 2179 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:38 2189 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:38 2189 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:38 2199 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:38 2209 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:38 7300 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:38 7310 [LEMMA] - NESTINGRUNTIME +19:25:38 7320 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:38 7320 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:38 7330 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:38 7330 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:38 7340 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:38 7340 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:38 7350 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:38 7360 [LEMMA] - WORKINGESTTIME +19:25:38 7360 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:38 7370 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:38 7380 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:38 7380 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:38 7390 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:38 7390 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:38 7410 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:38 7410 [LEMMA] - UPLOADFILE +19:25:38 7420 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:38 7420 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:38 7430 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:38 7440 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:38 7450 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:38 7460 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:39 2561 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:39 2571 [LEMMA] - NESTINGRUNTIME +19:25:39 2571 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:39 2581 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:39 2581 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:39 2591 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:39 2601 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:39 2601 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:39 2611 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:39 2621 [LEMMA] - WORKINGESTTIME +19:25:39 2631 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:39 2641 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:39 2651 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:39 2651 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:39 2661 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:39 2671 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:39 2681 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:39 2691 [LEMMA] - UPLOADFILE +19:25:39 2691 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:39 2701 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:39 2711 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:39 2721 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:39 2721 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:39 2731 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:39 7822 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:39 7832 [LEMMA] - NESTINGRUNTIME +19:25:39 7842 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:39 7842 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:39 7852 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:39 7852 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:39 7862 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:39 7872 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:39 7882 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:39 7882 [LEMMA] - WORKINGESTTIME +19:25:39 7892 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:39 7892 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:39 7902 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:39 7912 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:39 7912 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:39 7922 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:39 7932 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:39 7942 [LEMMA] - UPLOADFILE +19:25:39 7952 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:39 7962 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:39 7962 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:39 7972 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:39 7972 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:39 7982 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:40 3084 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:40 3084 [LEMMA] - NESTINGRUNTIME +19:25:40 3094 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:40 3104 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:40 3114 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:40 3114 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:40 3124 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:40 3134 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:40 3144 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:40 3144 [LEMMA] - WORKINGESTTIME +19:25:40 3154 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:40 3154 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:40 3164 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:40 3174 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:40 3174 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:40 3184 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:40 3194 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:40 3204 [LEMMA] - UPLOADFILE +19:25:40 3204 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:40 3214 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:40 3224 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:40 3234 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:40 3234 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:40 3244 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:40 8345 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:40 8345 [LEMMA] - NESTINGRUNTIME +19:25:40 8355 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:40 8365 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:40 8365 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:40 8375 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:40 8385 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:40 8385 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:40 8395 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:40 8405 [LEMMA] - WORKINGESTTIME +19:25:40 8405 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:40 8415 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:40 8425 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:40 8425 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:40 8435 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:40 8445 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:40 8455 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:40 8465 [LEMMA] - UPLOADFILE +19:25:40 8465 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:40 8475 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:40 8485 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:40 8485 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:40 8495 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:40 8495 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:41 3586 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:41 3586 [LEMMA] - NESTINGRUNTIME +19:25:41 3596 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:41 3606 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:41 3616 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:41 3626 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:41 3636 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:41 3636 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:41 3646 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:41 3656 [LEMMA] - WORKINGESTTIME +19:25:41 3666 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:41 3666 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:41 3676 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:41 3686 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:41 3686 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:41 3696 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:41 3706 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:41 3716 [LEMMA] - UPLOADFILE +19:25:41 3716 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:41 3726 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:41 3736 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:41 3736 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:41 3746 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:41 3746 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:41 8858 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:41 8868 [LEMMA] - NESTINGRUNTIME +19:25:41 8868 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:41 8878 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:41 8878 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:41 8888 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:41 8898 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:41 8898 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:41 8908 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:41 8918 [LEMMA] - WORKINGESTTIME +19:25:41 8918 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:41 8928 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:41 8928 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:41 8938 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:41 8948 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:41 8958 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:41 8968 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:41 8968 [LEMMA] - UPLOADFILE +19:25:41 8978 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:41 8988 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:41 8988 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:41 8998 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:41 9008 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:41 9018 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:42 4109 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:42 4119 [LEMMA] - NESTINGRUNTIME +19:25:42 4119 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:42 4129 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:42 4139 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:42 4149 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:42 4149 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:42 4159 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:42 4169 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:42 4169 [LEMMA] - WORKINGESTTIME +19:25:42 4179 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:42 4179 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:42 4189 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:42 4199 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:42 4199 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:42 4209 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:42 4219 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:42 4229 [LEMMA] - UPLOADFILE +19:25:42 4229 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:42 4239 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:42 4239 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:42 4249 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:42 4259 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:42 4259 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:42 9360 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:42 9360 [LEMMA] - NESTINGRUNTIME +19:25:42 9370 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:42 9380 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:42 9390 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:42 9390 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:42 9400 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:42 9410 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:42 9410 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:42 9420 [LEMMA] - WORKINGESTTIME +19:25:42 9430 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:42 9440 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:42 9450 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:42 9450 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:42 9460 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:42 9470 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:42 9480 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:42 9480 [LEMMA] - UPLOADFILE +19:25:42 9490 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:42 9500 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:42 9510 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:42 9510 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:42 9520 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:42 9520 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:43 4621 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:43 4631 [LEMMA] - NESTINGRUNTIME +19:25:43 4641 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:43 4641 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:43 4651 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:43 4661 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:43 4661 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:43 4671 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:43 4681 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:43 4691 [LEMMA] - WORKINGESTTIME +19:25:43 4691 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:43 4701 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:43 4711 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:43 4711 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:43 4721 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:43 4721 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:43 4731 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:43 4741 [LEMMA] - UPLOADFILE +19:25:43 4751 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:43 4751 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:43 4761 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:43 4771 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:43 4781 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:43 4791 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:43 9893 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:43 9893 [LEMMA] - NESTINGRUNTIME +19:25:43 9903 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:43 9913 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:43 9923 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:43 9923 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:43 9933 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:43 9933 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:43 9943 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:43 9953 [LEMMA] - WORKINGESTTIME +19:25:43 9963 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:43 9973 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:43 9973 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:43 9983 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:43 9993 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:43 9993 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:44 0003 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:44 0013 [LEMMA] - UPLOADFILE +19:25:44 0013 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:44 0023 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:44 0033 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:44 0033 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:44 0043 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:44 0043 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:44 5146 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:44 5156 [LEMMA] - NESTINGRUNTIME +19:25:44 5156 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:44 5166 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:44 5176 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:44 5186 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:44 5186 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:44 5196 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:44 5206 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:44 5206 [LEMMA] - WORKINGESTTIME +19:25:44 5216 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:44 5226 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:44 5226 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:44 5236 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:44 5236 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:44 5246 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:44 5256 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:44 5266 [LEMMA] - UPLOADFILE +19:25:44 5276 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:44 5286 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:44 5286 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:44 5296 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:44 5306 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:44 5306 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:45 0398 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:45 0398 [LEMMA] - NESTINGRUNTIME +19:25:45 0408 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:45 0418 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:45 0418 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:45 0428 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:45 0438 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:45 0458 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:45 0468 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:45 0468 [LEMMA] - WORKINGESTTIME +19:25:45 0478 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:45 0488 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:45 0498 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:45 0498 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:45 0508 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:45 0508 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:45 0518 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:45 0528 [LEMMA] - UPLOADFILE +19:25:45 0538 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:45 0538 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:45 0548 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:45 0548 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:45 0558 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:45 0558 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:45 5667 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:45 5667 [LEMMA] - NESTINGRUNTIME +19:25:45 5677 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:45 5687 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:45 5687 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:45 5697 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:45 5707 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:45 5707 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:45 5717 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:45 5727 [LEMMA] - WORKINGESTTIME +19:25:45 5727 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:45 5737 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:45 5737 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:45 5747 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:45 5757 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:45 5767 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:45 5777 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:45 5787 [LEMMA] - UPLOADFILE +19:25:45 5797 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:45 5807 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:45 5817 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:45 5817 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:45 5827 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:45 5827 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:46 0918 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:46 0918 [LEMMA] - NESTINGRUNTIME +19:25:46 0928 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:46 0938 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:46 0948 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:46 0958 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:46 0958 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:46 0968 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:46 0978 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:46 0978 [LEMMA] - WORKINGESTTIME +19:25:46 0988 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:46 0998 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:46 0998 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:46 1008 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:46 1018 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:46 1018 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:46 1028 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:46 1038 [LEMMA] - UPLOADFILE +19:25:46 1048 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:46 1048 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:46 1058 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:46 1058 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:46 1068 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:46 1078 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:46 6177 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:46 6187 [LEMMA] - NESTINGRUNTIME +19:25:46 6197 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:46 6197 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:46 6207 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:46 6217 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:46 6217 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:46 6227 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:46 6237 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:46 6247 [LEMMA] - WORKINGESTTIME +19:25:46 6257 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:46 6267 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:46 6267 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:46 6277 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:46 6287 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:46 6297 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:46 6327 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:46 6327 [LEMMA] - UPLOADFILE +19:25:46 6337 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:46 6347 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:46 6357 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:46 6367 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:46 6377 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:46 6387 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:47 1478 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:47 1488 [LEMMA] - NESTINGRUNTIME +19:25:47 1498 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:47 1508 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:47 1508 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:47 1518 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:47 1528 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:47 1528 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:47 1538 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:47 1548 [LEMMA] - WORKINGESTTIME +19:25:47 1558 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:47 1558 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:47 1568 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:47 1568 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:47 1578 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:47 1578 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:47 1598 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:47 1598 [LEMMA] - UPLOADFILE +19:25:47 1608 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:47 1618 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:47 1628 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:47 1638 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:47 1648 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:47 1648 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:47 6750 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:47 6750 [LEMMA] - NESTINGRUNTIME +19:25:47 6760 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:47 6770 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:47 6780 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:47 6790 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:47 6790 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:47 6800 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:47 6810 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:47 6810 [LEMMA] - WORKINGESTTIME +19:25:47 6820 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:47 6830 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:47 6830 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:47 6840 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:47 6850 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:47 6850 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:47 6870 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:47 6870 [LEMMA] - UPLOADFILE +19:25:47 6880 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:47 6880 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:47 6890 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:47 6900 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:47 6910 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:47 6910 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:48 2017 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:48 2027 [LEMMA] - NESTINGRUNTIME +19:25:48 2027 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:48 2037 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:48 2037 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:48 2047 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:48 2057 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:48 2057 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:48 2067 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:48 2077 [LEMMA] - WORKINGESTTIME +19:25:48 2077 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:48 2087 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:48 2097 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:48 2097 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:48 2107 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:48 2107 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:48 2127 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:48 2127 [LEMMA] - UPLOADFILE +19:25:48 2137 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:48 2147 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:48 2147 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:48 2157 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:48 2167 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:48 2167 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:48 7245 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:48 7255 [LEMMA] - NESTINGRUNTIME +19:25:48 7265 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:48 7275 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:48 7285 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:48 7295 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:48 7295 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:48 7305 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:48 7315 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:48 7325 [LEMMA] - WORKINGESTTIME +19:25:48 7335 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:48 7335 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:48 7345 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:48 7345 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:48 7355 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:48 7365 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:48 7365 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:48 7375 [LEMMA] - UPLOADFILE +19:25:48 7385 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:48 7385 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:48 7395 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:48 7395 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:48 7405 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:48 7415 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:49 2512 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:49 2522 [LEMMA] - NESTINGRUNTIME +19:25:49 2532 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:49 2532 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:49 2542 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:49 2542 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:49 2552 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:49 2562 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:49 2562 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:49 2572 [LEMMA] - WORKINGESTTIME +19:25:49 2582 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:49 2582 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:49 2592 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:49 2602 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:49 2612 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:49 2622 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:49 2642 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:49 2642 [LEMMA] - UPLOADFILE +19:25:49 2652 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:49 2662 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:49 2672 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:49 2682 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:49 2682 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:49 2692 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:49 7803 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:49 7813 [LEMMA] - NESTINGRUNTIME +19:25:49 7813 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:49 7823 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:49 7833 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:49 7843 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:49 7853 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:49 7853 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:49 7863 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:49 7873 [LEMMA] - WORKINGESTTIME +19:25:49 7883 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:49 7893 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:49 7893 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:49 7903 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:49 7913 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:49 7923 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:49 7933 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:49 7953 [LEMMA] - UPLOADFILE +19:25:49 7963 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:49 7973 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:49 7983 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:49 7983 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:49 7993 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:49 8003 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:50 3094 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:50 3104 [LEMMA] - NESTINGRUNTIME +19:25:50 3114 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:50 3124 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:50 3134 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:50 3144 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:50 3144 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:50 3154 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:50 3164 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:50 3164 [LEMMA] - WORKINGESTTIME +19:25:50 3174 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:50 3184 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:50 3184 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:50 3194 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:50 3204 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:50 3204 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:50 3214 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:50 3224 [LEMMA] - UPLOADFILE +19:25:50 3234 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:50 3234 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:50 3244 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:50 3244 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:50 3254 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:50 3264 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:50 8376 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:50 8386 [LEMMA] - NESTINGRUNTIME +19:25:50 8396 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:50 8396 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:50 8406 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:50 8416 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:50 8426 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:50 8436 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:50 8506 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:50 8546 [LEMMA] - WORKINGESTTIME +19:25:50 8556 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:50 8566 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:50 8576 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:50 8576 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:50 8586 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:50 8596 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:50 8606 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:50 8616 [LEMMA] - UPLOADFILE +19:25:50 8626 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:50 8636 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:50 8636 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:50 8646 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:50 8656 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:50 8656 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:51 3758 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:51 3758 [LEMMA] - NESTINGRUNTIME +19:25:51 3768 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:51 3778 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:51 3788 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:51 3788 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:51 3798 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:51 3798 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:51 3808 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:51 3818 [LEMMA] - WORKINGESTTIME +19:25:51 3818 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:51 3828 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:51 3828 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:51 3838 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:51 3838 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:51 3848 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:51 3858 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:51 3858 [LEMMA] - UPLOADFILE +19:25:51 3868 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:51 3868 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:51 3878 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:51 3888 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:51 3888 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:51 3898 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:51 8990 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:51 9000 [LEMMA] - NESTINGRUNTIME +19:25:51 9010 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:51 9020 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:51 9020 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:51 9030 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:51 9040 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:51 9050 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:51 9050 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:51 9060 [LEMMA] - WORKINGESTTIME +19:25:51 9070 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:51 9070 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:51 9080 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:51 9090 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:51 9090 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:51 9100 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:51 9110 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:51 9120 [LEMMA] - UPLOADFILE +19:25:51 9130 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:51 9140 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:51 9150 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:51 9150 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:51 9160 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:51 9170 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:52 4246 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:52 4256 [LEMMA] - NESTINGRUNTIME +19:25:52 4266 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:52 4276 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:52 4276 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:52 4286 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:52 4296 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:52 4306 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:52 4316 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:52 4316 [LEMMA] - WORKINGESTTIME +19:25:52 4326 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:52 4336 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:52 4346 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:52 4346 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:52 4366 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:52 4376 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:52 4386 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:52 4396 [LEMMA] - UPLOADFILE +19:25:52 4406 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:52 4416 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:52 4416 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:52 4436 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:52 4446 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:52 4456 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:52 9557 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:52 9557 [LEMMA] - NESTINGRUNTIME +19:25:52 9567 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:52 9577 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:52 9587 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:52 9587 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:52 9597 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:52 9607 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:52 9617 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:52 9627 [LEMMA] - WORKINGESTTIME +19:25:52 9637 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:52 9637 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:52 9647 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:52 9657 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:52 9657 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:52 9667 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:52 9677 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:52 9687 [LEMMA] - UPLOADFILE +19:25:52 9697 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:52 9697 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:52 9707 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:52 9717 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:52 9717 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:52 9727 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:53 4818 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:53 4828 [LEMMA] - NESTINGRUNTIME +19:25:53 4838 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:53 4838 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:53 4848 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:53 4858 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:53 4858 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:53 4868 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:53 4868 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:53 4878 [LEMMA] - WORKINGESTTIME +19:25:53 4888 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:53 4888 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:53 4898 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:53 4898 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:53 4908 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:53 4918 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:53 4918 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:53 4928 [LEMMA] - UPLOADFILE +19:25:53 4938 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:53 4948 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:53 4958 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:53 4968 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:53 4968 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:53 4978 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:54 0068 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:54 0068 [LEMMA] - NESTINGRUNTIME +19:25:54 0077 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:54 0087 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:54 0087 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:54 0097 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:54 0108 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:54 0118 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:54 0128 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:54 0138 [LEMMA] - WORKINGESTTIME +19:25:54 0148 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:54 0148 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:54 0158 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:54 0168 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:54 0168 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:54 0178 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:54 0188 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:54 0198 [LEMMA] - UPLOADFILE +19:25:54 0198 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:54 0208 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:54 0208 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:54 0218 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:54 0228 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:54 0228 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:54 5339 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:54 5339 [LEMMA] - NESTINGRUNTIME +19:25:54 5349 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:54 5359 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:54 5359 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:54 5369 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:54 5369 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:54 5379 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:54 5389 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:54 5389 [LEMMA] - WORKINGESTTIME +19:25:54 5399 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:54 5399 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:54 5409 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:54 5419 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:54 5419 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:54 5429 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:54 5439 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:54 5449 [LEMMA] - UPLOADFILE +19:25:54 5459 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:54 5469 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:54 5479 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:54 5479 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:54 5489 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:54 5499 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:55 0580 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:55 0590 [LEMMA] - NESTINGRUNTIME +19:25:55 0600 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:55 0610 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:55 0620 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:55 0620 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:55 0630 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:55 0640 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:55 0650 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:55 0650 [LEMMA] - WORKINGESTTIME +19:25:55 0660 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:55 0670 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:55 0670 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:55 0680 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:55 0690 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:55 0690 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:55 0700 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:55 0710 [LEMMA] - UPLOADFILE +19:25:55 0710 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:55 0720 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:55 0730 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:55 0730 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:55 0740 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:55 0750 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:55 5837 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:55 5837 [LEMMA] - NESTINGRUNTIME +19:25:55 5847 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:55 5847 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:55 5857 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:55 5867 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:55 5867 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:55 5877 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:55 5887 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:55 5887 [LEMMA] - WORKINGESTTIME +19:25:55 5897 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:55 5907 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:55 5907 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:55 5917 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:55 5917 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:55 5927 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:55 5937 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:55 5947 [LEMMA] - UPLOADFILE +19:25:55 5957 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:55 5957 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:55 5967 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:55 5977 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:55 5977 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:55 5987 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:56 1075 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:56 1075 [LEMMA] - NESTINGRUNTIME +19:25:56 1085 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:56 1085 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:56 1095 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:56 1105 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:56 1115 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:56 1125 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:56 1135 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:56 1145 [LEMMA] - WORKINGESTTIME +19:25:56 1145 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:56 1155 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:56 1165 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:56 1175 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:56 1175 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:56 1185 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:56 1195 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:56 1195 [LEMMA] - UPLOADFILE +19:25:56 1205 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:56 1215 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:56 1215 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:56 1225 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:56 1225 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:56 1235 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:56 6325 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:56 6335 [LEMMA] - NESTINGRUNTIME +19:25:56 6345 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:56 6355 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:56 6365 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:56 6375 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:56 6375 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:56 6385 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:56 6395 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:56 6405 [LEMMA] - WORKINGESTTIME +19:25:56 6405 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:56 6415 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:56 6425 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:56 6425 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:56 6435 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:56 6445 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:56 6455 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:56 6465 [LEMMA] - UPLOADFILE +19:25:56 6475 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:56 6475 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:56 6485 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:56 6495 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:56 6495 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:56 6505 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:57 1586 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:57 1596 [LEMMA] - NESTINGRUNTIME +19:25:57 1606 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:57 1616 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:57 1626 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:57 1626 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:57 1636 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:57 1646 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:57 1656 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:57 1656 [LEMMA] - WORKINGESTTIME +19:25:57 1666 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:57 1666 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:57 1676 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:57 1686 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:57 1686 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:57 1696 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:57 1706 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:57 1716 [LEMMA] - UPLOADFILE +19:25:57 1726 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:57 1726 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:57 1736 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:57 1736 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:57 1746 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:57 1756 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:57 6847 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:57 6857 [LEMMA] - NESTINGRUNTIME +19:25:57 6857 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:57 6867 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:57 6877 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:57 6877 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:57 6887 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:57 6897 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:57 6897 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:57 6907 [LEMMA] - WORKINGESTTIME +19:25:57 6907 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:57 6917 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:57 6927 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:57 6927 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:57 6937 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:57 6947 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:57 6957 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:57 6957 [LEMMA] - UPLOADFILE +19:25:57 6967 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:57 6977 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:57 6977 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:57 6987 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:57 6997 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:57 7007 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:58 2093 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:58 2103 [LEMMA] - NESTINGRUNTIME +19:25:58 2113 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:58 2123 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:58 2133 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:58 2143 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:58 2143 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:58 2153 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:58 2163 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:58 2173 [LEMMA] - WORKINGESTTIME +19:25:58 2173 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:58 2183 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:58 2183 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:58 2193 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:58 2203 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:58 2203 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:58 2213 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:58 2223 [LEMMA] - UPLOADFILE +19:25:58 2223 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:58 2233 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:58 2243 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:58 2243 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:58 2253 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:58 2263 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:58 7355 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:58 7365 [LEMMA] - NESTINGRUNTIME +19:25:58 7365 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:58 7375 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:58 7385 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:58 7385 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:58 7395 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:58 7395 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:58 7405 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:58 7415 [LEMMA] - WORKINGESTTIME +19:25:58 7425 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:58 7425 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:58 7435 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:58 7445 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:58 7455 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:58 7465 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:58 7475 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:58 7485 [LEMMA] - UPLOADFILE +19:25:58 7495 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:58 7495 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:58 7505 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:58 7515 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:58 7515 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:58 7525 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:59 2616 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:59 2626 [LEMMA] - NESTINGRUNTIME +19:25:59 2636 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:59 2646 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:59 2646 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:59 2656 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:59 2666 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:59 2666 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:59 2676 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:59 2676 [LEMMA] - WORKINGESTTIME +19:25:59 2686 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:59 2686 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:59 2696 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:59 2706 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:59 2706 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:59 2716 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:59 2726 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:59 2726 [LEMMA] - UPLOADFILE +19:25:59 2736 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:59 2746 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:59 2746 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:59 2756 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:59 2766 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:59 2776 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:59 7869 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:59 7869 [LEMMA] - NESTINGRUNTIME +19:25:59 7879 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:25:59 7889 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:59 7889 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:59 7899 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:59 7899 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:59 7909 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:59 7919 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:59 7929 [LEMMA] - WORKINGESTTIME +19:25:59 7929 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:25:59 7939 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:59 7949 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:59 7959 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:59 7969 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:59 7969 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:25:59 7989 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:25:59 7989 [LEMMA] - UPLOADFILE +19:25:59 7999 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:25:59 7999 [INFO] - Key: EN#KITTING | Val: Kitting +19:25:59 8009 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:25:59 8019 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:25:59 8029 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:25:59 8029 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:00 3120 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:00 3130 [LEMMA] - NESTINGRUNTIME +19:26:00 3130 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:26:00 3140 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:00 3150 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:00 3150 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:00 3160 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:00 3160 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:00 3170 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:00 3180 [LEMMA] - WORKINGESTTIME +19:26:00 3180 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:26:00 3190 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:00 3200 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:00 3200 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:00 3210 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:00 3210 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:00 3220 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:00 3230 [LEMMA] - UPLOADFILE +19:26:00 3240 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:26:00 3240 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:00 3250 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:00 3260 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:00 3260 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:00 3270 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:00 8367 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:00 8377 [LEMMA] - NESTINGRUNTIME +19:26:00 8377 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:26:00 8387 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:00 8387 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:00 8397 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:00 8407 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:00 8407 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:00 8417 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:00 8427 [LEMMA] - WORKINGESTTIME +19:26:00 8437 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:26:00 8437 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:00 8447 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:00 8447 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:00 8457 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:00 8467 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:00 8487 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:00 8487 [LEMMA] - UPLOADFILE +19:26:00 8497 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:26:00 8497 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:00 8507 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:00 8517 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:00 8517 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:00 8527 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:01 3616 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:01 3626 [LEMMA] - NESTINGRUNTIME +19:26:01 3636 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:26:01 3636 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:01 3646 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:01 3656 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:01 3666 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:01 3666 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:01 3676 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:01 3686 [LEMMA] - WORKINGESTTIME +19:26:01 3686 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:26:01 3696 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:01 3706 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:01 3706 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:01 3716 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:01 3716 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:01 3726 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:01 3736 [LEMMA] - UPLOADFILE +19:26:01 3736 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:26:01 3746 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:01 3756 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:01 3756 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:01 3766 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:01 3766 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:01 8868 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:01 8878 [LEMMA] - NESTINGRUNTIME +19:26:01 8878 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:26:01 8888 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:01 8888 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:01 8898 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:01 8898 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:01 8908 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:01 8918 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:01 8918 [LEMMA] - WORKINGESTTIME +19:26:01 8928 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:26:01 8938 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:01 8938 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:01 8948 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:01 8958 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:01 8968 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:01 8978 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:01 8988 [LEMMA] - UPLOADFILE +19:26:01 8988 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:26:01 8998 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:01 8998 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:01 9008 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:01 9018 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:01 9028 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:02 4129 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:02 4139 [LEMMA] - NESTINGRUNTIME +19:26:02 4149 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:26:02 4149 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:02 4159 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:02 4169 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:02 4169 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:02 4179 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:02 4189 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:02 4199 [LEMMA] - WORKINGESTTIME +19:26:02 4199 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:26:02 4209 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:02 4209 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:02 4219 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:02 4229 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:02 4229 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:02 4239 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:02 4249 [LEMMA] - UPLOADFILE +19:26:02 4249 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:26:02 4259 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:02 4269 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:02 4269 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:02 4279 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:02 4289 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:02 9397 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:02 9397 [LEMMA] - NESTINGRUNTIME +19:26:02 9407 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma NESTINGRUNTIME +19:26:02 9417 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:02 9417 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:02 9427 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:02 9437 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:02 9437 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:02 9447 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:02 9457 [LEMMA] - WORKINGESTTIME +19:26:02 9467 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma WORKINGESTTIME +19:26:02 9477 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:02 9477 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:02 9487 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:02 9487 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:02 9497 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload +19:26:02 9507 [EXCEPTION] - Eccezione durante traduzione: +System.Collections.Generic.KeyNotFoundException: La chiave specificata non era presente nel dizionario. + in System.Collections.Generic.Dictionary`2.get_Item(TKey key) + in SteamWare.user_std.Traduci(String lemma) +19:26:02 9517 [LEMMA] - UPLOADFILE +19:26:02 9517 Presenti 18 lemmi in vocabolario, richiesto lingua IT | lemma UPLOADFILE +19:26:02 9527 [INFO] - Key: EN#KITTING | Val: Kitting +19:26:02 9537 [INFO] - Key: EN#LEARNMORE | Val: Maggiori Informazioni +19:26:02 9537 [INFO] - Key: EN#MACHINELOAD | Val: Machine Load +19:26:02 9547 [INFO] - Key: EN#MACHINEOFFLINE | Val: Machine Offline +19:26:02 9547 [INFO] - Key: EN#MACHINEUNLOAD | Val: Machine Unload