Merge branch 'claude/nostalgic-wright-acfc25': inline offer photos

Market offers carry a small base64 data-URI thumbnail embedded in the Nostr
event (no media server); full photo stays in the encrypted inventory. Blossom
alternative parked on branch parked/offer-photos-blossom.

# Conflicts:
#	apps/app_seeds/lib/i18n/strings.g.dart
This commit is contained in:
vjrj 2026-07-10 21:43:35 +02:00
commit 2c8869ea0d
20 changed files with 520 additions and 16 deletions

View file

@ -482,7 +482,8 @@
"sharedBy": "Compartíu por",
"noProfile": "Esta persona entá nun compartió'l so perfil",
"copyId": "Copiar códigu",
"idCopied": "Códigu copiáu"
"idCopied": "Códigu copiáu",
"photo": "Semeya"
},
"profile": {
"title": "El to perfil",

View file

@ -485,7 +485,8 @@
"sharedBy": "Shared by",
"noProfile": "This person hasn't shared a profile yet",
"copyId": "Copy code",
"idCopied": "Code copied"
"idCopied": "Code copied",
"photo": "Photo"
},
"profile": {
"title": "Your profile",

View file

@ -484,7 +484,8 @@
"sharedBy": "Compartido por",
"noProfile": "Esta persona aún no ha compartido su perfil",
"copyId": "Copiar código",
"idCopied": "Código copiado"
"idCopied": "Código copiado",
"photo": "Foto"
},
"profile": {
"title": "Tu perfil",

View file

@ -481,7 +481,8 @@
"sharedBy": "Partilhado por",
"noProfile": "Esta pessoa ainda não partilhou o seu perfil",
"copyId": "Copiar código",
"idCopied": "Código copiado"
"idCopied": "Código copiado",
"photo": "Foto"
},
"profile": {
"title": "O teu perfil",

View file

@ -4,9 +4,9 @@
/// To regenerate, run: `dart run slang`
///
/// Locales: 4
/// Strings: 1664 (416 per locale)
/// Strings: 1668 (417 per locale)
///
/// Built on 2026-07-10 at 19:36 UTC
/// Built on 2026-07-10 at 19:42 UTC
// coverage:ignore-file
// ignore_for_file: type=lint, unused_import

View file

@ -693,6 +693,7 @@ class _Translations$market$ast extends Translations$market$en {
@override String get noProfile => 'Esta persona entá nun compartió\'l so perfil';
@override String get copyId => 'Copiar códigu';
@override String get idCopied => 'Códigu copiáu';
@override String get photo => 'Semeya';
}
// Path: profile
@ -1505,6 +1506,7 @@ extension on TranslationsAst {
'market.noProfile' => 'Esta persona entá nun compartió\'l so perfil',
'market.copyId' => 'Copiar códigu',
'market.idCopied' => 'Códigu copiáu',
'market.photo' => 'Semeya',
'profile.title' => 'El to perfil',
'profile.name' => 'Nome',
'profile.nameHint' => 'Cómo te ven los demás',

View file

@ -1284,6 +1284,9 @@ class Translations$market$en {
/// en: 'Code copied'
String get idCopied => 'Code copied';
/// en: 'Photo'
String get photo => 'Photo';
}
// Path: profile
@ -2327,6 +2330,7 @@ extension on Translations {
'market.noProfile' => 'This person hasn\'t shared a profile yet',
'market.copyId' => 'Copy code',
'market.idCopied' => 'Code copied',
'market.photo' => 'Photo',
'profile.title' => 'Your profile',
'profile.name' => 'Display name',
'profile.nameHint' => 'How others see you',

View file

@ -695,6 +695,7 @@ class _Translations$market$es extends Translations$market$en {
@override String get noProfile => 'Esta persona aún no ha compartido su perfil';
@override String get copyId => 'Copiar código';
@override String get idCopied => 'Código copiado';
@override String get photo => 'Foto';
}
// Path: profile
@ -1509,6 +1510,7 @@ extension on TranslationsEs {
'market.noProfile' => 'Esta persona aún no ha compartido su perfil',
'market.copyId' => 'Copiar código',
'market.idCopied' => 'Código copiado',
'market.photo' => 'Foto',
'profile.title' => 'Tu perfil',
'profile.name' => 'Nombre',
'profile.nameHint' => 'Cómo te ven los demás',

View file

@ -692,6 +692,7 @@ class _Translations$market$pt extends Translations$market$en {
@override String get noProfile => 'Esta pessoa ainda não partilhou o seu perfil';
@override String get copyId => 'Copiar código';
@override String get idCopied => 'Código copiado';
@override String get photo => 'Foto';
}
// Path: profile
@ -1503,6 +1504,7 @@ extension on TranslationsPt {
'market.noProfile' => 'Esta pessoa ainda não partilhou o seu perfil',
'market.copyId' => 'Copiar código',
'market.idCopied' => 'Código copiado',
'market.photo' => 'Foto',
'profile.title' => 'O teu perfil',
'profile.name' => 'Nome',
'profile.nameHint' => 'Como os outros te veem',