mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
Cw 470 additional theming fixes (#1052)
* fix: revert theme order (bright-purple as default)
* fix: missing card borders
* fix: high contrast gradients (send/exchange)
* fix: contact list page
* feat: add picker search border and change high contrast search fill
* fix: balance page txts
* fix: accounts_subaddresses button
* fix: exchange page buttons
* Revert "fix: revert theme order (bright-purple as default)"
This reverts commit 8e13b2241c
.
* fix: themetype enum
* feat: add localized strings to backup dialog
* fix: onramper flow
This commit is contained in:
parent
5556d9ef96
commit
ee586ab514
36 changed files with 288 additions and 265 deletions
|
@ -1,8 +1,10 @@
|
||||||
import 'package:cake_wallet/.secrets.g.dart' as secrets;
|
import 'package:cake_wallet/.secrets.g.dart' as secrets;
|
||||||
|
import 'package:cake_wallet/generated/i18n.dart';
|
||||||
import 'package:cake_wallet/store/settings_store.dart';
|
import 'package:cake_wallet/store/settings_store.dart';
|
||||||
import 'package:cake_wallet/themes/theme_base.dart';
|
import 'package:cake_wallet/themes/extensions/cake_text_theme.dart';
|
||||||
import 'package:cw_core/crypto_currency.dart';
|
import 'package:cw_core/crypto_currency.dart';
|
||||||
import 'package:cw_core/wallet_base.dart';
|
import 'package:cw_core/wallet_base.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class OnRamperBuyProvider {
|
class OnRamperBuyProvider {
|
||||||
OnRamperBuyProvider({required SettingsStore settingsStore, required WalletBase wallet})
|
OnRamperBuyProvider({required SettingsStore settingsStore, required WalletBase wallet})
|
||||||
|
@ -27,7 +29,11 @@ class OnRamperBuyProvider {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Uri requestUrl() {
|
String getColorStr(Color color) {
|
||||||
|
return color.value.toRadixString(16).replaceAll(RegExp(r'^ff'), "");
|
||||||
|
}
|
||||||
|
|
||||||
|
Uri requestUrl(BuildContext context) {
|
||||||
String primaryColor,
|
String primaryColor,
|
||||||
secondaryColor,
|
secondaryColor,
|
||||||
primaryTextColor,
|
primaryTextColor,
|
||||||
|
@ -35,31 +41,16 @@ class OnRamperBuyProvider {
|
||||||
containerColor,
|
containerColor,
|
||||||
cardColor;
|
cardColor;
|
||||||
|
|
||||||
switch (_settingsStore.currentTheme.type) {
|
primaryColor = getColorStr(Theme.of(context).primaryColor);
|
||||||
case ThemeType.bright:
|
secondaryColor = getColorStr(Theme.of(context).colorScheme.background);
|
||||||
primaryColor = '815dfbff';
|
primaryTextColor = getColorStr(Theme.of(context).extension<CakeTextTheme>()!.titleColor);
|
||||||
secondaryColor = 'ffffff';
|
secondaryTextColor =
|
||||||
primaryTextColor = '141519';
|
getColorStr(Theme.of(context).extension<CakeTextTheme>()!.secondaryTextColor);
|
||||||
secondaryTextColor = '6b6f80';
|
containerColor = getColorStr(Theme.of(context).colorScheme.background);
|
||||||
containerColor = 'ffffff';
|
cardColor = getColorStr(Theme.of(context).cardColor);
|
||||||
cardColor = 'f2f0faff';
|
|
||||||
break;
|
if (_settingsStore.currentTheme.title == S.current.high_contrast_theme) {
|
||||||
case ThemeType.light:
|
cardColor = getColorStr(Colors.white);
|
||||||
primaryColor = '2194ffff';
|
|
||||||
secondaryColor = 'ffffff';
|
|
||||||
primaryTextColor = '141519';
|
|
||||||
secondaryTextColor = '6b6f80';
|
|
||||||
containerColor = 'ffffff';
|
|
||||||
cardColor = 'e5f7ff';
|
|
||||||
break;
|
|
||||||
case ThemeType.dark:
|
|
||||||
primaryColor = '456effff';
|
|
||||||
secondaryColor = '1b2747ff';
|
|
||||||
primaryTextColor = 'ffffff';
|
|
||||||
secondaryTextColor = 'ffffff';
|
|
||||||
containerColor = '19233C';
|
|
||||||
cardColor = '232f4fff';
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
final networkName = _wallet.currency.fullName?.toUpperCase().replaceAll(" ", "");
|
final networkName = _wallet.currency.fullName?.toUpperCase().replaceAll(" ", "");
|
||||||
|
|
|
@ -49,7 +49,7 @@ class MainActions {
|
||||||
case WalletType.ethereum:
|
case WalletType.ethereum:
|
||||||
case WalletType.monero:
|
case WalletType.monero:
|
||||||
if (viewModel.isEnabledBuyAction) {
|
if (viewModel.isEnabledBuyAction) {
|
||||||
final uri = getIt.get<OnRamperBuyProvider>().requestUrl();
|
final uri = getIt.get<OnRamperBuyProvider>().requestUrl(context);
|
||||||
if (DeviceInfo.instance.isMobile) {
|
if (DeviceInfo.instance.isMobile) {
|
||||||
Navigator.of(context)
|
Navigator.of(context)
|
||||||
.pushNamed(Routes.webViewPage, arguments: [S.of(context).buy, uri]);
|
.pushNamed(Routes.webViewPage, arguments: [S.of(context).buy, uri]);
|
||||||
|
|
|
@ -127,9 +127,9 @@ class BackupPage extends BasePage {
|
||||||
builder: (dialogContext) {
|
builder: (dialogContext) {
|
||||||
return AlertWithTwoActions(
|
return AlertWithTwoActions(
|
||||||
alertTitle: S.of(context).export_backup,
|
alertTitle: S.of(context).export_backup,
|
||||||
alertContent: 'Please select destination for the backup file.',
|
alertContent: S.of(context).select_destination,
|
||||||
rightButtonText: 'Save to Downloads',
|
rightButtonText: S.of(context).save_to_downloads,
|
||||||
leftButtonText: 'Share',
|
leftButtonText:S.of(context).share,
|
||||||
actionRightButton: () async {
|
actionRightButton: () async {
|
||||||
final permission = await Permission.storage.request();
|
final permission = await Permission.storage.request();
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import 'package:cake_wallet/core/auth_service.dart';
|
import 'package:cake_wallet/core/auth_service.dart';
|
||||||
import 'package:cake_wallet/entities/contact_base.dart';
|
import 'package:cake_wallet/entities/contact_base.dart';
|
||||||
import 'package:cake_wallet/entities/contact_record.dart';
|
import 'package:cake_wallet/entities/contact_record.dart';
|
||||||
|
import 'package:cake_wallet/themes/extensions/cake_text_theme.dart';
|
||||||
import 'package:cake_wallet/themes/extensions/exchange_page_theme.dart';
|
import 'package:cake_wallet/themes/extensions/exchange_page_theme.dart';
|
||||||
import 'package:cake_wallet/utils/show_bar.dart';
|
import 'package:cake_wallet/utils/show_bar.dart';
|
||||||
import 'package:cake_wallet/utils/show_pop_up.dart';
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
||||||
|
@ -39,7 +40,7 @@ class ContactListPage extends BasePage {
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Icon(
|
Icon(
|
||||||
Icons.add,
|
Icons.add,
|
||||||
color: Theme.of(context).dialogTheme.backgroundColor,
|
color: Theme.of(context).appBarTheme.titleTextStyle!.color,
|
||||||
size: 22.0,
|
size: 22.0,
|
||||||
),
|
),
|
||||||
ButtonTheme(
|
ButtonTheme(
|
||||||
|
@ -71,7 +72,7 @@ class ContactListPage extends BasePage {
|
||||||
@override
|
@override
|
||||||
Widget body(BuildContext context) {
|
Widget body(BuildContext context) {
|
||||||
return Container(
|
return Container(
|
||||||
padding: EdgeInsets.only(top: 20.0, bottom: 20.0),
|
padding: EdgeInsets.all(20.0),
|
||||||
child: Observer(builder: (_) {
|
child: Observer(builder: (_) {
|
||||||
final contacts = contactListViewModel.contactsToShow;
|
final contacts = contactListViewModel.contactsToShow;
|
||||||
final walletContacts = contactListViewModel.walletContactsToShow;
|
final walletContacts = contactListViewModel.walletContactsToShow;
|
||||||
|
@ -131,7 +132,6 @@ class ContactListPage extends BasePage {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
child: Container(
|
child: Container(
|
||||||
color: Colors.transparent,
|
|
||||||
padding: const EdgeInsets.only(top: 16, bottom: 16, right: 24),
|
padding: const EdgeInsets.only(top: 16, bottom: 16, right: 24),
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
@ -146,7 +146,7 @@ class ContactListPage extends BasePage {
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
fontWeight: FontWeight.normal,
|
fontWeight: FontWeight.normal,
|
||||||
color: Theme.of(context).dialogTheme.backgroundColor,
|
color: Theme.of(context).extension<CakeTextTheme>()!.titleColor,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
))
|
))
|
||||||
|
|
|
@ -182,9 +182,8 @@ class AddressPage extends BasePage {
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.all(Radius.circular(25)),
|
borderRadius: BorderRadius.all(Radius.circular(25)),
|
||||||
border: Border.all(
|
border: Border.all(
|
||||||
color: Theme.of(context)
|
color:
|
||||||
.extension<ReceivePageTheme>()!
|
Theme.of(context).extension<BalancePageTheme>()!.cardBorderColor,
|
||||||
.iconsBackgroundColor,
|
|
||||||
width: 1),
|
width: 1),
|
||||||
color: Theme.of(context)
|
color: Theme.of(context)
|
||||||
.extension<SyncIndicatorTheme>()!
|
.extension<SyncIndicatorTheme>()!
|
||||||
|
@ -201,13 +200,14 @@ class AddressPage extends BasePage {
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor),
|
color: Theme.of(context)
|
||||||
|
.extension<SyncIndicatorTheme>()!
|
||||||
|
.textColor),
|
||||||
)),
|
)),
|
||||||
Icon(
|
Icon(
|
||||||
Icons.arrow_forward_ios,
|
Icons.arrow_forward_ios,
|
||||||
size: 14,
|
size: 14,
|
||||||
color:
|
color: Theme.of(context).extension<SyncIndicatorTheme>()!.textColor,
|
||||||
Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
@ -2,7 +2,6 @@ import 'package:cake_wallet/routes.dart';
|
||||||
import 'package:cake_wallet/src/screens/exchange_trade/information_page.dart';
|
import 'package:cake_wallet/src/screens/exchange_trade/information_page.dart';
|
||||||
import 'package:cake_wallet/store/settings_store.dart';
|
import 'package:cake_wallet/store/settings_store.dart';
|
||||||
import 'package:cake_wallet/themes/extensions/sync_indicator_theme.dart';
|
import 'package:cake_wallet/themes/extensions/sync_indicator_theme.dart';
|
||||||
import 'package:cake_wallet/themes/theme_base.dart';
|
|
||||||
import 'package:cake_wallet/utils/feature_flag.dart';
|
import 'package:cake_wallet/utils/feature_flag.dart';
|
||||||
import 'package:cake_wallet/utils/show_pop_up.dart';
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
@ -77,9 +76,7 @@ class BalancePage extends StatelessWidget {
|
||||||
return IntroducingCard(
|
return IntroducingCard(
|
||||||
title: S.of(context).introducing_cake_pay,
|
title: S.of(context).introducing_cake_pay,
|
||||||
subTitle: S.of(context).cake_pay_learn_more,
|
subTitle: S.of(context).cake_pay_learn_more,
|
||||||
borderColor: settingsStore.currentTheme.type == ThemeType.bright
|
borderColor: Theme.of(context).extension<BalancePageTheme>()!.cardBorderColor,
|
||||||
? Color.fromRGBO(255, 255, 255, 0.2)
|
|
||||||
: Colors.transparent,
|
|
||||||
closeCard: dashboardViewModel.balanceViewModel.disableIntroCakePayCard);
|
closeCard: dashboardViewModel.balanceViewModel.disableIntroCakePayCard);
|
||||||
}
|
}
|
||||||
return Container();
|
return Container();
|
||||||
|
@ -139,9 +136,7 @@ class BalancePage extends StatelessWidget {
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
borderRadius: BorderRadius.circular(30.0),
|
borderRadius: BorderRadius.circular(30.0),
|
||||||
border: Border.all(
|
border: Border.all(
|
||||||
color: settingsStore.currentTheme.type == ThemeType.bright
|
color: Theme.of(context).extension<BalancePageTheme>()!.cardBorderColor,
|
||||||
? Color.fromRGBO(255, 255, 255, 0.2)
|
|
||||||
: Colors.transparent,
|
|
||||||
width: 1,
|
width: 1,
|
||||||
),
|
),
|
||||||
color: Theme.of(context).extension<SyncIndicatorTheme>()!.syncedBackgroundColor,
|
color: Theme.of(context).extension<SyncIndicatorTheme>()!.syncedBackgroundColor,
|
||||||
|
@ -282,7 +277,7 @@ class BalancePage extends StatelessWidget {
|
||||||
fontSize: 20,
|
fontSize: 20,
|
||||||
fontFamily: 'Lato',
|
fontFamily: 'Lato',
|
||||||
fontWeight: FontWeight.w400,
|
fontWeight: FontWeight.w400,
|
||||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
color: Theme.of(context).extension<BalancePageTheme>()!.assetTitleColor,
|
||||||
height: 1,
|
height: 1,
|
||||||
),
|
),
|
||||||
maxLines: 1,
|
maxLines: 1,
|
||||||
|
@ -296,7 +291,7 @@ class BalancePage extends StatelessWidget {
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
fontFamily: 'Lato',
|
fontFamily: 'Lato',
|
||||||
fontWeight: FontWeight.w400,
|
fontWeight: FontWeight.w400,
|
||||||
color: Theme.of(context).extension<DashboardPageTheme>()!.textColor,
|
color: Theme.of(context).extension<BalancePageTheme>()!.textColor,
|
||||||
height: 1,
|
height: 1,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -5,6 +5,7 @@ import 'package:cake_wallet/di.dart';
|
||||||
import 'package:cake_wallet/src/screens/exchange/widgets/desktop_exchange_cards_section.dart';
|
import 'package:cake_wallet/src/screens/exchange/widgets/desktop_exchange_cards_section.dart';
|
||||||
import 'package:cake_wallet/src/screens/exchange/widgets/mobile_exchange_cards_section.dart';
|
import 'package:cake_wallet/src/screens/exchange/widgets/mobile_exchange_cards_section.dart';
|
||||||
import 'package:cake_wallet/src/widgets/add_template_button.dart';
|
import 'package:cake_wallet/src/widgets/add_template_button.dart';
|
||||||
|
import 'package:cake_wallet/themes/extensions/send_page_theme.dart';
|
||||||
import 'package:cake_wallet/themes/theme_base.dart';
|
import 'package:cake_wallet/themes/theme_base.dart';
|
||||||
import 'package:cake_wallet/utils/debounce.dart';
|
import 'package:cake_wallet/utils/debounce.dart';
|
||||||
import 'package:cake_wallet/utils/responsive_layout_util.dart';
|
import 'package:cake_wallet/utils/responsive_layout_util.dart';
|
||||||
|
@ -629,7 +630,7 @@ class ExchangePage extends BasePage {
|
||||||
},
|
},
|
||||||
imageArrow: arrowBottomPurple,
|
imageArrow: arrowBottomPurple,
|
||||||
currencyButtonColor: Colors.transparent,
|
currencyButtonColor: Colors.transparent,
|
||||||
addressButtonsColor: Theme.of(context).focusColor,
|
addressButtonsColor: Theme.of(context).extension<SendPageTheme>()!.textFieldButtonColor,
|
||||||
borderColor: Theme.of(context).extension<ExchangePageTheme>()!.textFieldBorderTopPanelColor,
|
borderColor: Theme.of(context).extension<ExchangePageTheme>()!.textFieldBorderTopPanelColor,
|
||||||
currencyValueValidator: (value) {
|
currencyValueValidator: (value) {
|
||||||
return !exchangeViewModel.isFixedRateMode
|
return !exchangeViewModel.isFixedRateMode
|
||||||
|
@ -677,7 +678,7 @@ class ExchangePage extends BasePage {
|
||||||
exchangeViewModel.changeReceiveCurrency(currency: currency),
|
exchangeViewModel.changeReceiveCurrency(currency: currency),
|
||||||
imageArrow: arrowBottomCakeGreen,
|
imageArrow: arrowBottomCakeGreen,
|
||||||
currencyButtonColor: Colors.transparent,
|
currencyButtonColor: Colors.transparent,
|
||||||
addressButtonsColor: Theme.of(context).focusColor,
|
addressButtonsColor: Theme.of(context).extension<SendPageTheme>()!.textFieldButtonColor,
|
||||||
borderColor: Theme.of(context).extension<ExchangePageTheme>()!.textFieldBorderBottomPanelColor,
|
borderColor: Theme.of(context).extension<ExchangePageTheme>()!.textFieldBorderBottomPanelColor,
|
||||||
currencyValueValidator: (value) {
|
currencyValueValidator: (value) {
|
||||||
return exchangeViewModel.isFixedRateMode
|
return exchangeViewModel.isFixedRateMode
|
||||||
|
|
|
@ -17,24 +17,21 @@ class SearchBarWidget extends StatelessWidget {
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return TextFormField(
|
return TextFormField(
|
||||||
controller: searchController,
|
controller: searchController,
|
||||||
style: TextStyle(
|
style: TextStyle(color: Theme.of(context).extension<PickerTheme>()!.searchTextColor),
|
||||||
color: Theme.of(context).extension<PickerTheme>()!.searchTextColor),
|
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
hintText: hintText ?? S.of(context).search_currency,
|
hintText: hintText ?? S.of(context).search_currency,
|
||||||
hintStyle: TextStyle(
|
hintStyle: TextStyle(color: Theme.of(context).extension<PickerTheme>()!.searchHintColor),
|
||||||
color: Theme.of(context).extension<PickerTheme>()!.searchHintColor),
|
|
||||||
prefixIcon: Image.asset("assets/images/search_icon.png",
|
prefixIcon: Image.asset("assets/images/search_icon.png",
|
||||||
color: Theme.of(context).extension<PickerTheme>()!.searchIconColor),
|
color: Theme.of(context).extension<PickerTheme>()!.searchIconColor),
|
||||||
filled: true,
|
filled: true,
|
||||||
fillColor: Theme.of(context)
|
fillColor: Theme.of(context).extension<PickerTheme>()!.searchBackgroundFillColor,
|
||||||
.extension<PickerTheme>()!
|
|
||||||
.searchBackgroundFillColor,
|
|
||||||
alignLabelWithHint: false,
|
alignLabelWithHint: false,
|
||||||
contentPadding: const EdgeInsets.symmetric(vertical: 4, horizontal: 16),
|
contentPadding: const EdgeInsets.symmetric(vertical: 4, horizontal: 16),
|
||||||
enabledBorder: OutlineInputBorder(
|
enabledBorder: OutlineInputBorder(
|
||||||
borderRadius: BorderRadius.circular(borderRadius),
|
borderRadius: BorderRadius.circular(borderRadius),
|
||||||
borderSide: const BorderSide(
|
borderSide: BorderSide(
|
||||||
color: Colors.transparent,
|
color: Theme.of(context).extension<PickerTheme>()!.searchBorderColor ??
|
||||||
|
Colors.transparent,
|
||||||
)),
|
)),
|
||||||
focusedBorder: OutlineInputBorder(
|
focusedBorder: OutlineInputBorder(
|
||||||
borderRadius: BorderRadius.circular(borderRadius),
|
borderRadius: BorderRadius.circular(borderRadius),
|
||||||
|
|
|
@ -6,13 +6,15 @@ class PickerTheme extends ThemeExtension<PickerTheme> {
|
||||||
final Color searchBackgroundFillColor;
|
final Color searchBackgroundFillColor;
|
||||||
final Color searchTextColor;
|
final Color searchTextColor;
|
||||||
final Color? searchHintColor;
|
final Color? searchHintColor;
|
||||||
|
final Color? searchBorderColor;
|
||||||
|
|
||||||
PickerTheme(
|
PickerTheme(
|
||||||
{required this.dividerColor,
|
{required this.dividerColor,
|
||||||
this.searchIconColor,
|
this.searchIconColor,
|
||||||
required this.searchBackgroundFillColor,
|
required this.searchBackgroundFillColor,
|
||||||
required this.searchTextColor,
|
required this.searchTextColor,
|
||||||
this.searchHintColor});
|
this.searchHintColor,
|
||||||
|
this.searchBorderColor});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
PickerTheme copyWith(
|
PickerTheme copyWith(
|
||||||
|
@ -20,14 +22,15 @@ class PickerTheme extends ThemeExtension<PickerTheme> {
|
||||||
Color? searchIconColor,
|
Color? searchIconColor,
|
||||||
Color? searchBackgroundFillColor,
|
Color? searchBackgroundFillColor,
|
||||||
Color? searchTextColor,
|
Color? searchTextColor,
|
||||||
Color? searchHintColor}) =>
|
Color? searchHintColor,
|
||||||
|
Color? searchBorderColor}) =>
|
||||||
PickerTheme(
|
PickerTheme(
|
||||||
dividerColor: dividerColor ?? this.dividerColor,
|
dividerColor: dividerColor ?? this.dividerColor,
|
||||||
searchIconColor: searchIconColor ?? this.searchIconColor,
|
searchIconColor: searchIconColor ?? this.searchIconColor,
|
||||||
searchBackgroundFillColor:
|
searchBackgroundFillColor: searchBackgroundFillColor ?? this.searchBackgroundFillColor,
|
||||||
searchBackgroundFillColor ?? this.searchBackgroundFillColor,
|
|
||||||
searchTextColor: searchTextColor ?? this.searchTextColor,
|
searchTextColor: searchTextColor ?? this.searchTextColor,
|
||||||
searchHintColor: searchHintColor ?? this.searchHintColor);
|
searchHintColor: searchHintColor ?? this.searchHintColor,
|
||||||
|
searchBorderColor: searchBorderColor ?? this.searchBorderColor);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
PickerTheme lerp(ThemeExtension<PickerTheme>? other, double t) {
|
PickerTheme lerp(ThemeExtension<PickerTheme>? other, double t) {
|
||||||
|
@ -36,19 +39,14 @@ class PickerTheme extends ThemeExtension<PickerTheme> {
|
||||||
}
|
}
|
||||||
|
|
||||||
return PickerTheme(
|
return PickerTheme(
|
||||||
dividerColor:
|
dividerColor: Color.lerp(dividerColor, other.dividerColor, t) ?? dividerColor,
|
||||||
Color.lerp(dividerColor, other.dividerColor, t) ?? dividerColor,
|
searchIconColor: Color.lerp(searchIconColor, other.searchIconColor, t) ?? searchIconColor,
|
||||||
searchIconColor:
|
searchBackgroundFillColor:
|
||||||
Color.lerp(searchIconColor, other.searchIconColor, t) ??
|
Color.lerp(searchBackgroundFillColor, other.searchBackgroundFillColor, t) ??
|
||||||
searchIconColor,
|
searchBackgroundFillColor,
|
||||||
searchBackgroundFillColor: Color.lerp(searchBackgroundFillColor,
|
searchTextColor: Color.lerp(searchTextColor, other.searchTextColor, t) ?? searchTextColor,
|
||||||
other.searchBackgroundFillColor, t) ??
|
searchHintColor: Color.lerp(searchHintColor, other.searchHintColor, t) ?? searchHintColor,
|
||||||
searchBackgroundFillColor,
|
searchBorderColor:
|
||||||
searchTextColor:
|
Color.lerp(searchBorderColor, other.searchBorderColor, t) ?? searchBorderColor);
|
||||||
Color.lerp(searchTextColor, other.searchTextColor, t) ??
|
|
||||||
searchTextColor,
|
|
||||||
searchHintColor:
|
|
||||||
Color.lerp(searchHintColor, other.searchHintColor, t) ??
|
|
||||||
searchHintColor);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,14 +39,12 @@ class HighContrastTheme extends MoneroLightTheme {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
CakeTextTheme get cakeTextTheme => super.cakeTextTheme.copyWith(
|
CakeTextTheme get cakeTextTheme => super.cakeTextTheme.copyWith(
|
||||||
buttonTextColor: Colors.white,
|
buttonTextColor: Colors.white, buttonSecondaryTextColor: Colors.white.withOpacity(0.5));
|
||||||
buttonSecondaryTextColor: Colors.white.withOpacity(0.5));
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
SyncIndicatorTheme get syncIndicatorStyle =>
|
SyncIndicatorTheme get syncIndicatorStyle => super
|
||||||
super.syncIndicatorStyle.copyWith(
|
.syncIndicatorStyle
|
||||||
textColor: colorScheme.background,
|
.copyWith(textColor: colorScheme.background, syncedBackgroundColor: containerColor);
|
||||||
syncedBackgroundColor: containerColor);
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
BalancePageTheme get balancePageTheme => super.balancePageTheme.copyWith(
|
BalancePageTheme get balancePageTheme => super.balancePageTheme.copyWith(
|
||||||
|
@ -56,32 +54,28 @@ class HighContrastTheme extends MoneroLightTheme {
|
||||||
balanceAmountColor: Colors.white);
|
balanceAmountColor: Colors.white);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
DashboardPageTheme get dashboardPageTheme =>
|
DashboardPageTheme get dashboardPageTheme => super.dashboardPageTheme.copyWith(
|
||||||
super.dashboardPageTheme.copyWith(
|
textColor: Colors.black,
|
||||||
textColor: Colors.black,
|
cardTextColor: Colors.white,
|
||||||
cardTextColor: Colors.white,
|
mainActionsIconColor: Colors.white,
|
||||||
mainActionsIconColor: Colors.white,
|
indicatorDotTheme:
|
||||||
indicatorDotTheme: IndicatorDotTheme(
|
IndicatorDotTheme(indicatorColor: Colors.grey, activeIndicatorColor: Colors.black));
|
||||||
indicatorColor: Colors.grey, activeIndicatorColor: Colors.black));
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
ExchangePageTheme get exchangePageTheme => super
|
ExchangePageTheme get exchangePageTheme => super.exchangePageTheme.copyWith(
|
||||||
.exchangePageTheme
|
firstGradientTopPanelColor: primaryColor, firstGradientBottomPanelColor: containerColor);
|
||||||
.copyWith(firstGradientTopPanelColor: containerColor);
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
SendPageTheme get sendPageTheme => super.sendPageTheme.copyWith(
|
SendPageTheme get sendPageTheme => super.sendPageTheme.copyWith(
|
||||||
templateTitleColor: Colors.white,
|
templateTitleColor: Colors.white,
|
||||||
templateBackgroundColor: Colors.black,
|
templateBackgroundColor: Colors.black,
|
||||||
firstGradientColor: containerColor);
|
firstGradientColor: primaryColor);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
AddressTheme get addressTheme =>
|
AddressTheme get addressTheme => super.addressTheme.copyWith(actionButtonColor: Colors.grey);
|
||||||
super.addressTheme.copyWith(actionButtonColor: Colors.grey);
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
FilterTheme get filterTheme =>
|
FilterTheme get filterTheme => super.filterTheme.copyWith(iconColor: Colors.white);
|
||||||
super.filterTheme.copyWith(iconColor: Colors.white);
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
CakeMenuTheme get menuTheme => super.menuTheme.copyWith(
|
CakeMenuTheme get menuTheme => super.menuTheme.copyWith(
|
||||||
|
@ -91,10 +85,11 @@ class HighContrastTheme extends MoneroLightTheme {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
PickerTheme get pickerTheme => super.pickerTheme.copyWith(
|
PickerTheme get pickerTheme => super.pickerTheme.copyWith(
|
||||||
searchIconColor: Colors.white,
|
searchIconColor: primaryColor,
|
||||||
searchHintColor: Colors.white,
|
searchHintColor: primaryColor,
|
||||||
searchTextColor: Colors.white,
|
searchTextColor: primaryColor,
|
||||||
searchBackgroundFillColor: Colors.grey);
|
searchBackgroundFillColor: Colors.white,
|
||||||
|
searchBorderColor: primaryColor);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
AccountListTheme get accountListTheme => super.accountListTheme.copyWith(
|
AccountListTheme get accountListTheme => super.accountListTheme.copyWith(
|
||||||
|
@ -106,13 +101,10 @@ class HighContrastTheme extends MoneroLightTheme {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
ReceivePageTheme get receivePageTheme => super.receivePageTheme.copyWith(
|
ReceivePageTheme get receivePageTheme => super.receivePageTheme.copyWith(
|
||||||
tilesTextColor: Colors.white,
|
tilesTextColor: Colors.white, iconsBackgroundColor: Colors.grey, iconsColor: Colors.black);
|
||||||
iconsBackgroundColor: Colors.grey,
|
|
||||||
iconsColor: Colors.black);
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
ThemeData get themeData => super.themeData.copyWith(
|
ThemeData get themeData => super.themeData.copyWith(
|
||||||
disabledColor: Colors.grey,
|
disabledColor: Colors.grey,
|
||||||
dialogTheme:
|
dialogTheme: super.themeData.dialogTheme.copyWith(backgroundColor: Colors.white));
|
||||||
super.themeData.dialogTheme.copyWith(backgroundColor: Colors.white));
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@ import 'package:cake_wallet/themes/extensions/transaction_trade_theme.dart';
|
||||||
import 'package:cake_wallet/themes/extensions/wallet_list_theme.dart';
|
import 'package:cake_wallet/themes/extensions/wallet_list_theme.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
enum ThemeType { bright, light, dark }
|
enum ThemeType { light, bright, dark }
|
||||||
|
|
||||||
abstract class ThemeBase {
|
abstract class ThemeBase {
|
||||||
ThemeBase({required this.raw}) {
|
ThemeBase({required this.raw}) {
|
||||||
|
|
|
@ -680,5 +680,7 @@
|
||||||
"support_title_guides": "أدلة محفظة كعكة",
|
"support_title_guides": "أدلة محفظة كعكة",
|
||||||
"support_description_guides": "توثيق ودعم القضايا المشتركة",
|
"support_description_guides": "توثيق ودعم القضايا المشتركة",
|
||||||
"support_title_other_links": "روابط دعم أخرى",
|
"support_title_other_links": "روابط دعم أخرى",
|
||||||
"support_description_other_links": "انضم إلى مجتمعاتنا أو تصل إلينا شركائنا من خلال أساليب أخرى"
|
"support_description_other_links": "انضم إلى مجتمعاتنا أو تصل إلينا شركائنا من خلال أساليب أخرى",
|
||||||
|
"select_destination": ".ﻲﻃﺎﻴﺘﺣﻻﺍ ﺦﺴﻨﻟﺍ ﻒﻠﻣ ﺔﻬﺟﻭ ﺪﻳﺪﺤﺗ ءﺎﺟﺮﻟﺍ",
|
||||||
|
"save_to_downloads": "ﺕﻼﻳﺰﻨﺘﻟﺍ ﻲﻓ ﻆﻔﺣ"
|
||||||
}
|
}
|
||||||
|
|
|
@ -626,18 +626,18 @@
|
||||||
"setup_totp_recommended": "Настройка на TOTP (препоръчително)",
|
"setup_totp_recommended": "Настройка на TOTP (препоръчително)",
|
||||||
"disable_buy": "Деактивирайте действието за покупка",
|
"disable_buy": "Деактивирайте действието за покупка",
|
||||||
"disable_sell": "Деактивирайте действието за продажба",
|
"disable_sell": "Деактивирайте действието за продажба",
|
||||||
"cake_2fa_preset" : "Торта 2FA Preset",
|
"cake_2fa_preset": "Торта 2FA Preset",
|
||||||
"narrow": "Тесен",
|
"narrow": "Тесен",
|
||||||
"normal": "нормално",
|
"normal": "нормално",
|
||||||
"aggressive": "Прекалено усърден",
|
"aggressive": "Прекалено усърден",
|
||||||
"require_for_assessing_wallet": "Изискване за достъп до портфейла",
|
"require_for_assessing_wallet": "Изискване за достъп до портфейла",
|
||||||
"require_for_sends_to_non_contacts" : "Изискване за изпращане до лица без контакт",
|
"require_for_sends_to_non_contacts": "Изискване за изпращане до лица без контакт",
|
||||||
"require_for_sends_to_contacts" : "Изискване за изпращане до контакти",
|
"require_for_sends_to_contacts": "Изискване за изпращане до контакти",
|
||||||
"require_for_sends_to_internal_wallets" : "Изискване за изпращане до вътрешни портфейли",
|
"require_for_sends_to_internal_wallets": "Изискване за изпращане до вътрешни портфейли",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Изискване за обмен към вътрешни портфейли",
|
"require_for_exchanges_to_internal_wallets": "Изискване за обмен към вътрешни портфейли",
|
||||||
"require_for_adding_contacts" : "Изисква се за добавяне на контакти",
|
"require_for_adding_contacts": "Изисква се за добавяне на контакти",
|
||||||
"require_for_creating_new_wallets" : "Изискване за създаване на нови портфейли",
|
"require_for_creating_new_wallets": "Изискване за създаване на нови портфейли",
|
||||||
"require_for_all_security_and_backup_settings" : "Изисква се за всички настройки за сигурност и архивиране",
|
"require_for_all_security_and_backup_settings": "Изисква се за всички настройки за сигурност и архивиране",
|
||||||
"available_balance_description": "Това е балансът, който можете да използвате за покупка на криптовалути. Това не включва замразените средства.",
|
"available_balance_description": "Това е балансът, който можете да използвате за покупка на криптовалути. Това не включва замразените средства.",
|
||||||
"syncing_wallet_alert_title": "Вашият портфейл се синхронизира",
|
"syncing_wallet_alert_title": "Вашият портфейл се синхронизира",
|
||||||
"syncing_wallet_alert_content": "Списъкът ви с баланс и транзакции може да не е пълен, докато в горната част не пише „СИНХРОНИЗИРАН“. Кликнете/докоснете, за да научите повече.",
|
"syncing_wallet_alert_content": "Списъкът ви с баланс и транзакции може да не е пълен, докато в горната част не пише „СИНХРОНИЗИРАН“. Кликнете/докоснете, за да научите повече.",
|
||||||
|
@ -676,5 +676,7 @@
|
||||||
"support_title_guides": "Ръководства за портфейл за торта",
|
"support_title_guides": "Ръководства за портфейл за торта",
|
||||||
"support_description_guides": "Документация и подкрепа за общи проблеми",
|
"support_description_guides": "Документация и подкрепа за общи проблеми",
|
||||||
"support_title_other_links": "Други връзки за поддръжка",
|
"support_title_other_links": "Други връзки за поддръжка",
|
||||||
"support_description_other_links": "Присъединете се към нашите общности или се свържете с нас нашите партньори чрез други методи"
|
"support_description_other_links": "Присъединете се към нашите общности или се свържете с нас нашите партньори чрез други методи",
|
||||||
|
"select_destination": "Моля, изберете дестинация за архивния файл.",
|
||||||
|
"save_to_downloads": "Запазване в Изтегляния"
|
||||||
}
|
}
|
||||||
|
|
|
@ -626,18 +626,18 @@
|
||||||
"setup_totp_recommended": "Nastavit TOTP (doporučeno)",
|
"setup_totp_recommended": "Nastavit TOTP (doporučeno)",
|
||||||
"disable_buy": "Zakázat akci nákupu",
|
"disable_buy": "Zakázat akci nákupu",
|
||||||
"disable_sell": "Zakázat akci prodeje",
|
"disable_sell": "Zakázat akci prodeje",
|
||||||
"cake_2fa_preset" : "Předvolba Cake 2FA",
|
"cake_2fa_preset": "Předvolba Cake 2FA",
|
||||||
"narrow": "Úzký",
|
"narrow": "Úzký",
|
||||||
"normal": "Normální",
|
"normal": "Normální",
|
||||||
"aggressive": "Agresivní",
|
"aggressive": "Agresivní",
|
||||||
"require_for_assessing_wallet": "Vyžadovat pro přístup k peněžence",
|
"require_for_assessing_wallet": "Vyžadovat pro přístup k peněžence",
|
||||||
"require_for_sends_to_non_contacts" : "Vyžadovat pro odesílání nekontaktním osobám",
|
"require_for_sends_to_non_contacts": "Vyžadovat pro odesílání nekontaktním osobám",
|
||||||
"require_for_sends_to_contacts" : "Vyžadovat pro odeslání kontaktům",
|
"require_for_sends_to_contacts": "Vyžadovat pro odeslání kontaktům",
|
||||||
"require_for_sends_to_internal_wallets" : "Vyžadovat pro odesílání do interních peněženek",
|
"require_for_sends_to_internal_wallets": "Vyžadovat pro odesílání do interních peněženek",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Vyžadovat pro výměny do interních peněženek",
|
"require_for_exchanges_to_internal_wallets": "Vyžadovat pro výměny do interních peněženek",
|
||||||
"require_for_adding_contacts" : "Vyžadovat pro přidání kontaktů",
|
"require_for_adding_contacts": "Vyžadovat pro přidání kontaktů",
|
||||||
"require_for_creating_new_wallets" : "Vyžadovat pro vytváření nových peněženek",
|
"require_for_creating_new_wallets": "Vyžadovat pro vytváření nových peněženek",
|
||||||
"require_for_all_security_and_backup_settings" : "Vyžadovat všechna nastavení zabezpečení a zálohování",
|
"require_for_all_security_and_backup_settings": "Vyžadovat všechna nastavení zabezpečení a zálohování",
|
||||||
"available_balance_description": "Dostupná částka je částka, kterou můžete okamžitě utratit. Zmrazená částka je částka, která ještě není k dispozici, protože ještě nebyla potvrzena síťovým protokolem.",
|
"available_balance_description": "Dostupná částka je částka, kterou můžete okamžitě utratit. Zmrazená částka je částka, která ještě není k dispozici, protože ještě nebyla potvrzena síťovým protokolem.",
|
||||||
"syncing_wallet_alert_title": "Vaše peněženka se synchronizuje",
|
"syncing_wallet_alert_title": "Vaše peněženka se synchronizuje",
|
||||||
"syncing_wallet_alert_content": "Váš seznam zůstatků a transakcí nemusí být úplný, dokud nebude nahoře uvedeno „SYNCHRONIZOVANÉ“. Kliknutím/klepnutím se dozvíte více.",
|
"syncing_wallet_alert_content": "Váš seznam zůstatků a transakcí nemusí být úplný, dokud nebude nahoře uvedeno „SYNCHRONIZOVANÉ“. Kliknutím/klepnutím se dozvíte více.",
|
||||||
|
@ -676,5 +676,7 @@
|
||||||
"support_title_guides": "Průvodce peněženkami dortu",
|
"support_title_guides": "Průvodce peněženkami dortu",
|
||||||
"support_description_guides": "Dokumentace a podpora běžných otázek",
|
"support_description_guides": "Dokumentace a podpora běžných otázek",
|
||||||
"support_title_other_links": "Další odkazy na podporu",
|
"support_title_other_links": "Další odkazy na podporu",
|
||||||
"support_description_other_links": "Připojte se k našim komunitám nebo se k nám oslovte další metody"
|
"support_description_other_links": "Připojte se k našim komunitám nebo se k nám oslovte další metody",
|
||||||
|
"select_destination": "Vyberte cíl pro záložní soubor.",
|
||||||
|
"save_to_downloads": "Uložit do Stažených souborů"
|
||||||
}
|
}
|
||||||
|
|
|
@ -640,18 +640,18 @@
|
||||||
"high_contrast_theme": "Kontrastreiches Thema",
|
"high_contrast_theme": "Kontrastreiches Thema",
|
||||||
"matrix_green_dark_theme": "Matrix Green Dark Theme",
|
"matrix_green_dark_theme": "Matrix Green Dark Theme",
|
||||||
"monero_light_theme": "Monero Light-Thema",
|
"monero_light_theme": "Monero Light-Thema",
|
||||||
"cake_2fa_preset" : "Kuchen 2FA-Voreinstellung",
|
"cake_2fa_preset": "Kuchen 2FA-Voreinstellung",
|
||||||
"narrow": "Eng",
|
"narrow": "Eng",
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
"aggressive": "Übereifrig",
|
"aggressive": "Übereifrig",
|
||||||
"require_for_assessing_wallet": "Für den Zugriff auf die Wallet erforderlich",
|
"require_for_assessing_wallet": "Für den Zugriff auf die Wallet erforderlich",
|
||||||
"require_for_sends_to_non_contacts" : "Erforderlich für Versendungen an Nichtkontakte",
|
"require_for_sends_to_non_contacts": "Erforderlich für Versendungen an Nichtkontakte",
|
||||||
"require_for_sends_to_contacts" : "Erforderlich für Versendungen an Kontakte",
|
"require_for_sends_to_contacts": "Erforderlich für Versendungen an Kontakte",
|
||||||
"require_for_sends_to_internal_wallets" : "Erforderlich für Sendungen an interne Wallets",
|
"require_for_sends_to_internal_wallets": "Erforderlich für Sendungen an interne Wallets",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Erforderlich für den Umtausch in interne Wallets",
|
"require_for_exchanges_to_internal_wallets": "Erforderlich für den Umtausch in interne Wallets",
|
||||||
"require_for_adding_contacts" : "Erforderlich zum Hinzufügen von Kontakten",
|
"require_for_adding_contacts": "Erforderlich zum Hinzufügen von Kontakten",
|
||||||
"require_for_creating_new_wallets" : "Erforderlich zum Erstellen neuer Wallets",
|
"require_for_creating_new_wallets": "Erforderlich zum Erstellen neuer Wallets",
|
||||||
"require_for_all_security_and_backup_settings" : "Für alle Sicherheits- und Sicherungseinstellungen erforderlich",
|
"require_for_all_security_and_backup_settings": "Für alle Sicherheits- und Sicherungseinstellungen erforderlich",
|
||||||
"available_balance_description": "Verfügbarer Saldo ist der Betrag, den Sie sofort ausgeben können. Dieser Betrag kann sich ändern, wenn Sie eine Transaktion senden oder empfangen.",
|
"available_balance_description": "Verfügbarer Saldo ist der Betrag, den Sie sofort ausgeben können. Dieser Betrag kann sich ändern, wenn Sie eine Transaktion senden oder empfangen.",
|
||||||
"syncing_wallet_alert_title": "Ihr Wallet wird synchronisiert",
|
"syncing_wallet_alert_title": "Ihr Wallet wird synchronisiert",
|
||||||
"syncing_wallet_alert_content": "Ihr Kontostand und Ihre Transaktionsliste sind möglicherweise erst vollständig, wenn oben „SYNCHRONISIERT“ steht. Klicken/tippen Sie, um mehr zu erfahren.",
|
"syncing_wallet_alert_content": "Ihr Kontostand und Ihre Transaktionsliste sind möglicherweise erst vollständig, wenn oben „SYNCHRONISIERT“ steht. Klicken/tippen Sie, um mehr zu erfahren.",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Cake Wallet Guides",
|
"support_title_guides": "Cake Wallet Guides",
|
||||||
"support_description_guides": "Dokumentation und Hilfe für bekannte Probleme",
|
"support_description_guides": "Dokumentation und Hilfe für bekannte Probleme",
|
||||||
"support_title_other_links": "Andere Support-Links",
|
"support_title_other_links": "Andere Support-Links",
|
||||||
"support_description_other_links": "Treten Sie unseren Communities bei oder erreichen Sie uns oder unsere Partner über andere Methoden"
|
"support_description_other_links": "Treten Sie unseren Communities bei oder erreichen Sie uns oder unsere Partner über andere Methoden",
|
||||||
|
"select_destination": "Bitte wählen Sie das Ziel für die Sicherungsdatei aus.",
|
||||||
|
"save_to_downloads": "Unter „Downloads“ speichern"
|
||||||
}
|
}
|
||||||
|
|
|
@ -640,18 +640,18 @@
|
||||||
"high_contrast_theme": "High Contrast Theme",
|
"high_contrast_theme": "High Contrast Theme",
|
||||||
"matrix_green_dark_theme": "Matrix Green Dark Theme",
|
"matrix_green_dark_theme": "Matrix Green Dark Theme",
|
||||||
"monero_light_theme": "Monero Light Theme",
|
"monero_light_theme": "Monero Light Theme",
|
||||||
"cake_2fa_preset" : "Cake 2FA Preset",
|
"cake_2fa_preset": "Cake 2FA Preset",
|
||||||
"narrow": "Narrow",
|
"narrow": "Narrow",
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
"aggressive": "Aggressive",
|
"aggressive": "Aggressive",
|
||||||
"require_for_assessing_wallet": "Require for accessing wallet",
|
"require_for_assessing_wallet": "Require for accessing wallet",
|
||||||
"require_for_sends_to_non_contacts" : "Require for sends to non-contacts",
|
"require_for_sends_to_non_contacts": "Require for sends to non-contacts",
|
||||||
"require_for_sends_to_contacts" : "Require for sends to contacts",
|
"require_for_sends_to_contacts": "Require for sends to contacts",
|
||||||
"require_for_sends_to_internal_wallets" : "Require for sends to internal wallets",
|
"require_for_sends_to_internal_wallets": "Require for sends to internal wallets",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Require for exchanges to internal wallets",
|
"require_for_exchanges_to_internal_wallets": "Require for exchanges to internal wallets",
|
||||||
"require_for_adding_contacts" : "Require for adding contacts",
|
"require_for_adding_contacts": "Require for adding contacts",
|
||||||
"require_for_creating_new_wallets" : "Require for creating new wallets",
|
"require_for_creating_new_wallets": "Require for creating new wallets",
|
||||||
"require_for_all_security_and_backup_settings" : "Require for all security and backup settings",
|
"require_for_all_security_and_backup_settings": "Require for all security and backup settings",
|
||||||
"available_balance_description": "The “Available Balance” or “Confirmed Balance” are funds that can be spent immediately. If funds appear in the lower balance but not the top balance, then you must wait a few minutes for the incoming funds to get more network confirmations. After they get more confirmations, they will be spendable.",
|
"available_balance_description": "The “Available Balance” or “Confirmed Balance” are funds that can be spent immediately. If funds appear in the lower balance but not the top balance, then you must wait a few minutes for the incoming funds to get more network confirmations. After they get more confirmations, they will be spendable.",
|
||||||
"syncing_wallet_alert_title": "Your wallet is syncing",
|
"syncing_wallet_alert_title": "Your wallet is syncing",
|
||||||
"syncing_wallet_alert_content": "Your balance and transaction list may not be complete until it says “SYNCHRONIZED” at the top. Click/tap to learn more.",
|
"syncing_wallet_alert_content": "Your balance and transaction list may not be complete until it says “SYNCHRONIZED” at the top. Click/tap to learn more.",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Cake Wallet guides",
|
"support_title_guides": "Cake Wallet guides",
|
||||||
"support_description_guides": "Documentation and support for common issues",
|
"support_description_guides": "Documentation and support for common issues",
|
||||||
"support_title_other_links": "Other support links",
|
"support_title_other_links": "Other support links",
|
||||||
"support_description_other_links": "Join our communities or reach us our our partners through other methods"
|
"support_description_other_links": "Join our communities or reach us our our partners through other methods",
|
||||||
|
"select_destination": "Please select destination for the backup file.",
|
||||||
|
"save_to_downloads": "Save to Downloads"
|
||||||
}
|
}
|
||||||
|
|
|
@ -640,18 +640,18 @@
|
||||||
"high_contrast_theme": "Tema de alto contraste",
|
"high_contrast_theme": "Tema de alto contraste",
|
||||||
"matrix_green_dark_theme": "Matrix verde oscuro tema",
|
"matrix_green_dark_theme": "Matrix verde oscuro tema",
|
||||||
"monero_light_theme": "Tema ligero de Monero",
|
"monero_light_theme": "Tema ligero de Monero",
|
||||||
"cake_2fa_preset" : "Pastel 2FA preestablecido",
|
"cake_2fa_preset": "Pastel 2FA preestablecido",
|
||||||
"narrow": "Angosto",
|
"narrow": "Angosto",
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
"aggressive": "Demasiado entusiasta",
|
"aggressive": "Demasiado entusiasta",
|
||||||
"require_for_assessing_wallet": "Requerido para acceder a la billetera",
|
"require_for_assessing_wallet": "Requerido para acceder a la billetera",
|
||||||
"require_for_sends_to_non_contacts" : "Requerido para envíos a no contactos",
|
"require_for_sends_to_non_contacts": "Requerido para envíos a no contactos",
|
||||||
"require_for_sends_to_contacts" : "Requerir para envíos a contactos",
|
"require_for_sends_to_contacts": "Requerir para envíos a contactos",
|
||||||
"require_for_sends_to_internal_wallets" : "Requerido para envíos a billeteras internas",
|
"require_for_sends_to_internal_wallets": "Requerido para envíos a billeteras internas",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Requerido para intercambios a billeteras internas",
|
"require_for_exchanges_to_internal_wallets": "Requerido para intercambios a billeteras internas",
|
||||||
"require_for_adding_contacts" : "Requerido para agregar contactos",
|
"require_for_adding_contacts": "Requerido para agregar contactos",
|
||||||
"require_for_creating_new_wallets" : "Requerido para crear nuevas billeteras",
|
"require_for_creating_new_wallets": "Requerido para crear nuevas billeteras",
|
||||||
"require_for_all_security_and_backup_settings" : "Requerido para todas las configuraciones de seguridad y copia de seguridad",
|
"require_for_all_security_and_backup_settings": "Requerido para todas las configuraciones de seguridad y copia de seguridad",
|
||||||
"available_balance_description": "Su saldo disponible es la cantidad de fondos que puede gastar. Los fondos que se muestran aquí se pueden gastar inmediatamente.",
|
"available_balance_description": "Su saldo disponible es la cantidad de fondos que puede gastar. Los fondos que se muestran aquí se pueden gastar inmediatamente.",
|
||||||
"syncing_wallet_alert_title": "Tu billetera se está sincronizando",
|
"syncing_wallet_alert_title": "Tu billetera se está sincronizando",
|
||||||
"syncing_wallet_alert_content": "Es posible que su lista de saldo y transacciones no esté completa hasta que diga \"SINCRONIZADO\" en la parte superior. Haga clic/toque para obtener más información.",
|
"syncing_wallet_alert_content": "Es posible que su lista de saldo y transacciones no esté completa hasta que diga \"SINCRONIZADO\" en la parte superior. Haga clic/toque para obtener más información.",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Guías de billetera para pastel",
|
"support_title_guides": "Guías de billetera para pastel",
|
||||||
"support_description_guides": "Documentación y apoyo para problemas comunes",
|
"support_description_guides": "Documentación y apoyo para problemas comunes",
|
||||||
"support_title_other_links": "Otros enlaces de soporte",
|
"support_title_other_links": "Otros enlaces de soporte",
|
||||||
"support_description_other_links": "Únase a nuestras comunidades o comuníquese con nosotros nuestros socios a través de otros métodos"
|
"support_description_other_links": "Únase a nuestras comunidades o comuníquese con nosotros nuestros socios a través de otros métodos",
|
||||||
|
"select_destination": "Seleccione el destino del archivo de copia de seguridad.",
|
||||||
|
"save_to_downloads": "Guardar en Descargas"
|
||||||
}
|
}
|
||||||
|
|
|
@ -640,18 +640,18 @@
|
||||||
"high_contrast_theme": "Thème à contraste élevé",
|
"high_contrast_theme": "Thème à contraste élevé",
|
||||||
"matrix_green_dark_theme": "Thème Matrix Green Dark",
|
"matrix_green_dark_theme": "Thème Matrix Green Dark",
|
||||||
"monero_light_theme": "Thème de lumière Monero",
|
"monero_light_theme": "Thème de lumière Monero",
|
||||||
"cake_2fa_preset" : "Gâteau 2FA prédéfini",
|
"cake_2fa_preset": "Gâteau 2FA prédéfini",
|
||||||
"narrow": "Étroit",
|
"narrow": "Étroit",
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
"aggressive": "Trop zélé",
|
"aggressive": "Trop zélé",
|
||||||
"require_for_assessing_wallet": "Nécessaire pour accéder au portefeuille",
|
"require_for_assessing_wallet": "Nécessaire pour accéder au portefeuille",
|
||||||
"require_for_sends_to_non_contacts" : "Exiger pour les envois à des non-contacts",
|
"require_for_sends_to_non_contacts": "Exiger pour les envois à des non-contacts",
|
||||||
"require_for_sends_to_contacts" : "Exiger pour les envois aux contacts",
|
"require_for_sends_to_contacts": "Exiger pour les envois aux contacts",
|
||||||
"require_for_sends_to_internal_wallets" : "Exiger pour les envois vers des portefeuilles internes",
|
"require_for_sends_to_internal_wallets": "Exiger pour les envois vers des portefeuilles internes",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Exiger pour les échanges vers des portefeuilles internes",
|
"require_for_exchanges_to_internal_wallets": "Exiger pour les échanges vers des portefeuilles internes",
|
||||||
"require_for_adding_contacts" : "Requis pour ajouter des contacts",
|
"require_for_adding_contacts": "Requis pour ajouter des contacts",
|
||||||
"require_for_creating_new_wallets" : "Nécessaire pour créer de nouveaux portefeuilles",
|
"require_for_creating_new_wallets": "Nécessaire pour créer de nouveaux portefeuilles",
|
||||||
"require_for_all_security_and_backup_settings" : "Exiger pour tous les paramètres de sécurité et de sauvegarde",
|
"require_for_all_security_and_backup_settings": "Exiger pour tous les paramètres de sécurité et de sauvegarde",
|
||||||
"available_balance_description": "Le solde disponible est le montant que vous pouvez dépenser immédiatement. Il est calculé en soustrayant le solde gelé du solde total.",
|
"available_balance_description": "Le solde disponible est le montant que vous pouvez dépenser immédiatement. Il est calculé en soustrayant le solde gelé du solde total.",
|
||||||
"syncing_wallet_alert_title": "Votre portefeuille est en cours de synchronisation",
|
"syncing_wallet_alert_title": "Votre portefeuille est en cours de synchronisation",
|
||||||
"syncing_wallet_alert_content": "Votre solde et votre liste de transactions peuvent ne pas être complets tant qu'il n'y a pas « SYNCHRONISÉ » en haut. Cliquez/appuyez pour en savoir plus.",
|
"syncing_wallet_alert_content": "Votre solde et votre liste de transactions peuvent ne pas être complets tant qu'il n'y a pas « SYNCHRONISÉ » en haut. Cliquez/appuyez pour en savoir plus.",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Guides de portefeuille à gâteau",
|
"support_title_guides": "Guides de portefeuille à gâteau",
|
||||||
"support_description_guides": "Documentation et soutien aux problèmes communs",
|
"support_description_guides": "Documentation et soutien aux problèmes communs",
|
||||||
"support_title_other_links": "Autres liens d'assistance",
|
"support_title_other_links": "Autres liens d'assistance",
|
||||||
"support_description_other_links": "Rejoignez nos communautés ou contactez-nous nos partenaires à travers d'autres méthodes"
|
"support_description_other_links": "Rejoignez nos communautés ou contactez-nous nos partenaires à travers d'autres méthodes",
|
||||||
|
"select_destination": "Veuillez sélectionner la destination du fichier de sauvegarde.",
|
||||||
|
"save_to_downloads": "Enregistrer dans les téléchargements"
|
||||||
}
|
}
|
||||||
|
|
|
@ -618,18 +618,18 @@
|
||||||
"high_contrast_theme": "Babban Jigon Kwatance",
|
"high_contrast_theme": "Babban Jigon Kwatance",
|
||||||
"matrix_green_dark_theme": "Matrix Green Dark Jigo",
|
"matrix_green_dark_theme": "Matrix Green Dark Jigo",
|
||||||
"monero_light_theme": "Jigon Hasken Monero",
|
"monero_light_theme": "Jigon Hasken Monero",
|
||||||
"cake_2fa_preset" : "Cake 2FA saiti",
|
"cake_2fa_preset": "Cake 2FA saiti",
|
||||||
"narrow": "kunkuntar",
|
"narrow": "kunkuntar",
|
||||||
"normal": "Na al'ada",
|
"normal": "Na al'ada",
|
||||||
"aggressive": "Mai tsananin kishi",
|
"aggressive": "Mai tsananin kishi",
|
||||||
"require_for_assessing_wallet": "Bukatar samun damar walat",
|
"require_for_assessing_wallet": "Bukatar samun damar walat",
|
||||||
"require_for_sends_to_non_contacts" : "Bukatar aika zuwa waɗanda ba lambobin sadarwa ba",
|
"require_for_sends_to_non_contacts": "Bukatar aika zuwa waɗanda ba lambobin sadarwa ba",
|
||||||
"require_for_sends_to_contacts" : "Bukatar aika zuwa lambobin sadarwa",
|
"require_for_sends_to_contacts": "Bukatar aika zuwa lambobin sadarwa",
|
||||||
"require_for_sends_to_internal_wallets" : "Bukatar aika zuwa wallet na ciki",
|
"require_for_sends_to_internal_wallets": "Bukatar aika zuwa wallet na ciki",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Bukatar musanya zuwa wallet na ciki",
|
"require_for_exchanges_to_internal_wallets": "Bukatar musanya zuwa wallet na ciki",
|
||||||
"require_for_adding_contacts" : "Bukatar ƙara lambobin sadarwa",
|
"require_for_adding_contacts": "Bukatar ƙara lambobin sadarwa",
|
||||||
"require_for_creating_new_wallets" : "Bukatar ƙirƙirar sabbin wallet",
|
"require_for_creating_new_wallets": "Bukatar ƙirƙirar sabbin wallet",
|
||||||
"require_for_all_security_and_backup_settings" : "Bukatar duk tsaro da saitunan wariyar ajiya",
|
"require_for_all_security_and_backup_settings": "Bukatar duk tsaro da saitunan wariyar ajiya",
|
||||||
"available_balance_description": "Ma'auni mai samuwa” ko ”,Tabbataccen Ma'auni”, kudade ne da za a iya kashewa nan da nan. Idan kudade sun bayyana a cikin ƙananan ma'auni amma ba babban ma'auni ba, to dole ne ku jira 'yan mintoci kaɗan don kudaden shiga don samun ƙarin tabbaci na hanyar sadarwa. Bayan sun sami ƙarin tabbaci, za a kashe su.",
|
"available_balance_description": "Ma'auni mai samuwa” ko ”,Tabbataccen Ma'auni”, kudade ne da za a iya kashewa nan da nan. Idan kudade sun bayyana a cikin ƙananan ma'auni amma ba babban ma'auni ba, to dole ne ku jira 'yan mintoci kaɗan don kudaden shiga don samun ƙarin tabbaci na hanyar sadarwa. Bayan sun sami ƙarin tabbaci, za a kashe su.",
|
||||||
"syncing_wallet_alert_title": "Walat ɗin ku yana aiki tare",
|
"syncing_wallet_alert_title": "Walat ɗin ku yana aiki tare",
|
||||||
"syncing_wallet_alert_content": "Ma'aunin ku da lissafin ma'amala bazai cika ba har sai an ce \"SYNCHRONIZED\" a saman. Danna/matsa don ƙarin koyo.",
|
"syncing_wallet_alert_content": "Ma'aunin ku da lissafin ma'amala bazai cika ba har sai an ce \"SYNCHRONIZED\" a saman. Danna/matsa don ƙarin koyo.",
|
||||||
|
@ -662,5 +662,7 @@
|
||||||
"support_title_guides": "Jagorar Cake",
|
"support_title_guides": "Jagorar Cake",
|
||||||
"support_description_guides": "Tallafi da tallafi don batutuwa na yau da kullun",
|
"support_description_guides": "Tallafi da tallafi don batutuwa na yau da kullun",
|
||||||
"support_title_other_links": "Sauran hanyoyin tallafi",
|
"support_title_other_links": "Sauran hanyoyin tallafi",
|
||||||
"support_description_other_links": "Kasance tare da al'ummominmu ko kuma ka kai mu abokanmu ta hanyar wasu hanyoyi"
|
"support_description_other_links": "Kasance tare da al'ummominmu ko kuma ka kai mu abokanmu ta hanyar wasu hanyoyi",
|
||||||
|
"select_destination": "Da fatan za a zaɓi wurin da za a yi wa madadin fayil ɗin.",
|
||||||
|
"save_to_downloads": "Ajiye zuwa Zazzagewa"
|
||||||
}
|
}
|
||||||
|
|
|
@ -640,18 +640,18 @@
|
||||||
"high_contrast_theme": "उच्च कंट्रास्ट थीम",
|
"high_contrast_theme": "उच्च कंट्रास्ट थीम",
|
||||||
"matrix_green_dark_theme": "मैट्रिक्स ग्रीन डार्क थीम",
|
"matrix_green_dark_theme": "मैट्रिक्स ग्रीन डार्क थीम",
|
||||||
"monero_light_theme": "मोनेरो लाइट थीम",
|
"monero_light_theme": "मोनेरो लाइट थीम",
|
||||||
"cake_2fa_preset" : "केक 2एफए प्रीसेट",
|
"cake_2fa_preset": "केक 2एफए प्रीसेट",
|
||||||
"narrow": "सँकरा",
|
"narrow": "सँकरा",
|
||||||
"normal": "सामान्य",
|
"normal": "सामान्य",
|
||||||
"aggressive": "ज्यादा",
|
"aggressive": "ज्यादा",
|
||||||
"require_for_assessing_wallet": "वॉलेट तक पहुँचने के लिए आवश्यकता है",
|
"require_for_assessing_wallet": "वॉलेट तक पहुँचने के लिए आवश्यकता है",
|
||||||
"require_for_sends_to_non_contacts" : "गैर-संपर्कों को भेजने की आवश्यकता",
|
"require_for_sends_to_non_contacts": "गैर-संपर्कों को भेजने की आवश्यकता",
|
||||||
"require_for_sends_to_contacts" : "संपर्कों को भेजने के लिए आवश्यक है",
|
"require_for_sends_to_contacts": "संपर्कों को भेजने के लिए आवश्यक है",
|
||||||
"require_for_sends_to_internal_wallets" : "आंतरिक वॉलेट में भेजने की आवश्यकता है",
|
"require_for_sends_to_internal_wallets": "आंतरिक वॉलेट में भेजने की आवश्यकता है",
|
||||||
"require_for_exchanges_to_internal_wallets" : "आंतरिक वॉलेट में आदान-प्रदान की आवश्यकता है",
|
"require_for_exchanges_to_internal_wallets": "आंतरिक वॉलेट में आदान-प्रदान की आवश्यकता है",
|
||||||
"require_for_adding_contacts" : "संपर्क जोड़ने के लिए आवश्यकता है",
|
"require_for_adding_contacts": "संपर्क जोड़ने के लिए आवश्यकता है",
|
||||||
"require_for_creating_new_wallets" : "नए वॉलेट बनाने की आवश्यकता है",
|
"require_for_creating_new_wallets": "नए वॉलेट बनाने की आवश्यकता है",
|
||||||
"require_for_all_security_and_backup_settings" : "सभी सुरक्षा और बैकअप सेटिंग्स की आवश्यकता है",
|
"require_for_all_security_and_backup_settings": "सभी सुरक्षा और बैकअप सेटिंग्स की आवश्यकता है",
|
||||||
"available_balance_description": "उपलब्ध शेष या ”पुष्टिकृत शेष”, वे धनराशि हैं जिन्हें तुरंत खर्च किया जा सकता है। यदि फंड निचले बैलेंस में दिखाई देते हैं, लेकिन शीर्ष बैलेंस में नहीं, तो आपको आने वाले फंड के लिए अधिक नेटवर्क पुष्टिकरण प्राप्त करने के लिए कुछ मिनट इंतजार करना होगा। अधिक पुष्टि मिलने के बाद, वे खर्च करने योग्य हो जाएंगे।",
|
"available_balance_description": "उपलब्ध शेष या ”पुष्टिकृत शेष”, वे धनराशि हैं जिन्हें तुरंत खर्च किया जा सकता है। यदि फंड निचले बैलेंस में दिखाई देते हैं, लेकिन शीर्ष बैलेंस में नहीं, तो आपको आने वाले फंड के लिए अधिक नेटवर्क पुष्टिकरण प्राप्त करने के लिए कुछ मिनट इंतजार करना होगा। अधिक पुष्टि मिलने के बाद, वे खर्च करने योग्य हो जाएंगे।",
|
||||||
"syncing_wallet_alert_title": "आपका वॉलेट सिंक हो रहा है",
|
"syncing_wallet_alert_title": "आपका वॉलेट सिंक हो रहा है",
|
||||||
"syncing_wallet_alert_content": "आपकी शेष राशि और लेनदेन सूची तब तक पूरी नहीं हो सकती जब तक कि शीर्ष पर \"सिंक्रनाइज़्ड\" न लिखा हो। अधिक जानने के लिए क्लिक/टैप करें।",
|
"syncing_wallet_alert_content": "आपकी शेष राशि और लेनदेन सूची तब तक पूरी नहीं हो सकती जब तक कि शीर्ष पर \"सिंक्रनाइज़्ड\" न लिखा हो। अधिक जानने के लिए क्लिक/टैप करें।",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "केक वॉलेट गाइड",
|
"support_title_guides": "केक वॉलेट गाइड",
|
||||||
"support_description_guides": "सामान्य मुद्दों के लिए प्रलेखन और समर्थन",
|
"support_description_guides": "सामान्य मुद्दों के लिए प्रलेखन और समर्थन",
|
||||||
"support_title_other_links": "अन्य समर्थन लिंक",
|
"support_title_other_links": "अन्य समर्थन लिंक",
|
||||||
"support_description_other_links": "हमारे समुदायों में शामिल हों या अन्य तरीकों के माध्यम से हमारे साथी तक पहुंचें"
|
"support_description_other_links": "हमारे समुदायों में शामिल हों या अन्य तरीकों के माध्यम से हमारे साथी तक पहुंचें",
|
||||||
|
"select_destination": "कृपया बैकअप फ़ाइल के लिए गंतव्य का चयन करें।",
|
||||||
|
"save_to_downloads": "डाउनलोड में सहेजें"
|
||||||
}
|
}
|
||||||
|
|
|
@ -640,18 +640,18 @@
|
||||||
"high_contrast_theme": "Tema visokog kontrasta",
|
"high_contrast_theme": "Tema visokog kontrasta",
|
||||||
"matrix_green_dark_theme": "Matrix Green Dark Theme",
|
"matrix_green_dark_theme": "Matrix Green Dark Theme",
|
||||||
"monero_light_theme": "Monero lagana tema",
|
"monero_light_theme": "Monero lagana tema",
|
||||||
"cake_2fa_preset" : "Cake 2FA Preset",
|
"cake_2fa_preset": "Cake 2FA Preset",
|
||||||
"narrow": "Usko",
|
"narrow": "Usko",
|
||||||
"normal": "Normalno",
|
"normal": "Normalno",
|
||||||
"aggressive": "Preterano",
|
"aggressive": "Preterano",
|
||||||
"require_for_assessing_wallet": "Potreban za pristup novčaniku",
|
"require_for_assessing_wallet": "Potreban za pristup novčaniku",
|
||||||
"require_for_sends_to_non_contacts" : "Zahtijeva za slanje nekontaktima",
|
"require_for_sends_to_non_contacts": "Zahtijeva za slanje nekontaktima",
|
||||||
"require_for_sends_to_contacts" : "Zahtijeva za slanje kontaktima",
|
"require_for_sends_to_contacts": "Zahtijeva za slanje kontaktima",
|
||||||
"require_for_sends_to_internal_wallets" : "Zahtijeva za slanje u interne novčanike",
|
"require_for_sends_to_internal_wallets": "Zahtijeva za slanje u interne novčanike",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Potreban za razmjenu na interne novčanike",
|
"require_for_exchanges_to_internal_wallets": "Potreban za razmjenu na interne novčanike",
|
||||||
"require_for_adding_contacts" : "Zahtijeva za dodavanje kontakata",
|
"require_for_adding_contacts": "Zahtijeva za dodavanje kontakata",
|
||||||
"require_for_creating_new_wallets" : "Potreban za kreiranje novih novčanika",
|
"require_for_creating_new_wallets": "Potreban za kreiranje novih novčanika",
|
||||||
"require_for_all_security_and_backup_settings" : "Zahtijeva za sve postavke sigurnosti i sigurnosne kopije",
|
"require_for_all_security_and_backup_settings": "Zahtijeva za sve postavke sigurnosti i sigurnosne kopije",
|
||||||
"available_balance_description": "Dostupno stanje je iznos koji možete potrošiti. To je vaš saldo minus bilo kakve transakcije koje su još uvijek u tijeku.",
|
"available_balance_description": "Dostupno stanje je iznos koji možete potrošiti. To je vaš saldo minus bilo kakve transakcije koje su još uvijek u tijeku.",
|
||||||
"syncing_wallet_alert_title": "Vaš novčanik se sinkronizira",
|
"syncing_wallet_alert_title": "Vaš novčanik se sinkronizira",
|
||||||
"syncing_wallet_alert_content": "Vaš saldo i popis transakcija možda neće biti potpuni sve dok na vrhu ne piše \"SINKRONIZIRANO\". Kliknite/dodirnite da biste saznali više.",
|
"syncing_wallet_alert_content": "Vaš saldo i popis transakcija možda neće biti potpuni sve dok na vrhu ne piše \"SINKRONIZIRANO\". Kliknite/dodirnite da biste saznali više.",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Vodiči za torte",
|
"support_title_guides": "Vodiči za torte",
|
||||||
"support_description_guides": "Dokumentacija i podrška za uobičajena pitanja",
|
"support_description_guides": "Dokumentacija i podrška za uobičajena pitanja",
|
||||||
"support_title_other_links": "Ostale veze za podršku",
|
"support_title_other_links": "Ostale veze za podršku",
|
||||||
"support_description_other_links": "Pridružite se našim zajednicama ili nam dosegnu naše partnere drugim metodama"
|
"support_description_other_links": "Pridružite se našim zajednicama ili nam dosegnu naše partnere drugim metodama",
|
||||||
|
"select_destination": "Odaberite odredište za datoteku sigurnosne kopije.",
|
||||||
|
"save_to_downloads": "Spremi u Preuzimanja"
|
||||||
}
|
}
|
||||||
|
|
|
@ -622,18 +622,18 @@
|
||||||
"setup_totp_recommended": "Siapkan TOTP (Disarankan)",
|
"setup_totp_recommended": "Siapkan TOTP (Disarankan)",
|
||||||
"disable_buy": "Nonaktifkan tindakan beli",
|
"disable_buy": "Nonaktifkan tindakan beli",
|
||||||
"disable_sell": "Nonaktifkan aksi jual",
|
"disable_sell": "Nonaktifkan aksi jual",
|
||||||
"cake_2fa_preset" : "Preset Kue 2FA",
|
"cake_2fa_preset": "Preset Kue 2FA",
|
||||||
"narrow": "Sempit",
|
"narrow": "Sempit",
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
"aggressive": "Terlalu bersemangat",
|
"aggressive": "Terlalu bersemangat",
|
||||||
"require_for_assessing_wallet": "Diperlukan untuk mengakses dompet",
|
"require_for_assessing_wallet": "Diperlukan untuk mengakses dompet",
|
||||||
"require_for_sends_to_non_contacts" : "Wajibkan untuk mengirim ke non-kontak",
|
"require_for_sends_to_non_contacts": "Wajibkan untuk mengirim ke non-kontak",
|
||||||
"require_for_sends_to_contacts" : "Membutuhkan untuk mengirim ke kontak",
|
"require_for_sends_to_contacts": "Membutuhkan untuk mengirim ke kontak",
|
||||||
"require_for_sends_to_internal_wallets" : "Diperlukan untuk mengirim ke dompet internal",
|
"require_for_sends_to_internal_wallets": "Diperlukan untuk mengirim ke dompet internal",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Diperlukan untuk pertukaran ke dompet internal",
|
"require_for_exchanges_to_internal_wallets": "Diperlukan untuk pertukaran ke dompet internal",
|
||||||
"require_for_adding_contacts" : "Membutuhkan untuk menambahkan kontak",
|
"require_for_adding_contacts": "Membutuhkan untuk menambahkan kontak",
|
||||||
"require_for_creating_new_wallets" : "Diperlukan untuk membuat dompet baru",
|
"require_for_creating_new_wallets": "Diperlukan untuk membuat dompet baru",
|
||||||
"require_for_all_security_and_backup_settings" : "Memerlukan untuk semua pengaturan keamanan dan pencadangan",
|
"require_for_all_security_and_backup_settings": "Memerlukan untuk semua pengaturan keamanan dan pencadangan",
|
||||||
"available_balance_description": "“Saldo yang Tersedia” atau “Saldo yang Dikonfirmasi” adalah dana yang dapat langsung dibelanjakan. Jika dana muncul di saldo bawah tetapi tidak di saldo atas, maka Anda harus menunggu beberapa menit agar dana masuk mendapatkan konfirmasi jaringan lainnya. Setelah mereka mendapatkan lebih banyak konfirmasi, mereka akan dapat dibelanjakan.",
|
"available_balance_description": "“Saldo yang Tersedia” atau “Saldo yang Dikonfirmasi” adalah dana yang dapat langsung dibelanjakan. Jika dana muncul di saldo bawah tetapi tidak di saldo atas, maka Anda harus menunggu beberapa menit agar dana masuk mendapatkan konfirmasi jaringan lainnya. Setelah mereka mendapatkan lebih banyak konfirmasi, mereka akan dapat dibelanjakan.",
|
||||||
"syncing_wallet_alert_title": "Dompet Anda sedang disinkronkan",
|
"syncing_wallet_alert_title": "Dompet Anda sedang disinkronkan",
|
||||||
"syncing_wallet_alert_content": "Saldo dan daftar transaksi Anda mungkin belum lengkap sampai tertulis “SYNCHRONIZED” di bagian atas. Klik/ketuk untuk mempelajari lebih lanjut.",
|
"syncing_wallet_alert_content": "Saldo dan daftar transaksi Anda mungkin belum lengkap sampai tertulis “SYNCHRONIZED” di bagian atas. Klik/ketuk untuk mempelajari lebih lanjut.",
|
||||||
|
@ -672,5 +672,7 @@
|
||||||
"support_title_guides": "Panduan Dompet Kue",
|
"support_title_guides": "Panduan Dompet Kue",
|
||||||
"support_description_guides": "Dokumentasi dan dukungan untuk masalah umum",
|
"support_description_guides": "Dokumentasi dan dukungan untuk masalah umum",
|
||||||
"support_title_other_links": "Tautan dukungan lainnya",
|
"support_title_other_links": "Tautan dukungan lainnya",
|
||||||
"support_description_other_links": "Bergabunglah dengan komunitas kami atau hubungi kami mitra kami melalui metode lain"
|
"support_description_other_links": "Bergabunglah dengan komunitas kami atau hubungi kami mitra kami melalui metode lain",
|
||||||
|
"select_destination": "Silakan pilih tujuan untuk file cadangan.",
|
||||||
|
"save_to_downloads": "Simpan ke Unduhan"
|
||||||
}
|
}
|
||||||
|
|
|
@ -634,18 +634,18 @@
|
||||||
"setup_totp_recommended": "Imposta TOTP (consigliato)",
|
"setup_totp_recommended": "Imposta TOTP (consigliato)",
|
||||||
"disable_buy": "Disabilita l'azione di acquisto",
|
"disable_buy": "Disabilita l'azione di acquisto",
|
||||||
"disable_sell": "Disabilita l'azione di vendita",
|
"disable_sell": "Disabilita l'azione di vendita",
|
||||||
"cake_2fa_preset" : "Torta 2FA Preset",
|
"cake_2fa_preset": "Torta 2FA Preset",
|
||||||
"narrow": "Stretto",
|
"narrow": "Stretto",
|
||||||
"normal": "Normale",
|
"normal": "Normale",
|
||||||
"aggressive": "Fervente",
|
"aggressive": "Fervente",
|
||||||
"require_for_assessing_wallet": "Richiesto per l'accesso al portafoglio",
|
"require_for_assessing_wallet": "Richiesto per l'accesso al portafoglio",
|
||||||
"require_for_sends_to_non_contacts" : "Richiesto per invii a non contatti",
|
"require_for_sends_to_non_contacts": "Richiesto per invii a non contatti",
|
||||||
"require_for_sends_to_contacts" : "Richiedi per gli invii ai contatti",
|
"require_for_sends_to_contacts": "Richiedi per gli invii ai contatti",
|
||||||
"require_for_sends_to_internal_wallets" : "Richiesto per invii a portafogli interni",
|
"require_for_sends_to_internal_wallets": "Richiesto per invii a portafogli interni",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Richiedi per gli scambi ai portafogli interni",
|
"require_for_exchanges_to_internal_wallets": "Richiedi per gli scambi ai portafogli interni",
|
||||||
"require_for_adding_contacts" : "Richiesto per l'aggiunta di contatti",
|
"require_for_adding_contacts": "Richiesto per l'aggiunta di contatti",
|
||||||
"require_for_creating_new_wallets" : "Richiesto per la creazione di nuovi portafogli",
|
"require_for_creating_new_wallets": "Richiesto per la creazione di nuovi portafogli",
|
||||||
"require_for_all_security_and_backup_settings" : "Richiedi per tutte le impostazioni di sicurezza e backup",
|
"require_for_all_security_and_backup_settings": "Richiedi per tutte le impostazioni di sicurezza e backup",
|
||||||
"available_balance_description": "Il saldo disponibile è il saldo totale meno i fondi congelati. I fondi congelati sono fondi che sono stati inviati ma non sono ancora stati confermati.",
|
"available_balance_description": "Il saldo disponibile è il saldo totale meno i fondi congelati. I fondi congelati sono fondi che sono stati inviati ma non sono ancora stati confermati.",
|
||||||
"syncing_wallet_alert_title": "Il tuo portafoglio si sta sincronizzando",
|
"syncing_wallet_alert_title": "Il tuo portafoglio si sta sincronizzando",
|
||||||
"syncing_wallet_alert_content": "Il saldo e l'elenco delle transazioni potrebbero non essere completi fino a quando non viene visualizzato \"SYNCHRONIZED\" in alto. Clicca/tocca per saperne di più.",
|
"syncing_wallet_alert_content": "Il saldo e l'elenco delle transazioni potrebbero non essere completi fino a quando non viene visualizzato \"SYNCHRONIZED\" in alto. Clicca/tocca per saperne di più.",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Guide del portafoglio per torte",
|
"support_title_guides": "Guide del portafoglio per torte",
|
||||||
"support_description_guides": "Documentazione e supporto per problemi comuni",
|
"support_description_guides": "Documentazione e supporto per problemi comuni",
|
||||||
"support_title_other_links": "Altri collegamenti di supporto",
|
"support_title_other_links": "Altri collegamenti di supporto",
|
||||||
"support_description_other_links": "Unisciti alle nostre comunità o raggiungici i nostri partner attraverso altri metodi"
|
"support_description_other_links": "Unisciti alle nostre comunità o raggiungici i nostri partner attraverso altri metodi",
|
||||||
|
"select_destination": "Seleziona la destinazione per il file di backup.",
|
||||||
|
"save_to_downloads": "Salva in Download"
|
||||||
}
|
}
|
||||||
|
|
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "ケーキウォレットガイド",
|
"support_title_guides": "ケーキウォレットガイド",
|
||||||
"support_description_guides": "一般的な問題のドキュメントとサポート",
|
"support_description_guides": "一般的な問題のドキュメントとサポート",
|
||||||
"support_title_other_links": "その他のサポートリンク",
|
"support_title_other_links": "その他のサポートリンク",
|
||||||
"support_description_other_links": "私たちのコミュニティに参加するか、他の方法を通して私たちのパートナーに連絡してください"
|
"support_description_other_links": "私たちのコミュニティに参加するか、他の方法を通して私たちのパートナーに連絡してください",
|
||||||
|
"select_destination": "バックアップファイルの保存先を選択してください。",
|
||||||
|
"save_to_downloads": "ダウンロードに保存"
|
||||||
}
|
}
|
||||||
|
|
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "케이크 지갑 가이드",
|
"support_title_guides": "케이크 지갑 가이드",
|
||||||
"support_description_guides": "일반적인 문제에 대한 문서화 및 지원",
|
"support_description_guides": "일반적인 문제에 대한 문서화 및 지원",
|
||||||
"support_title_other_links": "다른 지원 링크",
|
"support_title_other_links": "다른 지원 링크",
|
||||||
"support_description_other_links": "다른 방법을 통해 커뮤니티에 가입하거나 파트너에게 연락하십시오."
|
"support_description_other_links": "다른 방법을 통해 커뮤니티에 가입하거나 파트너에게 연락하십시오.",
|
||||||
|
"select_destination": "백업 파일의 대상을 선택하십시오.",
|
||||||
|
"save_to_downloads": "다운로드에 저장"
|
||||||
}
|
}
|
||||||
|
|
|
@ -682,5 +682,7 @@
|
||||||
"support_title_guides": "ကိတ်မုန့်ပိုက်ဆံအိတ်လမ်းညွှန်များ",
|
"support_title_guides": "ကိတ်မုန့်ပိုက်ဆံအိတ်လမ်းညွှန်များ",
|
||||||
"support_description_guides": "ဘုံပြ issues နာများအတွက်စာရွက်စာတမ်းများနှင့်ထောက်ခံမှု",
|
"support_description_guides": "ဘုံပြ issues နာများအတွက်စာရွက်စာတမ်းများနှင့်ထောက်ခံမှု",
|
||||||
"support_title_other_links": "အခြားအထောက်အပံ့လင့်များ",
|
"support_title_other_links": "အခြားအထောက်အပံ့လင့်များ",
|
||||||
"support_description_other_links": "ကျွန်ုပ်တို့၏လူမှုအသိုင်းအဝိုင်းများသို့ 0 င်ရောက်ပါ"
|
"support_description_other_links": "ကျွန်ုပ်တို့၏လူမှုအသိုင်းအဝိုင်းများသို့ 0 င်ရောက်ပါ",
|
||||||
|
"select_destination": "အရန်ဖိုင်အတွက် ဦးတည်ရာကို ရွေးပါ။",
|
||||||
|
"save_to_downloads": "ဒေါင်းလုဒ်များထံ သိမ်းဆည်းပါ။"
|
||||||
}
|
}
|
||||||
|
|
|
@ -634,18 +634,18 @@
|
||||||
"setup_totp_recommended": "TOTP instellen (aanbevolen)",
|
"setup_totp_recommended": "TOTP instellen (aanbevolen)",
|
||||||
"disable_buy": "Koopactie uitschakelen",
|
"disable_buy": "Koopactie uitschakelen",
|
||||||
"disable_sell": "Verkoopactie uitschakelen",
|
"disable_sell": "Verkoopactie uitschakelen",
|
||||||
"cake_2fa_preset" : "Taart 2FA Voorinstelling",
|
"cake_2fa_preset": "Taart 2FA Voorinstelling",
|
||||||
"narrow": "Smal",
|
"narrow": "Smal",
|
||||||
"normal": "Normaal",
|
"normal": "Normaal",
|
||||||
"aggressive": "Overijverig",
|
"aggressive": "Overijverig",
|
||||||
"require_for_assessing_wallet": "Vereist voor toegang tot portemonnee",
|
"require_for_assessing_wallet": "Vereist voor toegang tot portemonnee",
|
||||||
"require_for_sends_to_non_contacts" : "Vereist voor verzendingen naar niet-contacten",
|
"require_for_sends_to_non_contacts": "Vereist voor verzendingen naar niet-contacten",
|
||||||
"require_for_sends_to_contacts" : "Vereist voor verzending naar contacten",
|
"require_for_sends_to_contacts": "Vereist voor verzending naar contacten",
|
||||||
"require_for_sends_to_internal_wallets" : "Vereist voor verzendingen naar interne portefeuilles",
|
"require_for_sends_to_internal_wallets": "Vereist voor verzendingen naar interne portefeuilles",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Vereist voor uitwisselingen naar interne portefeuilles",
|
"require_for_exchanges_to_internal_wallets": "Vereist voor uitwisselingen naar interne portefeuilles",
|
||||||
"require_for_adding_contacts" : "Vereist voor het toevoegen van contacten",
|
"require_for_adding_contacts": "Vereist voor het toevoegen van contacten",
|
||||||
"require_for_creating_new_wallets" : "Vereist voor het maken van nieuwe portefeuilles",
|
"require_for_creating_new_wallets": "Vereist voor het maken van nieuwe portefeuilles",
|
||||||
"require_for_all_security_and_backup_settings" : "Vereist voor alle beveiligings- en back-upinstellingen",
|
"require_for_all_security_and_backup_settings": "Vereist voor alle beveiligings- en back-upinstellingen",
|
||||||
"available_balance_description": "Beschikbaar saldo is het saldo dat u kunt uitgeven. Het kan lager zijn dan uw totale saldo als u onlangs geld hebt verzonden.",
|
"available_balance_description": "Beschikbaar saldo is het saldo dat u kunt uitgeven. Het kan lager zijn dan uw totale saldo als u onlangs geld hebt verzonden.",
|
||||||
"syncing_wallet_alert_title": "Uw portemonnee wordt gesynchroniseerd",
|
"syncing_wallet_alert_title": "Uw portemonnee wordt gesynchroniseerd",
|
||||||
"syncing_wallet_alert_content": "Uw saldo- en transactielijst is mogelijk pas compleet als er bovenaan 'GESYNCHRONISEERD' staat. Klik/tik voor meer informatie.",
|
"syncing_wallet_alert_content": "Uw saldo- en transactielijst is mogelijk pas compleet als er bovenaan 'GESYNCHRONISEERD' staat. Klik/tik voor meer informatie.",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Cake -portemonnee gidsen",
|
"support_title_guides": "Cake -portemonnee gidsen",
|
||||||
"support_description_guides": "Documentatie en ondersteuning voor gemeenschappelijke problemen",
|
"support_description_guides": "Documentatie en ondersteuning voor gemeenschappelijke problemen",
|
||||||
"support_title_other_links": "Andere ondersteuningslinks",
|
"support_title_other_links": "Andere ondersteuningslinks",
|
||||||
"support_description_other_links": "Word lid van onze gemeenschappen of bereik ons onze partners via andere methoden"
|
"support_description_other_links": "Word lid van onze gemeenschappen of bereik ons onze partners via andere methoden",
|
||||||
|
"select_destination": "Selecteer de bestemming voor het back-upbestand.",
|
||||||
|
"save_to_downloads": "Opslaan in downloads"
|
||||||
}
|
}
|
||||||
|
|
|
@ -634,18 +634,18 @@
|
||||||
"setup_totp_recommended": "Skonfiguruj TOTP (zalecane)",
|
"setup_totp_recommended": "Skonfiguruj TOTP (zalecane)",
|
||||||
"disable_buy": "Wyłącz akcję kupna",
|
"disable_buy": "Wyłącz akcję kupna",
|
||||||
"disable_sell": "Wyłącz akcję sprzedaży",
|
"disable_sell": "Wyłącz akcję sprzedaży",
|
||||||
"cake_2fa_preset" : "Ciasto 2FA Preset",
|
"cake_2fa_preset": "Ciasto 2FA Preset",
|
||||||
"narrow": "Wąski",
|
"narrow": "Wąski",
|
||||||
"normal": "Normalna",
|
"normal": "Normalna",
|
||||||
"aggressive": "Nadgorliwy",
|
"aggressive": "Nadgorliwy",
|
||||||
"require_for_assessing_wallet": "Wymagaj dostępu do portfela",
|
"require_for_assessing_wallet": "Wymagaj dostępu do portfela",
|
||||||
"require_for_sends_to_non_contacts" : "Wymagaj wysyłania do osób niekontaktowych",
|
"require_for_sends_to_non_contacts": "Wymagaj wysyłania do osób niekontaktowych",
|
||||||
"require_for_sends_to_contacts" : "Wymagaj wysyłania do kontaktów",
|
"require_for_sends_to_contacts": "Wymagaj wysyłania do kontaktów",
|
||||||
"require_for_sends_to_internal_wallets" : "Wymagaj wysyłania do portfeli wewnętrznych",
|
"require_for_sends_to_internal_wallets": "Wymagaj wysyłania do portfeli wewnętrznych",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Wymagaj wymiany do portfeli wewnętrznych",
|
"require_for_exchanges_to_internal_wallets": "Wymagaj wymiany do portfeli wewnętrznych",
|
||||||
"require_for_adding_contacts" : "Wymagane do dodania kontaktów",
|
"require_for_adding_contacts": "Wymagane do dodania kontaktów",
|
||||||
"require_for_creating_new_wallets" : "Wymagane do tworzenia nowych portfeli",
|
"require_for_creating_new_wallets": "Wymagane do tworzenia nowych portfeli",
|
||||||
"require_for_all_security_and_backup_settings" : "Wymagaj dla wszystkich ustawień zabezpieczeń i kopii zapasowych",
|
"require_for_all_security_and_backup_settings": "Wymagaj dla wszystkich ustawień zabezpieczeń i kopii zapasowych",
|
||||||
"available_balance_description": "Dostępne saldo jest równoważne z saldem portfela minus zamrożone saldo.",
|
"available_balance_description": "Dostępne saldo jest równoważne z saldem portfela minus zamrożone saldo.",
|
||||||
"syncing_wallet_alert_title": "Twój portfel się synchronizuje",
|
"syncing_wallet_alert_title": "Twój portfel się synchronizuje",
|
||||||
"syncing_wallet_alert_content": "Twoje saldo i lista transakcji mogą nie być kompletne, dopóki u góry nie pojawi się napis „SYNCHRONIZOWANY”. Kliknij/stuknij, aby dowiedzieć się więcej.",
|
"syncing_wallet_alert_content": "Twoje saldo i lista transakcji mogą nie być kompletne, dopóki u góry nie pojawi się napis „SYNCHRONIZOWANY”. Kliknij/stuknij, aby dowiedzieć się więcej.",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Przewodniki portfela ciasta",
|
"support_title_guides": "Przewodniki portfela ciasta",
|
||||||
"support_description_guides": "Dokumentacja i wsparcie dla typowych problemów",
|
"support_description_guides": "Dokumentacja i wsparcie dla typowych problemów",
|
||||||
"support_title_other_links": "Inne linki wsparcia",
|
"support_title_other_links": "Inne linki wsparcia",
|
||||||
"support_description_other_links": "Dołącz do naszych społeczności lub skontaktuj się z nami naszymi partnerami za pomocą innych metod"
|
"support_description_other_links": "Dołącz do naszych społeczności lub skontaktuj się z nami naszymi partnerami za pomocą innych metod",
|
||||||
|
"select_destination": "Wybierz miejsce docelowe dla pliku kopii zapasowej.",
|
||||||
|
"save_to_downloads": "Zapisz w Pobranych"
|
||||||
}
|
}
|
||||||
|
|
|
@ -633,18 +633,18 @@
|
||||||
"setup_totp_recommended": "Configurar TOTP (recomendado)",
|
"setup_totp_recommended": "Configurar TOTP (recomendado)",
|
||||||
"disable_buy": "Desativar ação de compra",
|
"disable_buy": "Desativar ação de compra",
|
||||||
"disable_sell": "Desativar ação de venda",
|
"disable_sell": "Desativar ação de venda",
|
||||||
"cake_2fa_preset" : "Predefinição de bolo 2FA",
|
"cake_2fa_preset": "Predefinição de bolo 2FA",
|
||||||
"narrow": "Estreito",
|
"narrow": "Estreito",
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
"aggressive": "excessivamente zeloso",
|
"aggressive": "excessivamente zeloso",
|
||||||
"require_for_assessing_wallet": "Requer para acessar a carteira",
|
"require_for_assessing_wallet": "Requer para acessar a carteira",
|
||||||
"require_for_sends_to_non_contacts" : "Exigir para envios para não-contatos",
|
"require_for_sends_to_non_contacts": "Exigir para envios para não-contatos",
|
||||||
"require_for_sends_to_contacts" : "Exigir para envios para contatos",
|
"require_for_sends_to_contacts": "Exigir para envios para contatos",
|
||||||
"require_for_sends_to_internal_wallets" : "Exigir envios para carteiras internas",
|
"require_for_sends_to_internal_wallets": "Exigir envios para carteiras internas",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Requer trocas para carteiras internas",
|
"require_for_exchanges_to_internal_wallets": "Requer trocas para carteiras internas",
|
||||||
"require_for_adding_contacts" : "Requer para adicionar contatos",
|
"require_for_adding_contacts": "Requer para adicionar contatos",
|
||||||
"require_for_creating_new_wallets" : "Requer para criar novas carteiras",
|
"require_for_creating_new_wallets": "Requer para criar novas carteiras",
|
||||||
"require_for_all_security_and_backup_settings" : "Exigir todas as configurações de segurança e backup",
|
"require_for_all_security_and_backup_settings": "Exigir todas as configurações de segurança e backup",
|
||||||
"available_balance_description": "Seu saldo disponível é o saldo total menos o saldo congelado. O saldo congelado é o saldo que você não pode gastar, mas que ainda não foi confirmado na blockchain. O saldo congelado é geralmente o resultado de transações recentes.",
|
"available_balance_description": "Seu saldo disponível é o saldo total menos o saldo congelado. O saldo congelado é o saldo que você não pode gastar, mas que ainda não foi confirmado na blockchain. O saldo congelado é geralmente o resultado de transações recentes.",
|
||||||
"syncing_wallet_alert_title": "Sua carteira está sincronizando",
|
"syncing_wallet_alert_title": "Sua carteira está sincronizando",
|
||||||
"syncing_wallet_alert_content": "Seu saldo e lista de transações podem não estar completos até que diga “SYNCHRONIZED” no topo. Clique/toque para saber mais.",
|
"syncing_wallet_alert_content": "Seu saldo e lista de transações podem não estar completos até que diga “SYNCHRONIZED” no topo. Clique/toque para saber mais.",
|
||||||
|
@ -683,5 +683,7 @@
|
||||||
"support_title_guides": "Guias da carteira de bolo",
|
"support_title_guides": "Guias da carteira de bolo",
|
||||||
"support_description_guides": "Documentação e suporte para problemas comuns",
|
"support_description_guides": "Documentação e suporte para problemas comuns",
|
||||||
"support_title_other_links": "Outros links de suporte",
|
"support_title_other_links": "Outros links de suporte",
|
||||||
"support_description_other_links": "Junte -se às nossas comunidades ou chegue a nós nossos parceiros por meio de outros métodos"
|
"support_description_other_links": "Junte -se às nossas comunidades ou chegue a nós nossos parceiros por meio de outros métodos",
|
||||||
|
"select_destination": "Selecione o destino para o arquivo de backup.",
|
||||||
|
"save_to_downloads": "Salvar em Downloads"
|
||||||
}
|
}
|
||||||
|
|
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Корт -гиды",
|
"support_title_guides": "Корт -гиды",
|
||||||
"support_description_guides": "Документация и поддержка общих вопросов",
|
"support_description_guides": "Документация и поддержка общих вопросов",
|
||||||
"support_title_other_links": "Другие ссылки на поддержку",
|
"support_title_other_links": "Другие ссылки на поддержку",
|
||||||
"support_description_other_links": "Присоединяйтесь к нашим сообществам или охватите нас наших партнеров с помощью других методов"
|
"support_description_other_links": "Присоединяйтесь к нашим сообществам или охватите нас наших партнеров с помощью других методов",
|
||||||
|
"select_destination": "Пожалуйста, выберите место для файла резервной копии.",
|
||||||
|
"save_to_downloads": "Сохранить в загрузках"
|
||||||
}
|
}
|
||||||
|
|
|
@ -682,5 +682,7 @@
|
||||||
"support_title_guides": "คู่มือกระเป๋าเงินเค้ก",
|
"support_title_guides": "คู่มือกระเป๋าเงินเค้ก",
|
||||||
"support_description_guides": "เอกสารและการสนับสนุนสำหรับปัญหาทั่วไป",
|
"support_description_guides": "เอกสารและการสนับสนุนสำหรับปัญหาทั่วไป",
|
||||||
"support_title_other_links": "ลิงค์สนับสนุนอื่น ๆ",
|
"support_title_other_links": "ลิงค์สนับสนุนอื่น ๆ",
|
||||||
"support_description_other_links": "เข้าร่วมชุมชนของเราหรือเข้าถึงเราพันธมิตรของเราผ่านวิธีการอื่น ๆ"
|
"support_description_other_links": "เข้าร่วมชุมชนของเราหรือเข้าถึงเราพันธมิตรของเราผ่านวิธีการอื่น ๆ",
|
||||||
|
"select_destination": "โปรดเลือกปลายทางสำหรับไฟล์สำรอง",
|
||||||
|
"save_to_downloads": "บันทึกลงดาวน์โหลด"
|
||||||
}
|
}
|
||||||
|
|
|
@ -632,19 +632,18 @@
|
||||||
"setup_totp_recommended": "TOTP'yi kurun (Önerilir)",
|
"setup_totp_recommended": "TOTP'yi kurun (Önerilir)",
|
||||||
"disable_buy": "Satın alma işlemini devre dışı bırak",
|
"disable_buy": "Satın alma işlemini devre dışı bırak",
|
||||||
"disable_sell": "Satış işlemini devre dışı bırak",
|
"disable_sell": "Satış işlemini devre dışı bırak",
|
||||||
"cake_2fa_preset" : "Kek 2FA Ön Ayarı",
|
"cake_2fa_preset": "Kek 2FA Ön Ayarı",
|
||||||
"narrow": "Dar",
|
"narrow": "Dar",
|
||||||
"normal": "Normal",
|
"normal": "Normal",
|
||||||
"aggressive": "Aşırı duyarlı",
|
"aggressive": "Aşırı duyarlı",
|
||||||
"require_for_assessing_wallet": "Cüzdana erişmek için gerekli",
|
"require_for_assessing_wallet": "Cüzdana erişmek için gerekli",
|
||||||
"require_for_sends_to_non_contacts" : "Kişi olmayan kişilere göndermeler için gerekli kıl",
|
"require_for_sends_to_non_contacts": "Kişi olmayan kişilere göndermeler için gerekli kıl",
|
||||||
"require_for_sends_to_contacts" : "Kişilere göndermeler için gerekli kıl",
|
"require_for_sends_to_contacts": "Kişilere göndermeler için gerekli kıl",
|
||||||
"require_for_sends_to_internal_wallets" : "Dahili cüzdanlara yapılan gönderimler için gereklilik",
|
"require_for_sends_to_internal_wallets": "Dahili cüzdanlara yapılan gönderimler için gereklilik",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Dahili cüzdanlara değişim gerektir",
|
"require_for_exchanges_to_internal_wallets": "Dahili cüzdanlara değişim gerektir",
|
||||||
"require_for_adding_contacts" : "Kişi eklemek için gerekli",
|
"require_for_adding_contacts": "Kişi eklemek için gerekli",
|
||||||
"require_for_creating_new_wallets" : "Yeni cüzdan oluşturmak için gerekli",
|
"require_for_creating_new_wallets": "Yeni cüzdan oluşturmak için gerekli",
|
||||||
"require_for_all_security_and_backup_settings" : "Tüm güvenlik ve yedekleme ayarları için iste",
|
"require_for_all_security_and_backup_settings": "Tüm güvenlik ve yedekleme ayarları için iste",
|
||||||
"disable_sell": "Satış işlemini devre dışı bırak",
|
|
||||||
"available_balance_description": "Bu, cüzdanınızda harcayabileceğiniz miktar. Bu miktar, cüzdanınızdan çekilebilecek toplam bakiyeden daha düşük olabilir, çünkü bazı fonlar henüz kullanılamaz durumda olabilir.",
|
"available_balance_description": "Bu, cüzdanınızda harcayabileceğiniz miktar. Bu miktar, cüzdanınızdan çekilebilecek toplam bakiyeden daha düşük olabilir, çünkü bazı fonlar henüz kullanılamaz durumda olabilir.",
|
||||||
"syncing_wallet_alert_title": "Cüzdanınız senkronize ediliyor",
|
"syncing_wallet_alert_title": "Cüzdanınız senkronize ediliyor",
|
||||||
"syncing_wallet_alert_content": "Bakiyeniz ve işlem listeniz, en üstte \"SENKRONİZE EDİLDİ\" yazana kadar tamamlanmamış olabilir. Daha fazla bilgi edinmek için tıklayın/dokunun.",
|
"syncing_wallet_alert_content": "Bakiyeniz ve işlem listeniz, en üstte \"SENKRONİZE EDİLDİ\" yazana kadar tamamlanmamış olabilir. Daha fazla bilgi edinmek için tıklayın/dokunun.",
|
||||||
|
@ -683,5 +682,7 @@
|
||||||
"support_title_guides": "Kek Cüzdan Kılavuzları",
|
"support_title_guides": "Kek Cüzdan Kılavuzları",
|
||||||
"support_description_guides": "Ortak sorunlara belge ve destek",
|
"support_description_guides": "Ortak sorunlara belge ve destek",
|
||||||
"support_title_other_links": "Diğer destek bağlantıları",
|
"support_title_other_links": "Diğer destek bağlantıları",
|
||||||
"support_description_other_links": "Topluluklarımıza katılın veya ortaklarımıza diğer yöntemlerle bize ulaşın"
|
"support_description_other_links": "Topluluklarımıza katılın veya ortaklarımıza diğer yöntemlerle bize ulaşın",
|
||||||
|
"select_destination": "Lütfen yedekleme dosyası için hedef seçin.",
|
||||||
|
"save_to_downloads": "İndirilenlere Kaydet"
|
||||||
}
|
}
|
||||||
|
|
|
@ -634,18 +634,18 @@
|
||||||
"setup_totp_recommended": "Налаштувати TOTP (рекомендовано)",
|
"setup_totp_recommended": "Налаштувати TOTP (рекомендовано)",
|
||||||
"disable_buy": "Вимкнути дію покупки",
|
"disable_buy": "Вимкнути дію покупки",
|
||||||
"disable_sell": "Вимкнути дію продажу",
|
"disable_sell": "Вимкнути дію продажу",
|
||||||
"cake_2fa_preset" : "Торт 2FA Preset",
|
"cake_2fa_preset": "Торт 2FA Preset",
|
||||||
"narrow": "вузькі",
|
"narrow": "вузькі",
|
||||||
"normal": "нормальний",
|
"normal": "нормальний",
|
||||||
"aggressive": "Надто старанний",
|
"aggressive": "Надто старанний",
|
||||||
"require_for_assessing_wallet": "Потрібен доступ до гаманця",
|
"require_for_assessing_wallet": "Потрібен доступ до гаманця",
|
||||||
"require_for_sends_to_non_contacts" : "Вимагати для надсилання неконтактним особам",
|
"require_for_sends_to_non_contacts": "Вимагати для надсилання неконтактним особам",
|
||||||
"require_for_sends_to_contacts" : "Вимагати для надсилання контактам",
|
"require_for_sends_to_contacts": "Вимагати для надсилання контактам",
|
||||||
"require_for_sends_to_internal_wallets" : "Вимагати надсилання на внутрішні гаманці",
|
"require_for_sends_to_internal_wallets": "Вимагати надсилання на внутрішні гаманці",
|
||||||
"require_for_exchanges_to_internal_wallets" : "Вимагати обміну на внутрішні гаманці",
|
"require_for_exchanges_to_internal_wallets": "Вимагати обміну на внутрішні гаманці",
|
||||||
"require_for_adding_contacts" : "Потрібен для додавання контактів",
|
"require_for_adding_contacts": "Потрібен для додавання контактів",
|
||||||
"require_for_creating_new_wallets" : "Потрібно для створення нових гаманців",
|
"require_for_creating_new_wallets": "Потрібно для створення нових гаманців",
|
||||||
"require_for_all_security_and_backup_settings" : "Вимагати всіх налаштувань безпеки та резервного копіювання",
|
"require_for_all_security_and_backup_settings": "Вимагати всіх налаштувань безпеки та резервного копіювання",
|
||||||
"available_balance_description": "Це сума, яку ви можете витратити, не включаючи невизначені кошти. Це може бути менше, ніж загальний баланс, якщо ви витратили кошти, які ще не підтверджені.",
|
"available_balance_description": "Це сума, яку ви можете витратити, не включаючи невизначені кошти. Це може бути менше, ніж загальний баланс, якщо ви витратили кошти, які ще не підтверджені.",
|
||||||
"syncing_wallet_alert_title": "Ваш гаманець синхронізується",
|
"syncing_wallet_alert_title": "Ваш гаманець синхронізується",
|
||||||
"syncing_wallet_alert_content": "Ваш баланс та список транзакцій може бути неповним, доки вгорі не буде написано «СИНХРОНІЗОВАНО». Натисніть/торкніться, щоб дізнатися більше.",
|
"syncing_wallet_alert_content": "Ваш баланс та список транзакцій може бути неповним, доки вгорі не буде написано «СИНХРОНІЗОВАНО». Натисніть/торкніться, щоб дізнатися більше.",
|
||||||
|
@ -684,5 +684,7 @@
|
||||||
"support_title_guides": "Поклики для гаманців тортів",
|
"support_title_guides": "Поклики для гаманців тортів",
|
||||||
"support_description_guides": "Документація та підтримка загальних питань",
|
"support_description_guides": "Документація та підтримка загальних питань",
|
||||||
"support_title_other_links": "Інші посилання на підтримку",
|
"support_title_other_links": "Інші посилання на підтримку",
|
||||||
"support_description_other_links": "Приєднуйтесь до наших спільнот або досягайте нас нашими партнерами іншими методами"
|
"support_description_other_links": "Приєднуйтесь до наших спільнот або досягайте нас нашими партнерами іншими методами",
|
||||||
|
"select_destination": "Виберіть місце призначення для файлу резервної копії.",
|
||||||
|
"save_to_downloads": "Зберегти до завантажень"
|
||||||
}
|
}
|
||||||
|
|
|
@ -676,5 +676,7 @@
|
||||||
"support_title_guides": "کیک پرس گائڈز",
|
"support_title_guides": "کیک پرس گائڈز",
|
||||||
"support_description_guides": "عام مسائل کے لئے دستاویزات اور مدد",
|
"support_description_guides": "عام مسائل کے لئے دستاویزات اور مدد",
|
||||||
"support_title_other_links": "دوسرے سپورٹ لنکس",
|
"support_title_other_links": "دوسرے سپورٹ لنکس",
|
||||||
"support_description_other_links": "ہماری برادریوں میں شامل ہوں یا دوسرے طریقوں سے ہمارے شراکت داروں تک پہنچیں"
|
"support_description_other_links": "ہماری برادریوں میں شامل ہوں یا دوسرے طریقوں سے ہمارے شراکت داروں تک پہنچیں",
|
||||||
|
"select_destination": "۔ﮟﯾﺮﮐ ﺏﺎﺨﺘﻧﺍ ﺎﮐ ﻝﺰﻨﻣ ﮯﯿﻟ ﮯﮐ ﻞﺋﺎﻓ ﭖﺍ ﮏﯿﺑ ﻡﺮﮐ ﮦﺍﺮﺑ",
|
||||||
|
"save_to_downloads": "۔ﮟﯾﺮﮐ ﻅﻮﻔﺤﻣ ﮟﯿﻣ ﺯﮈﻮﻟ ﻥﺅﺍﮈ"
|
||||||
}
|
}
|
||||||
|
|
|
@ -678,5 +678,7 @@
|
||||||
"bitcoin_light_theme": "Bitcoin Light Akori",
|
"bitcoin_light_theme": "Bitcoin Light Akori",
|
||||||
"high_contrast_theme": "Akori Iyatọ giga",
|
"high_contrast_theme": "Akori Iyatọ giga",
|
||||||
"matrix_green_dark_theme": "Matrix Green Dark Akori",
|
"matrix_green_dark_theme": "Matrix Green Dark Akori",
|
||||||
"monero_light_theme": "Monero Light Akori"
|
"monero_light_theme": "Monero Light Akori",
|
||||||
|
"select_destination": "Jọwọ yan ibi ti o nlo fun faili afẹyinti.",
|
||||||
|
"save_to_downloads": "Fipamọ si Awọn igbasilẹ"
|
||||||
}
|
}
|
||||||
|
|
|
@ -683,5 +683,7 @@
|
||||||
"bitcoin_light_theme": "比特币浅色主题",
|
"bitcoin_light_theme": "比特币浅色主题",
|
||||||
"high_contrast_theme": "高对比度主题",
|
"high_contrast_theme": "高对比度主题",
|
||||||
"matrix_green_dark_theme": "矩阵绿暗主题",
|
"matrix_green_dark_theme": "矩阵绿暗主题",
|
||||||
"monero_light_theme": "门罗币浅色主题"
|
"monero_light_theme": "门罗币浅色主题",
|
||||||
|
"select_destination": "请选择备份文件的目的地。",
|
||||||
|
"save_to_downloads": "保存到下载"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue