mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
Fix some colors (#2293)
* Fix some colors * fix(theme-updates): Modify condition for theme border style display when hasUnderlineBorder is true * fix(themes-updates): Adjust switch colors and modify payjoin hint text * fix: Crash report relating to success image display on successful exchange * fix(theme-updates): Adjust animated text max width to prevent overflows * fix(theme-updates): Adjust fee picker styling * fix(themes-updates): Remove text overflow on welcome screen animation --------- Co-authored-by: Blazebrain <davidadegoke16@gmail.com>
This commit is contained in:
parent
90aee053cd
commit
78bb170533
43 changed files with 275 additions and 227 deletions
|
@ -247,9 +247,11 @@ class CryptoBalanceWidget extends StatelessWidget {
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 4),
|
padding: const EdgeInsets.symmetric(horizontal: 4),
|
||||||
child: Icon(Icons.help_outline,
|
child: Icon(
|
||||||
|
Icons.help_outline,
|
||||||
size: 16,
|
size: 16,
|
||||||
color: Theme.of(context).colorScheme.onSurfaceVariant),
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
@ -257,7 +259,7 @@ class CryptoBalanceWidget extends StatelessWidget {
|
||||||
Observer(
|
Observer(
|
||||||
builder: (_) => StandardSwitch(
|
builder: (_) => StandardSwitch(
|
||||||
value: dashboardViewModel.silentPaymentsScanningActive,
|
value: dashboardViewModel.silentPaymentsScanningActive,
|
||||||
onTaped: () => _toggleSilentPaymentsScanning(context),
|
onTapped: () => _toggleSilentPaymentsScanning(context),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
@ -333,14 +335,26 @@ class CryptoBalanceWidget extends StatelessWidget {
|
||||||
Uri.parse("https://docs.cakewallet.com/cryptos/bitcoin/#payjoin"),
|
Uri.parse("https://docs.cakewallet.com/cryptos/bitcoin/#payjoin"),
|
||||||
mode: LaunchMode.externalApplication,
|
mode: LaunchMode.externalApplication,
|
||||||
),
|
),
|
||||||
child: Text(
|
child: Row(
|
||||||
S.of(context).learn_more,
|
children: [
|
||||||
|
Text(
|
||||||
|
S.of(context).what_is_payjoin,
|
||||||
style: Theme.of(context).textTheme.bodySmall?.copyWith(
|
style: Theme.of(context).textTheme.bodySmall?.copyWith(
|
||||||
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
height: 1,
|
height: 1,
|
||||||
),
|
),
|
||||||
softWrap: true,
|
softWrap: true,
|
||||||
),
|
),
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 4),
|
||||||
|
child: Icon(
|
||||||
|
Icons.help_outline,
|
||||||
|
size: 16,
|
||||||
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
image: 'assets/images/payjoin.png',
|
image: 'assets/images/payjoin.png',
|
||||||
leftButtonTitle: S.of(context).litecoin_mweb_dismiss,
|
leftButtonTitle: S.of(context).litecoin_mweb_dismiss,
|
||||||
|
|
|
@ -37,7 +37,7 @@ class MobileExchangeCardsSection extends StatelessWidget {
|
||||||
bottomLeft: Radius.circular(24),
|
bottomLeft: Radius.circular(24),
|
||||||
bottomRight: Radius.circular(24),
|
bottomRight: Radius.circular(24),
|
||||||
),
|
),
|
||||||
color: Theme.of(context).colorScheme.surfaceContainerLow,
|
color: Theme.of(context).colorScheme.surfaceContainerHighest,
|
||||||
),
|
),
|
||||||
padding: EdgeInsets.fromLTRB(24, 105, 24, 24),
|
padding: EdgeInsets.fromLTRB(24, 105, 24, 24),
|
||||||
child: Column(
|
child: Column(
|
||||||
|
|
|
@ -210,7 +210,8 @@ class ExchangeTradeState extends State<ExchangeTradeForm> {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
_exchangeStateReaction = reaction((_) => this.widget.exchangeTradeViewModel.sendViewModel.state,
|
_exchangeStateReaction = reaction(
|
||||||
|
(_) => this.widget.exchangeTradeViewModel.sendViewModel.state,
|
||||||
(ExecutionState state) async {
|
(ExecutionState state) async {
|
||||||
if (dialogContext != null && dialogContext?.mounted == true) {
|
if (dialogContext != null && dialogContext?.mounted == true) {
|
||||||
Navigator.of(dialogContext!).pop();
|
Navigator.of(dialogContext!).pop();
|
||||||
|
@ -283,11 +284,12 @@ class ExchangeTradeState extends State<ExchangeTradeForm> {
|
||||||
.exchangeTradeViewModel.sendViewModel.pendingTransaction!.amountFormatted,
|
.exchangeTradeViewModel.sendViewModel.pendingTransaction!.amountFormatted,
|
||||||
fiatAmountValue: widget
|
fiatAmountValue: widget
|
||||||
.exchangeTradeViewModel.sendViewModel.pendingTransactionFiatAmountFormatted,
|
.exchangeTradeViewModel.sendViewModel.pendingTransactionFiatAmountFormatted,
|
||||||
fee: isEVMCompatibleChain(widget.exchangeTradeViewModel.sendViewModel.walletType)
|
fee:
|
||||||
|
isEVMCompatibleChain(widget.exchangeTradeViewModel.sendViewModel.walletType)
|
||||||
? S.of(bottomSheetContext).send_estimated_fee
|
? S.of(bottomSheetContext).send_estimated_fee
|
||||||
: S.of(bottomSheetContext).send_fee,
|
: S.of(bottomSheetContext).send_fee,
|
||||||
feeValue:
|
feeValue: widget
|
||||||
widget.exchangeTradeViewModel.sendViewModel.pendingTransaction!.feeFormatted,
|
.exchangeTradeViewModel.sendViewModel.pendingTransaction!.feeFormatted,
|
||||||
feeFiatAmount: widget.exchangeTradeViewModel.sendViewModel
|
feeFiatAmount: widget.exchangeTradeViewModel.sendViewModel
|
||||||
.pendingTransactionFeeFiatAmountFormatted,
|
.pendingTransactionFeeFiatAmountFormatted,
|
||||||
outputs: widget.exchangeTradeViewModel.sendViewModel.outputs,
|
outputs: widget.exchangeTradeViewModel.sendViewModel.outputs,
|
||||||
|
@ -303,7 +305,8 @@ class ExchangeTradeState extends State<ExchangeTradeForm> {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (state is TransactionCommitted) {
|
if (state is TransactionCommitted) {
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) async {
|
WidgetsBinding.instance.addPostFrameCallback(
|
||||||
|
(_) async {
|
||||||
if (!mounted) return;
|
if (!mounted) return;
|
||||||
|
|
||||||
await showModalBottomSheet<void>(
|
await showModalBottomSheet<void>(
|
||||||
|
@ -313,7 +316,7 @@ class ExchangeTradeState extends State<ExchangeTradeForm> {
|
||||||
return InfoBottomSheet(
|
return InfoBottomSheet(
|
||||||
currentTheme: widget.currentTheme,
|
currentTheme: widget.currentTheme,
|
||||||
titleText: S.of(bottomSheetContext).transaction_sent,
|
titleText: S.of(bottomSheetContext).transaction_sent,
|
||||||
contentImage: 'assets/images/birthday_cake.svg',
|
contentImage: 'assets/images/birthday_cake.png',
|
||||||
actionButtonText: S.of(bottomSheetContext).close,
|
actionButtonText: S.of(bottomSheetContext).close,
|
||||||
actionButtonKey: ValueKey('send_page_sent_dialog_ok_button_key'),
|
actionButtonKey: ValueKey('send_page_sent_dialog_ok_button_key'),
|
||||||
actionButton: () {
|
actionButton: () {
|
||||||
|
@ -325,12 +328,15 @@ class ExchangeTradeState extends State<ExchangeTradeForm> {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
RequestReviewHandler.requestReview();
|
RequestReviewHandler.requestReview();
|
||||||
});
|
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
});
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
},
|
||||||
|
);
|
||||||
|
|
||||||
_effectsInstalled = true;
|
_effectsInstalled = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,9 +33,9 @@ class ReleaseNotesScreen extends StatelessWidget {
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(30.0),
|
borderRadius: BorderRadius.circular(30.0),
|
||||||
gradient: LinearGradient(colors: [
|
gradient: LinearGradient(colors: [
|
||||||
Theme.of(context).colorScheme.primaryContainer,
|
Theme.of(context).colorScheme.surface,
|
||||||
Theme.of(context).colorScheme.secondaryContainer,
|
Theme.of(context).colorScheme.surfaceContainer,
|
||||||
], begin: Alignment.centerLeft, end: Alignment.centerRight)),
|
], begin: Alignment.topLeft, end: Alignment.bottomRight)),
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 24.0),
|
padding: const EdgeInsets.symmetric(horizontal: 24.0),
|
||||||
child: Stack(
|
child: Stack(
|
||||||
|
|
|
@ -18,8 +18,10 @@ class SettingsSwitcherCell extends StandardListRow {
|
||||||
final Widget? leading;
|
final Widget? leading;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget buildTrailing(BuildContext context) =>
|
Widget buildTrailing(BuildContext context) => StandardSwitch(
|
||||||
StandardSwitch(value: value, onTaped: () => onValueChange?.call(context, !value));
|
value: value,
|
||||||
|
onTapped: () => onValueChange?.call(context, !value),
|
||||||
|
);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
@ -40,8 +42,7 @@ class SettingsSwitcherCell extends StandardListRow {
|
||||||
//backgroundColor: MaterialStateProperty.all(Theme.of(context).colorScheme.surfaceContainer),
|
//backgroundColor: MaterialStateProperty.all(Theme.of(context).colorScheme.surfaceContainer),
|
||||||
shape: WidgetStateProperty.all(
|
shape: WidgetStateProperty.all(
|
||||||
RoundedRectangleBorder(
|
RoundedRectangleBorder(
|
||||||
borderRadius: BorderRadius.all(Radius.circular(10)
|
borderRadius: BorderRadius.all(Radius.circular(10)),
|
||||||
),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -57,7 +58,6 @@ class SettingsSwitcherCell extends StandardListRow {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget? buildLeading(BuildContext context) => leading;
|
Widget? buildLeading(BuildContext context) => leading;
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,24 +19,28 @@ class UnspentCoinsSwitchRow extends StatelessWidget {
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
color: Theme.of(context).colorScheme.surface,
|
color: Theme.of(context).colorScheme.surface,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding:
|
padding: const EdgeInsets.only(left: 24, top: 16, bottom: 16, right: 24),
|
||||||
const EdgeInsets.only(left: 24, top: 16, bottom: 16, right: 24),
|
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Text(title,
|
Text(
|
||||||
|
title,
|
||||||
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
||||||
fontSize: titleFontSize,
|
fontSize: titleFontSize,
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
color: Theme.of(context).colorScheme.onSurfaceVariant),
|
color: Theme.of(context).colorScheme.onSurfaceVariant,
|
||||||
textAlign: TextAlign.left),
|
),
|
||||||
|
textAlign: TextAlign.left,
|
||||||
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: EdgeInsets.only(top: 12),
|
padding: EdgeInsets.only(top: 12),
|
||||||
child: StandardSwitch(
|
child: StandardSwitch(
|
||||||
value: switchValue,
|
value: switchValue,
|
||||||
onTaped: () => onSwitchValueChange(!switchValue))
|
onTapped: () => onSwitchValueChange(!switchValue),
|
||||||
|
),
|
||||||
)
|
)
|
||||||
]),
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -164,6 +164,7 @@ class CreatePinWelcomePage extends BasePage {
|
||||||
if (!isMoneroOnly)
|
if (!isMoneroOnly)
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
AnimatedTypingText(
|
AnimatedTypingText(
|
||||||
words: [S.current.payments, S.current.privacy, S.current.security],
|
words: [S.current.payments, S.current.privacy, S.current.security],
|
||||||
|
@ -175,7 +176,7 @@ class CreatePinWelcomePage extends BasePage {
|
||||||
cursorHeight: 24,
|
cursorHeight: 24,
|
||||||
cursorWidth: 4,
|
cursorWidth: 4,
|
||||||
),
|
),
|
||||||
SizedBox(width: 8),
|
SizedBox(width: 4),
|
||||||
Text(
|
Text(
|
||||||
S.current.made_easy,
|
S.current.made_easy,
|
||||||
style: Theme.of(context).textTheme.titleLarge?.copyWith(
|
style: Theme.of(context).textTheme.titleLarge?.copyWith(
|
||||||
|
|
|
@ -33,7 +33,6 @@ class _AnimatedTypingTextState extends State<AnimatedTypingText> with TickerProv
|
||||||
|
|
||||||
String _displayText = '';
|
String _displayText = '';
|
||||||
|
|
||||||
double _maxTextWidth = 0;
|
|
||||||
int _currentWordIndex = 0;
|
int _currentWordIndex = 0;
|
||||||
int _currentCharIndex = 0;
|
int _currentCharIndex = 0;
|
||||||
|
|
||||||
|
@ -61,10 +60,6 @@ class _AnimatedTypingTextState extends State<AnimatedTypingText> with TickerProv
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
||||||
_calculateMaxTextWidth();
|
|
||||||
});
|
|
||||||
|
|
||||||
_controller.addStatusListener((status) {
|
_controller.addStatusListener((status) {
|
||||||
if (status == AnimationStatus.completed) {
|
if (status == AnimationStatus.completed) {
|
||||||
_updateText();
|
_updateText();
|
||||||
|
@ -78,24 +73,6 @@ class _AnimatedTypingTextState extends State<AnimatedTypingText> with TickerProv
|
||||||
_controller.forward();
|
_controller.forward();
|
||||||
}
|
}
|
||||||
|
|
||||||
void _calculateMaxTextWidth() {
|
|
||||||
final textStyle = widget.style ?? DefaultTextStyle.of(context).style;
|
|
||||||
double maxWidth = 0;
|
|
||||||
final textPainter = TextPainter(
|
|
||||||
textDirection: TextDirection.ltr,
|
|
||||||
);
|
|
||||||
for (final word in widget.words) {
|
|
||||||
textPainter.text = TextSpan(text: word, style: textStyle);
|
|
||||||
textPainter.layout();
|
|
||||||
if (textPainter.width > maxWidth) {
|
|
||||||
maxWidth = textPainter.width;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
setState(() {
|
|
||||||
_maxTextWidth = maxWidth;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
void _updateText() {
|
void _updateText() {
|
||||||
if (_isWaitingForPause) return;
|
if (_isWaitingForPause) return;
|
||||||
|
|
||||||
|
@ -157,9 +134,7 @@ class _AnimatedTypingTextState extends State<AnimatedTypingText> with TickerProv
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return SizedBox(
|
return Stack(
|
||||||
width: _maxTextWidth + widget.cursorWidth,
|
|
||||||
child: Stack(
|
|
||||||
clipBehavior: Clip.none,
|
clipBehavior: Clip.none,
|
||||||
children: [
|
children: [
|
||||||
// Fixed cursor position
|
// Fixed cursor position
|
||||||
|
@ -188,7 +163,6 @@ class _AnimatedTypingTextState extends State<AnimatedTypingText> with TickerProv
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -135,6 +135,15 @@ class BaseTextFormField extends StatelessWidget {
|
||||||
hintText: hasUnderlineBorder ? hintText : null,
|
hintText: hasUnderlineBorder ? hintText : null,
|
||||||
labelText: !hasUnderlineBorder ? hintText : null,
|
labelText: !hasUnderlineBorder ? hintText : null,
|
||||||
labelStyle: !hasUnderlineBorder ? placeholderTextStyle : null,
|
labelStyle: !hasUnderlineBorder ? placeholderTextStyle : null,
|
||||||
|
border: hasUnderlineBorder
|
||||||
|
? UnderlineInputBorder(
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: Theme.of(context).colorScheme.outlineVariant,
|
||||||
|
style: borderWidth == 0.0 ? BorderStyle.none : BorderStyle.solid,
|
||||||
|
width: borderWidth,
|
||||||
|
),
|
||||||
|
)
|
||||||
|
: null,
|
||||||
focusedBorder: hasUnderlineBorder
|
focusedBorder: hasUnderlineBorder
|
||||||
? UnderlineInputBorder(
|
? UnderlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
|
@ -156,7 +165,7 @@ class BaseTextFormField extends StatelessWidget {
|
||||||
? UnderlineInputBorder(
|
? UnderlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: Theme.of(context).colorScheme.outlineVariant,
|
color: Theme.of(context).colorScheme.outlineVariant,
|
||||||
style: borderWidth == 1 ? BorderStyle.none : BorderStyle.solid,
|
style: borderWidth == 0.0 ? BorderStyle.none : BorderStyle.solid,
|
||||||
width: borderWidth,
|
width: borderWidth,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
|
@ -144,7 +144,7 @@ class BlockchainHeightState extends State<BlockchainHeightWidget> {
|
||||||
padding: const EdgeInsets.only(right: 8),
|
padding: const EdgeInsets.only(right: 8),
|
||||||
child: StandardSwitch(
|
child: StandardSwitch(
|
||||||
value: widget.doSingleScan,
|
value: widget.doSingleScan,
|
||||||
onTaped: () => widget.toggleSingleScan?.call(),
|
onTapped: () => widget.toggleSingleScan?.call(),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
|
|
|
@ -4,6 +4,7 @@ import 'dart:math';
|
||||||
|
|
||||||
import 'package:cake_wallet/entities/seed_type.dart';
|
import 'package:cake_wallet/entities/seed_type.dart';
|
||||||
import 'package:cake_wallet/src/widgets/search_bar_widget.dart';
|
import 'package:cake_wallet/src/widgets/search_bar_widget.dart';
|
||||||
|
import 'package:cake_wallet/themes/utils/custom_theme_colors.dart';
|
||||||
import 'package:cake_wallet/utils/responsive_layout_util.dart';
|
import 'package:cake_wallet/utils/responsive_layout_util.dart';
|
||||||
import 'package:cw_core/transaction_priority.dart';
|
import 'package:cw_core/transaction_priority.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
@ -157,7 +158,6 @@ class _PickerState<Item> extends State<Picker<Item>> {
|
||||||
textAlign: TextAlign.center,
|
textAlign: TextAlign.center,
|
||||||
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
||||||
fontSize: 18,
|
fontSize: 18,
|
||||||
|
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
decoration: TextDecoration.none,
|
decoration: TextDecoration.none,
|
||||||
color: Theme.of(context).colorScheme.onSurface,
|
color: Theme.of(context).colorScheme.onSurface,
|
||||||
|
@ -358,7 +358,6 @@ class _PickerState<Item> extends State<Picker<Item>> {
|
||||||
tag,
|
tag,
|
||||||
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
||||||
fontSize: 7.0,
|
fontSize: 7.0,
|
||||||
|
|
||||||
color: Theme.of(context).colorScheme.primary,
|
color: Theme.of(context).colorScheme.primary,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -430,7 +429,6 @@ class _PickerState<Item> extends State<Picker<Item>> {
|
||||||
softWrap: true,
|
softWrap: true,
|
||||||
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
|
|
||||||
fontWeight: FontWeight.w700,
|
fontWeight: FontWeight.w700,
|
||||||
color: Theme.of(context).colorScheme.onSurface,
|
color: Theme.of(context).colorScheme.onSurface,
|
||||||
decoration: TextDecoration.none,
|
decoration: TextDecoration.none,
|
||||||
|
@ -448,7 +446,6 @@ class _PickerState<Item> extends State<Picker<Item>> {
|
||||||
tag,
|
tag,
|
||||||
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
style: Theme.of(context).textTheme.bodyMedium!.copyWith(
|
||||||
fontSize: 7.0,
|
fontSize: 7.0,
|
||||||
|
|
||||||
color: Theme.of(context).colorScheme.primary,
|
color: Theme.of(context).colorScheme.primary,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
@ -522,10 +519,16 @@ class _PickerState<Item> extends State<Picker<Item>> {
|
||||||
}
|
}
|
||||||
|
|
||||||
Widget buildSlider({required int index, required bool isActivated}) {
|
Widget buildSlider({required int index, required bool isActivated}) {
|
||||||
|
final isDarkMode = Theme.of(context).brightness == Brightness.dark;
|
||||||
return Row(
|
return Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Slider(
|
child: Slider(
|
||||||
|
activeColor: Theme.of(context).colorScheme.primary,
|
||||||
|
inactiveColor: isDarkMode
|
||||||
|
? CustomThemeColors.toggleColorOffStateDark
|
||||||
|
: CustomThemeColors.toggleColorOffStateLight,
|
||||||
|
thumbColor: CustomThemeColors.toggleKnobStateColorLight,
|
||||||
value: widget.sliderValue == null || widget.sliderValue! < 1 ? 1 : widget.sliderValue!,
|
value: widget.sliderValue == null || widget.sliderValue! < 1 ? 1 : widget.sliderValue!,
|
||||||
onChanged: isActivated ? widget.onSliderChanged : null,
|
onChanged: isActivated ? widget.onSliderChanged : null,
|
||||||
min: widget.minValue ?? 1,
|
min: widget.minValue ?? 1,
|
||||||
|
|
|
@ -43,7 +43,7 @@ class _ServicesUpdatesWidgetState extends State<ServicesUpdatesWidget> {
|
||||||
child: SvgPicture.asset(
|
child: SvgPicture.asset(
|
||||||
"assets/images/notification_icon.svg",
|
"assets/images/notification_icon.svg",
|
||||||
color: Theme.of(context).colorScheme.onSurface,
|
color: Theme.of(context).colorScheme.onSurface,
|
||||||
width: 30,
|
width: 20,
|
||||||
placeholderBuilder: (_) => Icon(Icons.error),
|
placeholderBuilder: (_) => Icon(Icons.error),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:cake_wallet/themes/utils/custom_theme_colors.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class StandardSwitch extends StatefulWidget {
|
class StandardSwitch extends StatefulWidget {
|
||||||
const StandardSwitch({required this.value, required this.onTaped});
|
const StandardSwitch({required this.value, required this.onTapped});
|
||||||
|
|
||||||
final bool value;
|
final bool value;
|
||||||
final VoidCallback onTaped;
|
final VoidCallback onTapped;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
StandardSwitchState createState() => StandardSwitchState();
|
StandardSwitchState createState() => StandardSwitchState();
|
||||||
|
@ -14,10 +14,11 @@ class StandardSwitch extends StatefulWidget {
|
||||||
class StandardSwitchState extends State<StandardSwitch> {
|
class StandardSwitchState extends State<StandardSwitch> {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
final isDarkMode = Theme.of(context).brightness == Brightness.dark;
|
||||||
return Semantics(
|
return Semantics(
|
||||||
toggled: widget.value,
|
toggled: widget.value,
|
||||||
child: GestureDetector(
|
child: GestureDetector(
|
||||||
onTap: widget.onTaped,
|
onTap: widget.onTapped,
|
||||||
child: AnimatedContainer(
|
child: AnimatedContainer(
|
||||||
padding: EdgeInsets.only(left: 2.0, right: 2.0),
|
padding: EdgeInsets.only(left: 2.0, right: 2.0),
|
||||||
alignment: widget.value ? Alignment.centerRight : Alignment.centerLeft,
|
alignment: widget.value ? Alignment.centerRight : Alignment.centerLeft,
|
||||||
|
@ -26,8 +27,10 @@ class StandardSwitchState extends State<StandardSwitch> {
|
||||||
height: 28,
|
height: 28,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: widget.value
|
color: widget.value
|
||||||
? Theme.of(context).colorScheme.surfaceContainerHighest
|
? Theme.of(context).colorScheme.primary
|
||||||
: Theme.of(context).colorScheme.surfaceContainerLowest,
|
: isDarkMode
|
||||||
|
? CustomThemeColors.toggleColorOffStateDark
|
||||||
|
: CustomThemeColors.toggleColorOffStateLight,
|
||||||
borderRadius: BorderRadius.all(
|
borderRadius: BorderRadius.all(
|
||||||
Radius.circular(14.0),
|
Radius.circular(14.0),
|
||||||
),
|
),
|
||||||
|
@ -36,7 +39,9 @@ class StandardSwitchState extends State<StandardSwitch> {
|
||||||
width: 24.0,
|
width: 24.0,
|
||||||
height: 24.0,
|
height: 24.0,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: Theme.of(context).colorScheme.primary,
|
color: isDarkMode
|
||||||
|
? Theme.of(context).colorScheme.surface
|
||||||
|
: CustomThemeColors.toggleKnobStateColorLight,
|
||||||
shape: BoxShape.circle,
|
shape: BoxShape.circle,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -38,8 +38,8 @@ class DarkTheme extends MaterialThemeBase {
|
||||||
tertiaryContainer: const Color(0xFF1F2832),
|
tertiaryContainer: const Color(0xFF1F2832),
|
||||||
onTertiaryContainer: const Color(0xFFA8B3C6),
|
onTertiaryContainer: const Color(0xFFA8B3C6),
|
||||||
error: errorColor,
|
error: errorColor,
|
||||||
onError: const Color(0xFF690005),
|
onError: const Color(0xFFB71919),
|
||||||
errorContainer: const Color(0xFFB71919),
|
errorContainer: const Color(0xFFC53636),
|
||||||
onErrorContainer: const Color(0xFFFFDAD6),
|
onErrorContainer: const Color(0xFFFFDAD6),
|
||||||
surface: surfaceColor,
|
surface: surfaceColor,
|
||||||
onSurface: const Color(0xFFD7E2F7),
|
onSurface: const Color(0xFFD7E2F7),
|
||||||
|
|
|
@ -16,4 +16,8 @@ class CustomThemeColors {
|
||||||
static const cardGradientColorPrimaryLight = Color(0xFFFFFFFF);
|
static const cardGradientColorPrimaryLight = Color(0xFFFFFFFF);
|
||||||
static const cardGradientColorSecondaryDark = Color(0xFF1C2A4F);
|
static const cardGradientColorSecondaryDark = Color(0xFF1C2A4F);
|
||||||
static const cardGradientColorSecondaryLight = Color(0xFFF3F3FF);
|
static const cardGradientColorSecondaryLight = Color(0xFFF3F3FF);
|
||||||
|
|
||||||
|
static const toggleKnobStateColorLight = Color(0xFFFFFFFF);
|
||||||
|
static const toggleColorOffStateLight = Color(0xFFCACAE7);
|
||||||
|
static const toggleColorOffStateDark = Color(0xFF3A4F88);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "إذا كنت ترغب في البدء من جديد ، فانقر فوق إنشاء محفظة جديدة أدناه وستكون خارج السباقات.",
|
"welcome_subtitle_new_wallet": "إذا كنت ترغب في البدء من جديد ، فانقر فوق إنشاء محفظة جديدة أدناه وستكون خارج السباقات.",
|
||||||
"welcome_subtitle_restore_wallet": "إذا كان لديك محفظة موجودة تريد إحضارها إلى كعكة ، فما عليك سوى اختيار استعادة المحفظة الموجودة وسنمشيك خلال العملية.",
|
"welcome_subtitle_restore_wallet": "إذا كان لديك محفظة موجودة تريد إحضارها إلى كعكة ، فما عليك سوى اختيار استعادة المحفظة الموجودة وسنمشيك خلال العملية.",
|
||||||
"welcome_to_cakepay": "مرحبا بكم في Cake Pay!",
|
"welcome_to_cakepay": "مرحبا بكم في Cake Pay!",
|
||||||
|
"what_is_payjoin": "ما هو Payjoin?",
|
||||||
"what_is_silent_payments": "ما هي المدفوعات الصامتة؟",
|
"what_is_silent_payments": "ما هي المدفوعات الصامتة؟",
|
||||||
"widgets_address": "عنوان",
|
"widgets_address": "عنوان",
|
||||||
"widgets_or": "أو",
|
"widgets_or": "أو",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Ако искате да стартирате свеж, докоснете Създайте нов портфейл по -долу и ще се откажете от състезанията.",
|
"welcome_subtitle_new_wallet": "Ако искате да стартирате свеж, докоснете Създайте нов портфейл по -долу и ще се откажете от състезанията.",
|
||||||
"welcome_subtitle_restore_wallet": "Ако имате съществуващ портфейл, който искате да внесете в тортата, просто изберете възстановяване на съществуващия портфейл и ще ви преведем през процеса.",
|
"welcome_subtitle_restore_wallet": "Ако имате съществуващ портфейл, който искате да внесете в тортата, просто изберете възстановяване на съществуващия портфейл и ще ви преведем през процеса.",
|
||||||
"welcome_to_cakepay": "Добре дошли в Cake Pay!",
|
"welcome_to_cakepay": "Добре дошли в Cake Pay!",
|
||||||
|
"what_is_payjoin": "Какво е Payjoin ?",
|
||||||
"what_is_silent_payments": "Какво са мълчаливи плащания?",
|
"what_is_silent_payments": "Какво са мълчаливи плащания?",
|
||||||
"widgets_address": "Адрес",
|
"widgets_address": "Адрес",
|
||||||
"widgets_or": "или",
|
"widgets_or": "или",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Pokud chcete začít čerstvě, klepněte na Vytvořit novou peněženku níže a budete na závodech.",
|
"welcome_subtitle_new_wallet": "Pokud chcete začít čerstvě, klepněte na Vytvořit novou peněženku níže a budete na závodech.",
|
||||||
"welcome_subtitle_restore_wallet": "Pokud máte existující peněženku, kterou chcete přinést do dortu, jednoduše si vyberte obnovení stávající peněženky a my vás projdeme procesem.",
|
"welcome_subtitle_restore_wallet": "Pokud máte existující peněženku, kterou chcete přinést do dortu, jednoduše si vyberte obnovení stávající peněženky a my vás projdeme procesem.",
|
||||||
"welcome_to_cakepay": "Vítejte v Cake Pay!",
|
"welcome_to_cakepay": "Vítejte v Cake Pay!",
|
||||||
|
"what_is_payjoin": "Co je Payjoin ?",
|
||||||
"what_is_silent_payments": "Co jsou tiché platby?",
|
"what_is_silent_payments": "Co jsou tiché platby?",
|
||||||
"widgets_address": "Adresa",
|
"widgets_address": "Adresa",
|
||||||
"widgets_or": "nebo",
|
"widgets_or": "nebo",
|
||||||
|
|
|
@ -580,8 +580,8 @@
|
||||||
"please_choose_one": "Bitte wählen Sie einen",
|
"please_choose_one": "Bitte wählen Sie einen",
|
||||||
"please_fill_totp": "Bitte geben Sie den 8-stelligen Code ein, der auf Ihrem anderen Gerät vorhanden ist",
|
"please_fill_totp": "Bitte geben Sie den 8-stelligen Code ein, der auf Ihrem anderen Gerät vorhanden ist",
|
||||||
"please_make_selection": "Bitte treffen Sie unten eine Auswahl zum Erstellen oder Wiederherstellen Ihrer Wallet.",
|
"please_make_selection": "Bitte treffen Sie unten eine Auswahl zum Erstellen oder Wiederherstellen Ihrer Wallet.",
|
||||||
"please_reference_document": "Bitte verweisen Sie auf die folgenden Dokumente, um weitere Informationen zu erhalten.",
|
|
||||||
"Please_reference_document": "Weitere Informationen finden Sie in den Dokumenten unten.",
|
"Please_reference_document": "Weitere Informationen finden Sie in den Dokumenten unten.",
|
||||||
|
"please_reference_document": "Bitte verweisen Sie auf die folgenden Dokumente, um weitere Informationen zu erhalten.",
|
||||||
"please_select": "Bitte auswählen:",
|
"please_select": "Bitte auswählen:",
|
||||||
"please_select_backup_file": "Bitte wählen Sie die Sicherungsdatei und geben Sie das Sicherungskennwort ein.",
|
"please_select_backup_file": "Bitte wählen Sie die Sicherungsdatei und geben Sie das Sicherungskennwort ein.",
|
||||||
"please_try_to_connect_to_another_node": "Bitte versuchen Sie, sich mit einem anderen Knoten zu verbinden",
|
"please_try_to_connect_to_another_node": "Bitte versuchen Sie, sich mit einem anderen Knoten zu verbinden",
|
||||||
|
@ -1062,6 +1062,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Wenn Sie frisch anfangen möchten, tippen Sie unten neue Wallet und schon sind Sie bereit.",
|
"welcome_subtitle_new_wallet": "Wenn Sie frisch anfangen möchten, tippen Sie unten neue Wallet und schon sind Sie bereit.",
|
||||||
"welcome_subtitle_restore_wallet": "Wenn Sie über eine vorhandene Wallet verfügen, die Sie in Cake Wallet öffnen möchten, drücken Sie auf Vorhandene Wallet wiederherstellen und wir werden Sie durch den Prozess führen.",
|
"welcome_subtitle_restore_wallet": "Wenn Sie über eine vorhandene Wallet verfügen, die Sie in Cake Wallet öffnen möchten, drücken Sie auf Vorhandene Wallet wiederherstellen und wir werden Sie durch den Prozess führen.",
|
||||||
"welcome_to_cakepay": "Willkommen bei Cake Pay!",
|
"welcome_to_cakepay": "Willkommen bei Cake Pay!",
|
||||||
|
"what_is_payjoin": "Was ist Payjoin ?",
|
||||||
"what_is_silent_payments": "Was sind Silent Payments?",
|
"what_is_silent_payments": "Was sind Silent Payments?",
|
||||||
"widgets_address": "Adresse",
|
"widgets_address": "Adresse",
|
||||||
"widgets_or": "oder",
|
"widgets_or": "oder",
|
||||||
|
|
|
@ -1060,6 +1060,7 @@
|
||||||
"welcome_subtitle_new_wallet": "If you want to start fresh, tap Create New Wallet below and you'll be off to the races.",
|
"welcome_subtitle_new_wallet": "If you want to start fresh, tap Create New Wallet below and you'll be off to the races.",
|
||||||
"welcome_subtitle_restore_wallet": "If you have an existing wallet you want to bring into Cake, simply choose Restore Existing Wallet and we'll walk you through the process.",
|
"welcome_subtitle_restore_wallet": "If you have an existing wallet you want to bring into Cake, simply choose Restore Existing Wallet and we'll walk you through the process.",
|
||||||
"welcome_to_cakepay": "Welcome to Cake Pay!",
|
"welcome_to_cakepay": "Welcome to Cake Pay!",
|
||||||
|
"what_is_payjoin": "What is Payjoin?",
|
||||||
"what_is_silent_payments": "What are Silent Payments?",
|
"what_is_silent_payments": "What are Silent Payments?",
|
||||||
"widgets_address": "Address",
|
"widgets_address": "Address",
|
||||||
"widgets_or": "or",
|
"widgets_or": "or",
|
||||||
|
|
|
@ -1061,6 +1061,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Si desea comenzar de nuevo, toque Crear nueva billetera a continuación y se irá a las carreras.",
|
"welcome_subtitle_new_wallet": "Si desea comenzar de nuevo, toque Crear nueva billetera a continuación y se irá a las carreras.",
|
||||||
"welcome_subtitle_restore_wallet": "Si tiene una billetera existente que desea llevar al pastel, simplemente elija Restaurar la billetera existente y lo guiaremos a través del proceso.",
|
"welcome_subtitle_restore_wallet": "Si tiene una billetera existente que desea llevar al pastel, simplemente elija Restaurar la billetera existente y lo guiaremos a través del proceso.",
|
||||||
"welcome_to_cakepay": "¡Bienvenido a Cake Pay!",
|
"welcome_to_cakepay": "¡Bienvenido a Cake Pay!",
|
||||||
|
"what_is_payjoin": "¿Qué es Payjoin ?",
|
||||||
"what_is_silent_payments": "¿Qué son los pagos silenciosos?",
|
"what_is_silent_payments": "¿Qué son los pagos silenciosos?",
|
||||||
"widgets_address": "Dirección",
|
"widgets_address": "Dirección",
|
||||||
"widgets_or": "o",
|
"widgets_or": "o",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Si vous souhaitez repartir de zéro, appuyez sur Créer un nouveau portefeuille ci-dessous et vous serez prêt à commencer.",
|
"welcome_subtitle_new_wallet": "Si vous souhaitez repartir de zéro, appuyez sur Créer un nouveau portefeuille ci-dessous et vous serez prêt à commencer.",
|
||||||
"welcome_subtitle_restore_wallet": "Si vous avez un portefeuille existant que vous souhaitez importer dans Cake, choisissez simplement Restaurer un portefeuille existant et nous vous guiderons à travers le processus.",
|
"welcome_subtitle_restore_wallet": "Si vous avez un portefeuille existant que vous souhaitez importer dans Cake, choisissez simplement Restaurer un portefeuille existant et nous vous guiderons à travers le processus.",
|
||||||
"welcome_to_cakepay": "Bienvenue sur Cake Pay !",
|
"welcome_to_cakepay": "Bienvenue sur Cake Pay !",
|
||||||
|
"what_is_payjoin": "Qu'est-ce que Payjoin ?",
|
||||||
"what_is_silent_payments": "Qu'est-ce que les paiements silencieux?",
|
"what_is_silent_payments": "Qu'est-ce que les paiements silencieux?",
|
||||||
"widgets_address": "Adresse",
|
"widgets_address": "Adresse",
|
||||||
"widgets_or": "ou",
|
"widgets_or": "ou",
|
||||||
|
|
|
@ -1062,6 +1062,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Idan kana son farawa sabo ne, matsa Newirƙiri Sabuwar Wallow a ƙasa kuma za ka tafi da tsere.",
|
"welcome_subtitle_new_wallet": "Idan kana son farawa sabo ne, matsa Newirƙiri Sabuwar Wallow a ƙasa kuma za ka tafi da tsere.",
|
||||||
"welcome_subtitle_restore_wallet": "Idan kuna da walat ɗin da kuke son shigo da cake, kawai zaɓi a cikin walat ɗin da yake ciki kuma za mu bi ku ta hanyar aiwatarwa.",
|
"welcome_subtitle_restore_wallet": "Idan kuna da walat ɗin da kuke son shigo da cake, kawai zaɓi a cikin walat ɗin da yake ciki kuma za mu bi ku ta hanyar aiwatarwa.",
|
||||||
"welcome_to_cakepay": "Barka da zuwa Cake Pay!",
|
"welcome_to_cakepay": "Barka da zuwa Cake Pay!",
|
||||||
|
"what_is_payjoin": "Mene ne Payjoin ?",
|
||||||
"what_is_silent_payments": "Menene biyan shiru?",
|
"what_is_silent_payments": "Menene biyan shiru?",
|
||||||
"widgets_address": "Adireshin",
|
"widgets_address": "Adireshin",
|
||||||
"widgets_or": "ko",
|
"widgets_or": "ko",
|
||||||
|
|
|
@ -1061,6 +1061,7 @@
|
||||||
"welcome_subtitle_new_wallet": "यदि आप ताजा शुरू करना चाहते हैं, तो नीचे नया बटुआ बनाएं और आप दौड़ से दूर हो जाएंगे।",
|
"welcome_subtitle_new_wallet": "यदि आप ताजा शुरू करना चाहते हैं, तो नीचे नया बटुआ बनाएं और आप दौड़ से दूर हो जाएंगे।",
|
||||||
"welcome_subtitle_restore_wallet": "यदि आपके पास एक मौजूदा बटुआ है जिसे आप केक में लाना चाहते हैं, तो बस मौजूदा बटुए को पुनर्स्थापित करें और हम आपको प्रक्रिया के माध्यम से चलेंगे।",
|
"welcome_subtitle_restore_wallet": "यदि आपके पास एक मौजूदा बटुआ है जिसे आप केक में लाना चाहते हैं, तो बस मौजूदा बटुए को पुनर्स्थापित करें और हम आपको प्रक्रिया के माध्यम से चलेंगे।",
|
||||||
"welcome_to_cakepay": "केकपे में आपका स्वागत है!",
|
"welcome_to_cakepay": "केकपे में आपका स्वागत है!",
|
||||||
|
"what_is_payjoin": "Payjoin ##### क्या है",
|
||||||
"what_is_silent_payments": "मूक भुगतान क्या है?",
|
"what_is_silent_payments": "मूक भुगतान क्या है?",
|
||||||
"widgets_address": "पता",
|
"widgets_address": "पता",
|
||||||
"widgets_or": "या",
|
"widgets_or": "या",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Ako želite započeti svježe, dodirnite Create New Wallet u nastavku i krenite na utrke.",
|
"welcome_subtitle_new_wallet": "Ako želite započeti svježe, dodirnite Create New Wallet u nastavku i krenite na utrke.",
|
||||||
"welcome_subtitle_restore_wallet": "Ako imate postojeći novčanik koji želite unijeti u tortu, jednostavno odaberite Vratite postojeći novčanik i prošetat ćemo vas kroz postupak.",
|
"welcome_subtitle_restore_wallet": "Ako imate postojeći novčanik koji želite unijeti u tortu, jednostavno odaberite Vratite postojeći novčanik i prošetat ćemo vas kroz postupak.",
|
||||||
"welcome_to_cakepay": "Dobro došli u Cake Pay!",
|
"welcome_to_cakepay": "Dobro došli u Cake Pay!",
|
||||||
|
"what_is_payjoin": "Što je Payjoin ?",
|
||||||
"what_is_silent_payments": "Što je tiha plaćanja?",
|
"what_is_silent_payments": "Što je tiha plaćanja?",
|
||||||
"widgets_address": "Adresa",
|
"widgets_address": "Adresa",
|
||||||
"widgets_or": "ili",
|
"widgets_or": "ili",
|
||||||
|
|
|
@ -1057,6 +1057,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Եթե ցանկանում եք սկսել թարմ, հպեք Ստեղծեք նոր դրամապանակ ներքեւում եւ դուրս կգաք ցեղերի:",
|
"welcome_subtitle_new_wallet": "Եթե ցանկանում եք սկսել թարմ, հպեք Ստեղծեք նոր դրամապանակ ներքեւում եւ դուրս կգաք ցեղերի:",
|
||||||
"welcome_subtitle_restore_wallet": "Եթե ունեք գոյություն ունեցող դրամապանակ, որը ցանկանում եք տորթի մեջ մտցնել, պարզապես ընտրեք վերականգնել առկա դրամապանակը, եւ մենք ձեզ քայլելու ենք գործընթացի միջոցով:",
|
"welcome_subtitle_restore_wallet": "Եթե ունեք գոյություն ունեցող դրամապանակ, որը ցանկանում եք տորթի մեջ մտցնել, պարզապես ընտրեք վերականգնել առկա դրամապանակը, եւ մենք ձեզ քայլելու ենք գործընթացի միջոցով:",
|
||||||
"welcome_to_cakepay": "Բարի գալուստ Cake Pay!",
|
"welcome_to_cakepay": "Բարի գալուստ Cake Pay!",
|
||||||
|
"what_is_payjoin": "Ինչ է վճարումը ?",
|
||||||
"what_is_silent_payments": "Ի՞նչ է Լուռ Վճարումները:",
|
"what_is_silent_payments": "Ի՞նչ է Լուռ Վճարումները:",
|
||||||
"widgets_address": "Հասցե",
|
"widgets_address": "Հասցե",
|
||||||
"widgets_or": "կամ",
|
"widgets_or": "կամ",
|
||||||
|
|
|
@ -1062,6 +1062,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Jika Anda ingin memulai segar, ketuk membuat dompet baru di bawah ini dan Anda akan pergi ke balapan.",
|
"welcome_subtitle_new_wallet": "Jika Anda ingin memulai segar, ketuk membuat dompet baru di bawah ini dan Anda akan pergi ke balapan.",
|
||||||
"welcome_subtitle_restore_wallet": "Jika Anda memiliki dompet yang ada yang ingin Anda bawa ke dalam kue, cukup pilih kembalikan dompet yang ada dan kami akan memandu Anda melalui prosesnya.",
|
"welcome_subtitle_restore_wallet": "Jika Anda memiliki dompet yang ada yang ingin Anda bawa ke dalam kue, cukup pilih kembalikan dompet yang ada dan kami akan memandu Anda melalui prosesnya.",
|
||||||
"welcome_to_cakepay": "Selamat Datang di Cake Pay!",
|
"welcome_to_cakepay": "Selamat Datang di Cake Pay!",
|
||||||
|
"what_is_payjoin": "Apa itu Payjoin ?",
|
||||||
"what_is_silent_payments": "Apa itu pembayaran diam?",
|
"what_is_silent_payments": "Apa itu pembayaran diam?",
|
||||||
"widgets_address": "Alamat",
|
"widgets_address": "Alamat",
|
||||||
"widgets_or": "atau",
|
"widgets_or": "atau",
|
||||||
|
|
|
@ -1062,6 +1062,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Se vuoi ricominciare da capo, premi Crea un nuovo portafoglio qui sotto.",
|
"welcome_subtitle_new_wallet": "Se vuoi ricominciare da capo, premi Crea un nuovo portafoglio qui sotto.",
|
||||||
"welcome_subtitle_restore_wallet": "Se hai un portafoglio esistente che vuoi importare in Cake Wallet, scegli semplicemente il ripristino del portafoglio esistente e ti guideremo attraverso il processo.",
|
"welcome_subtitle_restore_wallet": "Se hai un portafoglio esistente che vuoi importare in Cake Wallet, scegli semplicemente il ripristino del portafoglio esistente e ti guideremo attraverso il processo.",
|
||||||
"welcome_to_cakepay": "Benvenuto in Cake Pay!",
|
"welcome_to_cakepay": "Benvenuto in Cake Pay!",
|
||||||
|
"what_is_payjoin": "Cos'è PayJoin ?",
|
||||||
"what_is_silent_payments": "Che cos'è Silent Payments?",
|
"what_is_silent_payments": "Che cos'è Silent Payments?",
|
||||||
"widgets_address": "Indirizzo",
|
"widgets_address": "Indirizzo",
|
||||||
"widgets_or": "o",
|
"widgets_or": "o",
|
||||||
|
|
|
@ -1060,6 +1060,7 @@
|
||||||
"welcome_subtitle_new_wallet": "新鮮な開始したい場合は、以下の新しい財布を作成すると、レースに出かけることができます。",
|
"welcome_subtitle_new_wallet": "新鮮な開始したい場合は、以下の新しい財布を作成すると、レースに出かけることができます。",
|
||||||
"welcome_subtitle_restore_wallet": "ケーキに持ち込みたい既存のウォレットがある場合は、既存のウォレットを復元するだけで、プロセスを説明します。",
|
"welcome_subtitle_restore_wallet": "ケーキに持ち込みたい既存のウォレットがある場合は、既存のウォレットを復元するだけで、プロセスを説明します。",
|
||||||
"welcome_to_cakepay": "Cake Payへようこそ!",
|
"welcome_to_cakepay": "Cake Payへようこそ!",
|
||||||
|
"what_is_payjoin": "Payjoin ?とは何ですか",
|
||||||
"what_is_silent_payments": "サイレント支払いとは何ですか?",
|
"what_is_silent_payments": "サイレント支払いとは何ですか?",
|
||||||
"widgets_address": "住所",
|
"widgets_address": "住所",
|
||||||
"widgets_or": "または",
|
"widgets_or": "または",
|
||||||
|
|
|
@ -1060,6 +1060,7 @@
|
||||||
"welcome_subtitle_new_wallet": "새로 시작하려면 아래의 새 지갑 생성을 탭하면 바로 시작할 수 있습니다.",
|
"welcome_subtitle_new_wallet": "새로 시작하려면 아래의 새 지갑 생성을 탭하면 바로 시작할 수 있습니다.",
|
||||||
"welcome_subtitle_restore_wallet": "Cake로 가져오려는 기존 지갑이 있는 경우 기존 지갑 복구를 선택하면 과정을 안내해 드립니다.",
|
"welcome_subtitle_restore_wallet": "Cake로 가져오려는 기존 지갑이 있는 경우 기존 지갑 복구를 선택하면 과정을 안내해 드립니다.",
|
||||||
"welcome_to_cakepay": "Cake Pay에 오신 것을 환영합니다!",
|
"welcome_to_cakepay": "Cake Pay에 오신 것을 환영합니다!",
|
||||||
|
"what_is_payjoin": "Payjoin ?이란?",
|
||||||
"what_is_silent_payments": "사일런트 페이먼트란 무엇인가요?",
|
"what_is_silent_payments": "사일런트 페이먼트란 무엇인가요?",
|
||||||
"widgets_address": "주소",
|
"widgets_address": "주소",
|
||||||
"widgets_or": "또는",
|
"widgets_or": "또는",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "လတ်ဆတ်စွာစတင်လိုပါကအောက်ကပိုက်ဆံအိတ်အသစ်ကိုဖန်တီးပါ။",
|
"welcome_subtitle_new_wallet": "လတ်ဆတ်စွာစတင်လိုပါကအောက်ကပိုက်ဆံအိတ်အသစ်ကိုဖန်တီးပါ။",
|
||||||
"welcome_subtitle_restore_wallet": "အကယ်. သင့်တွင်သင်ကိတ်မုန့်ထဲသို့ယူဆောင်လိုသောလက်ရှိပိုက်ဆံအိတ်ရှိပါက Restore Lestore Wallet ကိုရွေးပါ။",
|
"welcome_subtitle_restore_wallet": "အကယ်. သင့်တွင်သင်ကိတ်မုန့်ထဲသို့ယူဆောင်လိုသောလက်ရှိပိုက်ဆံအိတ်ရှိပါက Restore Lestore Wallet ကိုရွေးပါ။",
|
||||||
"welcome_to_cakepay": "Cake Pay မှကြိုဆိုပါသည်။",
|
"welcome_to_cakepay": "Cake Pay မှကြိုဆိုပါသည်။",
|
||||||
|
"what_is_payjoin": "Payjoin ဆိုတာဘာလဲ ?#",
|
||||||
"what_is_silent_payments": "အသံတိတ်ငွေပေးချေမှုဆိုတာဘာလဲ",
|
"what_is_silent_payments": "အသံတိတ်ငွေပေးချေမှုဆိုတာဘာလဲ",
|
||||||
"widgets_address": "လိပ်စာ",
|
"widgets_address": "လိပ်စာ",
|
||||||
"widgets_or": "သို့မဟုတ်",
|
"widgets_or": "သို့မဟုတ်",
|
||||||
|
|
|
@ -1060,6 +1060,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Als u opnieuw wilt beginnen, tikt u op de nieuwe portemonnee hieronder en u bent op weg naar de races.",
|
"welcome_subtitle_new_wallet": "Als u opnieuw wilt beginnen, tikt u op de nieuwe portemonnee hieronder en u bent op weg naar de races.",
|
||||||
"welcome_subtitle_restore_wallet": "Als je een bestaande portemonnee hebt die je in cake wilt brengen, kies dan gewoon om de bestaande portemonnee te herstellen en we zullen je door het proces leiden.",
|
"welcome_subtitle_restore_wallet": "Als je een bestaande portemonnee hebt die je in cake wilt brengen, kies dan gewoon om de bestaande portemonnee te herstellen en we zullen je door het proces leiden.",
|
||||||
"welcome_to_cakepay": "Welkom bij Cake Pay!",
|
"welcome_to_cakepay": "Welkom bij Cake Pay!",
|
||||||
|
"what_is_payjoin": "Wat is Payjoin ?",
|
||||||
"what_is_silent_payments": "Wat zijn stille betalingen?",
|
"what_is_silent_payments": "Wat zijn stille betalingen?",
|
||||||
"widgets_address": "Adres",
|
"widgets_address": "Adres",
|
||||||
"widgets_or": "of",
|
"widgets_or": "of",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Jeśli chcesz zacząć od nowa, dotknij Utwórz nowy portfel poniżej.",
|
"welcome_subtitle_new_wallet": "Jeśli chcesz zacząć od nowa, dotknij Utwórz nowy portfel poniżej.",
|
||||||
"welcome_subtitle_restore_wallet": "Jeśli masz istniejący portfel, który chcesz wnieść do ciasta, po prostu wybierz przywróć istniejący portfel, a my przeprowadzimy Cię przez proces.",
|
"welcome_subtitle_restore_wallet": "Jeśli masz istniejący portfel, który chcesz wnieść do ciasta, po prostu wybierz przywróć istniejący portfel, a my przeprowadzimy Cię przez proces.",
|
||||||
"welcome_to_cakepay": "Witamy w Cake Pay!",
|
"welcome_to_cakepay": "Witamy w Cake Pay!",
|
||||||
|
"what_is_payjoin": "Co to jest PayJoin ?",
|
||||||
"what_is_silent_payments": "Co to Silent Payments?",
|
"what_is_silent_payments": "Co to Silent Payments?",
|
||||||
"widgets_address": "Adres",
|
"widgets_address": "Adres",
|
||||||
"widgets_or": "lub",
|
"widgets_or": "lub",
|
||||||
|
|
|
@ -1062,6 +1062,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Se você quiser começar de novo, toque em criar uma nova carteira abaixo e você estará nas corridas.",
|
"welcome_subtitle_new_wallet": "Se você quiser começar de novo, toque em criar uma nova carteira abaixo e você estará nas corridas.",
|
||||||
"welcome_subtitle_restore_wallet": "Se você tem uma carteira existente que deseja trazer para o bolo, basta escolher a carteira existente e nós o guiaremos pelo processo.",
|
"welcome_subtitle_restore_wallet": "Se você tem uma carteira existente que deseja trazer para o bolo, basta escolher a carteira existente e nós o guiaremos pelo processo.",
|
||||||
"welcome_to_cakepay": "Bem-vindo ao Cake Pay!",
|
"welcome_to_cakepay": "Bem-vindo ao Cake Pay!",
|
||||||
|
"what_is_payjoin": "O que é Payjoin ?",
|
||||||
"what_is_silent_payments": "O que são pagamentos silenciosos?",
|
"what_is_silent_payments": "O que são pagamentos silenciosos?",
|
||||||
"widgets_address": "Endereço",
|
"widgets_address": "Endereço",
|
||||||
"widgets_or": "ou",
|
"widgets_or": "ou",
|
||||||
|
|
|
@ -1060,6 +1060,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Если вы хотите начать Fresh, нажмите «Создать новый кошелек» ниже, и вы отправитесь на гонки.",
|
"welcome_subtitle_new_wallet": "Если вы хотите начать Fresh, нажмите «Создать новый кошелек» ниже, и вы отправитесь на гонки.",
|
||||||
"welcome_subtitle_restore_wallet": "Если у вас есть существующий кошелек, который вы хотите принести в торт, просто выберите «Восстановить существующий кошелек», и мы проведем вас через процесс.",
|
"welcome_subtitle_restore_wallet": "Если у вас есть существующий кошелек, который вы хотите принести в торт, просто выберите «Восстановить существующий кошелек», и мы проведем вас через процесс.",
|
||||||
"welcome_to_cakepay": "Добро пожаловать в Cake Pay!",
|
"welcome_to_cakepay": "Добро пожаловать в Cake Pay!",
|
||||||
|
"what_is_payjoin": "Что такое Payjoin ?",
|
||||||
"what_is_silent_payments": "Что такое молчаливые платежи?",
|
"what_is_silent_payments": "Что такое молчаливые платежи?",
|
||||||
"widgets_address": "Адрес",
|
"widgets_address": "Адрес",
|
||||||
"widgets_or": "или",
|
"widgets_or": "или",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "หากคุณต้องการเริ่มต้นใหม่ให้แตะสร้างกระเป๋าเงินใหม่ด้านล่างและคุณจะออกจากการแข่งขัน",
|
"welcome_subtitle_new_wallet": "หากคุณต้องการเริ่มต้นใหม่ให้แตะสร้างกระเป๋าเงินใหม่ด้านล่างและคุณจะออกจากการแข่งขัน",
|
||||||
"welcome_subtitle_restore_wallet": "หากคุณมีกระเป๋าเงินที่มีอยู่ที่คุณต้องการนำเข้าเค้กให้เลือกคืนกระเป๋าเงินที่มีอยู่แล้วเราจะพาคุณผ่านกระบวนการ",
|
"welcome_subtitle_restore_wallet": "หากคุณมีกระเป๋าเงินที่มีอยู่ที่คุณต้องการนำเข้าเค้กให้เลือกคืนกระเป๋าเงินที่มีอยู่แล้วเราจะพาคุณผ่านกระบวนการ",
|
||||||
"welcome_to_cakepay": "ยินดีต้อนรับสู่ Cake Pay!",
|
"welcome_to_cakepay": "ยินดีต้อนรับสู่ Cake Pay!",
|
||||||
|
"what_is_payjoin": "PayJoin ? คืออะไร",
|
||||||
"what_is_silent_payments": "การชำระเงินเงียบคืออะไร?",
|
"what_is_silent_payments": "การชำระเงินเงียบคืออะไร?",
|
||||||
"widgets_address": "ที่อยู่",
|
"widgets_address": "ที่อยู่",
|
||||||
"widgets_or": "หรือ",
|
"widgets_or": "หรือ",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Kung nais mong simulan ang sariwa, tapikin ang Lumikha ng Bagong Wallet sa ibaba at pupunta ka sa mga karera.",
|
"welcome_subtitle_new_wallet": "Kung nais mong simulan ang sariwa, tapikin ang Lumikha ng Bagong Wallet sa ibaba at pupunta ka sa mga karera.",
|
||||||
"welcome_subtitle_restore_wallet": "Kung mayroon kang isang umiiral na pitaka na nais mong dalhin sa cake, piliin lamang ang ibalik ang umiiral na pitaka at lalakad ka namin sa proseso.",
|
"welcome_subtitle_restore_wallet": "Kung mayroon kang isang umiiral na pitaka na nais mong dalhin sa cake, piliin lamang ang ibalik ang umiiral na pitaka at lalakad ka namin sa proseso.",
|
||||||
"welcome_to_cakepay": "Maligayang pagdating sa Cake Pay!",
|
"welcome_to_cakepay": "Maligayang pagdating sa Cake Pay!",
|
||||||
|
"what_is_payjoin": "Ano ang Payjoin ?",
|
||||||
"what_is_silent_payments": "Ano ang tahimik na pagbabayad?",
|
"what_is_silent_payments": "Ano ang tahimik na pagbabayad?",
|
||||||
"widgets_address": "Address",
|
"widgets_address": "Address",
|
||||||
"widgets_or": "o",
|
"widgets_or": "o",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Taze başlamak istiyorsanız, aşağıda yeni cüzdan oluşturun ve yarışlara gidersiniz.",
|
"welcome_subtitle_new_wallet": "Taze başlamak istiyorsanız, aşağıda yeni cüzdan oluşturun ve yarışlara gidersiniz.",
|
||||||
"welcome_subtitle_restore_wallet": "Mevcut bir cüzdanınız varsa, kek içine getirmek istediğiniz, mevcut cüzdanı geri yüklemeyi seçin ve bu süreç boyunca size yol gösterelim.",
|
"welcome_subtitle_restore_wallet": "Mevcut bir cüzdanınız varsa, kek içine getirmek istediğiniz, mevcut cüzdanı geri yüklemeyi seçin ve bu süreç boyunca size yol gösterelim.",
|
||||||
"welcome_to_cakepay": "Cake Pay'e Hoş Geldiniz!",
|
"welcome_to_cakepay": "Cake Pay'e Hoş Geldiniz!",
|
||||||
|
"what_is_payjoin": "Payjoin nedir ?",
|
||||||
"what_is_silent_payments": "Sessiz ödemeler nedir?",
|
"what_is_silent_payments": "Sessiz ödemeler nedir?",
|
||||||
"widgets_address": "Adres",
|
"widgets_address": "Adres",
|
||||||
"widgets_or": "veya",
|
"widgets_or": "veya",
|
||||||
|
|
|
@ -1060,6 +1060,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Якщо ви хочете почати спочатку, торкніться Створити новий гаманець нижче, і ви будете поза конкуренціею.",
|
"welcome_subtitle_new_wallet": "Якщо ви хочете почати спочатку, торкніться Створити новий гаманець нижче, і ви будете поза конкуренціею.",
|
||||||
"welcome_subtitle_restore_wallet": "Якщо у вас є існуючий гаманець, який ви хочете ввести в торт, просто виберіть Відновити існуючий гаманець, і ми проведемо вас через процес.",
|
"welcome_subtitle_restore_wallet": "Якщо у вас є існуючий гаманець, який ви хочете ввести в торт, просто виберіть Відновити існуючий гаманець, і ми проведемо вас через процес.",
|
||||||
"welcome_to_cakepay": "Ласкаво просимо до Cake Pay!",
|
"welcome_to_cakepay": "Ласкаво просимо до Cake Pay!",
|
||||||
|
"what_is_payjoin": "Що таке Payjoin ?",
|
||||||
"what_is_silent_payments": "Що таке мовчазні платежі?",
|
"what_is_silent_payments": "Що таке мовчазні платежі?",
|
||||||
"widgets_address": "Адреса",
|
"widgets_address": "Адреса",
|
||||||
"widgets_or": "або",
|
"widgets_or": "або",
|
||||||
|
|
|
@ -1061,6 +1061,7 @@
|
||||||
"welcome_subtitle_new_wallet": "اگر آپ تازہ شروع کرنا چاہتے ہیں تو ، نیچے نیا پرس بنائیں پر تھپتھپائیں اور آپ ریسوں پر جائیں گے۔",
|
"welcome_subtitle_new_wallet": "اگر آپ تازہ شروع کرنا چاہتے ہیں تو ، نیچے نیا پرس بنائیں پر تھپتھپائیں اور آپ ریسوں پر جائیں گے۔",
|
||||||
"welcome_subtitle_restore_wallet": "اگر آپ کے پاس موجودہ پرس ہے تو آپ کیک میں لانا چاہتے ہیں تو ، موجودہ بٹوے کو بحال کریں کا انتخاب کریں اور ہم آپ کو اس عمل میں چلیں گے۔",
|
"welcome_subtitle_restore_wallet": "اگر آپ کے پاس موجودہ پرس ہے تو آپ کیک میں لانا چاہتے ہیں تو ، موجودہ بٹوے کو بحال کریں کا انتخاب کریں اور ہم آپ کو اس عمل میں چلیں گے۔",
|
||||||
"welcome_to_cakepay": "Cake پے میں خوش آمدید!",
|
"welcome_to_cakepay": "Cake پے میں خوش آمدید!",
|
||||||
|
"what_is_payjoin": "پے جوائن کیا ہے ?",
|
||||||
"what_is_silent_payments": "خاموش ادائیگی کیا ہے؟",
|
"what_is_silent_payments": "خاموش ادائیگی کیا ہے؟",
|
||||||
"widgets_address": "پتہ",
|
"widgets_address": "پتہ",
|
||||||
"widgets_or": "یا",
|
"widgets_or": "یا",
|
||||||
|
|
|
@ -1056,6 +1056,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Nếu bạn muốn bắt đầu mới, hãy nhấn Tạo ví mới bên dưới và bạn sẽ rời khỏi các cuộc đua.",
|
"welcome_subtitle_new_wallet": "Nếu bạn muốn bắt đầu mới, hãy nhấn Tạo ví mới bên dưới và bạn sẽ rời khỏi các cuộc đua.",
|
||||||
"welcome_subtitle_restore_wallet": "Nếu bạn có một ví hiện có mà bạn muốn mang vào bánh, chỉ cần chọn khôi phục ví hiện có và chúng tôi sẽ hướng dẫn bạn qua quá trình này.",
|
"welcome_subtitle_restore_wallet": "Nếu bạn có một ví hiện có mà bạn muốn mang vào bánh, chỉ cần chọn khôi phục ví hiện có và chúng tôi sẽ hướng dẫn bạn qua quá trình này.",
|
||||||
"welcome_to_cakepay": "Chào mừng đến với Cake Pay!",
|
"welcome_to_cakepay": "Chào mừng đến với Cake Pay!",
|
||||||
|
"what_is_payjoin": "Payjoin là gì",
|
||||||
"what_is_silent_payments": "Thanh toán im lặng là gì?",
|
"what_is_silent_payments": "Thanh toán im lặng là gì?",
|
||||||
"widgets_address": "Địa chỉ",
|
"widgets_address": "Địa chỉ",
|
||||||
"widgets_or": "hoặc",
|
"widgets_or": "hoặc",
|
||||||
|
|
|
@ -1060,6 +1060,7 @@
|
||||||
"welcome_subtitle_new_wallet": "Ti o ba fẹ bẹrẹ alabapade, tẹ Ṣẹda apamọwọ tuntun ni isalẹ iwọ yoo wa ni pipa si awọn ere-ije.",
|
"welcome_subtitle_new_wallet": "Ti o ba fẹ bẹrẹ alabapade, tẹ Ṣẹda apamọwọ tuntun ni isalẹ iwọ yoo wa ni pipa si awọn ere-ije.",
|
||||||
"welcome_subtitle_restore_wallet": "Ti o ba ni apamọwọ ti o wa tẹlẹ ti o fẹ lati mu wa sinu akara oyinbo, yan omi apamọwọ wa tẹlẹ ati pe a yoo rin ọ nipasẹ ilana naa.",
|
"welcome_subtitle_restore_wallet": "Ti o ba ni apamọwọ ti o wa tẹlẹ ti o fẹ lati mu wa sinu akara oyinbo, yan omi apamọwọ wa tẹlẹ ati pe a yoo rin ọ nipasẹ ilana naa.",
|
||||||
"welcome_to_cakepay": "Ẹ káàbọ̀ sí Cake Pay!",
|
"welcome_to_cakepay": "Ẹ káàbọ̀ sí Cake Pay!",
|
||||||
|
"what_is_payjoin": "Kini Payjoin?",
|
||||||
"what_is_silent_payments": "Kini awọn sisanwo ipalọlọ?",
|
"what_is_silent_payments": "Kini awọn sisanwo ipalọlọ?",
|
||||||
"widgets_address": "Àdírẹ́sì",
|
"widgets_address": "Àdírẹ́sì",
|
||||||
"widgets_or": "tàbí",
|
"widgets_or": "tàbí",
|
||||||
|
|
|
@ -1059,6 +1059,7 @@
|
||||||
"welcome_subtitle_new_wallet": "如果您想开始新鲜,请点击下面的创建新钱包,您将参加比赛。",
|
"welcome_subtitle_new_wallet": "如果您想开始新鲜,请点击下面的创建新钱包,您将参加比赛。",
|
||||||
"welcome_subtitle_restore_wallet": "如果您有一个现有的钱包要把蛋糕带入蛋糕,只需选择还原现有的钱包,我们将带您完成整个过程。",
|
"welcome_subtitle_restore_wallet": "如果您有一个现有的钱包要把蛋糕带入蛋糕,只需选择还原现有的钱包,我们将带您完成整个过程。",
|
||||||
"welcome_to_cakepay": "欢迎来到 Cake Pay!",
|
"welcome_to_cakepay": "欢迎来到 Cake Pay!",
|
||||||
|
"what_is_payjoin": "什么是工资join?",
|
||||||
"what_is_silent_payments": "什么是无声付款?",
|
"what_is_silent_payments": "什么是无声付款?",
|
||||||
"widgets_address": "地址",
|
"widgets_address": "地址",
|
||||||
"widgets_or": "或者",
|
"widgets_or": "或者",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue