docs: translate all code comments to English (language policy)

Translate every Italian /// XML doc comment, <!-- --> XAML comment, and
// inline comment to English across all source files (Core, App, tests).
Add the language policy to CLAUDE.md (conversation Italian; all code
and docs English). Update one test assertion that checked an Italian
exception message that was also translated.
This commit is contained in:
2026-06-16 14:40:06 +02:00
parent 4b82a0852c
commit 3d5a226a5a
59 changed files with 721 additions and 716 deletions
@@ -17,7 +17,7 @@ namespace PalladiumWallet.App.ViewModels;
public partial class MainWindowViewModel
{
// ---- saldo e info wallet ----
// ---- balance and wallet info ----
[ObservableProperty]
private string balanceText = "—";
@@ -28,7 +28,7 @@ public partial class MainWindowViewModel
[ObservableProperty]
private string networkInfo = "";
// ---- indirizzo di ricezione e QR ----
// ---- receive address and QR ----
[ObservableProperty]
private string receiveAddress = "";
@@ -60,7 +60,7 @@ public partial class MainWindowViewModel
}
}
// ---- tab indirizzi ----
// ---- addresses tab ----
[ObservableProperty]
private AddressRow? selectedAddressRow;
@@ -74,7 +74,7 @@ public partial class MainWindowViewModel
[RelayCommand]
private void CloseAddressInfo() => AddressInfo = null;
// ---- overlay dettaglio transazione ----
// ---- transaction detail overlay ----
[ObservableProperty]
private bool isTxDetailsOpen;
@@ -169,7 +169,7 @@ public partial class MainWindowViewModel
}
}
// ---- aggiorna display dal risultato della sync ----
// ---- update display from the sync result ----
private void ApplyCache(SyncCache? cache)
{