Skip to content

Commit

Permalink
chore: ✨ Don't display the menu in desktop mode & web mode
Browse files Browse the repository at this point in the history
  • Loading branch information
redDwarf03 committed Nov 25, 2024
1 parent b457778 commit 5588bcf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions lib/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,8 @@
"aeBridgeHeader": "Bridge",
"aeSwapEarnHeader": "Earn UCO token",
"price": "Price",
"aeSwapLaunchMessage": "Please launch the aeSwap application to proceed. It will open in your default browser.",
"aeSwapLaunchButton": "Launch aeSwap",
"dAppLaunchMessage": "The application is not available directly on this platform. Please launch the application via a browser to continue. It will open in your default browser.",
"dAppLaunchButton": "Launch the dApp",
"receiveHeader": "Receive assets on Archethic",
"receiveCopy": "Click to copy the address",
"earnValueLbl": "Earn",
Expand Down
4 changes: 2 additions & 2 deletions lib/l10n/intl_fr.arb
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,8 @@
"aeBridgeHeader": "Bridge",
"aeSwapEarnHeader": "Gagner des UCO",
"price": "Prix",
"aeSwapLaunchMessage": "Veuillez lancer l'application aeSwap pour continuer. Elle s'ouvrira dans votre navigateur par défaut.",
"aeSwapLaunchButton": "Lancer aeSwap",
"dAppLaunchMessage": "L'application n'est pas disponible directement sur cette plateforme. Veuillez lancer l'application via un navigateur pour continuer. Elle s'ouvrira dans votre navigateur par défaut.",
"dAppLaunchButton": "Lancer la dApp",
"receiveHeader": "Recevoir des actifs sur Archethic",
"receiveCopy": "Cliquez pour copier l'adresse",
"earnValueLbl": "Gagner",
Expand Down
4 changes: 2 additions & 2 deletions lib/ui/views/sheets/dapp_sheet.dart
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ class DAppSheetState extends ConsumerState<DAppSheet> {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(
AppLocalizations.of(context)!.aeSwapLaunchMessage,
AppLocalizations.of(context)!.dAppLaunchMessage,
),
SizedBox(
height: 55,
child: AppButtonTiny(
AppButtonTinyType.primary,
AppLocalizations.of(context)!.aeSwapLaunchButton,
AppLocalizations.of(context)!.dAppLaunchButton,
Dimens.buttonBottomDimens,
key: const Key('LaunchApplication'),
onPressed: dappUrl != null
Expand Down

0 comments on commit 5588bcf

Please sign in to comment.