Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions lib/features/settings/settings_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,23 @@ class _SettingsScreenState extends ConsumerState<SettingsScreen> {
fontWeight: FontWeight.w600,
),
),
const Spacer(),
InkWell(
onTap: () => _showInfoDialog(
context,
S.of(context)!.defaultLightningAddress,
S.of(context)!.lightningAddressInfoText,
),
borderRadius: BorderRadius.circular(12),
child: const Padding(
padding: EdgeInsets.all(8.0),
child: Icon(
Icons.info_outline,
size: 20,
color: AppTheme.textSecondary,
),
),
),
],
),
const SizedBox(height: 20),
Expand Down
1 change: 1 addition & 0 deletions lib/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@
"@_comment_settings_info_dialogs": "Settings Info Dialog Text",
"languageInfoText": "Choose your preferred language for the application interface.",
"currencyInfoText": "Choose the default currency for your orders.",
"lightningAddressInfoText": "A Lightning Address is an email-like identifier (e.g., user@domain.com) that simplifies receiving Bitcoin payments. Setting a default one here will automatically populate it when creating buy orders, making the process faster and more convenient.",
"relaysInfoText": "• Relays are servers that help distribute your messages across the Nostr network.\n\n• Adding more relays can improve connectivity and redundancy.\n\n• Relays don't sync with each other, so only those you're connected to will receive your messages.",
"mostroInfoText": "• The Mostro you select will be the one where you post your offers.\n\n• In case of a dispute, a human assigned to that Mostro will be the one to resolve it.",

Expand Down
1 change: 1 addition & 0 deletions lib/l10n/intl_es.arb
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,7 @@
"@_comment_settings_info_dialogs": "Texto de Diálogos de Información de Configuración",
"languageInfoText": "Elige tu idioma preferido para la interfaz de la aplicación.",
"currencyInfoText": "Elige la moneda predeterminada para tus órdenes.",
"lightningAddressInfoText": "Una Dirección Lightning es un identificador similar a un email (ej., usuario@dominio.com) que simplifica recibir pagos de Bitcoin. Establecer una predeterminada aquí la completará automáticamente al crear órdenes de compra, haciendo el proceso más rápido y conveniente.",
"relaysInfoText": "• Los relays son servidores que ayudan a distribuir tus mensajes a través de la red Nostr.\n\n• Agregar más relays puede mejorar la conectividad y redundancia.\n\n• Los relays no se sincronizan entre sí, por lo que solo aquellos a los que estés conectado recibirán tus mensajes.",
"mostroInfoText": "• El Mostro que selecciones será donde publiques tus ofertas.\n\n• En caso de disputa, una persona asignada a ese Mostro será quien la resuelva.",

Expand Down
1 change: 1 addition & 0 deletions lib/l10n/intl_it.arb
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,7 @@
"@_comment_settings_info_dialogs": "Testo Dialoghi Informazioni Impostazioni",
"languageInfoText": "Scegli la tua lingua preferita per l'interfaccia dell'applicazione.",
"currencyInfoText": "Scegli la valuta predefinita per i tuoi ordini.",
"lightningAddressInfoText": "Un Indirizzo Lightning è un identificatore simile a un'email (es., utente@dominio.com) che semplifica la ricezione di pagamenti Bitcoin. Impostarne uno predefinito qui lo completerà automaticamente durante la creazione di ordini di acquisto, rendendo il processo più veloce e conveniente.",
"relaysInfoText": "• I relay sono server che aiutano a distribuire i tuoi messaggi attraverso la rete Nostr.\n\n• Aggiungere più relay può migliorare la connettività e la ridondanza.\n\n• I relay non si sincronizzano tra loro, quindi solo quelli a cui sei connesso riceveranno i tuoi messaggi.",
"mostroInfoText": "• Il Mostro che selezioni sarà quello dove pubblicherai le tue offerte.\n\n• In caso di disputa, una persona assegnata a quel Mostro sarà quella che la risolverà.",

Expand Down