diff --git a/Lux.API/Lux.API.csproj b/Lux.API/Lux.API.csproj index 43a52c42..a2be834a 100644 --- a/Lux.API/Lux.API.csproj +++ b/Lux.API/Lux.API.csproj @@ -4,7 +4,7 @@ net8.0 enable enable - 1.1.2606.0413 + 1.1.2606.0415 diff --git a/Lux.UI/Components/Compo/Config/GlassMan.razor b/Lux.UI/Components/Compo/Config/GlassMan.razor index 9a70762e..16f770c1 100644 --- a/Lux.UI/Components/Compo/Config/GlassMan.razor +++ b/Lux.UI/Components/Compo/Config/GlassMan.razor @@ -1,8 +1,10 @@ - +@inherits BaseComp + + - Tipologie di Vetro + @Traduci("config_tipiVetro") @@ -17,7 +19,7 @@ - NB: le configurazioni sono modificabili + @Traduci("config_modificabile") @@ -27,7 +29,7 @@ } else if (totalCount == 0) { - Nessun record trovato + @Traduci("noRecord") } else { @@ -38,9 +40,9 @@ @* ID *@ - Cod. - Descrizione - Size mm + @Traduci("cod") + @Traduci("descrizione") + @Traduci("config_spessore") diff --git a/Lux.UI/Components/Compo/Config/HardwareMan.razor b/Lux.UI/Components/Compo/Config/HardwareMan.razor index 3188e368..ebec968b 100644 --- a/Lux.UI/Components/Compo/Config/HardwareMan.razor +++ b/Lux.UI/Components/Compo/Config/HardwareMan.razor @@ -1,9 +1,11 @@ - +@inherits BaseComp + + - Tipologie di Hardware + @Traduci("config_tipiHardware") @@ -22,7 +24,7 @@ - NB: le configurazioni sono ricevute dal sistema CAD/CAM di calcolo + @Traduci("config_noModificabile") @@ -32,7 +34,7 @@ } else if (totalCount == 0) { - Nessun record trovato + @Traduci("noRecord") } else { @@ -40,11 +42,11 @@ - Cod. + @Traduci("cod") - Famiglia - Descrizione - Shape + @Traduci("config_famiglia") + @Traduci("descrizione") + @Traduci("config_forma") diff --git a/Lux.UI/Components/Compo/Config/ProfDataDetail.razor b/Lux.UI/Components/Compo/Config/ProfDataDetail.razor index a5991199..9254ed99 100644 --- a/Lux.UI/Components/Compo/Config/ProfDataDetail.razor +++ b/Lux.UI/Components/Compo/Config/ProfDataDetail.razor @@ -1,8 +1,10 @@ - +@inherits BaseComp + + - Dizionario Parametri + @Traduci("config_parametri") @@ -12,15 +14,15 @@ } else if (ListRecords == null || totalCount == 0) { - Nessun record trovato + @Traduci("noRecord") } else { - Name - Value + @Traduci("nome") + @Traduci("valore") diff --git a/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor b/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor index 7093a7e1..7e0a487c 100644 --- a/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor +++ b/Lux.UI/Components/Compo/Config/ProfThreshDetail.razor @@ -1,7 +1,9 @@ - +@inherits BaseComp + + - Dettaglio Soglie + @Traduci("config_dettSoglie") @@ -12,15 +14,15 @@ } else if (ListRecords == null || totalCount == 0) { - Nessun record trovato + @Traduci("noRecord") } else { - Type - Name + @Traduci("tipo") + @Traduci("nome") diff --git a/Lux.UI/Components/Compo/Config/ProfileMan.razor b/Lux.UI/Components/Compo/Config/ProfileMan.razor index 33924331..bade02b6 100644 --- a/Lux.UI/Components/Compo/Config/ProfileMan.razor +++ b/Lux.UI/Components/Compo/Config/ProfileMan.razor @@ -1,15 +1,17 @@ - +@inherits BaseComp + + - Tipi di Profili + @Traduci("config_tipiProfilo") - Profili + @Traduci("profilo") - Soglie + @Traduci("config_soglie") @@ -25,7 +27,7 @@ - NB: le configurazioni sono ricevute dal sistema CAD/CAM di calcolo + @Traduci("config_noModificabile") @@ -35,7 +37,7 @@ } else if (totalCount == 0) { - Nessun record trovato + @Traduci("noRecord") } else { @@ -45,10 +47,10 @@ - Cod. - Descr. - Threshold - Data + @Traduci("cod") + @Traduci("descrizione") + @Traduci("config_soglie") + @Traduci("data") diff --git a/Lux.UI/Components/Compo/Config/WoodMan.razor b/Lux.UI/Components/Compo/Config/WoodMan.razor index dd3d77c5..d6fa8608 100644 --- a/Lux.UI/Components/Compo/Config/WoodMan.razor +++ b/Lux.UI/Components/Compo/Config/WoodMan.razor @@ -1,8 +1,10 @@ - +@inherits BaseComp + + - Tipologie di Legno + @Traduci("config_tipiLegno") @@ -17,7 +19,7 @@ - NB: le configurazioni sono modificabili + @Traduci("config_modificabile") @@ -27,7 +29,7 @@ } else if (totalCount == 0) { - Nessun record trovato + @Traduci("noRecord") } else { @@ -38,9 +40,9 @@ @* ID *@ - Cod. - Descrizione - Tipo + @Traduci("cod") + @Traduci("descrizione") + @Traduci("tipo") diff --git a/Lux.UI/Components/Compo/Item/DataFilter.razor b/Lux.UI/Components/Compo/Item/DataFilter.razor index 69fafd67..3f8bc8e1 100644 --- a/Lux.UI/Components/Compo/Item/DataFilter.razor +++ b/Lux.UI/Components/Compo/Item/DataFilter.razor @@ -19,7 +19,7 @@ @item.Description } - @Traduci("articoli_tipo") + @Traduci("tipo") @foreach (var sType in Enum.GetValues(typeof(EgwCoreLib.Lux.Core.Enums.ItemClassType))) { diff --git a/Lux.UI/Components/Compo/Item/ItemEdit.razor b/Lux.UI/Components/Compo/Item/ItemEdit.razor index c238167c..7ed81d18 100644 --- a/Lux.UI/Components/Compo/Item/ItemEdit.razor +++ b/Lux.UI/Components/Compo/Item/ItemEdit.razor @@ -24,7 +24,7 @@ @sType } - @Traduci("articoli_tipo") + @Traduci("tipo") diff --git a/Lux.UI/Components/Compo/Item/ItemMan.razor b/Lux.UI/Components/Compo/Item/ItemMan.razor index 98e923ba..f1264265 100644 --- a/Lux.UI/Components/Compo/Item/ItemMan.razor +++ b/Lux.UI/Components/Compo/Item/ItemMan.razor @@ -18,7 +18,7 @@ else @Traduci("id") @Traduci("gruppo") - @Traduci("articoli_tipo") + @Traduci("tipo") @Traduci("articoli_servizio") @Traduci("codice") @Traduci("articoli_itemCode") diff --git a/Lux.UI/Components/Compo/Offer/OfferCommonPar.razor b/Lux.UI/Components/Compo/Offer/OfferCommonPar.razor index bcf47ab0..ab47f2c2 100644 --- a/Lux.UI/Components/Compo/Offer/OfferCommonPar.razor +++ b/Lux.UI/Components/Compo/Offer/OfferCommonPar.razor @@ -16,7 +16,7 @@ @item } - @Traduci("offerta_profilo") + @Traduci("profilo") @if (ForceMode && !string.IsNullOrEmpty(@SelProfile)) { diff --git a/Lux.UI/Components/Compo/Offer/OfferRowMan.razor b/Lux.UI/Components/Compo/Offer/OfferRowMan.razor index 9dca8580..5a570f46 100644 --- a/Lux.UI/Components/Compo/Offer/OfferRowMan.razor +++ b/Lux.UI/Components/Compo/Offer/OfferRowMan.razor @@ -110,7 +110,7 @@ else } @Traduci("codice") @Traduci("descrizione") - @Traduci("quantita") + @Traduci("qty") @Traduci("importo") @if (DisplayMode == DisplayMode.Edit) { diff --git a/Lux.UI/Components/Layout/NavMenu.razor b/Lux.UI/Components/Layout/NavMenu.razor index 456ef6b4..c44708a3 100644 --- a/Lux.UI/Components/Layout/NavMenu.razor +++ b/Lux.UI/Components/Layout/NavMenu.razor @@ -32,7 +32,7 @@ - + diff --git a/Lux.UI/Components/Layout/NavMenu.razor.cs b/Lux.UI/Components/Layout/NavMenu.razor.cs index 0a92cdfb..d4280844 100644 --- a/Lux.UI/Components/Layout/NavMenu.razor.cs +++ b/Lux.UI/Components/Layout/NavMenu.razor.cs @@ -88,17 +88,17 @@ namespace Lux.UI.Components.Layout { // Inserimento nomi segnaposto nav-item NameDict.Add("Articoli", new List() { "articoli", "artAcquisto", "artVendita" }); - NameDict.Add("Ciclo prod", new List() { "cicloProd", "risorse", "cicli" }); + NameDict.Add("CicloProd", new List() { "cicloProd", "risorse", "cicli" }); NameDict.Add("Contatti", new List() { "contatti", "clienti", "venditori" }); // Inserimento icone IconDict.Add("Articoli", new List() { "fa-book-open", "fa-book", "fa-book-bookmark" }); - IconDict.Add("Ciclo prod", new List() { "fa-industry", "fa-location-dot", "fa-route" }); + IconDict.Add("CicloProd", new List() { "fa-industry", "fa-location-dot", "fa-route" }); IconDict.Add("Contatti", new List() { "fa-address-book", "fa-users", "fa-stamp" }); // Inserimento reindirizzamento elementi sotto menu PageDict.Add("Articoli", new List() { "Items", "SellItems" }); - PageDict.Add("Ciclo prod", new List() { "Resources", "JobRoute" }); + PageDict.Add("CicloProd", new List() { "Resources", "JobRoute" }); PageDict.Add("Contatti", new List() { "Customer", "Dealer" }); } diff --git a/Lux.UI/Lux.UI.csproj b/Lux.UI/Lux.UI.csproj index f3e74af3..eabe9d34 100644 --- a/Lux.UI/Lux.UI.csproj +++ b/Lux.UI/Lux.UI.csproj @@ -5,7 +5,7 @@ enable enable aspnet-Lux.UI-a758c101-a2f4-4e38-977d-1c4887dbbd50 - 1.1.2606.0413 + 1.1.2606.0415 diff --git a/Resources/ChangeLog.html b/Resources/ChangeLog.html index 534d8bc9..cfdc2326 100644 --- a/Resources/ChangeLog.html +++ b/Resources/ChangeLog.html @@ -1,6 +1,6 @@ LUX - Web Windows MES - Versione: 1.1.2606.0413 + Versione: 1.1.2606.0415 Note di rilascio: diff --git a/Resources/VersNum.txt b/Resources/VersNum.txt index 97b94a1a..e8c70021 100644 --- a/Resources/VersNum.txt +++ b/Resources/VersNum.txt @@ -1 +1 @@ -1.1.2606.0413 +1.1.2606.0415 diff --git a/Resources/manifest.xml b/Resources/manifest.xml index 7f7925a6..d17db22b 100644 --- a/Resources/manifest.xml +++ b/Resources/manifest.xml @@ -1,6 +1,6 @@ - 1.1.2606.0413 + 1.1.2606.0415 http://nexus.steamware.net/repository/SWS/GPW/stable/GPW.UI.zip http://nexus.steamware.net/repository/SWS/GPW/stable/ChangeLog.html false