mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 11:39:22 +00:00
Fix typos (#276)
This commit is contained in:
parent
d05f392aae
commit
48653f53a4
5 changed files with 6 additions and 6 deletions
|
@ -104,7 +104,7 @@ Risks Related to the use of the App
|
|||
|
||||
- Mistakes made by the user of any Monero-related and/or Bitcoin-related and/or Litecoin-related software or service, e.g., forgotten passwords, payments sent to wrong Monero and/or Bitcoin and/or Litecoin addresses, or accidental deletion of wallets;
|
||||
|
||||
- Software problems of the App and/or any Monero-related or Bitcoin-related or Litecoin-related oftware or service, e.g., corrupted wallet file, incorrectly constructed transactions, unsafe cryptographic libraries, malware affecting the App and/or any Monero-related or Bitcoin-related or Litecoin-related software or service;
|
||||
- Software problems of the App and/or any Monero-related or Bitcoin-related or Litecoin-related software or service, e.g., corrupted wallet file, incorrectly constructed transactions, unsafe cryptographic libraries, malware affecting the App and/or any Monero-related or Bitcoin-related or Litecoin-related software or service;
|
||||
|
||||
- Technical failures in the hardware of the user of any Monero-related and/or Bitcoin-related and/or Litecoin-related software or service, e.g., data loss due to a faulty or damaged storage device;
|
||||
|
||||
|
|
|
@ -41,7 +41,7 @@ CakeWallet cannot be built without the following packages installed on your buil
|
|||
|
||||
- openjdk-8-jre-headless
|
||||
|
||||
You may easily install them on your build sytem with the following command:
|
||||
You may easily install them on your build system with the following command:
|
||||
|
||||
`$ sudo apt-get install -y unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake openjdk-8-jre-headless`
|
||||
|
||||
|
|
|
@ -45,11 +45,11 @@
|
|||
<key>NSCameraUsageDescription</key>
|
||||
<string>Used for scan QR code</string>
|
||||
<key>NSDocumentsFolderUsageDescription</key>
|
||||
<string>We need access to documents folder for get acces to open/save backup file</string>
|
||||
<string>We need access to documents folder for getting access to open/save backup file</string>
|
||||
<key>NSFaceIDUsageDescription</key>
|
||||
<string>Enable Face ID for fast and secure access to wallets and private keys</string>
|
||||
<key>NSPhotoLibraryUsageDescription</key>
|
||||
<string>We need access to documents folder for get acces to open/save backup file</string>
|
||||
<string>We need access to documents folder for getting access to open/save backup file</string>
|
||||
<key>UIBackgroundModes</key>
|
||||
<array>
|
||||
<string>fetch</string>
|
||||
|
|
|
@ -4,7 +4,7 @@ const bitcoinMnemonicLength = 12;
|
|||
const moneroMnemonicLength = 25;
|
||||
|
||||
int mnemonicLength(WalletType type) {
|
||||
// TODO: need to have only one place for get(set) mnemonic string lenth;
|
||||
// TODO: need to have only one place for get(set) mnemonic string length;
|
||||
|
||||
switch (type) {
|
||||
case WalletType.monero:
|
||||
|
|
|
@ -95,7 +95,7 @@ Future<void> ios_migrate_user_defaults() async {
|
|||
}
|
||||
await prefs.setBool('dark_theme', isDark);
|
||||
|
||||
//assign the pin lenght
|
||||
//assign the pin length
|
||||
final pinLength = await ios_legacy_helper.getInt('pin-length');
|
||||
await prefs.setInt(PreferencesKey.currentPinLength, pinLength);
|
||||
|
||||
|
|
Loading…
Reference in a new issue