Skip to content

Commit

Permalink
feat: Remove text configuration from two developer button #2051
Browse files Browse the repository at this point in the history
  • Loading branch information
bibash28 committed Nov 1, 2023
1 parent 7e4a446 commit 930ff65
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
4 changes: 2 additions & 2 deletions lib/dashboard/qr_code/widget/developer_mode_dialog.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class DeveloperModeDialog extends StatelessWidget {
),
const SizedBox(height: 15),
MyElevatedButton(
text: l10n.displayConfiguration,
text: l10n.display,
verticalSpacing: 14,
backgroundColor: color,
borderRadius: Sizes.smallRadius,
Expand All @@ -50,7 +50,7 @@ class DeveloperModeDialog extends StatelessWidget {
),
const SizedBox(height: Sizes.spaceSmall),
MyElevatedButton(
text: l10n.downloadConfiguration,
text: l10n.download,
verticalSpacing: 14,
backgroundColor: color,
borderRadius: Sizes.smallRadius,
Expand Down
4 changes: 2 additions & 2 deletions lib/l10n/arb/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -994,8 +994,8 @@
"credentialExpired": "Credential Expired",
"incorrectSignature": "Incorrect Signature",
"revokedOrSuspendedCredential": "Revoked or Suspended Credential",
"displayConfiguration": "Display configuration",
"downloadConfiguration": "Download configuration",
"display": "Display",
"download": "Download",
"successfullyDownloaded": "Successfully Downloaded",
"advancedSecuritySettings": "Advanced Security Settings",
"clientMetadata": "Wallet metadata",
Expand Down
12 changes: 4 additions & 8 deletions lib/l10n/untranslated.json
Original file line number Diff line number Diff line change
Expand Up @@ -899,8 +899,7 @@
"credentialExpired",
"incorrectSignature",
"revokedOrSuspendedCredential",
"displayConfiguration",
"downloadConfiguration",
"display",
"successfullyDownloaded",
"advancedSecuritySettings",
"clientMetadata",
Expand Down Expand Up @@ -1807,8 +1806,7 @@
"credentialExpired",
"incorrectSignature",
"revokedOrSuspendedCredential",
"displayConfiguration",
"downloadConfiguration",
"display",
"successfullyDownloaded",
"advancedSecuritySettings",
"clientMetadata",
Expand Down Expand Up @@ -2018,8 +2016,7 @@
"credentialExpired",
"incorrectSignature",
"revokedOrSuspendedCredential",
"displayConfiguration",
"downloadConfiguration",
"display",
"successfullyDownloaded",
"advancedSecuritySettings",
"clientMetadata",
Expand Down Expand Up @@ -2926,8 +2923,7 @@
"credentialExpired",
"incorrectSignature",
"revokedOrSuspendedCredential",
"displayConfiguration",
"downloadConfiguration",
"display",
"successfullyDownloaded",
"advancedSecuritySettings",
"clientMetadata",
Expand Down
4 changes: 2 additions & 2 deletions lib/splash/bloclisteners/blocklisteners.dart
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ final qrCodeBlocListener = BlocListener<QRCodeScanCubit, QRCodeScanState>(
Navigator.of(context).pop(false);
await Navigator.of(context).push<void>(
JsonViewerPage.route(
title: l10n.displayConfiguration,
title: l10n.display,
data: formattedData,
),
);
Expand Down Expand Up @@ -484,7 +484,7 @@ final qrCodeBlocListener = BlocListener<QRCodeScanCubit, QRCodeScanState>(
Navigator.of(context).pop(false);
await Navigator.of(context).push<void>(
JsonViewerPage.route(
title: l10n.displayConfiguration,
title: l10n.display,
data: formattedData,
),
);
Expand Down

0 comments on commit 930ff65

Please sign in to comment.