3d5a226a5a
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.
18 lines
530 B
C#
18 lines
530 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PalladiumWallet.App.Services;
|
|
|
|
/// <summary>
|
|
/// Seam for platform-specific services (Android/desktop).
|
|
/// The Android head sets the delegates in OnCreate; desktop leaves them null.
|
|
/// </summary>
|
|
public static class PlatformServices
|
|
{
|
|
/// <summary>
|
|
/// Opens the native QR scanner and returns the raw code text,
|
|
/// or null if the user cancels or the scanner is unavailable.
|
|
/// </summary>
|
|
public static Func<Task<string?>>? ScanQrAsync { get; set; }
|
|
}
|