mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-03 20:07:11 +01:00
Merge branch 'master' into rn722
This commit is contained in:
commit
86fe574d37
90 changed files with 1917 additions and 3786 deletions
18
.github/workflows/ci.yml
vendored
18
.github/workflows/ci.yml
vendored
|
@ -20,10 +20,10 @@ jobs:
|
||||||
- name: Specify node version
|
- name: Specify node version
|
||||||
uses: actions/setup-node@v2-beta
|
uses: actions/setup-node@v2-beta
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 18
|
||||||
|
|
||||||
- name: Use npm caches
|
- name: Use npm caches
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ~/.npm
|
path: ~/.npm
|
||||||
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
@ -32,7 +32,7 @@ jobs:
|
||||||
|
|
||||||
- name: Use node_modules caches
|
- name: Use node_modules caches
|
||||||
id: cache-nm
|
id: cache-nm
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: node_modules
|
path: node_modules
|
||||||
key: ${{ runner.os }}-nm-${{ hashFiles('package-lock.json') }}
|
key: ${{ runner.os }}-nm-${{ hashFiles('package-lock.json') }}
|
||||||
|
@ -63,18 +63,20 @@ jobs:
|
||||||
- name: Specify node version
|
- name: Specify node version
|
||||||
uses: actions/setup-node@v2-beta
|
uses: actions/setup-node@v2-beta
|
||||||
with:
|
with:
|
||||||
node-version: 16
|
node-version: 18
|
||||||
|
|
||||||
- name: Use gradle caches
|
- name: Use gradle caches
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ~/.gradle/caches
|
path: |
|
||||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
|
~/.gradle/caches
|
||||||
|
~/.gradle/wrapper
|
||||||
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-gradle-
|
${{ runner.os }}-gradle-
|
||||||
|
|
||||||
- name: Use npm caches
|
- name: Use npm caches
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ~/.npm
|
path: ~/.npm
|
||||||
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
||||||
|
|
22
App.js
22
App.js
|
@ -32,6 +32,7 @@ import ActionSheet from './screen/ActionSheet';
|
||||||
import HandoffComponent from './components/handoff';
|
import HandoffComponent from './components/handoff';
|
||||||
import Privacy from './blue_modules/Privacy';
|
import Privacy from './blue_modules/Privacy';
|
||||||
import triggerHapticFeedback, { HapticFeedbackTypes } from './blue_modules/hapticFeedback';
|
import triggerHapticFeedback, { HapticFeedbackTypes } from './blue_modules/hapticFeedback';
|
||||||
|
import MenuElements from './components/MenuElements';
|
||||||
const A = require('./blue_modules/analytics');
|
const A = require('./blue_modules/analytics');
|
||||||
const currency = require('./blue_modules/currency');
|
const currency = require('./blue_modules/currency');
|
||||||
|
|
||||||
|
@ -76,22 +77,6 @@ const App = () => {
|
||||||
if (payload.foreground) await processPushNotifications();
|
if (payload.foreground) await processPushNotifications();
|
||||||
};
|
};
|
||||||
|
|
||||||
const openSettings = () => {
|
|
||||||
NavigationService.dispatch(
|
|
||||||
CommonActions.navigate({
|
|
||||||
name: 'Settings',
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const addWalletMenuAction = () => {
|
|
||||||
NavigationService.dispatch(
|
|
||||||
CommonActions.navigate({
|
|
||||||
name: 'AddWalletRoot',
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const onUserActivityOpen = data => {
|
const onUserActivityOpen = data => {
|
||||||
switch (data.activityType) {
|
switch (data.activityType) {
|
||||||
case HandoffComponent.activityTypes.ReceiveOnchain:
|
case HandoffComponent.activityTypes.ReceiveOnchain:
|
||||||
|
@ -134,8 +119,6 @@ const App = () => {
|
||||||
On willPresent on AppDelegate.m
|
On willPresent on AppDelegate.m
|
||||||
*/
|
*/
|
||||||
eventEmitter?.addListener('onNotificationReceived', onNotificationReceived);
|
eventEmitter?.addListener('onNotificationReceived', onNotificationReceived);
|
||||||
eventEmitter?.addListener('openSettings', openSettings);
|
|
||||||
eventEmitter?.addListener('addWalletMenuAction', addWalletMenuAction);
|
|
||||||
eventEmitter?.addListener('onUserActivityOpen', onUserActivityOpen);
|
eventEmitter?.addListener('onUserActivityOpen', onUserActivityOpen);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -311,10 +294,11 @@ const App = () => {
|
||||||
<NavigationContainer ref={navigationRef} theme={colorScheme === 'dark' ? BlueDarkTheme : BlueDefaultTheme}>
|
<NavigationContainer ref={navigationRef} theme={colorScheme === 'dark' ? BlueDarkTheme : BlueDefaultTheme}>
|
||||||
<InitRoot />
|
<InitRoot />
|
||||||
<Notifications onProcessNotifications={processPushNotifications} />
|
<Notifications onProcessNotifications={processPushNotifications} />
|
||||||
|
<MenuElements />
|
||||||
|
<DeviceQuickActions />
|
||||||
</NavigationContainer>
|
</NavigationContainer>
|
||||||
</View>
|
</View>
|
||||||
<WatchConnectivity />
|
<WatchConnectivity />
|
||||||
<DeviceQuickActions />
|
|
||||||
<Biometric />
|
<Biometric />
|
||||||
<WidgetCommunication />
|
<WidgetCommunication />
|
||||||
<Privacy />
|
<Privacy />
|
||||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2023 BlueWallet developers
|
Copyright (c) 2024 BlueWallet developers
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -80,10 +80,10 @@ npx react-native run-ios
|
||||||
* To run on macOS using Mac Catalyst:
|
* To run on macOS using Mac Catalyst:
|
||||||
|
|
||||||
```
|
```
|
||||||
npm run maccatalystpatches
|
npx pod-install
|
||||||
```
|
```
|
||||||
|
|
||||||
Once the patches are applied, open Xcode and select "My Mac" as destination.
|
Open ios/BlueWallet.xcworkspace. Once the project loads, select the scheme/target BlueWallet-NoLDK. Click Run.
|
||||||
|
|
||||||
## TESTS
|
## TESTS
|
||||||
|
|
||||||
|
|
|
@ -2,13 +2,11 @@ import React, { useContext, useEffect, useState } from 'react';
|
||||||
import { View, Image, TouchableOpacity, StyleSheet, ActivityIndicator, useColorScheme } from 'react-native';
|
import { View, Image, TouchableOpacity, StyleSheet, ActivityIndicator, useColorScheme } from 'react-native';
|
||||||
import { Icon } from 'react-native-elements';
|
import { Icon } from 'react-native-elements';
|
||||||
import Biometric from './class/biometrics';
|
import Biometric from './class/biometrics';
|
||||||
import LottieView from 'lottie-react-native';
|
|
||||||
import { SafeAreaView } from 'react-native-safe-area-context';
|
import { SafeAreaView } from 'react-native-safe-area-context';
|
||||||
import { StackActions, useNavigation, useRoute } from '@react-navigation/native';
|
import { StackActions, useNavigation, useRoute } from '@react-navigation/native';
|
||||||
import { BlueStorageContext } from './blue_modules/storage-context';
|
import { BlueStorageContext } from './blue_modules/storage-context';
|
||||||
import { isHandset } from './blue_modules/environment';
|
import { isHandset } from './blue_modules/environment';
|
||||||
import triggerHapticFeedback, { HapticFeedbackTypes } from './blue_modules/hapticFeedback';
|
import triggerHapticFeedback, { HapticFeedbackTypes } from './blue_modules/hapticFeedback';
|
||||||
const lottieJson = require('./img/bluewalletsplash.json');
|
|
||||||
|
|
||||||
const styles = StyleSheet.create({
|
const styles = StyleSheet.create({
|
||||||
root: {
|
root: {
|
||||||
|
@ -19,14 +17,7 @@ const styles = StyleSheet.create({
|
||||||
justifyContent: 'center',
|
justifyContent: 'center',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
},
|
},
|
||||||
biometric: {
|
|
||||||
position: 'absolute',
|
|
||||||
bottom: 0,
|
|
||||||
left: 0,
|
|
||||||
right: 0,
|
|
||||||
alignItems: 'center',
|
|
||||||
marginBottom: 58,
|
|
||||||
},
|
|
||||||
biometricRow: {
|
biometricRow: {
|
||||||
justifyContent: 'center',
|
justifyContent: 'center',
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
|
@ -35,10 +26,10 @@ const styles = StyleSheet.create({
|
||||||
width: 64,
|
width: 64,
|
||||||
height: 64,
|
height: 64,
|
||||||
},
|
},
|
||||||
|
logoImage: {
|
||||||
lottie: {
|
width: 100,
|
||||||
width: lottieJson.w,
|
height: 75,
|
||||||
height: lottieJson.h,
|
alignSelf: 'center',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -49,20 +40,11 @@ const UnlockWith = () => {
|
||||||
const [biometricType, setBiometricType] = useState(false);
|
const [biometricType, setBiometricType] = useState(false);
|
||||||
const [isStorageEncryptedEnabled, setIsStorageEncryptedEnabled] = useState(false);
|
const [isStorageEncryptedEnabled, setIsStorageEncryptedEnabled] = useState(false);
|
||||||
const [isAuthenticating, setIsAuthenticating] = useState(false);
|
const [isAuthenticating, setIsAuthenticating] = useState(false);
|
||||||
const [animationDidFinish, setAnimationDidFinish] = useState(false);
|
|
||||||
const colorScheme = useColorScheme();
|
const colorScheme = useColorScheme();
|
||||||
|
|
||||||
const initialRender = async () => {
|
|
||||||
let bt = false;
|
|
||||||
if (await Biometric.isBiometricUseCapableAndEnabled()) {
|
|
||||||
bt = await Biometric.biometricType();
|
|
||||||
}
|
|
||||||
|
|
||||||
setBiometricType(bt);
|
|
||||||
};
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
initialRender();
|
startUnlock();
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const successfullyAuthenticated = () => {
|
const successfullyAuthenticated = () => {
|
||||||
|
@ -71,7 +53,6 @@ const UnlockWith = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const unlockWithBiometrics = async () => {
|
const unlockWithBiometrics = async () => {
|
||||||
if (isAuthenticating) return;
|
|
||||||
if (await isStorageEncrypted()) {
|
if (await isStorageEncrypted()) {
|
||||||
unlockWithKey();
|
unlockWithKey();
|
||||||
} else {
|
} else {
|
||||||
|
@ -127,23 +108,28 @@ const UnlockWith = () => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const onAnimationFinish = async () => {
|
const startUnlock = async () => {
|
||||||
if (unlockOnComponentMount) {
|
if (unlockOnComponentMount) {
|
||||||
const storageIsEncrypted = await isStorageEncrypted();
|
const storageIsEncrypted = await isStorageEncrypted();
|
||||||
setIsStorageEncryptedEnabled(storageIsEncrypted);
|
setIsStorageEncryptedEnabled(storageIsEncrypted);
|
||||||
|
let bt = false;
|
||||||
|
if (await Biometric.isBiometricUseCapableAndEnabled()) {
|
||||||
|
bt = await Biometric.biometricType();
|
||||||
|
}
|
||||||
|
|
||||||
|
setBiometricType(bt);
|
||||||
if (!biometricType || storageIsEncrypted) {
|
if (!biometricType || storageIsEncrypted) {
|
||||||
unlockWithKey();
|
unlockWithKey();
|
||||||
} else if (typeof biometricType === 'string') unlockWithBiometrics();
|
} else if (typeof biometricType === 'string') unlockWithBiometrics();
|
||||||
}
|
}
|
||||||
setAnimationDidFinish(true);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SafeAreaView style={styles.root}>
|
<SafeAreaView style={styles.root}>
|
||||||
<View style={styles.container}>
|
<View style={styles.container}>
|
||||||
<LottieView source={lottieJson} autoPlay loop={false} onAnimationFinish={onAnimationFinish} style={styles.lottie} />
|
<Image source={require('./img/icon.png')} style={styles.logoImage} resizeMode="contain" />
|
||||||
<View style={styles.biometric}>{animationDidFinish && <View style={styles.biometricRow}>{renderUnlockOptions()}</View>}</View>
|
|
||||||
</View>
|
</View>
|
||||||
|
<View style={styles.biometricRow}>{renderUnlockOptions()}</View>
|
||||||
</SafeAreaView>
|
</SafeAreaView>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -79,7 +79,7 @@ android {
|
||||||
minSdkVersion rootProject.ext.minSdkVersion
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||||
versionCode 1
|
versionCode 1
|
||||||
versionName "6.4.15"
|
versionName "6.4.17"
|
||||||
testBuildType System.getProperty('testBuildType', 'debug')
|
testBuildType System.getProperty('testBuildType', 'debug')
|
||||||
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
||||||
}
|
}
|
||||||
|
|
|
@ -64,11 +64,20 @@
|
||||||
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</service>
|
</service>
|
||||||
|
<activity android:name=".SplashActivity"
|
||||||
|
android:exported="true"
|
||||||
|
>
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN" />
|
||||||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:launchMode="singleInstance"
|
android:launchMode="singleTop"
|
||||||
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
||||||
android:windowSoftInputMode="adjustResize"
|
android:windowSoftInputMode="adjustResize"
|
||||||
android:exported="true">
|
android:exported="true">
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
package io.bluewallet.bluewallet; // Replace with your package name
|
||||||
|
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.os.Handler;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
|
||||||
|
public class SplashActivity extends AppCompatActivity {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
setContentView(R.layout.splash_screen); // Replace with your layout name
|
||||||
|
|
||||||
|
int SPLASH_DISPLAY_LENGTH = 1000; // Splash screen duration in milliseconds
|
||||||
|
|
||||||
|
new Handler().postDelayed(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
Intent mainIntent = new Intent(SplashActivity.this, MainActivity.class);
|
||||||
|
SplashActivity.this.startActivity(mainIntent);
|
||||||
|
SplashActivity.this.finish();
|
||||||
|
}
|
||||||
|
}, SPLASH_DISPLAY_LENGTH);
|
||||||
|
}
|
||||||
|
}
|
BIN
android/app/src/main/res/drawable-mdpi/splash_icon.png
Normal file
BIN
android/app/src/main/res/drawable-mdpi/splash_icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
android/app/src/main/res/drawable-xhdpi/splash_icon.png
Normal file
BIN
android/app/src/main/res/drawable-xhdpi/splash_icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
BIN
android/app/src/main/res/drawable-xxhdpi/splash_icon.png
Normal file
BIN
android/app/src/main/res/drawable-xxhdpi/splash_icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
13
android/app/src/main/res/layout/splash_screen.xml
Normal file
13
android/app/src/main/res/layout/splash_screen.xml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@color/background_color">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:layout_width="100dp"
|
||||||
|
android:layout_height="75dp"
|
||||||
|
android:scaleType="fitCenter"
|
||||||
|
android:layout_centerInParent="true"
|
||||||
|
android:src="@drawable/splash_icon" />
|
||||||
|
</RelativeLayout>
|
||||||
|
|
4
android/app/src/main/res/values-night/colors.xml
Normal file
4
android/app/src/main/res/values-night/colors.xml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<resources>
|
||||||
|
<color name="background_color">#000000</color> <!-- Dark background -->
|
||||||
|
</resources>
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
<resources>
|
<resources>
|
||||||
<color name="white">#FFF</color>
|
<color name="white">#FFF</color>
|
||||||
|
<color name="background_color">#FFFFFF</color> <!-- Light background -->
|
||||||
</resources>
|
</resources>
|
|
@ -1,21 +0,0 @@
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2020 bitcoinjs
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
|
@ -1,2 +0,0 @@
|
||||||
# aezeed
|
|
||||||
A package for encoding, decoding, and generating mnemonics of the aezeed specification. (WIP)
|
|
|
@ -1,85 +0,0 @@
|
||||||
{
|
|
||||||
"_from": "aezeed",
|
|
||||||
"_id": "aezeed@0.0.4",
|
|
||||||
"_inBundle": false,
|
|
||||||
"_integrity": "sha512-KAv2y2AtbqpdtsabCLE+C0G0h4BZLeMHsLCRga3VicYLxD17RflUBJ++c5qdpN6B6fkvK90r6bWg52Z/gMC7gQ==",
|
|
||||||
"_location": "/aezeed",
|
|
||||||
"_phantomChildren": {},
|
|
||||||
"_requested": {
|
|
||||||
"type": "tag",
|
|
||||||
"registry": true,
|
|
||||||
"raw": "aezeed",
|
|
||||||
"name": "aezeed",
|
|
||||||
"escapedName": "aezeed",
|
|
||||||
"rawSpec": "",
|
|
||||||
"saveSpec": null,
|
|
||||||
"fetchSpec": "latest"
|
|
||||||
},
|
|
||||||
"_requiredBy": [
|
|
||||||
"#USER",
|
|
||||||
"/"
|
|
||||||
],
|
|
||||||
"_resolved": "https://registry.npmjs.org/aezeed/-/aezeed-0.0.4.tgz",
|
|
||||||
"_shasum": "8fce8778d34f5566328f61df7706351cb15873a9",
|
|
||||||
"_spec": "aezeed",
|
|
||||||
"_where": "/home/overtorment/Documents/BlueWallet",
|
|
||||||
"author": {
|
|
||||||
"name": "Jonathan Underwood"
|
|
||||||
},
|
|
||||||
"bugs": {
|
|
||||||
"url": "https://github.com/bitcoinjs/aezeed/issues"
|
|
||||||
},
|
|
||||||
"bundleDependencies": false,
|
|
||||||
"dependencies": {
|
|
||||||
"aez": "^1.0.1",
|
|
||||||
"crc-32": "npm:junderw-crc32c@^1.2.0",
|
|
||||||
"randombytes": "^2.1.0",
|
|
||||||
"scryptsy": "^2.1.0"
|
|
||||||
},
|
|
||||||
"deprecated": false,
|
|
||||||
"description": "A package for encoding, decoding, and generating mnemonics of the aezeed specification.",
|
|
||||||
"devDependencies": {
|
|
||||||
"@types/jest": "^26.0.10",
|
|
||||||
"@types/node": "^16.0.0",
|
|
||||||
"@types/randombytes": "^2.0.0",
|
|
||||||
"@types/scryptsy": "^2.0.0",
|
|
||||||
"jest": "^26.4.2",
|
|
||||||
"prettier": "^2.1.0",
|
|
||||||
"ts-jest": "^26.2.0",
|
|
||||||
"tslint": "^6.1.3",
|
|
||||||
"typescript": "^4.0.2"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"src"
|
|
||||||
],
|
|
||||||
"homepage": "https://github.com/bitcoinjs/aezeed#readme",
|
|
||||||
"keywords": [
|
|
||||||
"aezeed",
|
|
||||||
"bitcoin",
|
|
||||||
"lightning",
|
|
||||||
"lnd"
|
|
||||||
],
|
|
||||||
"license": "MIT",
|
|
||||||
"main": "src/cipherseed.js",
|
|
||||||
"name": "aezeed",
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://github.com/bitcoinjs/aezeed.git"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"build": "npm run clean && tsc -p tsconfig.json",
|
|
||||||
"clean": "rm -rf src",
|
|
||||||
"coverage": "npm run unit -- --coverage",
|
|
||||||
"format": "npm run prettier -- --write",
|
|
||||||
"format:ci": "npm run prettier -- --check",
|
|
||||||
"gitdiff": "git diff --exit-code",
|
|
||||||
"gitdiff:ci": "npm run build && npm run gitdiff",
|
|
||||||
"lint": "tslint -p tsconfig.json -c tslint.json",
|
|
||||||
"prepublishOnly": "npm run test && npm run gitdiff",
|
|
||||||
"prettier": "prettier 'ts_src/**/*.ts' --single-quote --trailing-comma=all --ignore-path ./.prettierignore",
|
|
||||||
"test": "npm run build && npm run format:ci && npm run lint && npm run unit",
|
|
||||||
"unit": "jest --config=jest.json --runInBand"
|
|
||||||
},
|
|
||||||
"types": "src/cipherseed.d.ts",
|
|
||||||
"version": "0.0.4"
|
|
||||||
}
|
|
15
blue_modules/aezeed/src/cipherseed.d.ts
vendored
15
blue_modules/aezeed/src/cipherseed.d.ts
vendored
|
@ -1,15 +0,0 @@
|
||||||
/// <reference types="node" />
|
|
||||||
export declare class CipherSeed {
|
|
||||||
entropy: Buffer;
|
|
||||||
salt: Buffer;
|
|
||||||
internalVersion: number;
|
|
||||||
birthday: number;
|
|
||||||
private static decipher;
|
|
||||||
static fromMnemonic(mnemonic: string, password?: string): CipherSeed;
|
|
||||||
static random(): CipherSeed;
|
|
||||||
static changePassword(mnemonic: string, oldPassword: string | null, newPassword: string): string;
|
|
||||||
constructor(entropy: Buffer, salt: Buffer, internalVersion?: number, birthday?: number);
|
|
||||||
get birthDate(): Date;
|
|
||||||
toMnemonic(password?: string, cipherSeedVersion?: number): string;
|
|
||||||
private encipher;
|
|
||||||
}
|
|
|
@ -1,105 +0,0 @@
|
||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
exports.CipherSeed = void 0;
|
|
||||||
const BlueCrypto = require('react-native-blue-crypto');
|
|
||||||
const scrypt = require("scryptsy");
|
|
||||||
const rng = require("randombytes");
|
|
||||||
const mn = require("./mnemonic");
|
|
||||||
const params_1 = require("./params");
|
|
||||||
const aez = require('aez');
|
|
||||||
const crc = require('junderw-crc32c');
|
|
||||||
const BITCOIN_GENESIS = new Date('2009-01-03T18:15:05.000Z').getTime();
|
|
||||||
const daysSinceGenesis = (time) => Math.floor((time.getTime() - BITCOIN_GENESIS) / params_1.ONE_DAY);
|
|
||||||
|
|
||||||
async function scryptWrapper(secret, salt, N, r, p, dkLen, progressCallback) {
|
|
||||||
if (BlueCrypto.isAvailable()) {
|
|
||||||
secret = Buffer.from(secret).toString('hex');
|
|
||||||
salt = Buffer.from(salt).toString('hex');
|
|
||||||
const hex = await BlueCrypto.scrypt(secret, salt, N, r, p, dkLen);
|
|
||||||
return Buffer.from(hex, 'hex');
|
|
||||||
} else {
|
|
||||||
// fallback to js implementation
|
|
||||||
return scrypt(secret, salt, N, r, p, dkLen, progressCallback);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
class CipherSeed {
|
|
||||||
constructor(entropy, salt, internalVersion = 0, birthday = daysSinceGenesis(new Date())) {
|
|
||||||
this.entropy = entropy;
|
|
||||||
this.salt = salt;
|
|
||||||
this.internalVersion = internalVersion;
|
|
||||||
this.birthday = birthday;
|
|
||||||
if (entropy && entropy.length !== 16)
|
|
||||||
throw new Error('incorrect entropy length');
|
|
||||||
if (salt && salt.length !== 5)
|
|
||||||
throw new Error('incorrect salt length');
|
|
||||||
}
|
|
||||||
|
|
||||||
static async decipher(cipherBuf, password) {
|
|
||||||
if (cipherBuf[0] >= params_1.PARAMS.length) {
|
|
||||||
throw new Error('Invalid cipherSeedVersion');
|
|
||||||
}
|
|
||||||
const cipherSeedVersion = cipherBuf[0];
|
|
||||||
const params = params_1.PARAMS[cipherSeedVersion];
|
|
||||||
const checksum = Buffer.allocUnsafe(4);
|
|
||||||
const checksumNum = crc.buf(cipherBuf.slice(0, 29));
|
|
||||||
checksum.writeInt32BE(checksumNum);
|
|
||||||
if (!checksum.equals(cipherBuf.slice(29))) {
|
|
||||||
throw new Error('CRC checksum mismatch');
|
|
||||||
}
|
|
||||||
const salt = cipherBuf.slice(24, 29);
|
|
||||||
const key = await scryptWrapper(Buffer.from(password, 'utf8'), salt, params.n, params.r, params.p, 32);
|
|
||||||
const adBytes = Buffer.allocUnsafe(6);
|
|
||||||
adBytes.writeUInt8(cipherSeedVersion, 0);
|
|
||||||
salt.copy(adBytes, 1);
|
|
||||||
const plainText = aez.decrypt(key, null, [adBytes], 4, cipherBuf.slice(1, 24));
|
|
||||||
if (plainText === null)
|
|
||||||
throw new Error('Invalid Password');
|
|
||||||
return new CipherSeed(plainText.slice(3, 19), salt, plainText[0], plainText.readUInt16BE(1));
|
|
||||||
}
|
|
||||||
|
|
||||||
static async fromMnemonic(mnemonic, password = params_1.DEFAULT_PASSWORD) {
|
|
||||||
const bytes = mn.mnemonicToBytes(mnemonic);
|
|
||||||
return await CipherSeed.decipher(bytes, password);
|
|
||||||
}
|
|
||||||
|
|
||||||
static random() {
|
|
||||||
return new CipherSeed(rng(16), rng(5));
|
|
||||||
}
|
|
||||||
|
|
||||||
static async changePassword(mnemonic, oldPassword, newPassword) {
|
|
||||||
const pwd = oldPassword === null ? params_1.DEFAULT_PASSWORD : oldPassword;
|
|
||||||
const cs = await CipherSeed.fromMnemonic(mnemonic, pwd);
|
|
||||||
return await cs.toMnemonic(newPassword);
|
|
||||||
}
|
|
||||||
|
|
||||||
get birthDate() {
|
|
||||||
return new Date(BITCOIN_GENESIS + this.birthday * params_1.ONE_DAY);
|
|
||||||
}
|
|
||||||
|
|
||||||
async toMnemonic(password = params_1.DEFAULT_PASSWORD, cipherSeedVersion = params_1.CIPHER_SEED_VERSION) {
|
|
||||||
return mn.mnemonicFromBytes(await this.encipher(password, cipherSeedVersion));
|
|
||||||
}
|
|
||||||
|
|
||||||
async encipher(password, cipherSeedVersion) {
|
|
||||||
const pwBuf = Buffer.from(password, 'utf8');
|
|
||||||
const params = params_1.PARAMS[cipherSeedVersion];
|
|
||||||
const key = await scryptWrapper(pwBuf, this.salt, params.n, params.r, params.p, 32);
|
|
||||||
const seedBytes = Buffer.allocUnsafe(19);
|
|
||||||
seedBytes.writeUInt8(this.internalVersion, 0);
|
|
||||||
seedBytes.writeUInt16BE(this.birthday, 1);
|
|
||||||
this.entropy.copy(seedBytes, 3);
|
|
||||||
const adBytes = Buffer.allocUnsafe(6);
|
|
||||||
adBytes.writeUInt8(cipherSeedVersion, 0);
|
|
||||||
this.salt.copy(adBytes, 1);
|
|
||||||
const cipherText = aez.encrypt(key, null, [adBytes], 4, seedBytes);
|
|
||||||
const cipherSeedBytes = Buffer.allocUnsafe(33);
|
|
||||||
cipherSeedBytes.writeUInt8(cipherSeedVersion, 0);
|
|
||||||
cipherText.copy(cipherSeedBytes, 1);
|
|
||||||
this.salt.copy(cipherSeedBytes, 24);
|
|
||||||
const checksumNum = crc.buf(cipherSeedBytes.slice(0, 29));
|
|
||||||
cipherSeedBytes.writeInt32BE(checksumNum, 29);
|
|
||||||
return cipherSeedBytes;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
exports.CipherSeed = CipherSeed;
|
|
3
blue_modules/aezeed/src/mnemonic.d.ts
vendored
3
blue_modules/aezeed/src/mnemonic.d.ts
vendored
|
@ -1,3 +0,0 @@
|
||||||
/// <reference types="node" />
|
|
||||||
export declare function mnemonicFromBytes(bytes: Buffer): string;
|
|
||||||
export declare function mnemonicToBytes(mnemonic: string): Buffer;
|
|
File diff suppressed because it is too large
Load diff
8
blue_modules/aezeed/src/params.d.ts
vendored
8
blue_modules/aezeed/src/params.d.ts
vendored
|
@ -1,8 +0,0 @@
|
||||||
export declare const PARAMS: {
|
|
||||||
n: number;
|
|
||||||
r: number;
|
|
||||||
p: number;
|
|
||||||
}[];
|
|
||||||
export declare const DEFAULT_PASSWORD = "aezeed";
|
|
||||||
export declare const CIPHER_SEED_VERSION = 0;
|
|
||||||
export declare const ONE_DAY: number;
|
|
|
@ -1,14 +0,0 @@
|
||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
exports.ONE_DAY = exports.CIPHER_SEED_VERSION = exports.DEFAULT_PASSWORD = exports.PARAMS = void 0;
|
|
||||||
exports.PARAMS = [
|
|
||||||
{
|
|
||||||
// version 0
|
|
||||||
n: 32768,
|
|
||||||
r: 8,
|
|
||||||
p: 1,
|
|
||||||
},
|
|
||||||
];
|
|
||||||
exports.DEFAULT_PASSWORD = 'aezeed';
|
|
||||||
exports.CIPHER_SEED_VERSION = 0;
|
|
||||||
exports.ONE_DAY = 24 * 60 * 60 * 1000;
|
|
|
@ -3,75 +3,79 @@ import RNFS from 'react-native-fs';
|
||||||
import Share from 'react-native-share';
|
import Share from 'react-native-share';
|
||||||
import loc from '../loc';
|
import loc from '../loc';
|
||||||
import DocumentPicker from 'react-native-document-picker';
|
import DocumentPicker from 'react-native-document-picker';
|
||||||
import { launchCamera, launchImageLibrary } from 'react-native-image-picker';
|
import { launchImageLibrary } from 'react-native-image-picker';
|
||||||
import { presentCameraNotAuthorizedAlert } from '../class/camera';
|
import { isDesktop } from './environment';
|
||||||
import { isDesktop } from '../blue_modules/environment';
|
|
||||||
import alert from '../components/Alert';
|
import alert from '../components/Alert';
|
||||||
import { readFile } from './react-native-bw-file-access';
|
import { readFile } from './react-native-bw-file-access';
|
||||||
|
|
||||||
const LocalQRCode = require('@remobile/react-native-qrcode-local-image');
|
const LocalQRCode = require('@remobile/react-native-qrcode-local-image');
|
||||||
|
|
||||||
const writeFileAndExportToAndroidDestionation = async ({ filename, contents, destinationLocalizedString, destination }) => {
|
const _shareOpen = async (filePath: string) => {
|
||||||
const granted = await PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE, {
|
return await Share.open({
|
||||||
title: loc.send.permission_storage_title,
|
url: 'file://' + filePath,
|
||||||
message: loc.send.permission_storage_message,
|
saveToFiles: isDesktop,
|
||||||
buttonNeutral: loc.send.permission_storage_later,
|
})
|
||||||
buttonNegative: loc._.cancel,
|
.catch(error => {
|
||||||
buttonPositive: loc._.ok,
|
alert(error.message);
|
||||||
});
|
console.log(error);
|
||||||
if (granted === PermissionsAndroid.RESULTS.GRANTED || Platform.Version >= 33) {
|
})
|
||||||
const filePath = destination + `/${filename}`;
|
.finally(() => {
|
||||||
try {
|
RNFS.unlink(filePath);
|
||||||
await RNFS.writeFile(filePath, contents);
|
});
|
||||||
alert(loc.formatString(loc._.file_saved, { filePath: filename, destination: destinationLocalizedString }));
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e);
|
|
||||||
alert(e.message);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
console.log('Storage Permission: Denied');
|
|
||||||
Alert.alert(loc.send.permission_storage_title, loc.send.permission_storage_denied_message, [
|
|
||||||
{
|
|
||||||
text: loc.send.open_settings,
|
|
||||||
onPress: () => {
|
|
||||||
Linking.openSettings();
|
|
||||||
},
|
|
||||||
style: 'default',
|
|
||||||
},
|
|
||||||
{ text: loc._.cancel, onPress: () => {}, style: 'cancel' },
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const writeFileAndExport = async function (filename, contents) {
|
/**
|
||||||
|
* Writes a file to fs, and triggers an OS sharing dialog, so user can decide where to put this file (share to cloud
|
||||||
|
* or perhabs messaging app). Provided filename should be just a file name, NOT a path
|
||||||
|
*/
|
||||||
|
const writeFileAndExport = async function (filename: string, contents: string) {
|
||||||
if (Platform.OS === 'ios') {
|
if (Platform.OS === 'ios') {
|
||||||
const filePath = RNFS.TemporaryDirectoryPath + `/${filename}`;
|
const filePath = RNFS.TemporaryDirectoryPath + `/${filename}`;
|
||||||
await RNFS.writeFile(filePath, contents);
|
await RNFS.writeFile(filePath, contents);
|
||||||
await Share.open({
|
await _shareOpen(filePath);
|
||||||
url: 'file://' + filePath,
|
|
||||||
saveToFiles: isDesktop,
|
|
||||||
})
|
|
||||||
.catch(error => {
|
|
||||||
console.log(error);
|
|
||||||
})
|
|
||||||
.finally(() => {
|
|
||||||
RNFS.unlink(filePath);
|
|
||||||
});
|
|
||||||
} else if (Platform.OS === 'android') {
|
} else if (Platform.OS === 'android') {
|
||||||
await writeFileAndExportToAndroidDestionation({
|
const granted = await PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE, {
|
||||||
filename,
|
title: loc.send.permission_storage_title,
|
||||||
contents,
|
message: loc.send.permission_storage_message,
|
||||||
destinationLocalizedString: loc._.downloads_folder,
|
buttonNeutral: loc.send.permission_storage_later,
|
||||||
destination: RNFS.DownloadDirectoryPath,
|
buttonNegative: loc._.cancel,
|
||||||
|
buttonPositive: loc._.ok,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// In Android 13 no WRITE_EXTERNAL_STORAGE permission is needed
|
||||||
|
// @see https://stackoverflow.com/questions/76311685/permissionandroid-request-always-returns-never-ask-again-without-any-prompt-r
|
||||||
|
if (granted === PermissionsAndroid.RESULTS.GRANTED || Platform.Version >= 33) {
|
||||||
|
const filePath = RNFS.DocumentDirectoryPath + `/${filename}`;
|
||||||
|
try {
|
||||||
|
await RNFS.writeFile(filePath, contents);
|
||||||
|
console.log(`file saved to ${filePath}`);
|
||||||
|
await _shareOpen(filePath);
|
||||||
|
} catch (e: any) {
|
||||||
|
console.log(e);
|
||||||
|
alert(e.message);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
console.log('Storage Permission: Denied');
|
||||||
|
Alert.alert(loc.send.permission_storage_title, loc.send.permission_storage_denied_message, [
|
||||||
|
{
|
||||||
|
text: loc.send.open_settings,
|
||||||
|
onPress: () => {
|
||||||
|
Linking.openSettings();
|
||||||
|
},
|
||||||
|
style: 'default',
|
||||||
|
},
|
||||||
|
{ text: loc._.cancel, onPress: () => {}, style: 'cancel' },
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
alert('Not implemented for this platform');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Opens & reads *.psbt files, and returns base64 psbt. FALSE if something went wrong (wont throw).
|
* Opens & reads *.psbt files, and returns base64 psbt. FALSE if something went wrong (wont throw).
|
||||||
*
|
|
||||||
* @returns {Promise<string|boolean>} Base64 PSBT
|
|
||||||
*/
|
*/
|
||||||
const openSignedTransaction = async function () {
|
const openSignedTransaction = async function (): Promise<string | boolean> {
|
||||||
try {
|
try {
|
||||||
const res = await DocumentPicker.pickSingle({
|
const res = await DocumentPicker.pickSingle({
|
||||||
type: Platform.OS === 'ios' ? ['io.bluewallet.psbt', 'io.bluewallet.psbt.txn'] : [DocumentPicker.types.allFiles],
|
type: Platform.OS === 'ios' ? ['io.bluewallet.psbt', 'io.bluewallet.psbt.txn'] : [DocumentPicker.types.allFiles],
|
||||||
|
@ -87,7 +91,7 @@ const openSignedTransaction = async function () {
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
const _readPsbtFileIntoBase64 = async function (uri) {
|
const _readPsbtFileIntoBase64 = async function (uri: string): Promise<string> {
|
||||||
const base64 = await RNFS.readFile(uri, 'base64');
|
const base64 = await RNFS.readFile(uri, 'base64');
|
||||||
const stringData = Buffer.from(base64, 'base64').toString(); // decode from base64
|
const stringData = Buffer.from(base64, 'base64').toString(); // decode from base64
|
||||||
if (stringData.startsWith('psbt')) {
|
if (stringData.startsWith('psbt')) {
|
||||||
|
@ -106,19 +110,17 @@ const showImagePickerAndReadImage = () => {
|
||||||
return new Promise((resolve, reject) =>
|
return new Promise((resolve, reject) =>
|
||||||
launchImageLibrary(
|
launchImageLibrary(
|
||||||
{
|
{
|
||||||
title: null,
|
|
||||||
mediaType: 'photo',
|
mediaType: 'photo',
|
||||||
takePhotoButtonTitle: null,
|
|
||||||
maxHeight: 800,
|
maxHeight: 800,
|
||||||
maxWidth: 600,
|
maxWidth: 600,
|
||||||
selectionLimit: 1,
|
selectionLimit: 1,
|
||||||
},
|
},
|
||||||
response => {
|
response => {
|
||||||
if (!response.didCancel) {
|
if (!response.didCancel) {
|
||||||
const asset = response.assets[0];
|
const asset = response.assets?.[0] ?? {};
|
||||||
if (asset.uri) {
|
if (asset.uri) {
|
||||||
const uri = asset.uri.toString().replace('file://', '');
|
const uri = asset.uri.toString().replace('file://', '');
|
||||||
LocalQRCode.decode(uri, (error, result) => {
|
LocalQRCode.decode(uri, (error: any, result: string) => {
|
||||||
if (!error) {
|
if (!error) {
|
||||||
resolve(result);
|
resolve(result);
|
||||||
} else {
|
} else {
|
||||||
|
@ -132,33 +134,7 @@ const showImagePickerAndReadImage = () => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const takePhotoWithImagePickerAndReadPhoto = () => {
|
const showFilePickerAndReadFile = async function (): Promise<{ data: string | false; uri: string | false }> {
|
||||||
return new Promise((resolve, reject) =>
|
|
||||||
launchCamera(
|
|
||||||
{
|
|
||||||
title: null,
|
|
||||||
mediaType: 'photo',
|
|
||||||
takePhotoButtonTitle: null,
|
|
||||||
},
|
|
||||||
response => {
|
|
||||||
if (response.uri) {
|
|
||||||
const uri = response.uri.toString().replace('file://', '');
|
|
||||||
LocalQRCode.decode(uri, (error, result) => {
|
|
||||||
if (!error) {
|
|
||||||
resolve(result);
|
|
||||||
} else {
|
|
||||||
reject(new Error(loc.send.qr_error_no_qrcode));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
} else if (response.error) {
|
|
||||||
presentCameraNotAuthorizedAlert(response.error);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const showFilePickerAndReadFile = async function () {
|
|
||||||
try {
|
try {
|
||||||
const res = await DocumentPicker.pickSingle({
|
const res = await DocumentPicker.pickSingle({
|
||||||
copyTo: 'cachesDirectory',
|
copyTo: 'cachesDirectory',
|
||||||
|
@ -175,21 +151,32 @@ const showFilePickerAndReadFile = async function () {
|
||||||
: [DocumentPicker.types.allFiles],
|
: [DocumentPicker.types.allFiles],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!res.fileCopyUri) {
|
||||||
|
alert('Picking and caching a file failed');
|
||||||
|
return { data: false, uri: false };
|
||||||
|
}
|
||||||
|
|
||||||
const fileCopyUri = decodeURI(res.fileCopyUri);
|
const fileCopyUri = decodeURI(res.fileCopyUri);
|
||||||
|
|
||||||
let file = false;
|
let file;
|
||||||
if (res.fileCopyUri.toLowerCase().endsWith('.psbt')) {
|
if (res.fileCopyUri.toLowerCase().endsWith('.psbt')) {
|
||||||
// this is either binary file from ElectrumDesktop OR string file with base64 string in there
|
// this is either binary file from ElectrumDesktop OR string file with base64 string in there
|
||||||
file = await _readPsbtFileIntoBase64(fileCopyUri);
|
file = await _readPsbtFileIntoBase64(fileCopyUri);
|
||||||
return { data: file, uri: decodeURI(res.fileCopyUri) };
|
return { data: file, uri: decodeURI(res.fileCopyUri) };
|
||||||
}
|
}
|
||||||
|
|
||||||
if (res?.type === DocumentPicker.types.images || res?.type?.startsWith('image/')) {
|
if (res.type === DocumentPicker.types.images || res.type?.startsWith('image/')) {
|
||||||
return new Promise(resolve => {
|
return new Promise(resolve => {
|
||||||
const uri2 = res.fileCopyUri.toString().replace('file://', '');
|
if (!res.fileCopyUri) {
|
||||||
LocalQRCode.decode(decodeURI(uri2), (error, result) => {
|
// to make ts happy, should not need this check here
|
||||||
|
alert('Picking and caching a file failed');
|
||||||
|
resolve({ data: false, uri: false });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const uri2 = res.fileCopyUri.replace('file://', '');
|
||||||
|
LocalQRCode.decode(decodeURI(uri2), (error: any, result: string) => {
|
||||||
if (!error) {
|
if (!error) {
|
||||||
resolve({ data: result, fileCopyUri });
|
resolve({ data: result, uri: fileCopyUri });
|
||||||
} else {
|
} else {
|
||||||
resolve({ data: false, uri: false });
|
resolve({ data: false, uri: false });
|
||||||
}
|
}
|
||||||
|
@ -198,8 +185,8 @@ const showFilePickerAndReadFile = async function () {
|
||||||
}
|
}
|
||||||
|
|
||||||
file = await RNFS.readFile(fileCopyUri);
|
file = await RNFS.readFile(fileCopyUri);
|
||||||
return { data: file, fileCopyUri };
|
return { data: file, uri: fileCopyUri };
|
||||||
} catch (err) {
|
} catch (err: any) {
|
||||||
if (!DocumentPicker.isCancel(err)) {
|
if (!DocumentPicker.isCancel(err)) {
|
||||||
alert(err.message);
|
alert(err.message);
|
||||||
}
|
}
|
||||||
|
@ -207,12 +194,13 @@ const showFilePickerAndReadFile = async function () {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// todo expand with other platforms if necessary
|
const readFileOutsideSandbox = (filePath: string) => {
|
||||||
const readFileOutsideSandbox = filePath => {
|
|
||||||
if (Platform.OS === 'ios') {
|
if (Platform.OS === 'ios') {
|
||||||
return readFile(filePath);
|
return readFile(filePath);
|
||||||
} else {
|
} else if (Platform.OS === 'android') {
|
||||||
return RNFS.readFile(filePath);
|
return RNFS.readFile(filePath);
|
||||||
|
} else {
|
||||||
|
alert('Not implemented for this platform');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -220,5 +208,4 @@ module.exports.writeFileAndExport = writeFileAndExport;
|
||||||
module.exports.openSignedTransaction = openSignedTransaction;
|
module.exports.openSignedTransaction = openSignedTransaction;
|
||||||
module.exports.showFilePickerAndReadFile = showFilePickerAndReadFile;
|
module.exports.showFilePickerAndReadFile = showFilePickerAndReadFile;
|
||||||
module.exports.showImagePickerAndReadImage = showImagePickerAndReadImage;
|
module.exports.showImagePickerAndReadImage = showImagePickerAndReadImage;
|
||||||
module.exports.takePhotoWithImagePickerAndReadPhoto = takePhotoWithImagePickerAndReadPhoto;
|
|
||||||
module.exports.readFileOutsideSandbox = readFileOutsideSandbox;
|
module.exports.readFileOutsideSandbox = readFileOutsideSandbox;
|
|
@ -110,10 +110,10 @@ export const BlueStorageProvider = ({ children }) => {
|
||||||
const refreshAllWalletTransactions = async (lastSnappedTo, showUpdateStatusIndicator = true) => {
|
const refreshAllWalletTransactions = async (lastSnappedTo, showUpdateStatusIndicator = true) => {
|
||||||
let noErr = true;
|
let noErr = true;
|
||||||
try {
|
try {
|
||||||
|
await BlueElectrum.waitTillConnected();
|
||||||
if (showUpdateStatusIndicator) {
|
if (showUpdateStatusIndicator) {
|
||||||
setWalletTransactionUpdateStatus(WalletTransactionsStatus.ALL);
|
setWalletTransactionUpdateStatus(WalletTransactionsStatus.ALL);
|
||||||
}
|
}
|
||||||
await BlueElectrum.waitTillConnected();
|
|
||||||
const paymentCodesStart = Date.now();
|
const paymentCodesStart = Date.now();
|
||||||
await fetchSenderPaymentCodes(lastSnappedTo);
|
await fetchSenderPaymentCodes(lastSnappedTo);
|
||||||
const paymentCodesEnd = Date.now();
|
const paymentCodesEnd = Date.now();
|
||||||
|
@ -140,7 +140,6 @@ export const BlueStorageProvider = ({ children }) => {
|
||||||
let noErr = true;
|
let noErr = true;
|
||||||
try {
|
try {
|
||||||
// 5sec debounce:
|
// 5sec debounce:
|
||||||
setWalletTransactionUpdateStatus(walletID);
|
|
||||||
if (+new Date() - _lastTimeTriedToRefetchWallet[walletID] < 5000) {
|
if (+new Date() - _lastTimeTriedToRefetchWallet[walletID] < 5000) {
|
||||||
console.log('re-fetch wallet happens too fast; NOP');
|
console.log('re-fetch wallet happens too fast; NOP');
|
||||||
return;
|
return;
|
||||||
|
@ -148,6 +147,7 @@ export const BlueStorageProvider = ({ children }) => {
|
||||||
_lastTimeTriedToRefetchWallet[walletID] = +new Date();
|
_lastTimeTriedToRefetchWallet[walletID] = +new Date();
|
||||||
|
|
||||||
await BlueElectrum.waitTillConnected();
|
await BlueElectrum.waitTillConnected();
|
||||||
|
setWalletTransactionUpdateStatus(walletID);
|
||||||
const balanceStart = +new Date();
|
const balanceStart = +new Date();
|
||||||
await fetchWalletBalances(index);
|
await fetchWalletBalances(index);
|
||||||
const balanceEnd = +new Date();
|
const balanceEnd = +new Date();
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import React, { useState, useRef, forwardRef, ReactNode } from 'react';
|
import React, { useState, useRef, forwardRef, ReactNode } from 'react';
|
||||||
import { View, Text, TouchableOpacity, StyleSheet, Dimensions, PixelRatio } from 'react-native';
|
import { View, Text, TouchableOpacity, StyleSheet, Dimensions, PixelRatio } from 'react-native';
|
||||||
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
||||||
|
|
||||||
import { useTheme } from './themes';
|
import { useTheme } from './themes';
|
||||||
|
|
||||||
const BORDER_RADIUS = 30;
|
const BORDER_RADIUS = 30;
|
||||||
|
@ -33,9 +35,10 @@ interface FContainerProps {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const FContainer = forwardRef<View, FContainerProps>((props, ref) => {
|
export const FContainer = forwardRef<View, FContainerProps>((props, ref) => {
|
||||||
|
const insets = useSafeAreaInsets();
|
||||||
const [newWidth, setNewWidth] = useState<number | undefined>(undefined);
|
const [newWidth, setNewWidth] = useState<number | undefined>(undefined);
|
||||||
const layoutCalculated = useRef(false);
|
const layoutCalculated = useRef(false);
|
||||||
const bottomInsets = { bottom: 38 };
|
const bottomInsets = { bottom: insets.bottom ? insets.bottom + 10 : 30 };
|
||||||
|
|
||||||
const onLayout = (event: { nativeEvent: { layout: { width: number } } }) => {
|
const onLayout = (event: { nativeEvent: { layout: { width: number } } }) => {
|
||||||
if (layoutCalculated.current) return;
|
if (layoutCalculated.current) return;
|
||||||
|
|
49
components/MenuElements.tsx
Normal file
49
components/MenuElements.tsx
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
import React, { useCallback, useContext, useEffect } from 'react';
|
||||||
|
import { NativeEventEmitter, NativeModules, Platform } from 'react-native';
|
||||||
|
import * as NavigationService from '../NavigationService';
|
||||||
|
import { CommonActions } from '@react-navigation/native';
|
||||||
|
import { BlueStorageContext } from '../blue_modules/storage-context';
|
||||||
|
|
||||||
|
/*
|
||||||
|
Component for iPadOS and macOS menu items with keyboard shortcuts.
|
||||||
|
EventEmitter on the native side should receive a payload and rebuild menus.
|
||||||
|
*/
|
||||||
|
|
||||||
|
const eventEmitter = Platform.OS === 'ios' || Platform.OS === 'macos' ? new NativeEventEmitter(NativeModules.EventEmitter) : undefined;
|
||||||
|
const MenuElements = () => {
|
||||||
|
const { walletsInitialized } = useContext(BlueStorageContext);
|
||||||
|
|
||||||
|
// BlueWallet -> Settings
|
||||||
|
const openSettings = useCallback(() => {
|
||||||
|
dispatchNavigate('Settings');
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// File -> Add Wallet
|
||||||
|
const addWalletMenuAction = useCallback(() => {
|
||||||
|
dispatchNavigate('AddWalletRoot');
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const dispatchNavigate = (routeName: string) => {
|
||||||
|
NavigationService.dispatch(
|
||||||
|
CommonActions.navigate({
|
||||||
|
name: routeName,
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
console.log('MenuElements: useEffect');
|
||||||
|
if (walletsInitialized) {
|
||||||
|
eventEmitter?.addListener('openSettings', openSettings);
|
||||||
|
eventEmitter?.addListener('addWalletMenuAction', addWalletMenuAction);
|
||||||
|
}
|
||||||
|
return () => {
|
||||||
|
eventEmitter?.removeAllListeners('openSettings');
|
||||||
|
eventEmitter?.removeAllListeners('addWalletMenuAction');
|
||||||
|
};
|
||||||
|
}, [addWalletMenuAction, openSettings, walletsInitialized]);
|
||||||
|
|
||||||
|
return <></>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default MenuElements;
|
|
@ -32,6 +32,7 @@ type NavigationOptions = {
|
||||||
headerLeft?: (() => React.ReactElement) | null;
|
headerLeft?: (() => React.ReactElement) | null;
|
||||||
headerRight?: (() => React.ReactElement) | null;
|
headerRight?: (() => React.ReactElement) | null;
|
||||||
headerBackTitleVisible?: false;
|
headerBackTitleVisible?: false;
|
||||||
|
headerBackButtonMenuEnabled?: boolean;
|
||||||
headerShadowVisible?: boolean;
|
headerShadowVisible?: boolean;
|
||||||
headerTintColor?: string;
|
headerTintColor?: string;
|
||||||
title?: string;
|
title?: string;
|
||||||
|
@ -57,6 +58,7 @@ const navigationStyle = (
|
||||||
return theme =>
|
return theme =>
|
||||||
({ navigation, route }) => {
|
({ navigation, route }) => {
|
||||||
let headerRight;
|
let headerRight;
|
||||||
|
let headerLeft;
|
||||||
if (closeButton) {
|
if (closeButton) {
|
||||||
const handleClose = closeButtonFunc
|
const handleClose = closeButtonFunc
|
||||||
? () => closeButtonFunc({ navigation, route })
|
? () => closeButtonFunc({ navigation, route })
|
||||||
|
@ -77,6 +79,13 @@ const navigationStyle = (
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Workaround for https://github.com/BlueWallet/BlueWallet/issues/6030
|
||||||
|
if (!headerBackVisible) {
|
||||||
|
headerLeft = () => <></>;
|
||||||
|
opts.headerLeft = headerLeft;
|
||||||
|
}
|
||||||
|
//
|
||||||
|
|
||||||
let options: NavigationOptions = {
|
let options: NavigationOptions = {
|
||||||
headerShadowVisible: false,
|
headerShadowVisible: false,
|
||||||
headerTitleStyle: {
|
headerTitleStyle: {
|
||||||
|
|
391
ios/BlueWallet-NoLDK.plist
Normal file
391
ios/BlueWallet-NoLDK.plist
Normal file
|
@ -0,0 +1,391 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||||
|
<plist version="1.0">
|
||||||
|
<dict>
|
||||||
|
<key>BGTaskSchedulerPermittedIdentifiers</key>
|
||||||
|
<array>
|
||||||
|
<string>io.bluewallet.bluewallet.fetchTxsForWallet</string>
|
||||||
|
</array>
|
||||||
|
<key>CADisableMinimumFrameDurationOnPhone</key>
|
||||||
|
<true/>
|
||||||
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
|
<string>en</string>
|
||||||
|
<key>CFBundleDisplayName</key>
|
||||||
|
<string>BlueWallet</string>
|
||||||
|
<key>CFBundleDocumentTypes</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>CFBundleTypeName</key>
|
||||||
|
<string>PSBT</string>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Editor</string>
|
||||||
|
<key>LSHandlerRank</key>
|
||||||
|
<string>Owner</string>
|
||||||
|
<key>LSItemContentTypes</key>
|
||||||
|
<array>
|
||||||
|
<string>io.bluewallet.psbt</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>CFBundleTypeName</key>
|
||||||
|
<string>TXN</string>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Editor</string>
|
||||||
|
<key>LSHandlerRank</key>
|
||||||
|
<string>Owner</string>
|
||||||
|
<key>LSItemContentTypes</key>
|
||||||
|
<array>
|
||||||
|
<string>io.bluewallet.psbt.txn</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>CFBundleTypeName</key>
|
||||||
|
<string>ELECTRUMBACKUP</string>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Editor</string>
|
||||||
|
<key>LSHandlerRank</key>
|
||||||
|
<string>Owner</string>
|
||||||
|
<key>LSItemContentTypes</key>
|
||||||
|
<array>
|
||||||
|
<string>io.bluewallet.backup</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeName</key>
|
||||||
|
<string>JSON File</string>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Editor</string>
|
||||||
|
<key>LSHandlerRank</key>
|
||||||
|
<string>Owner</string>
|
||||||
|
<key>LSItemContentTypes</key>
|
||||||
|
<array>
|
||||||
|
<string>public.json</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>CFBundleTypeName</key>
|
||||||
|
<string>BW COSIGNER</string>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Editor</string>
|
||||||
|
<key>LSHandlerRank</key>
|
||||||
|
<string>Owner</string>
|
||||||
|
<key>LSItemContentTypes</key>
|
||||||
|
<array>
|
||||||
|
<string>io.bluewallet.bwcosigner</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleExecutable</key>
|
||||||
|
<string>$(EXECUTABLE_NAME)</string>
|
||||||
|
<key>CFBundleIdentifier</key>
|
||||||
|
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
||||||
|
<key>CFBundleInfoDictionaryVersion</key>
|
||||||
|
<string>6.0</string>
|
||||||
|
<key>CFBundleName</key>
|
||||||
|
<string>$(PRODUCT_NAME)</string>
|
||||||
|
<key>CFBundlePackageType</key>
|
||||||
|
<string>APPL</string>
|
||||||
|
<key>CFBundleShortVersionString</key>
|
||||||
|
<string>$(MARKETING_VERSION)</string>
|
||||||
|
<key>CFBundleSignature</key>
|
||||||
|
<string>????</string>
|
||||||
|
<key>CFBundleURLTypes</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>CFBundleTypeRole</key>
|
||||||
|
<string>Editor</string>
|
||||||
|
<key>CFBundleURLSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>bitcoin</string>
|
||||||
|
<string>lightning</string>
|
||||||
|
<string>bluewallet</string>
|
||||||
|
<string>lapp</string>
|
||||||
|
<string>blue</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>CFBundleVersion</key>
|
||||||
|
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||||
|
<key>ITSAppUsesNonExemptEncryption</key>
|
||||||
|
<false/>
|
||||||
|
<key>LSApplicationCategoryType</key>
|
||||||
|
<string>public.app-category.finance</string>
|
||||||
|
<key>LSApplicationQueriesSchemes</key>
|
||||||
|
<array>
|
||||||
|
<string>https</string>
|
||||||
|
<string>http</string>
|
||||||
|
</array>
|
||||||
|
<key>LSRequiresIPhoneOS</key>
|
||||||
|
<true/>
|
||||||
|
<key>LSSupportsOpeningDocumentsInPlace</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSAppTransportSecurity</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSAllowsArbitraryLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSExceptionDomains</key>
|
||||||
|
<dict>
|
||||||
|
<key>localhost</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExceptionAllowsInsecureHTTPLoads</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
<key>onion</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExceptionAllowsInsecureHTTPLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSIncludesSubdomains</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
<key>tailscale.net</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExceptionAllowsInsecureHTTPLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSIncludesSubdomains</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
<key>ts.net</key>
|
||||||
|
<dict>
|
||||||
|
<key>NSExceptionAllowsInsecureHTTPLoads</key>
|
||||||
|
<true/>
|
||||||
|
<key>NSIncludesSubdomains</key>
|
||||||
|
<true/>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<key>NSCameraUsageDescription</key>
|
||||||
|
<string>In order to quickly scan the recipient's address, we need your permission to use the camera to scan their QR Code.</string>
|
||||||
|
<key>NSFaceIDUsageDescription</key>
|
||||||
|
<string>In order to use FaceID please confirm your permission.</string>
|
||||||
|
<key>NSPhotoLibraryAddUsageDescription</key>
|
||||||
|
<string>Your authorization is required to save this image.</string>
|
||||||
|
<key>NSPhotoLibraryUsageDescription</key>
|
||||||
|
<string>In order to import an image for scanning, we need your permission to access your photo library.</string>
|
||||||
|
<key>NSUserActivityTypes</key>
|
||||||
|
<array>
|
||||||
|
<string>io.bluewallet.bluewallet.receiveonchain</string>
|
||||||
|
<string>io.bluewallet.bluewallet.xpub</string>
|
||||||
|
</array>
|
||||||
|
<key>UIAppFonts</key>
|
||||||
|
<array>
|
||||||
|
<string>AntDesign.ttf</string>
|
||||||
|
<string>Entypo.ttf</string>
|
||||||
|
<string>EvilIcons.ttf</string>
|
||||||
|
<string>Feather.ttf</string>
|
||||||
|
<string>FontAwesome.ttf</string>
|
||||||
|
<string>FontAwesome5_Brands.ttf</string>
|
||||||
|
<string>FontAwesome5_Regular.ttf</string>
|
||||||
|
<string>FontAwesome5_Solid.ttf</string>
|
||||||
|
<string>Foundation.ttf</string>
|
||||||
|
<string>Ionicons.ttf</string>
|
||||||
|
<string>MaterialCommunityIcons.ttf</string>
|
||||||
|
<string>MaterialIcons.ttf</string>
|
||||||
|
<string>Octicons.ttf</string>
|
||||||
|
<string>SimpleLineIcons.ttf</string>
|
||||||
|
<string>Zocial.ttf</string>
|
||||||
|
</array>
|
||||||
|
<key>UIBackgroundModes</key>
|
||||||
|
<array>
|
||||||
|
<string>fetch</string>
|
||||||
|
<string>processing</string>
|
||||||
|
<string>remote-notification</string>
|
||||||
|
</array>
|
||||||
|
<key>UIFileSharingEnabled</key>
|
||||||
|
<true/>
|
||||||
|
<key>UILaunchStoryboardName</key>
|
||||||
|
<string>LaunchScreen</string>
|
||||||
|
<key>UIRequiredDeviceCapabilities</key>
|
||||||
|
<array>
|
||||||
|
<string>armv7</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||||
|
</array>
|
||||||
|
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||||
|
<array>
|
||||||
|
<string>UIInterfaceOrientationPortrait</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||||
|
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||||
|
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||||
|
</array>
|
||||||
|
<key>UIViewControllerBasedStatusBarAppearance</key>
|
||||||
|
<true/>
|
||||||
|
<key>UTExportedTypeDeclarations</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>UTTypeConformsTo</key>
|
||||||
|
<array>
|
||||||
|
<string>public.data</string>
|
||||||
|
</array>
|
||||||
|
<key>UTTypeDescription</key>
|
||||||
|
<string>Partially Signed Bitcoin Transaction</string>
|
||||||
|
<key>UTTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>UTTypeIdentifier</key>
|
||||||
|
<string>io.bluewallet.psbt</string>
|
||||||
|
<key>UTTypeTagSpecification</key>
|
||||||
|
<dict>
|
||||||
|
<key>public.filename-extension</key>
|
||||||
|
<array>
|
||||||
|
<string>psbt</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>UTTypeConformsTo</key>
|
||||||
|
<array>
|
||||||
|
<string>public.json</string>
|
||||||
|
</array>
|
||||||
|
<key>UTTypeDescription</key>
|
||||||
|
<string>BW COSIGNER</string>
|
||||||
|
<key>UTTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>UTTypeIdentifier</key>
|
||||||
|
<string>io.bluewallet.bwcosigner</string>
|
||||||
|
<key>UTTypeTagSpecification</key>
|
||||||
|
<dict>
|
||||||
|
<key>public.filename-extension</key>
|
||||||
|
<array>
|
||||||
|
<string>bwcosigner</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>UTTypeConformsTo</key>
|
||||||
|
<array>
|
||||||
|
<string>public.data</string>
|
||||||
|
</array>
|
||||||
|
<key>UTTypeDescription</key>
|
||||||
|
<string>Bitcoin Transaction</string>
|
||||||
|
<key>UTTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>UTTypeIdentifier</key>
|
||||||
|
<string>io.bluewallet.psbt.txn</string>
|
||||||
|
<key>UTTypeTagSpecification</key>
|
||||||
|
<dict>
|
||||||
|
<key>public.filename-extension</key>
|
||||||
|
<array>
|
||||||
|
<string>txn</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>UTImportedTypeDeclarations</key>
|
||||||
|
<array>
|
||||||
|
<dict>
|
||||||
|
<key>UTTypeConformsTo</key>
|
||||||
|
<array>
|
||||||
|
<string>public.text</string>
|
||||||
|
</array>
|
||||||
|
<key>UTTypeDescription</key>
|
||||||
|
<string>JSON File</string>
|
||||||
|
<key>UTTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>UTTypeIdentifier</key>
|
||||||
|
<string>public.json</string>
|
||||||
|
<key>UTTypeTagSpecification</key>
|
||||||
|
<dict>
|
||||||
|
<key>public.filename-extension</key>
|
||||||
|
<array>
|
||||||
|
<string>json</string>
|
||||||
|
</array>
|
||||||
|
<key>public.mime-type</key>
|
||||||
|
<array>
|
||||||
|
<string>application/json</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>UTTypeConformsTo</key>
|
||||||
|
<array>
|
||||||
|
<string>public.data</string>
|
||||||
|
</array>
|
||||||
|
<key>UTTypeDescription</key>
|
||||||
|
<string>Partially Signed Bitcoin Transaction</string>
|
||||||
|
<key>UTTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>UTTypeIdentifier</key>
|
||||||
|
<string>io.bluewallet.psbt</string>
|
||||||
|
<key>UTTypeTagSpecification</key>
|
||||||
|
<dict>
|
||||||
|
<key>public.filename-extension</key>
|
||||||
|
<array>
|
||||||
|
<string>psbt</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>UTTypeConformsTo</key>
|
||||||
|
<array>
|
||||||
|
<string>public.data</string>
|
||||||
|
</array>
|
||||||
|
<key>UTTypeDescription</key>
|
||||||
|
<string>Bitcoin Transaction</string>
|
||||||
|
<key>UTTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>UTTypeIdentifier</key>
|
||||||
|
<string>io.bluewallet.psbt.txn</string>
|
||||||
|
<key>UTTypeTagSpecification</key>
|
||||||
|
<dict>
|
||||||
|
<key>public.filename-extension</key>
|
||||||
|
<array>
|
||||||
|
<string>txn</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>UTTypeConformsTo</key>
|
||||||
|
<array>
|
||||||
|
<string>public.data</string>
|
||||||
|
</array>
|
||||||
|
<key>UTTypeDescription</key>
|
||||||
|
<string>Electrum Backup</string>
|
||||||
|
<key>UTTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>UTTypeIdentifier</key>
|
||||||
|
<string>io.bluewallet.backup</string>
|
||||||
|
<key>UTTypeTagSpecification</key>
|
||||||
|
<dict>
|
||||||
|
<key>public.filename-extension</key>
|
||||||
|
<array>
|
||||||
|
<string>backup</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
<dict>
|
||||||
|
<key>UTTypeConformsTo</key>
|
||||||
|
<array>
|
||||||
|
<string>public.json</string>
|
||||||
|
</array>
|
||||||
|
<key>UTTypeDescription</key>
|
||||||
|
<string>BW COSIGNER</string>
|
||||||
|
<key>UTTypeIconFiles</key>
|
||||||
|
<array/>
|
||||||
|
<key>UTTypeIdentifier</key>
|
||||||
|
<string>io.bluewallet.bwcosigner</string>
|
||||||
|
<key>UTTypeTagSpecification</key>
|
||||||
|
<dict>
|
||||||
|
<key>public.filename-extension</key>
|
||||||
|
<array>
|
||||||
|
<string>bwcosigner</string>
|
||||||
|
</array>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</array>
|
||||||
|
<key>bugsnag</key>
|
||||||
|
<dict>
|
||||||
|
<key>apiKey</key>
|
||||||
|
<string>17ba9059f676f1cc4f45d98182388b01</string>
|
||||||
|
</dict>
|
||||||
|
</dict>
|
||||||
|
</plist>
|
|
@ -3,12 +3,13 @@
|
||||||
archiveVersion = 1;
|
archiveVersion = 1;
|
||||||
classes = {
|
classes = {
|
||||||
};
|
};
|
||||||
objectVersion = 54;
|
objectVersion = 60;
|
||||||
objects = {
|
objects = {
|
||||||
|
|
||||||
/* Begin PBXBuildFile section */
|
/* Begin PBXBuildFile section */
|
||||||
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
||||||
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
||||||
|
2B2B129397ACA4E7FCCB4F6F /* libPods-BlueWallet-NoLDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 52FA0F1447D69747BD547E1E /* libPods-BlueWallet-NoLDK.a */; };
|
||||||
32B5A32A2334450100F8D608 /* Bridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32B5A3292334450100F8D608 /* Bridge.swift */; };
|
32B5A32A2334450100F8D608 /* Bridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32B5A3292334450100F8D608 /* Bridge.swift */; };
|
||||||
32F0A29A2311DBB20095C559 /* ComplicationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F0A2992311DBB20095C559 /* ComplicationController.swift */; };
|
32F0A29A2311DBB20095C559 /* ComplicationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F0A2992311DBB20095C559 /* ComplicationController.swift */; };
|
||||||
6D2A6464258BA92D0092292B /* Stickers.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6D2A6463258BA92D0092292B /* Stickers.xcassets */; };
|
6D2A6464258BA92D0092292B /* Stickers.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6D2A6463258BA92D0092292B /* Stickers.xcassets */; };
|
||||||
|
@ -45,6 +46,7 @@
|
||||||
6DFC807024EA0B6C007B8700 /* EFQRCode in Frameworks */ = {isa = PBXBuildFile; productRef = 6DFC806F24EA0B6C007B8700 /* EFQRCode */; };
|
6DFC807024EA0B6C007B8700 /* EFQRCode in Frameworks */ = {isa = PBXBuildFile; productRef = 6DFC806F24EA0B6C007B8700 /* EFQRCode */; };
|
||||||
6DFC807224EA2FA9007B8700 /* ViewQRCodefaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DFC807124EA2FA9007B8700 /* ViewQRCodefaceController.swift */; };
|
6DFC807224EA2FA9007B8700 /* ViewQRCodefaceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DFC807124EA2FA9007B8700 /* ViewQRCodefaceController.swift */; };
|
||||||
764B49B1420D4AEB8109BF62 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B468CC34D5B41F3950078EF /* libsqlite3.0.tbd */; };
|
764B49B1420D4AEB8109BF62 /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B468CC34D5B41F3950078EF /* libsqlite3.0.tbd */; };
|
||||||
|
773E382FE62E836172AAB98B /* libPods-BlueWallet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 95304AD151F1F531985AA341 /* libPods-BlueWallet.a */; };
|
||||||
782F075B5DD048449E2DECE9 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B9D9B3A7B2CB4255876B67AF /* libz.tbd */; };
|
782F075B5DD048449E2DECE9 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B9D9B3A7B2CB4255876B67AF /* libz.tbd */; };
|
||||||
849047CA2702A32A008EE567 /* Handoff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 849047C92702A32A008EE567 /* Handoff.swift */; };
|
849047CA2702A32A008EE567 /* Handoff.swift in Sources */ = {isa = PBXBuildFile; fileRef = 849047C92702A32A008EE567 /* Handoff.swift */; };
|
||||||
84E05A842721191B001A0D3A /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 84E05A832721191B001A0D3A /* Settings.bundle */; };
|
84E05A842721191B001A0D3A /* Settings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 84E05A832721191B001A0D3A /* Settings.bundle */; };
|
||||||
|
@ -69,10 +71,21 @@
|
||||||
B43D037D225847C500FBAA95 /* WalletInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B43D0377225847C500FBAA95 /* WalletInformation.swift */; };
|
B43D037D225847C500FBAA95 /* WalletInformation.swift in Sources */ = {isa = PBXBuildFile; fileRef = B43D0377225847C500FBAA95 /* WalletInformation.swift */; };
|
||||||
B461B852299599F800E431AA /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = B461B851299599F800E431AA /* AppDelegate.mm */; };
|
B461B852299599F800E431AA /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = B461B851299599F800E431AA /* AppDelegate.mm */; };
|
||||||
B47B21EC2B2128B8001F6690 /* BlueWalletUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B47B21EB2B2128B8001F6690 /* BlueWalletUITests.swift */; };
|
B47B21EC2B2128B8001F6690 /* BlueWalletUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B47B21EB2B2128B8001F6690 /* BlueWalletUITests.swift */; };
|
||||||
|
B4A29A2C2B55C990002A67DF /* EventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D32C5C52596CE3A008C077C /* EventEmitter.m */; };
|
||||||
|
B4A29A2D2B55C990002A67DF /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
||||||
|
B4A29A2E2B55C990002A67DF /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = B461B851299599F800E431AA /* AppDelegate.mm */; };
|
||||||
|
B4A29A2F2B55C990002A67DF /* Bridge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32B5A3292334450100F8D608 /* Bridge.swift */; };
|
||||||
|
B4A29A312B55C990002A67DF /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = B9D9B3A7B2CB4255876B67AF /* libz.tbd */; };
|
||||||
|
B4A29A322B55C990002A67DF /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B468CC34D5B41F3950078EF /* libsqlite3.0.tbd */; };
|
||||||
|
B4A29A352B55C990002A67DF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6DF25A9E249DB97E001D06F5 /* LaunchScreen.storyboard */; };
|
||||||
|
B4A29A372B55C990002A67DF /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
||||||
|
B4A29A3A2B55C990002A67DF /* BlueWalletWatch.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = B40D4E30225841EC00428FCC /* BlueWalletWatch.app */; platformFilter = ios; };
|
||||||
|
B4A29A3C2B55C990002A67DF /* Stickers.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 6D2A6461258BA92C0092292B /* Stickers.appex */; platformFilter = ios; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
||||||
|
B4A29A3D2B55C990002A67DF /* WidgetsExtension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 6DD4109C266CADF10087DE03 /* WidgetsExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
||||||
B4AB225D2B02AD12001F4328 /* XMLParserDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4AB225C2B02AD12001F4328 /* XMLParserDelegate.swift */; };
|
B4AB225D2B02AD12001F4328 /* XMLParserDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4AB225C2B02AD12001F4328 /* XMLParserDelegate.swift */; };
|
||||||
B4AB225E2B02AD12001F4328 /* XMLParserDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4AB225C2B02AD12001F4328 /* XMLParserDelegate.swift */; };
|
B4AB225E2B02AD12001F4328 /* XMLParserDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4AB225C2B02AD12001F4328 /* XMLParserDelegate.swift */; };
|
||||||
B4EE583C226703320003363C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B40D4E35225841ED00428FCC /* Assets.xcassets */; };
|
B4EE583C226703320003363C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B40D4E35225841ED00428FCC /* Assets.xcassets */; };
|
||||||
C978A716948AB7DEC5B6F677 /* libPods-BlueWallet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A9CB0C469EEBDD84696BAA7 /* libPods-BlueWallet.a */; };
|
C978A716948AB7DEC5B6F677 /* (null) in Frameworks */ = {isa = PBXBuildFile; };
|
||||||
E5D4794B26781FC0007838C1 /* fiatUnits.json in Resources */ = {isa = PBXBuildFile; fileRef = 6DD410AD266CAF1F0087DE03 /* fiatUnits.json */; };
|
E5D4794B26781FC0007838C1 /* fiatUnits.json in Resources */ = {isa = PBXBuildFile; fileRef = 6DD410AD266CAF1F0087DE03 /* fiatUnits.json */; };
|
||||||
E5D4794C26781FC1007838C1 /* fiatUnits.json in Resources */ = {isa = PBXBuildFile; fileRef = 6DD410AD266CAF1F0087DE03 /* fiatUnits.json */; };
|
E5D4794C26781FC1007838C1 /* fiatUnits.json in Resources */ = {isa = PBXBuildFile; fileRef = 6DD410AD266CAF1F0087DE03 /* fiatUnits.json */; };
|
||||||
/* End PBXBuildFile section */
|
/* End PBXBuildFile section */
|
||||||
|
@ -120,6 +133,34 @@
|
||||||
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
||||||
remoteInfo = BlueWallet;
|
remoteInfo = BlueWallet;
|
||||||
};
|
};
|
||||||
|
B4A29A232B55C990002A67DF /* PBXContainerItemProxy */ = {
|
||||||
|
isa = PBXContainerItemProxy;
|
||||||
|
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
||||||
|
proxyType = 1;
|
||||||
|
remoteGlobalIDString = B40D4E2F225841EC00428FCC;
|
||||||
|
remoteInfo = BlueWalletWatch;
|
||||||
|
};
|
||||||
|
B4A29A252B55C990002A67DF /* PBXContainerItemProxy */ = {
|
||||||
|
isa = PBXContainerItemProxy;
|
||||||
|
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
||||||
|
proxyType = 1;
|
||||||
|
remoteGlobalIDString = 6D99465D2555A660000E52E8;
|
||||||
|
remoteInfo = MarketWidgetExtension;
|
||||||
|
};
|
||||||
|
B4A29A272B55C990002A67DF /* PBXContainerItemProxy */ = {
|
||||||
|
isa = PBXContainerItemProxy;
|
||||||
|
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
||||||
|
proxyType = 1;
|
||||||
|
remoteGlobalIDString = 6D2A6460258BA92C0092292B;
|
||||||
|
remoteInfo = Stickers;
|
||||||
|
};
|
||||||
|
B4A29A292B55C990002A67DF /* PBXContainerItemProxy */ = {
|
||||||
|
isa = PBXContainerItemProxy;
|
||||||
|
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
||||||
|
proxyType = 1;
|
||||||
|
remoteGlobalIDString = 6DD4109B266CADF10087DE03;
|
||||||
|
remoteInfo = WidgetsExtension;
|
||||||
|
};
|
||||||
/* End PBXContainerItemProxy section */
|
/* End PBXContainerItemProxy section */
|
||||||
|
|
||||||
/* Begin PBXCopyFilesBuildPhase section */
|
/* Begin PBXCopyFilesBuildPhase section */
|
||||||
|
@ -157,6 +198,29 @@
|
||||||
name = "Embed App Extensions";
|
name = "Embed App Extensions";
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
B4A29A392B55C990002A67DF /* Embed Watch Content */ = {
|
||||||
|
isa = PBXCopyFilesBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
|
||||||
|
dstSubfolderSpec = 16;
|
||||||
|
files = (
|
||||||
|
B4A29A3A2B55C990002A67DF /* BlueWalletWatch.app in Embed Watch Content */,
|
||||||
|
);
|
||||||
|
name = "Embed Watch Content";
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
|
B4A29A3B2B55C990002A67DF /* Embed App Extensions */ = {
|
||||||
|
isa = PBXCopyFilesBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
dstPath = "";
|
||||||
|
dstSubfolderSpec = 13;
|
||||||
|
files = (
|
||||||
|
B4A29A3C2B55C990002A67DF /* Stickers.appex in Embed App Extensions */,
|
||||||
|
B4A29A3D2B55C990002A67DF /* WidgetsExtension.appex in Embed App Extensions */,
|
||||||
|
);
|
||||||
|
name = "Embed App Extensions";
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
/* End PBXCopyFilesBuildPhase section */
|
/* End PBXCopyFilesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXFileReference section */
|
/* Begin PBXFileReference section */
|
||||||
|
@ -188,6 +252,7 @@
|
||||||
47C436B1EF23484B8181DBEA /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = "<group>"; };
|
47C436B1EF23484B8181DBEA /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = "<group>"; };
|
||||||
4D746BBE67E84684848246E2 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = "<group>"; };
|
4D746BBE67E84684848246E2 /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = "<group>"; };
|
||||||
4F12F501B686459183E0BE0D /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = "<group>"; };
|
4F12F501B686459183E0BE0D /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = "<group>"; };
|
||||||
|
52FA0F1447D69747BD547E1E /* libPods-BlueWallet-NoLDK.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BlueWallet-NoLDK.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
5A8F67CF29564E41882ECEF8 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = "<group>"; };
|
5A8F67CF29564E41882ECEF8 /* FontAwesome5_Brands.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Brands.ttf; path = "../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf"; sourceTree = "<group>"; };
|
||||||
6A65D81712444D37BA152B06 /* libRNRandomBytes.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNRandomBytes.a; sourceTree = "<group>"; };
|
6A65D81712444D37BA152B06 /* libRNRandomBytes.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNRandomBytes.a; sourceTree = "<group>"; };
|
||||||
6D203C2025D4ED2500493AD1 /* BlueWalletWatch.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = BlueWalletWatch.entitlements; sourceTree = "<group>"; };
|
6D203C2025D4ED2500493AD1 /* BlueWalletWatch.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = BlueWalletWatch.entitlements; sourceTree = "<group>"; };
|
||||||
|
@ -254,12 +319,14 @@
|
||||||
849047C92702A32A008EE567 /* Handoff.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Handoff.swift; sourceTree = "<group>"; };
|
849047C92702A32A008EE567 /* Handoff.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Handoff.swift; sourceTree = "<group>"; };
|
||||||
84E05A832721191B001A0D3A /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = "<group>"; };
|
84E05A832721191B001A0D3A /* Settings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Settings.bundle; sourceTree = "<group>"; };
|
||||||
8637D4B5E14D443A9031DA95 /* libRNFS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNFS.a; sourceTree = "<group>"; };
|
8637D4B5E14D443A9031DA95 /* libRNFS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNFS.a; sourceTree = "<group>"; };
|
||||||
|
8B160AC12BDAD72BB70BC175 /* Pods-BlueWallet-NoLDK.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlueWallet-NoLDK.release.xcconfig"; path = "Target Support Files/Pods-BlueWallet-NoLDK/Pods-BlueWallet-NoLDK.release.xcconfig"; sourceTree = "<group>"; };
|
||||||
90F86BC5194548CA87D729A9 /* libToolTipMenu.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libToolTipMenu.a; sourceTree = "<group>"; };
|
90F86BC5194548CA87D729A9 /* libToolTipMenu.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libToolTipMenu.a; sourceTree = "<group>"; };
|
||||||
94565BFC6A0C4235B3EC7B01 /* libRNSVG.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNSVG.a; sourceTree = "<group>"; };
|
94565BFC6A0C4235B3EC7B01 /* libRNSVG.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNSVG.a; sourceTree = "<group>"; };
|
||||||
95208B2A05884A76B5BB99C0 /* libRCTGoogleAnalyticsBridge.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTGoogleAnalyticsBridge.a; sourceTree = "<group>"; };
|
95208B2A05884A76B5BB99C0 /* libRCTGoogleAnalyticsBridge.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTGoogleAnalyticsBridge.a; sourceTree = "<group>"; };
|
||||||
9A9CB0C469EEBDD84696BAA7 /* libPods-BlueWallet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BlueWallet.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
95304AD151F1F531985AA341 /* libPods-BlueWallet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-BlueWallet.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
9DF4E6C040764E4BA1ACC1EB /* libTcpSockets.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libTcpSockets.a; sourceTree = "<group>"; };
|
9DF4E6C040764E4BA1ACC1EB /* libTcpSockets.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libTcpSockets.a; sourceTree = "<group>"; };
|
||||||
9F1F51A83D044F3BB26A35FC /* libRNSVG-tvOS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = "libRNSVG-tvOS.a"; sourceTree = "<group>"; };
|
9F1F51A83D044F3BB26A35FC /* libRNSVG-tvOS.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = "libRNSVG-tvOS.a"; sourceTree = "<group>"; };
|
||||||
|
A16A0CF8A3E6F577B90BF8A4 /* Pods-BlueWallet-NoLDK.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-BlueWallet-NoLDK.debug.xcconfig"; path = "Target Support Files/Pods-BlueWallet-NoLDK/Pods-BlueWallet-NoLDK.debug.xcconfig"; sourceTree = "<group>"; };
|
||||||
A7C4B1FDAD264618BAF8C335 /* libRNCWebView.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNCWebView.a; sourceTree = "<group>"; };
|
A7C4B1FDAD264618BAF8C335 /* libRNCWebView.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNCWebView.a; sourceTree = "<group>"; };
|
||||||
A9166D490AEF4938BD6621CF /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = "<group>"; };
|
A9166D490AEF4938BD6621CF /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = "<group>"; };
|
||||||
AB2325650CE04F018697ACFE /* libRNReactNativeHapticFeedback.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNReactNativeHapticFeedback.a; sourceTree = "<group>"; };
|
AB2325650CE04F018697ACFE /* libRNReactNativeHapticFeedback.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNReactNativeHapticFeedback.a; sourceTree = "<group>"; };
|
||||||
|
@ -291,6 +358,8 @@
|
||||||
B461B851299599F800E431AA /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = BlueWallet/AppDelegate.mm; sourceTree = "<group>"; };
|
B461B851299599F800E431AA /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = BlueWallet/AppDelegate.mm; sourceTree = "<group>"; };
|
||||||
B47B21E92B2128B8001F6690 /* BlueWalletUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BlueWalletUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
B47B21E92B2128B8001F6690 /* BlueWalletUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BlueWalletUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
B47B21EB2B2128B8001F6690 /* BlueWalletUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BlueWalletUITests.swift; sourceTree = "<group>"; };
|
B47B21EB2B2128B8001F6690 /* BlueWalletUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BlueWalletUITests.swift; sourceTree = "<group>"; };
|
||||||
|
B4A29A452B55C990002A67DF /* BlueWallet.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = BlueWallet.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||||
|
B4A29A462B55C990002A67DF /* BlueWallet-NoLDK.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "BlueWallet-NoLDK.plist"; path = "/Users/marcosrodriguez/Documents/GitHub/BlueWallet/ios/BlueWallet-NoLDK.plist"; sourceTree = "<absolute>"; };
|
||||||
B4AB225C2B02AD12001F4328 /* XMLParserDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = XMLParserDelegate.swift; sourceTree = "<group>"; };
|
B4AB225C2B02AD12001F4328 /* XMLParserDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = XMLParserDelegate.swift; sourceTree = "<group>"; };
|
||||||
B4D3235A177F4580BA52F2F9 /* libRNCSlider.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNCSlider.a; sourceTree = "<group>"; };
|
B4D3235A177F4580BA52F2F9 /* libRNCSlider.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNCSlider.a; sourceTree = "<group>"; };
|
||||||
B642AFB13483418CAB6FF25E /* libRCTQRCodeLocalImage.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTQRCodeLocalImage.a; sourceTree = "<group>"; };
|
B642AFB13483418CAB6FF25E /* libRCTQRCodeLocalImage.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTQRCodeLocalImage.a; sourceTree = "<group>"; };
|
||||||
|
@ -318,7 +387,8 @@
|
||||||
files = (
|
files = (
|
||||||
782F075B5DD048449E2DECE9 /* libz.tbd in Frameworks */,
|
782F075B5DD048449E2DECE9 /* libz.tbd in Frameworks */,
|
||||||
764B49B1420D4AEB8109BF62 /* libsqlite3.0.tbd in Frameworks */,
|
764B49B1420D4AEB8109BF62 /* libsqlite3.0.tbd in Frameworks */,
|
||||||
C978A716948AB7DEC5B6F677 /* libPods-BlueWallet.a in Frameworks */,
|
C978A716948AB7DEC5B6F677 /* (null) in Frameworks */,
|
||||||
|
773E382FE62E836172AAB98B /* libPods-BlueWallet.a in Frameworks */,
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
@ -360,6 +430,16 @@
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
B4A29A302B55C990002A67DF /* Frameworks */ = {
|
||||||
|
isa = PBXFrameworksBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
B4A29A312B55C990002A67DF /* libz.tbd in Frameworks */,
|
||||||
|
B4A29A322B55C990002A67DF /* libsqlite3.0.tbd in Frameworks */,
|
||||||
|
2B2B129397ACA4E7FCCB4F6F /* libPods-BlueWallet-NoLDK.a in Frameworks */,
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
/* End PBXFrameworksBuildPhase section */
|
/* End PBXFrameworksBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXGroup section */
|
/* Begin PBXGroup section */
|
||||||
|
@ -390,6 +470,7 @@
|
||||||
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
|
008F07F21AC5B25A0029DE68 /* main.jsbundle */,
|
||||||
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
||||||
13B07FB61A68108700A75B9A /* Info.plist */,
|
13B07FB61A68108700A75B9A /* Info.plist */,
|
||||||
|
B4A29A462B55C990002A67DF /* BlueWallet-NoLDK.plist */,
|
||||||
13B07FB71A68108700A75B9A /* main.m */,
|
13B07FB71A68108700A75B9A /* main.m */,
|
||||||
32B5A3292334450100F8D608 /* Bridge.swift */,
|
32B5A3292334450100F8D608 /* Bridge.swift */,
|
||||||
32B5A3282334450100F8D608 /* BlueWallet-Bridging-Header.h */,
|
32B5A3282334450100F8D608 /* BlueWallet-Bridging-Header.h */,
|
||||||
|
@ -416,7 +497,8 @@
|
||||||
3271B0AA236E2E0700DA766F /* NotificationCenter.framework */,
|
3271B0AA236E2E0700DA766F /* NotificationCenter.framework */,
|
||||||
6D333B3A252FE1A3004D72DF /* WidgetKit.framework */,
|
6D333B3A252FE1A3004D72DF /* WidgetKit.framework */,
|
||||||
6D333B3C252FE1A3004D72DF /* SwiftUI.framework */,
|
6D333B3C252FE1A3004D72DF /* SwiftUI.framework */,
|
||||||
9A9CB0C469EEBDD84696BAA7 /* libPods-BlueWallet.a */,
|
52FA0F1447D69747BD547E1E /* libPods-BlueWallet-NoLDK.a */,
|
||||||
|
95304AD151F1F531985AA341 /* libPods-BlueWallet.a */,
|
||||||
);
|
);
|
||||||
name = Frameworks;
|
name = Frameworks;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
|
@ -570,6 +652,7 @@
|
||||||
6D2A6461258BA92C0092292B /* Stickers.appex */,
|
6D2A6461258BA92C0092292B /* Stickers.appex */,
|
||||||
6DD4109C266CADF10087DE03 /* WidgetsExtension.appex */,
|
6DD4109C266CADF10087DE03 /* WidgetsExtension.appex */,
|
||||||
B47B21E92B2128B8001F6690 /* BlueWalletUITests.xctest */,
|
B47B21E92B2128B8001F6690 /* BlueWalletUITests.xctest */,
|
||||||
|
B4A29A452B55C990002A67DF /* BlueWallet.app */,
|
||||||
);
|
);
|
||||||
name = Products;
|
name = Products;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
|
@ -664,6 +747,8 @@
|
||||||
children = (
|
children = (
|
||||||
B68F8552DD4428F64B11DCFB /* Pods-BlueWallet.debug.xcconfig */,
|
B68F8552DD4428F64B11DCFB /* Pods-BlueWallet.debug.xcconfig */,
|
||||||
77ED97C3CA4284744868B15D /* Pods-BlueWallet.release.xcconfig */,
|
77ED97C3CA4284744868B15D /* Pods-BlueWallet.release.xcconfig */,
|
||||||
|
A16A0CF8A3E6F577B90BF8A4 /* Pods-BlueWallet-NoLDK.debug.xcconfig */,
|
||||||
|
8B160AC12BDAD72BB70BC175 /* Pods-BlueWallet-NoLDK.release.xcconfig */,
|
||||||
);
|
);
|
||||||
path = Pods;
|
path = Pods;
|
||||||
sourceTree = "<group>";
|
sourceTree = "<group>";
|
||||||
|
@ -790,6 +875,36 @@
|
||||||
productReference = B47B21E92B2128B8001F6690 /* BlueWalletUITests.xctest */;
|
productReference = B47B21E92B2128B8001F6690 /* BlueWalletUITests.xctest */;
|
||||||
productType = "com.apple.product-type.bundle.ui-testing";
|
productType = "com.apple.product-type.bundle.ui-testing";
|
||||||
};
|
};
|
||||||
|
B4A29A212B55C990002A67DF /* BlueWallet-NoLDK */ = {
|
||||||
|
isa = PBXNativeTarget;
|
||||||
|
buildConfigurationList = B4A29A422B55C990002A67DF /* Build configuration list for PBXNativeTarget "BlueWallet-NoLDK" */;
|
||||||
|
buildPhases = (
|
||||||
|
B4A29A2A2B55C990002A67DF /* [CP] Check Pods Manifest.lock */,
|
||||||
|
B4A29A2B2B55C990002A67DF /* Sources */,
|
||||||
|
B4A29A302B55C990002A67DF /* Frameworks */,
|
||||||
|
B4A29A342B55C990002A67DF /* Resources */,
|
||||||
|
B4A29A382B55C990002A67DF /* Bundle React Native code and images */,
|
||||||
|
B4A29A392B55C990002A67DF /* Embed Watch Content */,
|
||||||
|
B4A29A3B2B55C990002A67DF /* Embed App Extensions */,
|
||||||
|
B4A29A3E2B55C990002A67DF /* Upload source maps to Bugsnag */,
|
||||||
|
B4A29A3F2B55C990002A67DF /* Upload Bugsnag dSYM */,
|
||||||
|
B4A29A402B55C990002A67DF /* [CP] Embed Pods Frameworks */,
|
||||||
|
B4A29A412B55C990002A67DF /* [CP] Copy Pods Resources */,
|
||||||
|
B4A29A472B55D17B002A67DF /* ShellScript */,
|
||||||
|
);
|
||||||
|
buildRules = (
|
||||||
|
);
|
||||||
|
dependencies = (
|
||||||
|
B4A29A222B55C990002A67DF /* PBXTargetDependency */,
|
||||||
|
B4A29A242B55C990002A67DF /* PBXTargetDependency */,
|
||||||
|
B4A29A262B55C990002A67DF /* PBXTargetDependency */,
|
||||||
|
B4A29A282B55C990002A67DF /* PBXTargetDependency */,
|
||||||
|
);
|
||||||
|
name = "BlueWallet-NoLDK";
|
||||||
|
productName = "Hello World";
|
||||||
|
productReference = B4A29A452B55C990002A67DF /* BlueWallet.app */;
|
||||||
|
productType = "com.apple.product-type.application";
|
||||||
|
};
|
||||||
/* End PBXNativeTarget section */
|
/* End PBXNativeTarget section */
|
||||||
|
|
||||||
/* Begin PBXProject section */
|
/* Begin PBXProject section */
|
||||||
|
@ -834,7 +949,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "BlueWallet" */;
|
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "BlueWallet" */;
|
||||||
compatibilityVersion = "Xcode 3.2";
|
compatibilityVersion = "Xcode 15.0";
|
||||||
developmentRegion = English;
|
developmentRegion = English;
|
||||||
hasScannedForEncodings = 0;
|
hasScannedForEncodings = 0;
|
||||||
knownRegions = (
|
knownRegions = (
|
||||||
|
@ -866,7 +981,7 @@
|
||||||
);
|
);
|
||||||
mainGroup = 83CBB9F61A601CBA00E9B192;
|
mainGroup = 83CBB9F61A601CBA00E9B192;
|
||||||
packageReferences = (
|
packageReferences = (
|
||||||
6DFC806E24EA0B6C007B8700 /* XCRemoteSwiftPackageReference "EFQRCode.git" */,
|
6DFC806E24EA0B6C007B8700 /* XCRemoteSwiftPackageReference "EFQRCode" */,
|
||||||
);
|
);
|
||||||
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
||||||
projectDirPath = "";
|
projectDirPath = "";
|
||||||
|
@ -878,6 +993,7 @@
|
||||||
6D2A6460258BA92C0092292B /* Stickers */,
|
6D2A6460258BA92C0092292B /* Stickers */,
|
||||||
6DD4109B266CADF10087DE03 /* WidgetsExtension */,
|
6DD4109B266CADF10087DE03 /* WidgetsExtension */,
|
||||||
B47B21E82B2128B8001F6690 /* BlueWalletUITests */,
|
B47B21E82B2128B8001F6690 /* BlueWalletUITests */,
|
||||||
|
B4A29A212B55C990002A67DF /* BlueWallet-NoLDK */,
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
/* End PBXProject section */
|
/* End PBXProject section */
|
||||||
|
@ -936,6 +1052,15 @@
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
B4A29A342B55C990002A67DF /* Resources */ = {
|
||||||
|
isa = PBXResourcesBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
B4A29A352B55C990002A67DF /* LaunchScreen.storyboard in Resources */,
|
||||||
|
B4A29A372B55C990002A67DF /* Images.xcassets in Resources */,
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
/* End PBXResourcesBuildPhase section */
|
/* End PBXResourcesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXShellScriptBuildPhase section */
|
/* Begin PBXShellScriptBuildPhase section */
|
||||||
|
@ -958,15 +1083,12 @@
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputFileListPaths = (
|
||||||
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet/Pods-BlueWallet-frameworks.sh",
|
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet/Pods-BlueWallet-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
||||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
|
|
||||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/rn-ldk/LDKFramework.framework/LDKFramework",
|
|
||||||
);
|
);
|
||||||
name = "[CP] Embed Pods Frameworks";
|
name = "[CP] Embed Pods Frameworks";
|
||||||
outputPaths = (
|
outputFileListPaths = (
|
||||||
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
|
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet/Pods-BlueWallet-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
||||||
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LDKFramework.framework",
|
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
|
@ -1021,51 +1143,12 @@
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
files = (
|
files = (
|
||||||
);
|
);
|
||||||
inputPaths = (
|
inputFileListPaths = (
|
||||||
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet/Pods-BlueWallet-resources.sh",
|
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet/Pods-BlueWallet-resources-${CONFIGURATION}-input-files.xcfilelist",
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Feather.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Brands.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Regular.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome5_Solid.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome6_Brands.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome6_Regular.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/FontAwesome6_Solid.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Fontisto.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Foundation.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Octicons.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf",
|
|
||||||
"${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Zocial.ttf",
|
|
||||||
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
|
|
||||||
);
|
);
|
||||||
name = "[CP] Copy Pods Resources";
|
name = "[CP] Copy Pods Resources";
|
||||||
outputPaths = (
|
outputFileListPaths = (
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf",
|
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet/Pods-BlueWallet-resources-${CONFIGURATION}-output-files.xcfilelist",
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Feather.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Brands.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Regular.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome5_Solid.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome6_Brands.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome6_Regular.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FontAwesome6_Solid.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Fontisto.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Foundation.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Ionicons.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialCommunityIcons.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MaterialIcons.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Octicons.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/SimpleLineIcons.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Zocial.ttf",
|
|
||||||
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
|
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
|
@ -1086,6 +1169,128 @@
|
||||||
shellPath = /bin/sh;
|
shellPath = /bin/sh;
|
||||||
shellScript = "SOURCE_MAP=\"$TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\" ../node_modules/@bugsnag/react-native/bugsnag-react-native-xcode.sh";
|
shellScript = "SOURCE_MAP=\"$TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\" ../node_modules/@bugsnag/react-native/bugsnag-react-native-xcode.sh";
|
||||||
};
|
};
|
||||||
|
B4A29A2A2B55C990002A67DF /* [CP] Check Pods Manifest.lock */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
||||||
|
"${PODS_ROOT}/Manifest.lock",
|
||||||
|
);
|
||||||
|
name = "[CP] Check Pods Manifest.lock";
|
||||||
|
outputFileListPaths = (
|
||||||
|
);
|
||||||
|
outputPaths = (
|
||||||
|
"$(DERIVED_FILE_DIR)/Pods-BlueWallet-NoLDK-checkManifestLockResult.txt",
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
|
B4A29A382B55C990002A67DF /* Bundle React Native code and images */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
);
|
||||||
|
name = "Bundle React Native code and images";
|
||||||
|
outputPaths = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "export EXTRA_PACKAGER_ARGS=\"--sourcemap-output $TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\"\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
|
||||||
|
};
|
||||||
|
B4A29A3E2B55C990002A67DF /* Upload source maps to Bugsnag */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
);
|
||||||
|
name = "Upload source maps to Bugsnag";
|
||||||
|
outputPaths = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "SOURCE_MAP=\"$TMPDIR/$(md5 -qs \"$CONFIGURATION_BUILD_DIR\")-main.jsbundle.map\" ../node_modules/@bugsnag/react-native/bugsnag-react-native-xcode.sh";
|
||||||
|
};
|
||||||
|
B4A29A3F2B55C990002A67DF /* Upload Bugsnag dSYM */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
"${BUILT_PRODUCTS_DIR}/${INFOPLIST_PATH}",
|
||||||
|
"${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}",
|
||||||
|
);
|
||||||
|
name = "Upload Bugsnag dSYM";
|
||||||
|
outputFileListPaths = (
|
||||||
|
);
|
||||||
|
outputPaths = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = "/usr/bin/env ruby";
|
||||||
|
shellScript = "api_key = nil # Insert your key here to use it directly from this script\n\n# Attempt to get the API key from an environment variable\nunless api_key\n api_key = ENV[\"BUGSNAG_API_KEY\"]\n\n # If not present, attempt to lookup the value from the Info.plist\n unless api_key\n info_plist_path = \"#{ENV[\"BUILT_PRODUCTS_DIR\"]}/#{ENV[\"INFOPLIST_PATH\"]}\"\n plist_buddy_response = `/usr/libexec/PlistBuddy -c \"print :bugsnag:apiKey\" \"#{info_plist_path}\"`\n plist_buddy_response = `/usr/libexec/PlistBuddy -c \"print :BugsnagAPIKey\" \"#{info_plist_path}\"` if !$?.success?\n api_key = plist_buddy_response if $?.success?\n end\nend\n\nfail(\"No Bugsnag API key detected - add your key to your Info.plist, BUGSNAG_API_KEY environment variable or this Run Script phase\") unless api_key\n\nfork do\n Process.setsid\n STDIN.reopen(\"/dev/null\")\n STDOUT.reopen(\"/dev/null\", \"a\")\n STDERR.reopen(\"/dev/null\", \"a\")\n\n require 'shellwords'\n\n Dir[\"#{ENV[\"DWARF_DSYM_FOLDER_PATH\"]}/*/Contents/Resources/DWARF/*\"].each do |dsym|\n curl_command = \"curl --http1.1 -F dsym=@#{Shellwords.escape(dsym)} -F projectRoot=#{Shellwords.escape(ENV[\"PROJECT_DIR\"])} \"\n curl_command += \"-F apiKey=#{Shellwords.escape(api_key)} \"\n curl_command += \"https://upload.bugsnag.com/\"\n system(curl_command)\n end\nend\n";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
|
B4A29A402B55C990002A67DF /* [CP] Embed Pods Frameworks */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputFileListPaths = (
|
||||||
|
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet-NoLDK/Pods-BlueWallet-NoLDK-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
||||||
|
);
|
||||||
|
name = "[CP] Embed Pods Frameworks";
|
||||||
|
outputFileListPaths = (
|
||||||
|
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet-NoLDK/Pods-BlueWallet-NoLDK-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-BlueWallet-NoLDK/Pods-BlueWallet-NoLDK-frameworks.sh\"\n";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
|
B4A29A412B55C990002A67DF /* [CP] Copy Pods Resources */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputFileListPaths = (
|
||||||
|
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet-NoLDK/Pods-BlueWallet-NoLDK-resources-${CONFIGURATION}-input-files.xcfilelist",
|
||||||
|
);
|
||||||
|
name = "[CP] Copy Pods Resources";
|
||||||
|
outputFileListPaths = (
|
||||||
|
"${PODS_ROOT}/Target Support Files/Pods-BlueWallet-NoLDK/Pods-BlueWallet-NoLDK-resources-${CONFIGURATION}-output-files.xcfilelist",
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-BlueWallet-NoLDK/Pods-BlueWallet-NoLDK-resources.sh\"\n";
|
||||||
|
showEnvVarsInLog = 0;
|
||||||
|
};
|
||||||
|
B4A29A472B55D17B002A67DF /* ShellScript */ = {
|
||||||
|
isa = PBXShellScriptBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
);
|
||||||
|
inputFileListPaths = (
|
||||||
|
);
|
||||||
|
inputPaths = (
|
||||||
|
);
|
||||||
|
outputFileListPaths = (
|
||||||
|
);
|
||||||
|
outputPaths = (
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
shellPath = /bin/sh;
|
||||||
|
shellScript = "cp ../scripts/maccatalystpatches/lightning-ldk-wallet.ts ../class/wallets/lightning-ldk-wallet.ts\n";
|
||||||
|
};
|
||||||
CF0725821442A3000F20E874 /* Upload Bugsnag dSYM */ = {
|
CF0725821442A3000F20E874 /* Upload Bugsnag dSYM */ = {
|
||||||
isa = PBXShellScriptBuildPhase;
|
isa = PBXShellScriptBuildPhase;
|
||||||
buildActionMask = 2147483647;
|
buildActionMask = 2147483647;
|
||||||
|
@ -1185,6 +1390,17 @@
|
||||||
);
|
);
|
||||||
runOnlyForDeploymentPostprocessing = 0;
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
};
|
};
|
||||||
|
B4A29A2B2B55C990002A67DF /* Sources */ = {
|
||||||
|
isa = PBXSourcesBuildPhase;
|
||||||
|
buildActionMask = 2147483647;
|
||||||
|
files = (
|
||||||
|
B4A29A2C2B55C990002A67DF /* EventEmitter.m in Sources */,
|
||||||
|
B4A29A2D2B55C990002A67DF /* main.m in Sources */,
|
||||||
|
B4A29A2E2B55C990002A67DF /* AppDelegate.mm in Sources */,
|
||||||
|
B4A29A2F2B55C990002A67DF /* Bridge.swift in Sources */,
|
||||||
|
);
|
||||||
|
runOnlyForDeploymentPostprocessing = 0;
|
||||||
|
};
|
||||||
/* End PBXSourcesBuildPhase section */
|
/* End PBXSourcesBuildPhase section */
|
||||||
|
|
||||||
/* Begin PBXTargetDependency section */
|
/* Begin PBXTargetDependency section */
|
||||||
|
@ -1219,6 +1435,27 @@
|
||||||
target = 13B07F861A680F5B00A75B9A /* BlueWallet */;
|
target = 13B07F861A680F5B00A75B9A /* BlueWallet */;
|
||||||
targetProxy = B47B21EF2B2128B8001F6690 /* PBXContainerItemProxy */;
|
targetProxy = B47B21EF2B2128B8001F6690 /* PBXContainerItemProxy */;
|
||||||
};
|
};
|
||||||
|
B4A29A222B55C990002A67DF /* PBXTargetDependency */ = {
|
||||||
|
isa = PBXTargetDependency;
|
||||||
|
platformFilter = ios;
|
||||||
|
target = B40D4E2F225841EC00428FCC /* BlueWalletWatch */;
|
||||||
|
targetProxy = B4A29A232B55C990002A67DF /* PBXContainerItemProxy */;
|
||||||
|
};
|
||||||
|
B4A29A242B55C990002A67DF /* PBXTargetDependency */ = {
|
||||||
|
isa = PBXTargetDependency;
|
||||||
|
targetProxy = B4A29A252B55C990002A67DF /* PBXContainerItemProxy */;
|
||||||
|
};
|
||||||
|
B4A29A262B55C990002A67DF /* PBXTargetDependency */ = {
|
||||||
|
isa = PBXTargetDependency;
|
||||||
|
platformFilter = ios;
|
||||||
|
target = 6D2A6460258BA92C0092292B /* Stickers */;
|
||||||
|
targetProxy = B4A29A272B55C990002A67DF /* PBXContainerItemProxy */;
|
||||||
|
};
|
||||||
|
B4A29A282B55C990002A67DF /* PBXTargetDependency */ = {
|
||||||
|
isa = PBXTargetDependency;
|
||||||
|
target = 6DD4109B266CADF10087DE03 /* WidgetsExtension */;
|
||||||
|
targetProxy = B4A29A292B55C990002A67DF /* PBXContainerItemProxy */;
|
||||||
|
};
|
||||||
/* End PBXTargetDependency section */
|
/* End PBXTargetDependency section */
|
||||||
|
|
||||||
/* Begin PBXVariantGroup section */
|
/* Begin PBXVariantGroup section */
|
||||||
|
@ -1264,11 +1501,13 @@
|
||||||
CODE_SIGN_ENTITLEMENTS = BlueWallet/BlueWallet.entitlements;
|
CODE_SIGN_ENTITLEMENTS = BlueWallet/BlueWallet.entitlements;
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||||
|
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = A7W54YZ4WU;
|
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = A7W54YZ4WU;
|
||||||
|
"DEVELOPMENT_TEAM[sdk=macosx*]" = A7W54YZ4WU;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
|
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
|
||||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
|
@ -1289,7 +1528,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"-ObjC",
|
"-ObjC",
|
||||||
|
@ -1300,9 +1539,11 @@
|
||||||
PRODUCT_NAME = BlueWallet;
|
PRODUCT_NAME = BlueWallet;
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development io.bluewallet.bluewallet";
|
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development io.bluewallet.bluewallet";
|
||||||
|
"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "BlueWallet Mac App Store";
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
SUPPORTS_MACCATALYST = YES;
|
SUPPORTS_MACCATALYST = YES;
|
||||||
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||||
|
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "BlueWallet-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "BlueWallet-Bridging-Header.h";
|
||||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||||
SWIFT_VERSION = 4.2;
|
SWIFT_VERSION = 4.2;
|
||||||
|
@ -1322,10 +1563,11 @@
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
|
||||||
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
|
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = A7W54YZ4WU;
|
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = A7W54YZ4WU;
|
||||||
|
"DEVELOPMENT_TEAM[sdk=macosx*]" = A7W54YZ4WU;
|
||||||
ENABLE_BITCODE = NO;
|
ENABLE_BITCODE = NO;
|
||||||
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
|
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
|
||||||
HEADER_SEARCH_PATHS = "$(inherited)";
|
HEADER_SEARCH_PATHS = "$(inherited)";
|
||||||
|
@ -1341,7 +1583,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
OTHER_LDFLAGS = (
|
OTHER_LDFLAGS = (
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
"-ObjC",
|
"-ObjC",
|
||||||
|
@ -1352,9 +1594,11 @@
|
||||||
PRODUCT_NAME = BlueWallet;
|
PRODUCT_NAME = BlueWallet;
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore io.bluewallet.bluewallet";
|
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore io.bluewallet.bluewallet";
|
||||||
|
"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "BlueWallet Mac App Store";
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
SUPPORTS_MACCATALYST = YES;
|
SUPPORTS_MACCATALYST = YES;
|
||||||
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||||
|
SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||||
SWIFT_OBJC_BRIDGING_HEADER = "BlueWallet-Bridging-Header.h";
|
SWIFT_OBJC_BRIDGING_HEADER = "BlueWallet-Bridging-Header.h";
|
||||||
SWIFT_VERSION = 4.2;
|
SWIFT_VERSION = 4.2;
|
||||||
TARGETED_DEVICE_FAMILY = "1,2";
|
TARGETED_DEVICE_FAMILY = "1,2";
|
||||||
|
@ -1376,7 +1620,7 @@
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
|
@ -1389,7 +1633,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||||
MTL_FAST_MATH = YES;
|
MTL_FAST_MATH = YES;
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
|
@ -1421,7 +1665,7 @@
|
||||||
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
|
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
|
@ -1434,7 +1678,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
MTL_FAST_MATH = YES;
|
MTL_FAST_MATH = YES;
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet.Stickers;
|
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet.Stickers;
|
||||||
|
@ -1464,13 +1708,14 @@
|
||||||
CODE_SIGN_ENTITLEMENTS = WidgetsExtension.entitlements;
|
CODE_SIGN_ENTITLEMENTS = WidgetsExtension.entitlements;
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||||
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
|
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Mac Developer";
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = A7W54YZ4WU;
|
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = A7W54YZ4WU;
|
||||||
|
"DEVELOPMENT_TEAM[sdk=macosx*]" = A7W54YZ4WU;
|
||||||
GCC_C_LANGUAGE_STANDARD = gnu11;
|
GCC_C_LANGUAGE_STANDARD = gnu11;
|
||||||
INFOPLIST_FILE = Widgets/Info.plist;
|
INFOPLIST_FILE = Widgets/Info.plist;
|
||||||
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
|
IPHONEOS_DEPLOYMENT_TARGET = 14.1;
|
||||||
|
@ -1484,7 +1729,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||||
MTL_FAST_MATH = YES;
|
MTL_FAST_MATH = YES;
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
|
@ -1492,6 +1737,7 @@
|
||||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||||
PROVISIONING_PROFILE_SPECIFIER = "";
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development io.bluewallet.bluewallet.MarketWidget";
|
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match Development io.bluewallet.bluewallet.MarketWidget";
|
||||||
|
"PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "match Development io.bluewallet.bluewallet.MarketWidget macos";
|
||||||
SKIP_INSTALL = YES;
|
SKIP_INSTALL = YES;
|
||||||
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
SUPPORTS_MACCATALYST = YES;
|
SUPPORTS_MACCATALYST = YES;
|
||||||
|
@ -1518,10 +1764,9 @@
|
||||||
CODE_SIGN_ENTITLEMENTS = WidgetsExtension.entitlements;
|
CODE_SIGN_ENTITLEMENTS = WidgetsExtension.entitlements;
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution";
|
||||||
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
|
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
|
@ -1539,7 +1784,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
MTL_FAST_MATH = YES;
|
MTL_FAST_MATH = YES;
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet.MarketWidget;
|
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet.MarketWidget;
|
||||||
|
@ -1699,7 +1944,7 @@
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Developer";
|
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Developer";
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
|
@ -1716,7 +1961,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||||
MTL_FAST_MATH = YES;
|
MTL_FAST_MATH = YES;
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
|
@ -1749,7 +1994,7 @@
|
||||||
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Distribution";
|
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Distribution";
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
|
@ -1766,7 +2011,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
MTL_FAST_MATH = YES;
|
MTL_FAST_MATH = YES;
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet.watch.extension;
|
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet.watch.extension;
|
||||||
|
@ -1798,7 +2043,7 @@
|
||||||
CODE_SIGN_IDENTITY = "Apple Development";
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Developer";
|
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Developer";
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
|
@ -1811,7 +2056,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||||
MTL_FAST_MATH = YES;
|
MTL_FAST_MATH = YES;
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
|
@ -1846,7 +2091,7 @@
|
||||||
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Distribution";
|
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "iPhone Distribution";
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
|
@ -1859,7 +2104,7 @@
|
||||||
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
"$(inherited)",
|
"$(inherited)",
|
||||||
);
|
);
|
||||||
MARKETING_VERSION = 6.4.15;
|
MARKETING_VERSION = 6.4.17;
|
||||||
MTL_FAST_MATH = YES;
|
MTL_FAST_MATH = YES;
|
||||||
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet.watch;
|
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet.watch;
|
||||||
|
@ -1889,7 +2134,7 @@
|
||||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
|
@ -1939,7 +2184,7 @@
|
||||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
||||||
CODE_SIGN_STYLE = Manual;
|
CODE_SIGN_STYLE = Manual;
|
||||||
COPY_PHASE_STRIP = NO;
|
COPY_PHASE_STRIP = NO;
|
||||||
CURRENT_PROJECT_VERSION = 1703112609;
|
CURRENT_PROJECT_VERSION = 1703112610;
|
||||||
DEAD_CODE_STRIPPING = YES;
|
DEAD_CODE_STRIPPING = YES;
|
||||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||||
DEVELOPMENT_TEAM = "";
|
DEVELOPMENT_TEAM = "";
|
||||||
|
@ -1969,6 +2214,106 @@
|
||||||
};
|
};
|
||||||
name = Release;
|
name = Release;
|
||||||
};
|
};
|
||||||
|
B4A29A432B55C990002A67DF /* Debug */ = {
|
||||||
|
isa = XCBuildConfiguration;
|
||||||
|
baseConfigurationReference = A16A0CF8A3E6F577B90BF8A4 /* Pods-BlueWallet-NoLDK.debug.xcconfig */;
|
||||||
|
buildSettings = {
|
||||||
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
|
CLANG_ENABLE_MODULES = YES;
|
||||||
|
CODE_SIGN_ENTITLEMENTS = BlueWallet/BlueWallet.entitlements;
|
||||||
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
|
CODE_SIGN_STYLE = Automatic;
|
||||||
|
CURRENT_PROJECT_VERSION = 1703112620;
|
||||||
|
DEAD_CODE_STRIPPING = YES;
|
||||||
|
DEVELOPMENT_TEAM = A7W54YZ4WU;
|
||||||
|
ENABLE_BITCODE = NO;
|
||||||
|
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
|
||||||
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"COCOAPODS=1",
|
||||||
|
"FB_SONARKIT_ENABLED=1",
|
||||||
|
);
|
||||||
|
HEADER_SEARCH_PATHS = "$(inherited)";
|
||||||
|
INFOPLIST_FILE = "BlueWallet-NoLDK.plist";
|
||||||
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.finance";
|
||||||
|
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
||||||
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"@executable_path/Frameworks",
|
||||||
|
);
|
||||||
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(SDKROOT)/usr/lib/swift",
|
||||||
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
|
"$(inherited)",
|
||||||
|
);
|
||||||
|
MARKETING_VERSION = 6.4.17;
|
||||||
|
OTHER_LDFLAGS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"-ObjC",
|
||||||
|
"-lc++",
|
||||||
|
);
|
||||||
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
|
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet;
|
||||||
|
PRODUCT_NAME = BlueWallet;
|
||||||
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
|
SUPPORTS_MACCATALYST = YES;
|
||||||
|
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||||
|
SWIFT_OBJC_BRIDGING_HEADER = "BlueWallet-Bridging-Header.h";
|
||||||
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||||
|
SWIFT_VERSION = 4.2;
|
||||||
|
TARGETED_DEVICE_FAMILY = 2;
|
||||||
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
|
};
|
||||||
|
name = Debug;
|
||||||
|
};
|
||||||
|
B4A29A442B55C990002A67DF /* Release */ = {
|
||||||
|
isa = XCBuildConfiguration;
|
||||||
|
baseConfigurationReference = 8B160AC12BDAD72BB70BC175 /* Pods-BlueWallet-NoLDK.release.xcconfig */;
|
||||||
|
buildSettings = {
|
||||||
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||||
|
CLANG_ENABLE_MODULES = YES;
|
||||||
|
CODE_SIGN_ENTITLEMENTS = BlueWallet/BlueWalletRelease.entitlements;
|
||||||
|
CODE_SIGN_IDENTITY = "Apple Development";
|
||||||
|
CODE_SIGN_STYLE = Automatic;
|
||||||
|
CURRENT_PROJECT_VERSION = 1703112620;
|
||||||
|
DEAD_CODE_STRIPPING = YES;
|
||||||
|
DEVELOPMENT_TEAM = A7W54YZ4WU;
|
||||||
|
ENABLE_BITCODE = NO;
|
||||||
|
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
|
||||||
|
HEADER_SEARCH_PATHS = "$(inherited)";
|
||||||
|
INFOPLIST_FILE = "BlueWallet-NoLDK.plist";
|
||||||
|
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.finance";
|
||||||
|
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
||||||
|
LD_RUNPATH_SEARCH_PATHS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"@executable_path/Frameworks",
|
||||||
|
);
|
||||||
|
LIBRARY_SEARCH_PATHS = (
|
||||||
|
"$(SDKROOT)/usr/lib/swift",
|
||||||
|
"$(SDKROOT)/System/iOSSupport/usr/lib/swift",
|
||||||
|
"$(inherited)",
|
||||||
|
);
|
||||||
|
MARKETING_VERSION = 6.4.17;
|
||||||
|
OTHER_LDFLAGS = (
|
||||||
|
"$(inherited)",
|
||||||
|
"-ObjC",
|
||||||
|
"-lc++",
|
||||||
|
);
|
||||||
|
PRESERVE_DEAD_CODE_INITS_AND_TERMS = YES;
|
||||||
|
PRODUCT_BUNDLE_IDENTIFIER = io.bluewallet.bluewallet;
|
||||||
|
PRODUCT_NAME = BlueWallet;
|
||||||
|
PROVISIONING_PROFILE_SPECIFIER = "";
|
||||||
|
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
||||||
|
SUPPORTS_MACCATALYST = YES;
|
||||||
|
SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
|
||||||
|
SWIFT_OBJC_BRIDGING_HEADER = "BlueWallet-Bridging-Header.h";
|
||||||
|
SWIFT_VERSION = 4.2;
|
||||||
|
TARGETED_DEVICE_FAMILY = 2;
|
||||||
|
VERSIONING_SYSTEM = "apple-generic";
|
||||||
|
};
|
||||||
|
name = Release;
|
||||||
|
};
|
||||||
/* End XCBuildConfiguration section */
|
/* End XCBuildConfiguration section */
|
||||||
|
|
||||||
/* Begin XCConfigurationList section */
|
/* Begin XCConfigurationList section */
|
||||||
|
@ -2035,10 +2380,19 @@
|
||||||
defaultConfigurationIsVisible = 0;
|
defaultConfigurationIsVisible = 0;
|
||||||
defaultConfigurationName = Release;
|
defaultConfigurationName = Release;
|
||||||
};
|
};
|
||||||
|
B4A29A422B55C990002A67DF /* Build configuration list for PBXNativeTarget "BlueWallet-NoLDK" */ = {
|
||||||
|
isa = XCConfigurationList;
|
||||||
|
buildConfigurations = (
|
||||||
|
B4A29A432B55C990002A67DF /* Debug */,
|
||||||
|
B4A29A442B55C990002A67DF /* Release */,
|
||||||
|
);
|
||||||
|
defaultConfigurationIsVisible = 0;
|
||||||
|
defaultConfigurationName = Release;
|
||||||
|
};
|
||||||
/* End XCConfigurationList section */
|
/* End XCConfigurationList section */
|
||||||
|
|
||||||
/* Begin XCRemoteSwiftPackageReference section */
|
/* Begin XCRemoteSwiftPackageReference section */
|
||||||
6DFC806E24EA0B6C007B8700 /* XCRemoteSwiftPackageReference "EFQRCode.git" */ = {
|
6DFC806E24EA0B6C007B8700 /* XCRemoteSwiftPackageReference "EFQRCode" */ = {
|
||||||
isa = XCRemoteSwiftPackageReference;
|
isa = XCRemoteSwiftPackageReference;
|
||||||
repositoryURL = "https://github.com/EFPrefix/EFQRCode.git";
|
repositoryURL = "https://github.com/EFPrefix/EFQRCode.git";
|
||||||
requirement = {
|
requirement = {
|
||||||
|
@ -2051,7 +2405,7 @@
|
||||||
/* Begin XCSwiftPackageProductDependency section */
|
/* Begin XCSwiftPackageProductDependency section */
|
||||||
6DFC806F24EA0B6C007B8700 /* EFQRCode */ = {
|
6DFC806F24EA0B6C007B8700 /* EFQRCode */ = {
|
||||||
isa = XCSwiftPackageProductDependency;
|
isa = XCSwiftPackageProductDependency;
|
||||||
package = 6DFC806E24EA0B6C007B8700 /* XCRemoteSwiftPackageReference "EFQRCode.git" */;
|
package = 6DFC806E24EA0B6C007B8700 /* XCRemoteSwiftPackageReference "EFQRCode" */;
|
||||||
productName = EFQRCode;
|
productName = EFQRCode;
|
||||||
};
|
};
|
||||||
/* End XCSwiftPackageProductDependency section */
|
/* End XCSwiftPackageProductDependency section */
|
||||||
|
|
|
@ -4,6 +4,11 @@
|
||||||
<dict>
|
<dict>
|
||||||
<key>SchemeUserState</key>
|
<key>SchemeUserState</key>
|
||||||
<dict>
|
<dict>
|
||||||
|
<key>BlueWallet copy.xcscheme_^#shared#^_</key>
|
||||||
|
<dict>
|
||||||
|
<key>orderHint</key>
|
||||||
|
<integer>113</integer>
|
||||||
|
</dict>
|
||||||
<key>BlueWallet for Apple Watch (Notification).xcscheme_^#shared#^_</key>
|
<key>BlueWallet for Apple Watch (Notification).xcscheme_^#shared#^_</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>orderHint</key>
|
<key>orderHint</key>
|
||||||
|
@ -14,6 +19,11 @@
|
||||||
<key>orderHint</key>
|
<key>orderHint</key>
|
||||||
<integer>71</integer>
|
<integer>71</integer>
|
||||||
</dict>
|
</dict>
|
||||||
|
<key>BlueWallet-NoLDK.xcscheme</key>
|
||||||
|
<dict>
|
||||||
|
<key>orderHint</key>
|
||||||
|
<integer>100</integer>
|
||||||
|
</dict>
|
||||||
<key>BlueWallet.xcscheme_^#shared#^_</key>
|
<key>BlueWallet.xcscheme_^#shared#^_</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>orderHint</key>
|
<key>orderHint</key>
|
||||||
|
@ -22,7 +32,7 @@
|
||||||
<key>BlueWalletUITests.xcscheme_^#shared#^_</key>
|
<key>BlueWalletUITests.xcscheme_^#shared#^_</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>orderHint</key>
|
<key>orderHint</key>
|
||||||
<integer>101</integer>
|
<integer>99</integer>
|
||||||
</dict>
|
</dict>
|
||||||
<key>BlueWalletWatch (Complication).xcscheme_^#shared#^_</key>
|
<key>BlueWalletWatch (Complication).xcscheme_^#shared#^_</key>
|
||||||
<dict>
|
<dict>
|
||||||
|
|
|
@ -116,7 +116,7 @@
|
||||||
[builder removeMenuForIdentifier:UIMenuFormat];
|
[builder removeMenuForIdentifier:UIMenuFormat];
|
||||||
[builder removeMenuForIdentifier:UIMenuToolbar];
|
[builder removeMenuForIdentifier:UIMenuToolbar];
|
||||||
|
|
||||||
// Add Wallet action with Command + A shortcut
|
// File -> Add Wallet (Command + A)
|
||||||
UIKeyCommand *addWalletCommand = [UIKeyCommand keyCommandWithInput:@"A" modifierFlags:UIKeyModifierCommand action:@selector(addWalletAction:)];
|
UIKeyCommand *addWalletCommand = [UIKeyCommand keyCommandWithInput:@"A" modifierFlags:UIKeyModifierCommand action:@selector(addWalletAction:)];
|
||||||
[addWalletCommand setTitle:@"Add Wallet"];
|
[addWalletCommand setTitle:@"Add Wallet"];
|
||||||
UIMenu *addWalletMenu = [UIMenu menuWithTitle:@"" image:nil identifier:nil options:UIMenuOptionsDisplayInline children:@[addWalletCommand]];
|
UIMenu *addWalletMenu = [UIMenu menuWithTitle:@"" image:nil identifier:nil options:UIMenuOptionsDisplayInline children:@[addWalletCommand]];
|
||||||
|
@ -129,11 +129,13 @@
|
||||||
UIMenu *newFileMenu = [UIMenu menuWithTitle:fileMenu.title image:nil identifier:fileMenu.identifier options:fileMenu.options children:@[addWalletMenu]];
|
UIMenu *newFileMenu = [UIMenu menuWithTitle:fileMenu.title image:nil identifier:fileMenu.identifier options:fileMenu.options children:@[addWalletMenu]];
|
||||||
[builder replaceMenuForIdentifier:UIMenuFile withMenu:newFileMenu];
|
[builder replaceMenuForIdentifier:UIMenuFile withMenu:newFileMenu];
|
||||||
}
|
}
|
||||||
// Existing settings menu
|
|
||||||
UIKeyCommand *settingsCommand = [UIKeyCommand keyCommandWithInput:@"," modifierFlags:UIKeyModifierCommand action:@selector(openSettings)];
|
// BlueWallet -> Settings (Command + ,)
|
||||||
[settingsCommand setTitle:@"Settings..."];
|
UIKeyCommand *settingsCommand = [UIKeyCommand keyCommandWithInput:@"," modifierFlags:UIKeyModifierCommand action:@selector(openSettings:)];
|
||||||
UIMenu *settings = [UIMenu menuWithTitle:@"Settings..." image:nil identifier:nil options:UIMenuOptionsDisplayInline children:@[settingsCommand]];
|
[settingsCommand setTitle:@"Settings..."];
|
||||||
[builder insertSiblingMenu:settings afterMenuForIdentifier:UIMenuAbout];
|
UIMenu *settings = [UIMenu menuWithTitle:@"" image:nil identifier:nil options:UIMenuOptionsDisplayInline children:@[settingsCommand]];
|
||||||
|
|
||||||
|
[builder insertSiblingMenu:settings afterMenuForIdentifier:UIMenuAbout];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Action for Add Wallet
|
// Action for Add Wallet
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"info" : {
|
"info" : {
|
||||||
"version" : 1,
|
"author" : "xcode",
|
||||||
"author" : "xcode"
|
"version" : 1
|
||||||
}
|
}
|
||||||
}
|
}
|
23
ios/BlueWallet/Images.xcassets/SplashIcon.imageset/Contents.json
vendored
Normal file
23
ios/BlueWallet/Images.xcassets/SplashIcon.imageset/Contents.json
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{
|
||||||
|
"images" : [
|
||||||
|
{
|
||||||
|
"filename" : "icon.png",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "1x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"filename" : "icon@2x.png",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "2x"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"filename" : "icon@3x.png",
|
||||||
|
"idiom" : "universal",
|
||||||
|
"scale" : "3x"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"info" : {
|
||||||
|
"author" : "xcode",
|
||||||
|
"version" : 1
|
||||||
|
}
|
||||||
|
}
|
BIN
ios/BlueWallet/Images.xcassets/SplashIcon.imageset/icon.png
vendored
Normal file
BIN
ios/BlueWallet/Images.xcassets/SplashIcon.imageset/icon.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
ios/BlueWallet/Images.xcassets/SplashIcon.imageset/icon@2x.png
vendored
Normal file
BIN
ios/BlueWallet/Images.xcassets/SplashIcon.imageset/icon@2x.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 27 KiB |
BIN
ios/BlueWallet/Images.xcassets/SplashIcon.imageset/icon@3x.png
vendored
Normal file
BIN
ios/BlueWallet/Images.xcassets/SplashIcon.imageset/icon@3x.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
|
@ -1,10 +1,11 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15705" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="22505" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
||||||
<device id="retina6_1" orientation="portrait" appearance="light"/>
|
<device id="retina6_1" orientation="portrait" appearance="light"/>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<deployment identifier="iOS"/>
|
<deployment identifier="iOS"/>
|
||||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15706"/>
|
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22504"/>
|
||||||
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
||||||
|
<capability name="System colors in document resources" minToolsVersion="11.0"/>
|
||||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<scenes>
|
<scenes>
|
||||||
|
@ -15,8 +16,21 @@
|
||||||
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
||||||
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
|
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
|
||||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||||
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
|
<subviews>
|
||||||
|
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="SplashIcon" translatesAutoresizingMaskIntoConstraints="NO" id="vS2-n5-ITQ">
|
||||||
|
<rect key="frame" x="157" y="410.5" width="100" height="75"/>
|
||||||
|
<constraints>
|
||||||
|
<constraint firstAttribute="width" constant="100" id="5lH-AY-U7N"/>
|
||||||
|
<constraint firstAttribute="height" constant="75" id="akr-zt-pIx"/>
|
||||||
|
</constraints>
|
||||||
|
</imageView>
|
||||||
|
</subviews>
|
||||||
<viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/>
|
<viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/>
|
||||||
|
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
||||||
|
<constraints>
|
||||||
|
<constraint firstItem="vS2-n5-ITQ" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="centerY" id="A9Q-Kr-13c"/>
|
||||||
|
<constraint firstItem="vS2-n5-ITQ" firstAttribute="centerX" secondItem="Ze5-6b-2t3" secondAttribute="centerX" id="qcB-Jc-b0o"/>
|
||||||
|
</constraints>
|
||||||
</view>
|
</view>
|
||||||
</viewController>
|
</viewController>
|
||||||
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
||||||
|
@ -24,4 +38,10 @@
|
||||||
<point key="canvasLocation" x="53" y="375"/>
|
<point key="canvasLocation" x="53" y="375"/>
|
||||||
</scene>
|
</scene>
|
||||||
</scenes>
|
</scenes>
|
||||||
|
<resources>
|
||||||
|
<image name="SplashIcon" width="512" height="512"/>
|
||||||
|
<systemColor name="systemBackgroundColor">
|
||||||
|
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
||||||
|
</systemColor>
|
||||||
|
</resources>
|
||||||
</document>
|
</document>
|
||||||
|
|
71
ios/Podfile
71
ios/Podfile
|
@ -40,50 +40,51 @@ if linkage != nil
|
||||||
use_frameworks! :linkage => linkage.to_sym
|
use_frameworks! :linkage => linkage.to_sym
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Define a common function to configure shared settings for targets
|
||||||
target 'BlueWallet' do
|
def configure_target()
|
||||||
config = use_native_modules!
|
config = use_native_modules!
|
||||||
|
|
||||||
# Flags change depending on the env values.
|
|
||||||
flags = get_default_flags()
|
flags = get_default_flags()
|
||||||
|
|
||||||
use_react_native!(
|
use_react_native!(
|
||||||
|
# Specify the path directly if use_native_modules! does not provide it
|
||||||
:path => config[:reactNativePath],
|
:path => config[:reactNativePath],
|
||||||
# Hermes is now enabled by default. Disable by setting this flag to false.
|
|
||||||
:hermes_enabled => true,
|
:hermes_enabled => true,
|
||||||
:fabric_enabled => flags[:fabric_enabled],
|
:fabric_enabled => flags[:fabric_enabled],
|
||||||
# Enables Flipper.
|
|
||||||
#
|
|
||||||
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
|
||||||
# you should disable the next line.
|
|
||||||
#:flipper_configuration => flipper_config,
|
|
||||||
# An absolute path to your application root.
|
|
||||||
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
||||||
|
|
||||||
)
|
)
|
||||||
pod 'react-native-bw-file-access', :path => '../blue_modules/react-native-bw-file-access'
|
pod 'react-native-bw-file-access', :path => '../blue_modules/react-native-bw-file-access'
|
||||||
|
end
|
||||||
|
|
||||||
post_install do |installer|
|
|
||||||
react_native_post_install(
|
target 'BlueWallet' do
|
||||||
installer,
|
configure_target()
|
||||||
config[:reactNativePath],
|
# Manually add rn-ldk pod for this target
|
||||||
:mac_catalyst_enabled => true
|
pod 'rn-ldk', :path => '../node_modules/rn-ldk'
|
||||||
)
|
end
|
||||||
|
|
||||||
pod 'Bugsnag'
|
target 'BlueWallet-NoLDK' do
|
||||||
plugin 'cocoapods-bugsnag'
|
configure_target()
|
||||||
installer.pods_project.targets.each do |target|
|
end
|
||||||
target.build_configurations.each do |config|
|
|
||||||
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.4'
|
post_install do |installer|
|
||||||
if ['React-Core-AccessibilityResources'].include? target.name
|
react_native_post_install(
|
||||||
config.build_settings['CODE_SIGN_STYLE'] = "Manual"
|
installer,
|
||||||
config.build_settings['CODE_SIGN_IDENTITY'] = "Apple Distribution: Bluewallet Services, S. R. L. (A7W54YZ4WU)"
|
:mac_catalyst_enabled => true
|
||||||
config.build_settings['DEVELOPMENT_TEAM'] = "A7W54YZ4WU"
|
)
|
||||||
end
|
|
||||||
end
|
pod 'Bugsnag'
|
||||||
__apply_Xcode_12_5_M1_post_install_workaround(installer)
|
plugin 'cocoapods-bugsnag'
|
||||||
end
|
installer.pods_project.targets.each do |target|
|
||||||
end
|
target.build_configurations.each do |config|
|
||||||
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
|
||||||
|
if ['React-Core-AccessibilityResources'].include? target.name
|
||||||
|
config.build_settings['CODE_SIGN_STYLE'] = "Manual"
|
||||||
|
config.build_settings['CODE_SIGN_IDENTITY'] = "Apple Distribution: Bluewallet Services, S. R. L. (A7W54YZ4WU)"
|
||||||
|
config.build_settings['DEVELOPMENT_TEAM'] = "A7W54YZ4WU"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
__apply_Xcode_12_5_M1_post_install_workaround(installer)
|
||||||
|
end
|
||||||
end
|
end
|
366
ios/Podfile.lock
366
ios/Podfile.lock
|
@ -6,19 +6,19 @@ PODS:
|
||||||
- React-Core
|
- React-Core
|
||||||
- CocoaAsyncSocket (7.6.5)
|
- CocoaAsyncSocket (7.6.5)
|
||||||
- DoubleConversion (1.1.6)
|
- DoubleConversion (1.1.6)
|
||||||
- FBLazyVector (0.72.9)
|
- FBLazyVector (0.72.10)
|
||||||
- FBReactNativeSpec (0.72.9):
|
- FBReactNativeSpec (0.72.10):
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- RCTRequired (= 0.72.9)
|
- RCTRequired (= 0.72.10)
|
||||||
- RCTTypeSafety (= 0.72.9)
|
- RCTTypeSafety (= 0.72.10)
|
||||||
- React-Core (= 0.72.9)
|
- React-Core (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (= 0.72.9)
|
- ReactCommon/turbomodule/core (= 0.72.10)
|
||||||
- fmt (6.2.1)
|
- fmt (6.2.1)
|
||||||
- glog (0.3.5)
|
- glog (0.3.5)
|
||||||
- hermes-engine (0.72.9):
|
- hermes-engine (0.72.10):
|
||||||
- hermes-engine/Pre-built (= 0.72.9)
|
- hermes-engine/Pre-built (= 0.72.10)
|
||||||
- hermes-engine/Pre-built (0.72.9)
|
- hermes-engine/Pre-built (0.72.10)
|
||||||
- libevent (2.1.12)
|
- libevent (2.1.12)
|
||||||
- lottie-ios (4.3.4)
|
- lottie-ios (4.3.4)
|
||||||
- lottie-react-native (6.5.1):
|
- lottie-react-native (6.5.1):
|
||||||
|
@ -43,26 +43,26 @@ PODS:
|
||||||
- fmt (~> 6.2.1)
|
- fmt (~> 6.2.1)
|
||||||
- glog
|
- glog
|
||||||
- libevent
|
- libevent
|
||||||
- RCTRequired (0.72.9)
|
- RCTRequired (0.72.10)
|
||||||
- RCTTypeSafety (0.72.9):
|
- RCTTypeSafety (0.72.10):
|
||||||
- FBLazyVector (= 0.72.9)
|
- FBLazyVector (= 0.72.10)
|
||||||
- RCTRequired (= 0.72.9)
|
- RCTRequired (= 0.72.10)
|
||||||
- React-Core (= 0.72.9)
|
- React-Core (= 0.72.10)
|
||||||
- React (0.72.9):
|
- React (0.72.10):
|
||||||
- React-Core (= 0.72.9)
|
- React-Core (= 0.72.10)
|
||||||
- React-Core/DevSupport (= 0.72.9)
|
- React-Core/DevSupport (= 0.72.10)
|
||||||
- React-Core/RCTWebSocket (= 0.72.9)
|
- React-Core/RCTWebSocket (= 0.72.10)
|
||||||
- React-RCTActionSheet (= 0.72.9)
|
- React-RCTActionSheet (= 0.72.10)
|
||||||
- React-RCTAnimation (= 0.72.9)
|
- React-RCTAnimation (= 0.72.10)
|
||||||
- React-RCTBlob (= 0.72.9)
|
- React-RCTBlob (= 0.72.10)
|
||||||
- React-RCTImage (= 0.72.9)
|
- React-RCTImage (= 0.72.10)
|
||||||
- React-RCTLinking (= 0.72.9)
|
- React-RCTLinking (= 0.72.10)
|
||||||
- React-RCTNetwork (= 0.72.9)
|
- React-RCTNetwork (= 0.72.10)
|
||||||
- React-RCTSettings (= 0.72.9)
|
- React-RCTSettings (= 0.72.10)
|
||||||
- React-RCTText (= 0.72.9)
|
- React-RCTText (= 0.72.10)
|
||||||
- React-RCTVibration (= 0.72.9)
|
- React-RCTVibration (= 0.72.10)
|
||||||
- React-callinvoker (0.72.9)
|
- React-callinvoker (0.72.10)
|
||||||
- React-Codegen (0.72.9):
|
- React-Codegen (0.72.10):
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- FBReactNativeSpec
|
- FBReactNativeSpec
|
||||||
- glog
|
- glog
|
||||||
|
@ -77,11 +77,11 @@ PODS:
|
||||||
- React-rncore
|
- React-rncore
|
||||||
- ReactCommon/turbomodule/bridging
|
- ReactCommon/turbomodule/bridging
|
||||||
- ReactCommon/turbomodule/core
|
- ReactCommon/turbomodule/core
|
||||||
- React-Core (0.72.9):
|
- React-Core (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-Core/Default (= 0.72.9)
|
- React-Core/Default (= 0.72.10)
|
||||||
- React-cxxreact
|
- React-cxxreact
|
||||||
- React-hermes
|
- React-hermes
|
||||||
- React-jsi
|
- React-jsi
|
||||||
|
@ -91,7 +91,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/CoreModulesHeaders (0.72.9):
|
- React-Core/CoreModulesHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -105,7 +105,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/Default (0.72.9):
|
- React-Core/Default (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -118,23 +118,23 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/DevSupport (0.72.9):
|
- React-Core/DevSupport (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-Core/Default (= 0.72.9)
|
- React-Core/Default (= 0.72.10)
|
||||||
- React-Core/RCTWebSocket (= 0.72.9)
|
- React-Core/RCTWebSocket (= 0.72.10)
|
||||||
- React-cxxreact
|
- React-cxxreact
|
||||||
- React-hermes
|
- React-hermes
|
||||||
- React-jsi
|
- React-jsi
|
||||||
- React-jsiexecutor
|
- React-jsiexecutor
|
||||||
- React-jsinspector (= 0.72.9)
|
- React-jsinspector (= 0.72.10)
|
||||||
- React-perflogger
|
- React-perflogger
|
||||||
- React-runtimeexecutor
|
- React-runtimeexecutor
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTActionSheetHeaders (0.72.9):
|
- React-Core/RCTActionSheetHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -148,7 +148,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTAnimationHeaders (0.72.9):
|
- React-Core/RCTAnimationHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -162,7 +162,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTBlobHeaders (0.72.9):
|
- React-Core/RCTBlobHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -176,7 +176,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTImageHeaders (0.72.9):
|
- React-Core/RCTImageHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -190,7 +190,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTLinkingHeaders (0.72.9):
|
- React-Core/RCTLinkingHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -204,7 +204,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTNetworkHeaders (0.72.9):
|
- React-Core/RCTNetworkHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -218,7 +218,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTSettingsHeaders (0.72.9):
|
- React-Core/RCTSettingsHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -232,7 +232,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTTextHeaders (0.72.9):
|
- React-Core/RCTTextHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -246,7 +246,7 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTVibrationHeaders (0.72.9):
|
- React-Core/RCTVibrationHeaders (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -260,11 +260,11 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-Core/RCTWebSocket (0.72.9):
|
- React-Core/RCTWebSocket (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-Core/Default (= 0.72.9)
|
- React-Core/Default (= 0.72.10)
|
||||||
- React-cxxreact
|
- React-cxxreact
|
||||||
- React-hermes
|
- React-hermes
|
||||||
- React-jsi
|
- React-jsi
|
||||||
|
@ -274,57 +274,57 @@ PODS:
|
||||||
- React-utils
|
- React-utils
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- Yoga
|
- Yoga
|
||||||
- React-CoreModules (0.72.9):
|
- React-CoreModules (0.72.10):
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- RCTTypeSafety (= 0.72.9)
|
- RCTTypeSafety (= 0.72.10)
|
||||||
- React-Codegen (= 0.72.9)
|
- React-Codegen (= 0.72.10)
|
||||||
- React-Core/CoreModulesHeaders (= 0.72.9)
|
- React-Core/CoreModulesHeaders (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- React-RCTBlob
|
- React-RCTBlob
|
||||||
- React-RCTImage (= 0.72.9)
|
- React-RCTImage (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (= 0.72.9)
|
- ReactCommon/turbomodule/core (= 0.72.10)
|
||||||
- SocketRocket (= 0.6.1)
|
- SocketRocket (= 0.6.1)
|
||||||
- React-cxxreact (0.72.9):
|
- React-cxxreact (0.72.10):
|
||||||
- boost (= 1.76.0)
|
- boost (= 1.76.0)
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-callinvoker (= 0.72.9)
|
- React-callinvoker (= 0.72.10)
|
||||||
- React-debug (= 0.72.9)
|
- React-debug (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- React-jsinspector (= 0.72.9)
|
- React-jsinspector (= 0.72.10)
|
||||||
- React-logger (= 0.72.9)
|
- React-logger (= 0.72.10)
|
||||||
- React-perflogger (= 0.72.9)
|
- React-perflogger (= 0.72.10)
|
||||||
- React-runtimeexecutor (= 0.72.9)
|
- React-runtimeexecutor (= 0.72.10)
|
||||||
- React-debug (0.72.9)
|
- React-debug (0.72.10)
|
||||||
- React-hermes (0.72.9):
|
- React-hermes (0.72.10):
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- RCT-Folly/Futures (= 2021.07.22.00)
|
- RCT-Folly/Futures (= 2021.07.22.00)
|
||||||
- React-cxxreact (= 0.72.9)
|
- React-cxxreact (= 0.72.10)
|
||||||
- React-jsi
|
- React-jsi
|
||||||
- React-jsiexecutor (= 0.72.9)
|
- React-jsiexecutor (= 0.72.10)
|
||||||
- React-jsinspector (= 0.72.9)
|
- React-jsinspector (= 0.72.10)
|
||||||
- React-perflogger (= 0.72.9)
|
- React-perflogger (= 0.72.10)
|
||||||
- React-jsi (0.72.9):
|
- React-jsi (0.72.10):
|
||||||
- boost (= 1.76.0)
|
- boost (= 1.76.0)
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-jsiexecutor (0.72.9):
|
- React-jsiexecutor (0.72.10):
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-cxxreact (= 0.72.9)
|
- React-cxxreact (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- React-perflogger (= 0.72.9)
|
- React-perflogger (= 0.72.10)
|
||||||
- React-jsinspector (0.72.9)
|
- React-jsinspector (0.72.10)
|
||||||
- React-logger (0.72.9):
|
- React-logger (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- react-native-blue-crypto (1.0.0):
|
- react-native-blue-crypto (1.0.0):
|
||||||
- React
|
- React
|
||||||
|
@ -357,7 +357,7 @@ PODS:
|
||||||
- React-Core
|
- React-Core
|
||||||
- react-native-widget-center (0.0.9):
|
- react-native-widget-center (0.0.9):
|
||||||
- React
|
- React
|
||||||
- React-NativeModulesApple (0.72.9):
|
- React-NativeModulesApple (0.72.10):
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- React-callinvoker
|
- React-callinvoker
|
||||||
- React-Core
|
- React-Core
|
||||||
|
@ -366,17 +366,17 @@ PODS:
|
||||||
- React-runtimeexecutor
|
- React-runtimeexecutor
|
||||||
- ReactCommon/turbomodule/bridging
|
- ReactCommon/turbomodule/bridging
|
||||||
- ReactCommon/turbomodule/core
|
- ReactCommon/turbomodule/core
|
||||||
- React-perflogger (0.72.9)
|
- React-perflogger (0.72.10)
|
||||||
- React-RCTActionSheet (0.72.9):
|
- React-RCTActionSheet (0.72.10):
|
||||||
- React-Core/RCTActionSheetHeaders (= 0.72.9)
|
- React-Core/RCTActionSheetHeaders (= 0.72.10)
|
||||||
- React-RCTAnimation (0.72.9):
|
- React-RCTAnimation (0.72.10):
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- RCTTypeSafety (= 0.72.9)
|
- RCTTypeSafety (= 0.72.10)
|
||||||
- React-Codegen (= 0.72.9)
|
- React-Codegen (= 0.72.10)
|
||||||
- React-Core/RCTAnimationHeaders (= 0.72.9)
|
- React-Core/RCTAnimationHeaders (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (= 0.72.9)
|
- ReactCommon/turbomodule/core (= 0.72.10)
|
||||||
- React-RCTAppDelegate (0.72.9):
|
- React-RCTAppDelegate (0.72.10):
|
||||||
- RCT-Folly
|
- RCT-Folly
|
||||||
- RCTRequired
|
- RCTRequired
|
||||||
- RCTTypeSafety
|
- RCTTypeSafety
|
||||||
|
@ -388,54 +388,54 @@ PODS:
|
||||||
- React-RCTNetwork
|
- React-RCTNetwork
|
||||||
- React-runtimescheduler
|
- React-runtimescheduler
|
||||||
- ReactCommon/turbomodule/core
|
- ReactCommon/turbomodule/core
|
||||||
- React-RCTBlob (0.72.9):
|
- React-RCTBlob (0.72.10):
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-Codegen (= 0.72.9)
|
- React-Codegen (= 0.72.10)
|
||||||
- React-Core/RCTBlobHeaders (= 0.72.9)
|
- React-Core/RCTBlobHeaders (= 0.72.10)
|
||||||
- React-Core/RCTWebSocket (= 0.72.9)
|
- React-Core/RCTWebSocket (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- React-RCTNetwork (= 0.72.9)
|
- React-RCTNetwork (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (= 0.72.9)
|
- ReactCommon/turbomodule/core (= 0.72.10)
|
||||||
- React-RCTImage (0.72.9):
|
- React-RCTImage (0.72.10):
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- RCTTypeSafety (= 0.72.9)
|
- RCTTypeSafety (= 0.72.10)
|
||||||
- React-Codegen (= 0.72.9)
|
- React-Codegen (= 0.72.10)
|
||||||
- React-Core/RCTImageHeaders (= 0.72.9)
|
- React-Core/RCTImageHeaders (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- React-RCTNetwork (= 0.72.9)
|
- React-RCTNetwork (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (= 0.72.9)
|
- ReactCommon/turbomodule/core (= 0.72.10)
|
||||||
- React-RCTLinking (0.72.9):
|
- React-RCTLinking (0.72.10):
|
||||||
- React-Codegen (= 0.72.9)
|
- React-Codegen (= 0.72.10)
|
||||||
- React-Core/RCTLinkingHeaders (= 0.72.9)
|
- React-Core/RCTLinkingHeaders (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (= 0.72.9)
|
- ReactCommon/turbomodule/core (= 0.72.10)
|
||||||
- React-RCTNetwork (0.72.9):
|
- React-RCTNetwork (0.72.10):
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- RCTTypeSafety (= 0.72.9)
|
- RCTTypeSafety (= 0.72.10)
|
||||||
- React-Codegen (= 0.72.9)
|
- React-Codegen (= 0.72.10)
|
||||||
- React-Core/RCTNetworkHeaders (= 0.72.9)
|
- React-Core/RCTNetworkHeaders (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (= 0.72.9)
|
- ReactCommon/turbomodule/core (= 0.72.10)
|
||||||
- React-RCTSettings (0.72.9):
|
- React-RCTSettings (0.72.10):
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- RCTTypeSafety (= 0.72.9)
|
- RCTTypeSafety (= 0.72.10)
|
||||||
- React-Codegen (= 0.72.9)
|
- React-Codegen (= 0.72.10)
|
||||||
- React-Core/RCTSettingsHeaders (= 0.72.9)
|
- React-Core/RCTSettingsHeaders (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (= 0.72.9)
|
- ReactCommon/turbomodule/core (= 0.72.10)
|
||||||
- React-RCTText (0.72.9):
|
- React-RCTText (0.72.10):
|
||||||
- React-Core/RCTTextHeaders (= 0.72.9)
|
- React-Core/RCTTextHeaders (= 0.72.10)
|
||||||
- React-RCTVibration (0.72.9):
|
- React-RCTVibration (0.72.10):
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-Codegen (= 0.72.9)
|
- React-Codegen (= 0.72.10)
|
||||||
- React-Core/RCTVibrationHeaders (= 0.72.9)
|
- React-Core/RCTVibrationHeaders (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (= 0.72.9)
|
- ReactCommon/turbomodule/core (= 0.72.10)
|
||||||
- React-rncore (0.72.9)
|
- React-rncore (0.72.10)
|
||||||
- React-runtimeexecutor (0.72.9):
|
- React-runtimeexecutor (0.72.10):
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- React-runtimescheduler (0.72.9):
|
- React-runtimescheduler (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
|
@ -443,30 +443,30 @@ PODS:
|
||||||
- React-debug
|
- React-debug
|
||||||
- React-jsi
|
- React-jsi
|
||||||
- React-runtimeexecutor
|
- React-runtimeexecutor
|
||||||
- React-utils (0.72.9):
|
- React-utils (0.72.10):
|
||||||
- glog
|
- glog
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-debug
|
- React-debug
|
||||||
- ReactCommon/turbomodule/bridging (0.72.9):
|
- ReactCommon/turbomodule/bridging (0.72.10):
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-callinvoker (= 0.72.9)
|
- React-callinvoker (= 0.72.10)
|
||||||
- React-cxxreact (= 0.72.9)
|
- React-cxxreact (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- React-logger (= 0.72.9)
|
- React-logger (= 0.72.10)
|
||||||
- React-perflogger (= 0.72.9)
|
- React-perflogger (= 0.72.10)
|
||||||
- ReactCommon/turbomodule/core (0.72.9):
|
- ReactCommon/turbomodule/core (0.72.10):
|
||||||
- DoubleConversion
|
- DoubleConversion
|
||||||
- glog
|
- glog
|
||||||
- hermes-engine
|
- hermes-engine
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-callinvoker (= 0.72.9)
|
- React-callinvoker (= 0.72.10)
|
||||||
- React-cxxreact (= 0.72.9)
|
- React-cxxreact (= 0.72.10)
|
||||||
- React-jsi (= 0.72.9)
|
- React-jsi (= 0.72.10)
|
||||||
- React-logger (= 0.72.9)
|
- React-logger (= 0.72.10)
|
||||||
- React-perflogger (= 0.72.9)
|
- React-perflogger (= 0.72.10)
|
||||||
- ReactNativeCameraKit (13.0.0):
|
- ReactNativeCameraKit (13.0.0):
|
||||||
- React-Core
|
- React-Core
|
||||||
- RealmJS (12.5.1):
|
- RealmJS (12.5.1):
|
||||||
|
@ -485,14 +485,14 @@ PODS:
|
||||||
- React-Core
|
- React-Core
|
||||||
- RNFS (2.20.0):
|
- RNFS (2.20.0):
|
||||||
- React-Core
|
- React-Core
|
||||||
- RNGestureHandler (2.14.0):
|
- RNGestureHandler (2.14.1):
|
||||||
- RCT-Folly (= 2021.07.22.00)
|
- RCT-Folly (= 2021.07.22.00)
|
||||||
- React-Core
|
- React-Core
|
||||||
- RNHandoff (0.0.3):
|
- RNHandoff (0.0.3):
|
||||||
- React
|
- React
|
||||||
- RNKeychain (8.1.2):
|
- RNKeychain (8.1.2):
|
||||||
- React-Core
|
- React-Core
|
||||||
- RNLocalize (3.0.5):
|
- RNLocalize (3.0.6):
|
||||||
- React-Core
|
- React-Core
|
||||||
- RNPermissions (4.0.4):
|
- RNPermissions (4.0.4):
|
||||||
- React-Core
|
- React-Core
|
||||||
|
@ -787,30 +787,30 @@ SPEC CHECKSUMS:
|
||||||
BVLinearGradient: 880f91a7854faff2df62518f0281afb1c60d49a3
|
BVLinearGradient: 880f91a7854faff2df62518f0281afb1c60d49a3
|
||||||
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
||||||
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
|
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
|
||||||
FBLazyVector: dc178b8748748c036ef9493a5d59d6d1f91a36ce
|
FBLazyVector: f91d538f197fa71a7d5b77ec2069d49550c0eb96
|
||||||
FBReactNativeSpec: d0aaae78e93c89dc2d691d8052a4d2aeb1b461ee
|
FBReactNativeSpec: b13d1c23d6ed82d6b66aad7a253edf8ba76c4a4c
|
||||||
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
||||||
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
|
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
|
||||||
hermes-engine: 9b9bb14184a11b8ceb4131b09abf634880f0f46d
|
hermes-engine: 90e4033deb00bee33330a9f15eff0f874bd82f6d
|
||||||
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
||||||
lottie-ios: 3d98679b41fa6fd6aff2352b3953dbd3df8a397e
|
lottie-ios: 3d98679b41fa6fd6aff2352b3953dbd3df8a397e
|
||||||
lottie-react-native: cdeae481649c11d586084b8662f03251c4dd8249
|
lottie-react-native: cdeae481649c11d586084b8662f03251c4dd8249
|
||||||
PasscodeAuth: 3e88093ff46c31a952d8b36c488240de980517be
|
PasscodeAuth: 3e88093ff46c31a952d8b36c488240de980517be
|
||||||
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
|
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
|
||||||
RCTRequired: f30c3213569b1dc43659ecc549a6536e1e11139e
|
RCTRequired: b4d3068afa6f52ec5260a8417053b1f1b421483d
|
||||||
RCTTypeSafety: e1ed3137728804fa98bce30b70e3da0b8e23054e
|
RCTTypeSafety: a4551b3d338c96435f63bf06d564055c1d3cc0ac
|
||||||
React: 54070abee263d5773486987f1cf3a3616710ed52
|
React: 66caa2a8192a35d7ba466a5fdf5dc06ee4a5f6dd
|
||||||
React-callinvoker: 794ea19cc4d8ce25921893141e131b9d6b7d02eb
|
React-callinvoker: e5b55e46894c2dd1bcdc19d4f82b0f7f631d1237
|
||||||
React-Codegen: 10359be5377b1a652839bcfe7b6b5bd7f73ae9f6
|
React-Codegen: 0cf41e00026c5eba61f6bdcabd6e4bf659754f33
|
||||||
React-Core: 7e2a9c4594083ecc68b91fc4a3f4d567e8c8b3b3
|
React-Core: 2ce84187a00913f287b96753c56c7819ed7d90d5
|
||||||
React-CoreModules: 87cc386c2200862672b76bb02c4574b4b1d11b3c
|
React-CoreModules: 893e7c5eed1ef8fe9e1ee1d913581c946e55b305
|
||||||
React-cxxreact: 1100498800597e812f0ce4ec365f4ea47ac39719
|
React-cxxreact: 075d98dc664c0e9607cc0c45d41dc052bcc7313b
|
||||||
React-debug: 4dca41301a67ab2916b2c99bef60344a7b653ac5
|
React-debug: abc6213dcb9eafcf5242cbb194fef4c70c91871f
|
||||||
React-hermes: b871a77ba1c427ca00f075759dc0cc9670484c94
|
React-hermes: 133cfa220ef836406f693ed7db56a509032ce433
|
||||||
React-jsi: 1f8d073a00264c6a701c4b7b4f4ef9946f9b2455
|
React-jsi: 9b45fd040d575f8ae6771bf1960641a58eb0bdd4
|
||||||
React-jsiexecutor: 5a169b1dd1abad06bed40ab7e1aca883c657d865
|
React-jsiexecutor: 45ef2ec6dcde31b90469175ec76ddac77b91dfc3
|
||||||
React-jsinspector: 54205b269da20c51417e0fc02c4cde9f29a4bf1a
|
React-jsinspector: de0198127395fec3058140a20c045167f761bb16
|
||||||
React-logger: f42d2f2bc4cbb5d19d7c0ce84b8741b1e54e88c8
|
React-logger: dc3a2b174d79c2da635059212747d8d929b54e06
|
||||||
react-native-blue-crypto: 23f1558ad3d38d7a2edb7e2f6ed1bc520ed93e56
|
react-native-blue-crypto: 23f1558ad3d38d7a2edb7e2f6ed1bc520ed93e56
|
||||||
react-native-bw-file-access: b232fd1d902521ca046f3fc5990ab1465e1878d7
|
react-native-bw-file-access: b232fd1d902521ca046f3fc5990ab1465e1878d7
|
||||||
react-native-document-picker: b4f4a23b73f864ce17965b284c0757648993805b
|
react-native-document-picker: b4f4a23b73f864ce17965b284c0757648993805b
|
||||||
|
@ -825,23 +825,23 @@ SPEC CHECKSUMS:
|
||||||
react-native-tcp-socket: c1b7297619616b4c9caae6889bcb0aba78086989
|
react-native-tcp-socket: c1b7297619616b4c9caae6889bcb0aba78086989
|
||||||
react-native-webview: 107961c73db53d66549c867a3b64eaa20d34c41f
|
react-native-webview: 107961c73db53d66549c867a3b64eaa20d34c41f
|
||||||
react-native-widget-center: 12dfba20a4fa995850b52cf0afecf734397f4b9c
|
react-native-widget-center: 12dfba20a4fa995850b52cf0afecf734397f4b9c
|
||||||
React-NativeModulesApple: 9f72feb8a04020b32417f768a7e1e40eec91fef4
|
React-NativeModulesApple: c3e696ff867e4bc212266cbdf7e862e48a0166fd
|
||||||
React-perflogger: cb433f318c6667060fc1f62e26eb58d6eb30a627
|
React-perflogger: 43287389ea08993c300897a46f95cfac04bb6c1a
|
||||||
React-RCTActionSheet: 0af3f8ac067e8a1dde902810b7ad169d0a0ec31e
|
React-RCTActionSheet: 923afe77f9bb89da7c1f98e2730bfc9dde0eed6d
|
||||||
React-RCTAnimation: 453a88e76ba6cb49819686acd8b21ce4d9ee4232
|
React-RCTAnimation: afd4d94c5e1f731e32ac99800850be06564ac642
|
||||||
React-RCTAppDelegate: b9fb07959f227ddd2c458c42ed5ceacbd1e1e367
|
React-RCTAppDelegate: fb2e1447d014557f29e214fe2eb777442f808a3b
|
||||||
React-RCTBlob: fa513d56cdc2b7ad84a7758afc4863c1edd6a8b1
|
React-RCTBlob: 167e2c6c3643f093058c51e76ecc653fc8236033
|
||||||
React-RCTImage: 8e059fbdfab18b86127424dc3742532aab960760
|
React-RCTImage: 867de82a17630a08a3fa64b0cd6677dd19bf6eaf
|
||||||
React-RCTLinking: 05ae2aa525b21a7f1c5069c14330700f470efd97
|
React-RCTLinking: 885dde8bc5d397c3e72c76315f1f9b5030b3a70e
|
||||||
React-RCTNetwork: 7ed9d99d028c53e9a23e318f65937f499ba8a6fd
|
React-RCTNetwork: efec71102220b96ac8605d0253debd859ca0c817
|
||||||
React-RCTSettings: 8b12ebf04d4baa0e259017fcef6cf7abd7d8ac51
|
React-RCTSettings: 077065d0a4e925b017fe8538afa574d8fb52391f
|
||||||
React-RCTText: a062ade9ff1591c46bcb6c5055fd4f96c154b8aa
|
React-RCTText: 7adddb518ac362b2398fedf0c64105e0dab29441
|
||||||
React-RCTVibration: 87c490b6f01746ab8f9b4e555f514cc030c06731
|
React-RCTVibration: de6b7218e415d82788e0965f278dddb2ef88b372
|
||||||
React-rncore: 140bc11b316da7003bf039844aef39e1c242d7ad
|
React-rncore: f0d8c23481a6c263a343fa7fd3816d943754b720
|
||||||
React-runtimeexecutor: 226ebef5f625878d3028b196cbecbbdeb6f208e4
|
React-runtimeexecutor: 2b2c09edbca4c9a667428e8c93959f66b3b53140
|
||||||
React-runtimescheduler: a7b1442e155c6f131d8bdfaac47abdc303f50788
|
React-runtimescheduler: 6ca43e8deadf01ff06b3f01abf8f0e4d508e23c3
|
||||||
React-utils: a3ffbc321572ee91911d7bc30965abe9aa4e16af
|
React-utils: 372b83030a74347331636909278bf0a60ec30d59
|
||||||
ReactCommon: 180205f326d59f52e12fa724f5278fcf8fb6afc3
|
ReactCommon: 38824bfffaf4c51fbe03a2730b4fd874ef34d67b
|
||||||
ReactNativeCameraKit: 9d46a5d7dd544ca64aa9c03c150d2348faf437eb
|
ReactNativeCameraKit: 9d46a5d7dd544ca64aa9c03c150d2348faf437eb
|
||||||
RealmJS: 5af7e3b3c1b6de6a1f9bd62bfbf4caca749fa708
|
RealmJS: 5af7e3b3c1b6de6a1f9bd62bfbf4caca749fa708
|
||||||
rn-ldk: 0d8749d98cc5ce67302a32831818c116b67f7643
|
rn-ldk: 0d8749d98cc5ce67302a32831818c116b67f7643
|
||||||
|
@ -851,10 +851,10 @@ SPEC CHECKSUMS:
|
||||||
RNDefaultPreference: 08bdb06cfa9188d5da97d4642dac745218d7fb31
|
RNDefaultPreference: 08bdb06cfa9188d5da97d4642dac745218d7fb31
|
||||||
RNDeviceInfo: db5c64a060e66e5db3102d041ebe3ef307a85120
|
RNDeviceInfo: db5c64a060e66e5db3102d041ebe3ef307a85120
|
||||||
RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
|
RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
|
||||||
RNGestureHandler: 32a01c29ecc9bb0b5bf7bc0a33547f61b4dc2741
|
RNGestureHandler: fe2be3be5598dc74329b211c58c9f2d231461769
|
||||||
RNHandoff: d3b0754cca3a6bcd9b25f544f733f7f033ccf5fa
|
RNHandoff: d3b0754cca3a6bcd9b25f544f733f7f033ccf5fa
|
||||||
RNKeychain: a65256b6ca6ba6976132cc4124b238a5b13b3d9c
|
RNKeychain: a65256b6ca6ba6976132cc4124b238a5b13b3d9c
|
||||||
RNLocalize: a725877f311db45acc6bff2382b3283e744a3945
|
RNLocalize: 4222a3756cdbe2dc9a5bdf445765a4d2572107cb
|
||||||
RNPermissions: bc59bd0099c63ee70ecce43a4f455854234e3459
|
RNPermissions: bc59bd0099c63ee70ecce43a4f455854234e3459
|
||||||
RNPrivacySnapshot: 71919dde3c6a29dd332115409c2aec564afee8f4
|
RNPrivacySnapshot: 71919dde3c6a29dd332115409c2aec564afee8f4
|
||||||
RNQuickAction: 6d404a869dc872cde841ad3147416a670d13fa93
|
RNQuickAction: 6d404a869dc872cde841ad3147416a670d13fa93
|
||||||
|
@ -867,8 +867,8 @@ SPEC CHECKSUMS:
|
||||||
RNVectorIcons: 64e6a523ac30a3241efa9baf1ffbcc5e76ff747a
|
RNVectorIcons: 64e6a523ac30a3241efa9baf1ffbcc5e76ff747a
|
||||||
RNWatch: fd30ca40a5b5ef58dcbc195638e68219bc455236
|
RNWatch: fd30ca40a5b5ef58dcbc195638e68219bc455236
|
||||||
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
|
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
|
||||||
Yoga: eddf2bbe4a896454c248a8f23b4355891eb720a6
|
Yoga: d0003f849d2b5224c072cef6568b540d8bb15cd3
|
||||||
|
|
||||||
PODFILE CHECKSUM: 42d25ab6e98b3185ff5da0bdf7da9a223ad7f212
|
PODFILE CHECKSUM: e0f5fbbba3256422a2f7625f2f64c00e10113748
|
||||||
|
|
||||||
COCOAPODS: 1.14.3
|
COCOAPODS: 1.14.3
|
||||||
|
|
|
@ -50,32 +50,52 @@ class WidgetAPI {
|
||||||
guard let url = URL(string:urlString) else { return }
|
guard let url = URL(string:urlString) else { return }
|
||||||
|
|
||||||
if source == "BNR" {
|
if source == "BNR" {
|
||||||
URLSession.shared.dataTask(with: url) { (data, response, error) in
|
URLSession.shared.dataTask(with: url) { (data, response, error) in
|
||||||
if let error = error {
|
if let error = error {
|
||||||
print("Error fetching data: \(error.localizedDescription)")
|
print("Error fetching data: \(error.localizedDescription)")
|
||||||
completion(nil, error)
|
completion(nil, error)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
guard let data = data else {
|
guard let data = data else {
|
||||||
print("No data received")
|
print("No data received")
|
||||||
completion(nil, nil)
|
completion(nil, nil)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Parse XML data
|
// Parse XML data for USD to RON rate
|
||||||
let parser = XMLParser(data: data)
|
let parser = XMLParser(data: data)
|
||||||
let delegate = BNRXMLParserDelegate()
|
let delegate = BNRXMLParserDelegate()
|
||||||
parser.delegate = delegate
|
parser.delegate = delegate
|
||||||
if parser.parse(), let rate = delegate.usdRate {
|
if parser.parse(), let usdToRonRate = delegate.usdRate {
|
||||||
let lastUpdatedString = ISO8601DateFormatter().string(from: Date())
|
// Fetch BTC to USD rate using CoinGecko
|
||||||
let latestRateDataStore = WidgetDataStore(rate: String(rate), lastUpdate: lastUpdatedString, rateDouble: rate)
|
let coinGeckoUrl = URL(string: "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin&vs_currencies=usd")!
|
||||||
completion(latestRateDataStore, nil)
|
URLSession.shared.dataTask(with: coinGeckoUrl) { (data, _, error) in
|
||||||
} else {
|
guard let data = data, error == nil else {
|
||||||
print("Error parsing XML")
|
completion(nil, error ?? CurrencyError())
|
||||||
completion(nil, CurrencyError())
|
return
|
||||||
}
|
}
|
||||||
}.resume()
|
|
||||||
|
do {
|
||||||
|
if let json = try JSONSerialization.jsonObject(with: data, options: []) as? [String: Any],
|
||||||
|
let bitcoinDict = json["bitcoin"] as? [String: Double],
|
||||||
|
let btcToUsdRate = bitcoinDict["usd"] {
|
||||||
|
let btcToRonRate = btcToUsdRate * usdToRonRate
|
||||||
|
let lastUpdatedString = ISO8601DateFormatter().string(from: Date())
|
||||||
|
let latestRateDataStore = WidgetDataStore(rate: String(btcToRonRate), lastUpdate: lastUpdatedString, rateDouble: btcToRonRate)
|
||||||
|
completion(latestRateDataStore, nil)
|
||||||
|
} else {
|
||||||
|
completion(nil, CurrencyError())
|
||||||
|
}
|
||||||
|
} catch {
|
||||||
|
completion(nil, error)
|
||||||
|
}
|
||||||
|
}.resume()
|
||||||
|
} else {
|
||||||
|
print("Error parsing XML")
|
||||||
|
completion(nil, CurrencyError())
|
||||||
|
}
|
||||||
|
}.resume()
|
||||||
} else {
|
} else {
|
||||||
URLSession.shared.dataTask(with: url) { (data, response, error) in
|
URLSession.shared.dataTask(with: url) { (data, response, error) in
|
||||||
guard let dataResponse = data,
|
guard let dataResponse = data,
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
2023 BlueWallet Services S.R.L.
|
2024 BlueWallet Services S.R.L.
|
||||||
|
|
183
loc/bqi.json
Normal file
183
loc/bqi.json
Normal file
|
@ -0,0 +1,183 @@
|
||||||
|
{
|
||||||
|
"_": {
|
||||||
|
"bad_password": "رزم زبال نؽ. زه نۊ تفره کو.",
|
||||||
|
"cancel": "لقو",
|
||||||
|
"clipboard": "ویرگه",
|
||||||
|
"enter_password": "رزمته بزن",
|
||||||
|
"ok": "هری",
|
||||||
|
"yes": "هری",
|
||||||
|
"no": "نه",
|
||||||
|
"save": "زفت کردن",
|
||||||
|
"success": "سر ٱنجوم گرهڌ",
|
||||||
|
"wallet_key": "کیلیت کیف پیل",
|
||||||
|
"close": "بستن",
|
||||||
|
"refresh": "وانۊ کردن",
|
||||||
|
"more": "بیشتر",
|
||||||
|
"pick_image": "پسند شؽوات ز شؽوات مال",
|
||||||
|
"pick_file": "پسند فایل"
|
||||||
|
},
|
||||||
|
"alert": {
|
||||||
|
"default": "هوشتار"
|
||||||
|
},
|
||||||
|
"azteco": {
|
||||||
|
"redeem": "ازاف کردن وه کیف پیل",
|
||||||
|
"success": "سر ٱنجوم گرهڌ"
|
||||||
|
},
|
||||||
|
"entropy": {
|
||||||
|
"save": "زفت کردن"
|
||||||
|
},
|
||||||
|
"errors": {
|
||||||
|
"error": "ختا",
|
||||||
|
"network": "ختا شبکه"
|
||||||
|
},
|
||||||
|
"lnd": {
|
||||||
|
"channels": "تورگیل",
|
||||||
|
"no_channels": "بؽ تورگٱ",
|
||||||
|
"close_channel": "بستن تورگٱ",
|
||||||
|
"new_channel": "تورگٱ نۊ",
|
||||||
|
"force_close_channel": "بستن اجباری تورگٱ؟",
|
||||||
|
"open_channel": "گۊشیڌن تورگٱ",
|
||||||
|
"are_you_sure_open_channel": "زه گۊشیڌن ای تورگٱ اتمینۉ داری؟",
|
||||||
|
"refill": "پور کردن",
|
||||||
|
"title": "دؽوۉداری دارایی",
|
||||||
|
"can_send": "تره فشنه",
|
||||||
|
"can_receive": "تره گره",
|
||||||
|
"view_logs": "نیشتن تفاقا"
|
||||||
|
},
|
||||||
|
"lndViewInvoice": {
|
||||||
|
"additional_info": "دۉسمندیا بیشتر",
|
||||||
|
"for": "سی:",
|
||||||
|
"open_direct_channel": "تورگٱ موستقیمی وا ای گره واز کو:"
|
||||||
|
},
|
||||||
|
"plausibledeniability": {
|
||||||
|
"retype_password": "رزمنه زه نۊ هؽل کو",
|
||||||
|
"success": "سر ٱنجوم گرهڌ"
|
||||||
|
},
|
||||||
|
"pleasebackup": {
|
||||||
|
"ok": "خا، هو ناْ هؽل کردوم.",
|
||||||
|
"ok_lnd": "خا، هونه زفت کردوم."
|
||||||
|
},
|
||||||
|
"receive": {
|
||||||
|
"details_create": "ورکل",
|
||||||
|
"details_share": "یک رسۊوی",
|
||||||
|
"header": "گرؽڌن"
|
||||||
|
},
|
||||||
|
"send": {
|
||||||
|
"broadcastError": "ختا",
|
||||||
|
"broadcastPending": "مندیر سی زفت",
|
||||||
|
"broadcastSuccess": "سر ٱنجوم گرهڌ",
|
||||||
|
"confirm_sendNow": "هیم سکو بفشن",
|
||||||
|
"create_memo": "ویرداشت",
|
||||||
|
"create_to": "وه",
|
||||||
|
"create_tx_size": "هندا تراکونش",
|
||||||
|
"details_address": "آدرس",
|
||||||
|
"details_adv_full": "زه پوی موجۊڌی استفاڌه کو",
|
||||||
|
"details_adv_full_sure": "اخۊی زه پوی موجۊڌی کیف پیلت سی ای تراکونش استفاڌه کۊنی؟",
|
||||||
|
"details_create": "ورکل سۊرت هساو",
|
||||||
|
"details_note_placeholder": "ویرداشت به خوت",
|
||||||
|
"details_scan": "اسکن",
|
||||||
|
"details_scan_hint": "سی اسکن یا به من اوردن مقسد، دو کرت بزن ریس",
|
||||||
|
"details_unrecognized_file_format": "قالو فایل نشناخته",
|
||||||
|
"dynamic_init": "هونی رئس اونه",
|
||||||
|
"dynamic_stop": "واڌاشتن",
|
||||||
|
"fee_10m": "10 دؽقه",
|
||||||
|
"fee_1d": "1 رۊز",
|
||||||
|
"fee_3h": "3 ساعت",
|
||||||
|
"fee_custom": "سفارشی",
|
||||||
|
"fee_fast": "زل",
|
||||||
|
"input_clear": "روفتن",
|
||||||
|
"input_done": "ٱنجوم وابی",
|
||||||
|
"input_paste": "جا وندن",
|
||||||
|
"permission_camera_message": "سی به کار گرهڌن شؽوات گر، لنگ اجازه ایسانیم.",
|
||||||
|
"psbt_sign": "امزا کردن تراکونش",
|
||||||
|
"open_settings": "گۊشیڌن سامووا",
|
||||||
|
"permission_storage_later": "دینداتر زوم بپورس.",
|
||||||
|
"psbt_clipboard": "لف گیری منه ویرگه",
|
||||||
|
"psbt_tx_open": "گۊشیڌن تراکونش امزا وابیڌه",
|
||||||
|
"success_done": "ٱنجوم وابی"
|
||||||
|
},
|
||||||
|
"settings": {
|
||||||
|
"about": "زبار",
|
||||||
|
"about_awesome": "ورکل وابیڌه وا بؽڌرینا",
|
||||||
|
"about_license": "پروانه ام آی تی",
|
||||||
|
"about_release_notes": "ویرداشتا انتشار",
|
||||||
|
"about_review": "سی ایما یه واجۊری بنین",
|
||||||
|
"performance_score": "امتیاز کارکرد: {num}",
|
||||||
|
"run_performance_test": "واجۊری کارکرد",
|
||||||
|
"about_selftest": "ره وندن خوس آزمایی",
|
||||||
|
"about_selftest_electrum_disabled": "خوس آزمایی منه هالت آفلاین منه دسرس نؽ. هالت آفلاین نه قیر فعال کو و زه نۊ تفره کو.",
|
||||||
|
"about_sm_github": "گیت هاب",
|
||||||
|
"about_sm_discord": "سرور دیسکورد",
|
||||||
|
"about_sm_telegram": "تورگٱ تلگرام",
|
||||||
|
"about_sm_twitter": "ایما نه منه توییتر وه دین کنین",
|
||||||
|
"advanced_options": "گۊزینیل پؽش رئڌه",
|
||||||
|
"biometrics": "بیومتریک",
|
||||||
|
"biom_conf_identity": "هۊویته خوته تاییڌ کو.",
|
||||||
|
"currency": "واهڌ پیل",
|
||||||
|
"currency_source": "قیمت گرؽڌه وابیڌه زه",
|
||||||
|
"currency_fetch_error": "منجا گرؽڌن نرخ سی واهڌ پیل پسند بیڌه یه ختا پؽش اووڌ.",
|
||||||
|
"default_info": "دۉسمندیا پؽش فرز",
|
||||||
|
"default_title": "موقه ره وندن",
|
||||||
|
"electrum_connected": "منپیز",
|
||||||
|
"electrum_connected_not": "بؽ منپیز",
|
||||||
|
"electrum_offline_mode": "هالت آفلاین",
|
||||||
|
"use_ssl": "SSL نه به کار بگر",
|
||||||
|
"electrum_settings_server": "سرور الکترام",
|
||||||
|
"electrum_status": "وزیت",
|
||||||
|
"electrum_clear_alert_title": "ویرگار پاک بۊ؟",
|
||||||
|
"electrum_clear_alert_message": "اخۊی ویرگار سرورا الکترام نه پاک کۊنی؟",
|
||||||
|
"electrum_clear_alert_cancel": "لقو",
|
||||||
|
"electrum_clear_alert_ok": "هری",
|
||||||
|
"electrum_select": "پسند",
|
||||||
|
"electrum_reset": "ورگندن به پؽش فرز",
|
||||||
|
"electrum_history": "ویرگار سرور",
|
||||||
|
"electrum_clear": "روفتن",
|
||||||
|
"encrypt_title": "امنیت",
|
||||||
|
"encrypt_use": "{type} نه وه کار بگر",
|
||||||
|
"general": "پوی ولاتی",
|
||||||
|
"general_adv_mode": "هالت پؽش رئڌه",
|
||||||
|
"header": "سامووا",
|
||||||
|
"language": "زۉ",
|
||||||
|
"lightning_settings": "سامووا لایتنینگ",
|
||||||
|
"network": "شبکه",
|
||||||
|
"network_electrum": "سرور الکترام",
|
||||||
|
"notifications": "وارسۊویا",
|
||||||
|
"password": "رزم",
|
||||||
|
"privacy": "سی خومی",
|
||||||
|
"privacy_read_clipboard": "خوندن ویرگه",
|
||||||
|
"privacy_system_settings": "سامووا دسگا",
|
||||||
|
"rate": "نرخ",
|
||||||
|
"retype_password": "رزمنه زه نۊ هؽل کو",
|
||||||
|
"save": "زفت کردن",
|
||||||
|
"saved": "زفت وابی",
|
||||||
|
"widgets": "اوزارکا",
|
||||||
|
"tools": "اوزارا"
|
||||||
|
},
|
||||||
|
"notifications": {
|
||||||
|
"ask_me_later": "دینداتر زوم بپورس."
|
||||||
|
},
|
||||||
|
"transactions": {
|
||||||
|
"copy_link": "لف گیری لینک",
|
||||||
|
"cpfp_create": "ورکل",
|
||||||
|
"details_copy": "لف گیری",
|
||||||
|
"date": "ویرگار",
|
||||||
|
"details_received": "گرؽڌه وابیڌه",
|
||||||
|
"pending": "مندیر سی زفت"
|
||||||
|
},
|
||||||
|
"wallets": {
|
||||||
|
"add_bitcoin": "بیت کوین",
|
||||||
|
"add_create": "ورکل",
|
||||||
|
"details_address": "آدرس",
|
||||||
|
"details_save": "زفت کردن"
|
||||||
|
},
|
||||||
|
"multisig": {
|
||||||
|
"share": "یک رسۊوی",
|
||||||
|
"create": "ورکل",
|
||||||
|
"co_sign_transaction": "امزا کردن تراکونش",
|
||||||
|
"ms_help_title5": "هالت پؽش رئڌه"
|
||||||
|
},
|
||||||
|
"addresses": {
|
||||||
|
"sign_placeholder_address": "آدرس",
|
||||||
|
"type_receive": "گرؽڌن"
|
||||||
|
}
|
||||||
|
}
|
|
@ -15,9 +15,6 @@
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Úspěch",
|
"success": "Úspěch",
|
||||||
"wallet_key": "Klíč peněženky",
|
"wallet_key": "Klíč peněženky",
|
||||||
"invalid_animated_qr_code_fragment": "Neplatný animovaný fragment QRCode, zkuste to prosím znovu",
|
|
||||||
"file_saved": "Soubor {filePath} byl uložen ve vašem {destination}.",
|
|
||||||
"downloads_folder": "Složka Stažené soubory",
|
|
||||||
"close": "Zavřít",
|
"close": "Zavřít",
|
||||||
"change_input_currency": "Změnit vstupní měnu",
|
"change_input_currency": "Změnit vstupní měnu",
|
||||||
"refresh": "Obnovit",
|
"refresh": "Obnovit",
|
||||||
|
@ -57,7 +54,6 @@
|
||||||
"claim_balance": "Požadovat zůstatek {balance}",
|
"claim_balance": "Požadovat zůstatek {balance}",
|
||||||
"close_channel": "Zavřít kanál",
|
"close_channel": "Zavřít kanál",
|
||||||
"new_channel": "Nový kanál",
|
"new_channel": "Nový kanál",
|
||||||
"errorInvoiceExpired": "Faktura vypršela",
|
|
||||||
"force_close_channel": "Vynutit uzavření kanálu?",
|
"force_close_channel": "Vynutit uzavření kanálu?",
|
||||||
"expired": "Expirováno",
|
"expired": "Expirováno",
|
||||||
"node_alias": "Alias uzlu",
|
"node_alias": "Alias uzlu",
|
||||||
|
@ -65,7 +61,6 @@
|
||||||
"payButton": "Zaplatit",
|
"payButton": "Zaplatit",
|
||||||
"placeholder": "Faktura nebo adresa",
|
"placeholder": "Faktura nebo adresa",
|
||||||
"open_channel": "Otevřít kanál",
|
"open_channel": "Otevřít kanál",
|
||||||
"funding_amount_placeholder": "Výše financování, např. 0.001",
|
|
||||||
"opening_channnel_for_from": "Otevření kanálu pro peněženku {forWalletLabel}, financováním z {fromWalletLabel}",
|
"opening_channnel_for_from": "Otevření kanálu pro peněženku {forWalletLabel}, financováním z {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Jste si jisti, že chcete tento kanál otevřít?",
|
"are_you_sure_open_channel": "Jste si jisti, že chcete tento kanál otevřít?",
|
||||||
"potentialFee": "Potenciální poplatek: {fee}",
|
"potentialFee": "Potenciální poplatek: {fee}",
|
||||||
|
@ -75,7 +70,7 @@
|
||||||
"refill_create": "Chcete-li pokračovat, vytvořte prosím bitcoinovou peněženku, kterou můžete doplnit.",
|
"refill_create": "Chcete-li pokračovat, vytvořte prosím bitcoinovou peněženku, kterou můžete doplnit.",
|
||||||
"refill_external": "Doplnit pomocí externí peněženky",
|
"refill_external": "Doplnit pomocí externí peněženky",
|
||||||
"refill_lnd_balance": "Doplnit zůstatek na Lightning peněžence",
|
"refill_lnd_balance": "Doplnit zůstatek na Lightning peněžence",
|
||||||
"sameWalletAsInvoiceError": "Fakturu nelze zaplatit stejnou peněženkou, která byla použita k jejímu vytvoření.",
|
"sameWalletAsInvoiceError": "Fakturu nemůžete zaplatit pomocí stejné peněženky, kterou jste použili k jejímu vytvoření.",
|
||||||
"title": "Správa zůstatků",
|
"title": "Správa zůstatků",
|
||||||
"can_send": "Může odeslat",
|
"can_send": "Může odeslat",
|
||||||
"can_receive": "Může přijmout",
|
"can_receive": "Může přijmout",
|
||||||
|
@ -88,7 +83,6 @@
|
||||||
"open_direct_channel": "Otevřít přímý kanál s tímto uzlem:",
|
"open_direct_channel": "Otevřít přímý kanál s tímto uzlem:",
|
||||||
"please_pay_between_and": "Zaplaťte prosím mezi {min} a {max}.",
|
"please_pay_between_and": "Zaplaťte prosím mezi {min} a {max}.",
|
||||||
"please_pay": "Prosím zaplaťte",
|
"please_pay": "Prosím zaplaťte",
|
||||||
"preimage": "Předobraz",
|
|
||||||
"sats": "sats.",
|
"sats": "sats.",
|
||||||
"wasnt_paid_and_expired": "Tato faktura nebyla zaplacena a její platnost vypršela."
|
"wasnt_paid_and_expired": "Tato faktura nebyla zaplacena a její platnost vypršela."
|
||||||
},
|
},
|
||||||
|
@ -106,10 +100,8 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Uložili jste záložní větu vaší peněženky? Tato záložní věta je vyžadována pro přístup k vašim finančním prostředkům pro případ ztráty tohoto zařízení. Bez záložní věty budou vaše prostředky trvale ztraceny.",
|
"ask": "Uložili jste záložní větu vaší peněženky? Tato záložní věta je vyžadována pro přístup k vašim finančním prostředkům pro případ ztráty tohoto zařízení. Bez záložní věty budou vaše prostředky trvale ztraceny.",
|
||||||
"ask_no": "Ne, neuložil",
|
"ok": "Dobře, napsal jsem ji",
|
||||||
"ask_yes": "Ano, uložil",
|
"ok_lnd": "Dobře, uložil jsem to.",
|
||||||
"ok": "Dobře, napsal jsem si to",
|
|
||||||
"ok_lnd": "Dobře, uložil jsem si to",
|
|
||||||
"text": "Věnujte prosím chvíli zapsaní si této mnemotechnické fráze na kousek papíru.\nJe to vaše záloha a můžete ji použít k obnovení peněženky.",
|
"text": "Věnujte prosím chvíli zapsaní si této mnemotechnické fráze na kousek papíru.\nJe to vaše záloha a můžete ji použít k obnovení peněženky.",
|
||||||
"text_lnd": "Uložte si tuto zálohu peněženky. Umožňí vám obnovit peněženku v případě ztráty.",
|
"text_lnd": "Uložte si tuto zálohu peněženky. Umožňí vám obnovit peněženku v případě ztráty.",
|
||||||
"title": "Vaše peněženka je vytvořena"
|
"title": "Vaše peněženka je vytvořena"
|
||||||
|
@ -160,7 +152,6 @@
|
||||||
"details_create": "Vytvořit fakturu",
|
"details_create": "Vytvořit fakturu",
|
||||||
"details_error_decode": "Bitcoinovou adresu nelze dekódovat",
|
"details_error_decode": "Bitcoinovou adresu nelze dekódovat",
|
||||||
"details_fee_field_is_not_valid": "Poplatek není správně vyplněn",
|
"details_fee_field_is_not_valid": "Poplatek není správně vyplněn",
|
||||||
"details_frozen": "{amount} BTC je zmraženo ",
|
|
||||||
"details_next": "Další",
|
"details_next": "Další",
|
||||||
"details_no_signed_tx": "Vybraný soubor neobsahuje transakci, kterou lze importovat.",
|
"details_no_signed_tx": "Vybraný soubor neobsahuje transakci, kterou lze importovat.",
|
||||||
"details_note_placeholder": "Poznámka pro sebe",
|
"details_note_placeholder": "Poznámka pro sebe",
|
||||||
|
@ -192,7 +183,6 @@
|
||||||
"permission_camera_message": "K použití fotoaparátu potřebujeme vaše povolení",
|
"permission_camera_message": "K použití fotoaparátu potřebujeme vaše povolení",
|
||||||
"psbt_sign": "Podepsat transakci",
|
"psbt_sign": "Podepsat transakci",
|
||||||
"open_settings": "Otevřít nastavení",
|
"open_settings": "Otevřít nastavení",
|
||||||
"permission_storage_later": "Zeptejte se mě později",
|
|
||||||
"permission_storage_message": "BlueWallet potřebuje vaše oprávnění k přístupu k vašemu úložišti, aby mohl tento soubor uložit.",
|
"permission_storage_message": "BlueWallet potřebuje vaše oprávnění k přístupu k vašemu úložišti, aby mohl tento soubor uložit.",
|
||||||
"permission_storage_denied_message": "BlueWallet nemůže tento soubor uložit. Otevřete prosím nastavení zařízení a povolte funkci Oprávnění k ukládání.",
|
"permission_storage_denied_message": "BlueWallet nemůže tento soubor uložit. Otevřete prosím nastavení zařízení a povolte funkci Oprávnění k ukládání.",
|
||||||
"permission_storage_title": "Povolení k přístupu do úložiště",
|
"permission_storage_title": "Povolení k přístupu do úložiště",
|
||||||
|
@ -203,7 +193,6 @@
|
||||||
"outdated_rate": "Kurz byl naposledy aktualizován: {date}",
|
"outdated_rate": "Kurz byl naposledy aktualizován: {date}",
|
||||||
"psbt_tx_open": "Otevřít podepsanou transakci",
|
"psbt_tx_open": "Otevřít podepsanou transakci",
|
||||||
"psbt_tx_scan": "Skenovat podepsanou transakci",
|
"psbt_tx_scan": "Skenovat podepsanou transakci",
|
||||||
"qr_error_no_qrcode": "Ve vybraném obrázku se nám nepodařilo najít kód QR. Ujistěte se, že obrázek obsahuje pouze QR kód a žádný další obsah, například text nebo tlačítka.",
|
|
||||||
"reset_amount": "Resetovat částku",
|
"reset_amount": "Resetovat částku",
|
||||||
"reset_amount_confirm": "Chcete částku vynulovat?",
|
"reset_amount_confirm": "Chcete částku vynulovat?",
|
||||||
"success_done": "Hotovo",
|
"success_done": "Hotovo",
|
||||||
|
@ -242,7 +231,6 @@
|
||||||
"default_wallets": "Zobrazit všechny peněženky",
|
"default_wallets": "Zobrazit všechny peněženky",
|
||||||
"electrum_connected": "Připojeno",
|
"electrum_connected": "Připojeno",
|
||||||
"electrum_connected_not": "Nepřipojeno",
|
"electrum_connected_not": "Nepřipojeno",
|
||||||
"electrum_error_connect": "Nelze se připojit k poskytovanému serveru Electrum",
|
|
||||||
"lndhub_uri": "Např. {example}",
|
"lndhub_uri": "Např. {example}",
|
||||||
"electrum_host": "Např. {example}",
|
"electrum_host": "Např. {example}",
|
||||||
"electrum_offline_mode": "Offline režim",
|
"electrum_offline_mode": "Offline režim",
|
||||||
|
@ -300,7 +288,6 @@
|
||||||
"privacy_read_clipboard": "Kopírovat ze schránky",
|
"privacy_read_clipboard": "Kopírovat ze schránky",
|
||||||
"privacy_system_settings": "Systémová nastavení",
|
"privacy_system_settings": "Systémová nastavení",
|
||||||
"privacy_quickactions": "Zástupci peněženky",
|
"privacy_quickactions": "Zástupci peněženky",
|
||||||
"privacy_quickactions_explanation": "Dlouhý stisk ikony BlueWallet na vaší výchozí obrazovce zobrazí váš zůstatek.",
|
|
||||||
"privacy_clipboard_explanation": "Pokud se ve vaší schránce nachází adresa nebo faktura, zadejte zástupce.",
|
"privacy_clipboard_explanation": "Pokud se ve vaší schránce nachází adresa nebo faktura, zadejte zástupce.",
|
||||||
"privacy_do_not_track": "Zakázat Analytiku",
|
"privacy_do_not_track": "Zakázat Analytiku",
|
||||||
"privacy_do_not_track_explanation": "Informace o výkonu a spolehlivosti nebudou odeslány k analýze.",
|
"privacy_do_not_track_explanation": "Informace o výkonu a spolehlivosti nebudou odeslány k analýze.",
|
||||||
|
@ -310,16 +297,13 @@
|
||||||
"selfTest": "Autotest",
|
"selfTest": "Autotest",
|
||||||
"save": "Uložit",
|
"save": "Uložit",
|
||||||
"saved": "Uloženo",
|
"saved": "Uloženo",
|
||||||
"success_transaction_broadcasted": "Úspěch! Vaše transakce byla odvysílána!",
|
|
||||||
"total_balance": "Celkový zůstatek",
|
"total_balance": "Celkový zůstatek",
|
||||||
"total_balance_explanation": "Zobrazte celkový zůstatek všech vašich peněženek na widgetech na domovské obrazovce.",
|
"total_balance_explanation": "Zobrazte celkový zůstatek všech vašich peněženek na widgetech na domovské obrazovce.",
|
||||||
"widgets": "Widgety",
|
"widgets": "Widgety",
|
||||||
"tools": "Nástroje"
|
"tools": "Nástroje"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Chcete dostávat oznámení o příchozích platbách?",
|
"would_you_like_to_receive_notifications": "Chcete dostávat oznámení o příchozích platbách?"
|
||||||
"no_and_dont_ask": "Ne, a už se mě znovu neptejte",
|
|
||||||
"ask_me_later": "Zeptejte se mě později"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Tuto transakci nahradíme takovou, která vám zaplatí a bude mít vyšší poplatky. Tím se zruší aktuální transakce. Toto se nazývá RBF – Replace by Fee.",
|
"cancel_explain": "Tuto transakci nahradíme takovou, která vám zaplatí a bude mít vyšší poplatky. Tím se zruší aktuální transakce. Toto se nazývá RBF – Replace by Fee.",
|
||||||
|
@ -392,7 +376,6 @@
|
||||||
"details_advanced": "Pokročilé",
|
"details_advanced": "Pokročilé",
|
||||||
"details_are_you_sure": "Jste si jistý?",
|
"details_are_you_sure": "Jste si jistý?",
|
||||||
"details_connected_to": "Připojeno k",
|
"details_connected_to": "Připojeno k",
|
||||||
"details_del_wb_err": "Poskytnutá částka zůstatku neodpovídá zůstatku této peněženky. Prosím zkuste to znovu",
|
|
||||||
"details_del_wb_q": "Tato peněženka má zůstatek. Než budete pokračovat, uvědomte si, že bez přístupové fráze této peněženky nebudete moci získat prostředky zpět. Abyste se vyhnuli náhodnému odstranění, zadejte prosím zůstatek peněženky ve výši {balance} satoshi.",
|
"details_del_wb_q": "Tato peněženka má zůstatek. Než budete pokračovat, uvědomte si, že bez přístupové fráze této peněženky nebudete moci získat prostředky zpět. Abyste se vyhnuli náhodnému odstranění, zadejte prosím zůstatek peněženky ve výši {balance} satoshi.",
|
||||||
"details_delete": "Smazat",
|
"details_delete": "Smazat",
|
||||||
"details_delete_wallet": "Smazat peněženku",
|
"details_delete_wallet": "Smazat peněženku",
|
||||||
|
@ -429,16 +412,9 @@
|
||||||
"import_discovery_subtitle": "Zvolte si objevenou peněženku",
|
"import_discovery_subtitle": "Zvolte si objevenou peněženku",
|
||||||
"import_discovery_derivation": "Použít vlastní derivační cestu",
|
"import_discovery_derivation": "Použít vlastní derivační cestu",
|
||||||
"import_discovery_no_wallets": "Nebyly nalezeny žádné peněženky.",
|
"import_discovery_no_wallets": "Nebyly nalezeny žádné peněženky.",
|
||||||
"import_derivation_found": "nalezeno",
|
|
||||||
"import_derivation_found_not": "nenalezeno",
|
|
||||||
"import_derivation_loading": "načítání...",
|
|
||||||
"import_derivation_subtitle": "Zadejte vlastní derivační cestu a my se pokusíme objevit vaši peněženku.",
|
|
||||||
"import_derivation_title": "Derivační cesta",
|
"import_derivation_title": "Derivační cesta",
|
||||||
"import_derivation_unknown": "neznámá",
|
|
||||||
"import_wrong_path": "špatná derivační cesta",
|
|
||||||
"list_create_a_button": "Přidat nyní",
|
"list_create_a_button": "Přidat nyní",
|
||||||
"list_create_a_wallet": "Přidat peněženku",
|
"list_create_a_wallet": "Přidat peněženku",
|
||||||
"list_create_a_wallet_text": "Je to zdarma a můžete jich vytvořit \nkolik budete chtít",
|
|
||||||
"list_empty_txs1": "Zde budou zobrazeny vaše transakce,",
|
"list_empty_txs1": "Zde budou zobrazeny vaše transakce,",
|
||||||
"list_empty_txs1_lightning": "Lightning peněženka by měla být použita pro vaše každodenní transakce. Poplatky jsou nespravedlivě levné a rychlost je vysoká.",
|
"list_empty_txs1_lightning": "Lightning peněženka by měla být použita pro vaše každodenní transakce. Poplatky jsou nespravedlivě levné a rychlost je vysoká.",
|
||||||
"list_empty_txs2": "Začněte s peněženkou.",
|
"list_empty_txs2": "Začněte s peněženkou.",
|
||||||
|
@ -503,20 +479,14 @@
|
||||||
"quorum_header": "Kvorum",
|
"quorum_header": "Kvorum",
|
||||||
"of": "z",
|
"of": "z",
|
||||||
"wallet_type": "Typ peněženky",
|
"wallet_type": "Typ peněženky",
|
||||||
"invalid_mnemonics": "Zdá se, že tato mnemotechnická fráze není platná",
|
|
||||||
"invalid_cosigner": "Neplatná data spolupodepisujícího",
|
|
||||||
"not_a_multisignature_xpub": "Toto není xpub z vícepodpisové peněženky!",
|
"not_a_multisignature_xpub": "Toto není xpub z vícepodpisové peněženky!",
|
||||||
"invalid_cosigner_format": "Nesprávný spolupodepsaný: toto není spolupodepsaný pro {format} formát",
|
|
||||||
"create_new_key": "Vytvořit novou",
|
"create_new_key": "Vytvořit novou",
|
||||||
"scan_or_open_file": "Naskenujte nebo otevřete soubor",
|
"scan_or_open_file": "Naskenujte nebo otevřete soubor",
|
||||||
"i_have_mnemonics": "Mám seed pro tento klíč...",
|
"i_have_mnemonics": "Mám seed pro tento klíč...",
|
||||||
"type_your_mnemonics": "Vložte seed k importu stávajícího klíče uložiště",
|
"type_your_mnemonics": "Vložte seed k importu stávajícího klíče uložiště",
|
||||||
"this_is_cosigners_xpub": "Toto je xpub spolupodepisujícího připravený k importu do jiné peněženky. Je bezpečné ho sdílet.",
|
|
||||||
"wallet_key_created": "Klíč k uložišti byl vytvořen. Udělejte si chvíli a bezpečně zálohujte svůj mnemotechnický seed",
|
"wallet_key_created": "Klíč k uložišti byl vytvořen. Udělejte si chvíli a bezpečně zálohujte svůj mnemotechnický seed",
|
||||||
"are_you_sure_seed_will_be_lost": "Opravdu? Vaš mnemotechnický seed budou ztracen, pokud nemáte zálohu",
|
"are_you_sure_seed_will_be_lost": "Opravdu? Vaš mnemotechnický seed budou ztracen, pokud nemáte zálohu",
|
||||||
"forget_this_seed": "Zapomeňte na tento seed a použijte XPUB",
|
"forget_this_seed": "Zapomeňte na tento seed a použijte XPUB",
|
||||||
"view_edit_cosigners": "Zobrazit/upravit spolupodepisující",
|
|
||||||
"this_cosigner_is_already_imported": "Tento spolupodepisující je již importován",
|
|
||||||
"export_signed_psbt": "Exportovat podepsanou PSBT",
|
"export_signed_psbt": "Exportovat podepsanou PSBT",
|
||||||
"input_fp": "Zadejte otisk prstu",
|
"input_fp": "Zadejte otisk prstu",
|
||||||
"input_fp_explain": "Přeskočit a použít výchozí (00000000)",
|
"input_fp_explain": "Přeskočit a použít výchozí (00000000)",
|
||||||
|
@ -541,14 +511,12 @@
|
||||||
"owns": "{label} vlastní {address}",
|
"owns": "{label} vlastní {address}",
|
||||||
"enter_address": "Zadat adresu",
|
"enter_address": "Zadat adresu",
|
||||||
"check_address": "Zkontrolovat adresu",
|
"check_address": "Zkontrolovat adresu",
|
||||||
"no_wallet_owns_address": "Žádná z dostupných peněženek nevlastní uvedenou adresu.",
|
"no_wallet_owns_address": "Žádná z dostupných peněženek nevlastní uvedenou adresu."
|
||||||
"view_qrcode": "Zobrazit QR kód"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Změnit",
|
"change": "Změnit",
|
||||||
"coins_selected": "Vybrané mince ({number})",
|
"coins_selected": "Vybrané mince ({number})",
|
||||||
"selected_summ": "{value} vybráno",
|
"selected_summ": "{value} vybráno",
|
||||||
"empty": "Na této peněžence nejsou v tuto chvíli žádné mince.",
|
|
||||||
"freeze": "Zmrazit",
|
"freeze": "Zmrazit",
|
||||||
"freezeLabel": "Zmrazit",
|
"freezeLabel": "Zmrazit",
|
||||||
"freezeLabel_un": "Uvolnit",
|
"freezeLabel_un": "Uvolnit",
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Erfolg",
|
"success": "Erfolg",
|
||||||
"wallet_key": "Wallet Schlüssel",
|
"wallet_key": "Wallet Schlüssel",
|
||||||
"invalid_animated_qr_code_fragment": "Ungültig animiertes QR-Code-Fragment. Bitte erneut versuchen.",
|
|
||||||
"file_saved": "Die Datei {filePath} wurde im Ordner {destination} gespeichert.",
|
|
||||||
"downloads_folder": "Download-Ordner",
|
|
||||||
"close": "Schließen",
|
"close": "Schließen",
|
||||||
"change_input_currency": "Eingangswährung ändern",
|
"change_input_currency": "Eingangswährung ändern",
|
||||||
"refresh": "Aktualisieren",
|
"refresh": "Aktualisieren",
|
||||||
|
@ -57,7 +54,6 @@
|
||||||
"claim_balance": "Saldo von {balance} beanspruchen",
|
"claim_balance": "Saldo von {balance} beanspruchen",
|
||||||
"close_channel": "Kanal schließen",
|
"close_channel": "Kanal schließen",
|
||||||
"new_channel": "Neuer Kanal",
|
"new_channel": "Neuer Kanal",
|
||||||
"errorInvoiceExpired": "Rechnung verfallen",
|
|
||||||
"force_close_channel": "Kanal zwangsweise schließen?",
|
"force_close_channel": "Kanal zwangsweise schließen?",
|
||||||
"expired": "Abgelaufen",
|
"expired": "Abgelaufen",
|
||||||
"node_alias": "Knoten-Alias",
|
"node_alias": "Knoten-Alias",
|
||||||
|
@ -65,7 +61,6 @@
|
||||||
"payButton": "Zahlen",
|
"payButton": "Zahlen",
|
||||||
"placeholder": "Rechnung oder Adresse",
|
"placeholder": "Rechnung oder Adresse",
|
||||||
"open_channel": "Kanal öffnen",
|
"open_channel": "Kanal öffnen",
|
||||||
"funding_amount_placeholder": "Finanzierungsbetrag, z.B. 0.001",
|
|
||||||
"opening_channnel_for_from": "Kanal für Wallet {forWalletLabel} finanziert durch Wallet {fromWalletLabel} eröffnen.",
|
"opening_channnel_for_from": "Kanal für Wallet {forWalletLabel} finanziert durch Wallet {fromWalletLabel} eröffnen.",
|
||||||
"are_you_sure_open_channel": "Diesen Kanal definitiv eröffnen?",
|
"are_you_sure_open_channel": "Diesen Kanal definitiv eröffnen?",
|
||||||
"potentialFee": "Geschätzte Gebühr: {fee}",
|
"potentialFee": "Geschätzte Gebühr: {fee}",
|
||||||
|
@ -75,7 +70,7 @@
|
||||||
"refill_create": "Bitte eine Bitcoin Wallet erstellen um fortzufahren",
|
"refill_create": "Bitte eine Bitcoin Wallet erstellen um fortzufahren",
|
||||||
"refill_external": "Mit externem Wallet aufladen",
|
"refill_external": "Mit externem Wallet aufladen",
|
||||||
"refill_lnd_balance": "Lade deine Lightning Wallet auf",
|
"refill_lnd_balance": "Lade deine Lightning Wallet auf",
|
||||||
"sameWalletAsInvoiceError": "Die Rechnung kann nicht mit der gleichen Wallet beglichen werden, die sie erstellt hat.",
|
"sameWalletAsInvoiceError": "Du kannst nicht die Rechnung mit der Wallet begleichen, die du für die Erstellung dieser Rechnung verwendet hast.",
|
||||||
"title": "Beträge verwalten",
|
"title": "Beträge verwalten",
|
||||||
"can_send": "Kann senden",
|
"can_send": "Kann senden",
|
||||||
"can_receive": "Kann empfangen",
|
"can_receive": "Kann empfangen",
|
||||||
|
@ -88,7 +83,6 @@
|
||||||
"open_direct_channel": "Direkten Kanal zu diesem Knoten eröffnen:",
|
"open_direct_channel": "Direkten Kanal zu diesem Knoten eröffnen:",
|
||||||
"please_pay_between_and": "Zahlen Sie zwischen {min} und {max}",
|
"please_pay_between_and": "Zahlen Sie zwischen {min} und {max}",
|
||||||
"please_pay": "Bitte zahle",
|
"please_pay": "Bitte zahle",
|
||||||
"preimage": "Urbild",
|
|
||||||
"sats": "sats",
|
"sats": "sats",
|
||||||
"wasnt_paid_and_expired": "Diese Rechnung ist unbezahlt abgelaufen."
|
"wasnt_paid_and_expired": "Diese Rechnung ist unbezahlt abgelaufen."
|
||||||
},
|
},
|
||||||
|
@ -106,10 +100,8 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Hast du die Wiederherstellungs-Phrase deines Wallets gesichert? Ohne Sie kannst du nicht mehr auf deine bitcoin zugreifen und sie wären für immer verloren, sollte dein Gerät verloren oder kaputt gehen.",
|
"ask": "Hast du die Wiederherstellungs-Phrase deines Wallets gesichert? Ohne Sie kannst du nicht mehr auf deine bitcoin zugreifen und sie wären für immer verloren, sollte dein Gerät verloren oder kaputt gehen.",
|
||||||
"ask_no": "Nein, habe ich nicht.",
|
|
||||||
"ask_yes": "Ja, habe ich.",
|
|
||||||
"ok": "Ok, ich habe sie notiert.",
|
"ok": "Ok, ich habe sie notiert.",
|
||||||
"ok_lnd": "OK. Die Sicherung ist erstellt.",
|
"ok_lnd": "Die Sicherung ist erstellt.",
|
||||||
"text": "Nimm Dir Zeit die mnemonischen Wörter auf ein Papier zu schreiben.\nDie Wörter sind dein Backup zur Wallet-Wiederherstellung.",
|
"text": "Nimm Dir Zeit die mnemonischen Wörter auf ein Papier zu schreiben.\nDie Wörter sind dein Backup zur Wallet-Wiederherstellung.",
|
||||||
"text_lnd": "Zur Wiederherstellung des Wallet im Verlustfall bitte dieses Wallet-Backup sichern. ",
|
"text_lnd": "Zur Wiederherstellung des Wallet im Verlustfall bitte dieses Wallet-Backup sichern. ",
|
||||||
"title": "Dein Wallet ist erstellt."
|
"title": "Dein Wallet ist erstellt."
|
||||||
|
@ -160,7 +152,6 @@
|
||||||
"details_create": "Erstellen",
|
"details_create": "Erstellen",
|
||||||
"details_error_decode": "Bitcoin-Adresse kann nicht dekodiert werden",
|
"details_error_decode": "Bitcoin-Adresse kann nicht dekodiert werden",
|
||||||
"details_fee_field_is_not_valid": "Gebühreneingabe ist nicht korrekt",
|
"details_fee_field_is_not_valid": "Gebühreneingabe ist nicht korrekt",
|
||||||
"details_frozen": "{amount} BTC ist eingefroren",
|
|
||||||
"details_next": "Weiter",
|
"details_next": "Weiter",
|
||||||
"details_no_signed_tx": "Die ausgewählte Datei enthält keine importierbare signierte Transaktion.",
|
"details_no_signed_tx": "Die ausgewählte Datei enthält keine importierbare signierte Transaktion.",
|
||||||
"details_note_placeholder": "Eigene Bezeichnung",
|
"details_note_placeholder": "Eigene Bezeichnung",
|
||||||
|
@ -192,7 +183,6 @@
|
||||||
"permission_camera_message": "BlueWallet braucht Deine Erlaubnis, um die Kamera zu nutzen.",
|
"permission_camera_message": "BlueWallet braucht Deine Erlaubnis, um die Kamera zu nutzen.",
|
||||||
"psbt_sign": "Transaktion signieren",
|
"psbt_sign": "Transaktion signieren",
|
||||||
"open_settings": "Einstellungen öffnen",
|
"open_settings": "Einstellungen öffnen",
|
||||||
"permission_storage_later": "Später beantworten",
|
|
||||||
"permission_storage_message": "BlueWallet braucht zur Speicherung dieser Datei die Erlaubnis auf den internen Speicher zuzugreifen.",
|
"permission_storage_message": "BlueWallet braucht zur Speicherung dieser Datei die Erlaubnis auf den internen Speicher zuzugreifen.",
|
||||||
"permission_storage_denied_message": "BlueWallet kann die Datei nicht speichern. Dazu in den Systemeinstellungen der App BlueWallet das Recht erteilen, den internen Speicher zu verwenden.",
|
"permission_storage_denied_message": "BlueWallet kann die Datei nicht speichern. Dazu in den Systemeinstellungen der App BlueWallet das Recht erteilen, den internen Speicher zu verwenden.",
|
||||||
"permission_storage_title": "Speicherzugriffsrecht",
|
"permission_storage_title": "Speicherzugriffsrecht",
|
||||||
|
@ -203,7 +193,6 @@
|
||||||
"outdated_rate": "Kurs zuletzt aktualisiert: {date}",
|
"outdated_rate": "Kurs zuletzt aktualisiert: {date}",
|
||||||
"psbt_tx_open": "Öffne signierte Transaktion.",
|
"psbt_tx_open": "Öffne signierte Transaktion.",
|
||||||
"psbt_tx_scan": "Signierte Transaktion scannen",
|
"psbt_tx_scan": "Signierte Transaktion scannen",
|
||||||
"qr_error_no_qrcode": "Der QR-Code konnte nicht ausgelesen werden. Achte darauf, dass er ohne zusätzliche Inhalte wie Text, Grafiken oder Bilder vorliegt.",
|
|
||||||
"reset_amount": "Betrag zurücksetzen",
|
"reset_amount": "Betrag zurücksetzen",
|
||||||
"reset_amount_confirm": "Möchten Du den Betrag zurücksetzen?",
|
"reset_amount_confirm": "Möchten Du den Betrag zurücksetzen?",
|
||||||
"success_done": "Fertig",
|
"success_done": "Fertig",
|
||||||
|
@ -242,7 +231,6 @@
|
||||||
"default_wallets": "Alle Wallets anzeigen",
|
"default_wallets": "Alle Wallets anzeigen",
|
||||||
"electrum_connected": "Verbunden",
|
"electrum_connected": "Verbunden",
|
||||||
"electrum_connected_not": "Nicht verbunden",
|
"electrum_connected_not": "Nicht verbunden",
|
||||||
"electrum_error_connect": "Keine Verbindung zum angegebenen Electrum-Server möglich.",
|
|
||||||
"lndhub_uri": "Z.b., {example}",
|
"lndhub_uri": "Z.b., {example}",
|
||||||
"electrum_host": "Z.b., {example}",
|
"electrum_host": "Z.b., {example}",
|
||||||
"electrum_offline_mode": "Offline-Modus",
|
"electrum_offline_mode": "Offline-Modus",
|
||||||
|
@ -300,7 +288,6 @@
|
||||||
"privacy_read_clipboard": "Zwischenablage lesen",
|
"privacy_read_clipboard": "Zwischenablage lesen",
|
||||||
"privacy_system_settings": "Systemeinstellungen",
|
"privacy_system_settings": "Systemeinstellungen",
|
||||||
"privacy_quickactions": "Walletverknüpfungen",
|
"privacy_quickactions": "Walletverknüpfungen",
|
||||||
"privacy_quickactions_explanation": "Halte auf dem Startbildschirm das BlueWallet App-Symbol gedrückt, um rasch deinen Saldo zu sehen.",
|
|
||||||
"privacy_clipboard_explanation": "Nutzt Rechnungen und Adressen in der Zwischenablage zum Senden.",
|
"privacy_clipboard_explanation": "Nutzt Rechnungen und Adressen in der Zwischenablage zum Senden.",
|
||||||
"privacy_do_not_track": "Diagnosedaten ausschalten",
|
"privacy_do_not_track": "Diagnosedaten ausschalten",
|
||||||
"privacy_do_not_track_explanation": "Leistungs- und Zuverlässigkeitsinformationen nicht zur Analyse einreichen.",
|
"privacy_do_not_track_explanation": "Leistungs- und Zuverlässigkeitsinformationen nicht zur Analyse einreichen.",
|
||||||
|
@ -310,16 +297,13 @@
|
||||||
"selfTest": "Selbsttest",
|
"selfTest": "Selbsttest",
|
||||||
"save": "Speichern",
|
"save": "Speichern",
|
||||||
"saved": "Gespeichert",
|
"saved": "Gespeichert",
|
||||||
"success_transaction_broadcasted": "Erfolg! Diene Transaktion wurde übertragen.",
|
|
||||||
"total_balance": "Gesamtes Guthaben",
|
"total_balance": "Gesamtes Guthaben",
|
||||||
"total_balance_explanation": "Zeigt das Wallet Guthaben auf dem Widget deiner Homepage",
|
"total_balance_explanation": "Zeigt das Wallet Guthaben auf dem Widget deiner Homepage",
|
||||||
"widgets": "Widgets",
|
"widgets": "Widgets",
|
||||||
"tools": "Werkzeuge"
|
"tools": "Werkzeuge"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Möchten Sie bei Zahlungseingängen eine Benachrichtigung erhalten?",
|
"would_you_like_to_receive_notifications": "Möchten Sie bei Zahlungseingängen eine Benachrichtigung erhalten?"
|
||||||
"no_and_dont_ask": "Nein und nicht erneut fragen",
|
|
||||||
"ask_me_later": "Später erneut fragen"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "BlueWallet ersetzt diese Transaktion durch eine mit höherer Gebühr, welche den Betrag an Dich zurücküberweist. Die aktuelle Transaktion wird dadurch effektiv abgebrochen. Dieses Verfahren wird RBF - Replace By Fee - genannt.",
|
"cancel_explain": "BlueWallet ersetzt diese Transaktion durch eine mit höherer Gebühr, welche den Betrag an Dich zurücküberweist. Die aktuelle Transaktion wird dadurch effektiv abgebrochen. Dieses Verfahren wird RBF - Replace By Fee - genannt.",
|
||||||
|
@ -392,7 +376,6 @@
|
||||||
"details_advanced": "Fortgeschritten",
|
"details_advanced": "Fortgeschritten",
|
||||||
"details_are_you_sure": "Bist du dir sicher?",
|
"details_are_you_sure": "Bist du dir sicher?",
|
||||||
"details_connected_to": "Verbunden mit",
|
"details_connected_to": "Verbunden mit",
|
||||||
"details_del_wb_err": "Das angegebene Guthaben deckt sich nicht mit dem Guthaben des Wallet. Bitte versuche es erneut.",
|
|
||||||
"details_del_wb_q": "Dieses Wallet enthält noch bitcoin. Ohne vorhandenes Backup der mnemonischen Phrase sind diese unwiederbringlich verloren. Um ein versehentliches Löschen zu vermeiden, gib bitte das Wallet-Guthaben von {balance} Satoshis ein.",
|
"details_del_wb_q": "Dieses Wallet enthält noch bitcoin. Ohne vorhandenes Backup der mnemonischen Phrase sind diese unwiederbringlich verloren. Um ein versehentliches Löschen zu vermeiden, gib bitte das Wallet-Guthaben von {balance} Satoshis ein.",
|
||||||
"details_delete": "Löschen",
|
"details_delete": "Löschen",
|
||||||
"details_delete_wallet": "Wallet löschen",
|
"details_delete_wallet": "Wallet löschen",
|
||||||
|
@ -429,16 +412,9 @@
|
||||||
"import_discovery_subtitle": "Wallet aus Trefferliste wählen",
|
"import_discovery_subtitle": "Wallet aus Trefferliste wählen",
|
||||||
"import_discovery_derivation": "Eigener Ableitungspfad wählen",
|
"import_discovery_derivation": "Eigener Ableitungspfad wählen",
|
||||||
"import_discovery_no_wallets": "Es wurden keine Wallets gefunden.",
|
"import_discovery_no_wallets": "Es wurden keine Wallets gefunden.",
|
||||||
"import_derivation_found": "gefunden",
|
|
||||||
"import_derivation_found_not": "nicht gefunden",
|
|
||||||
"import_derivation_loading": "lade...",
|
|
||||||
"import_derivation_subtitle": "Eigener Ableitungspfad zur Ermittlung der genutzten Wallet eingeben",
|
|
||||||
"import_derivation_title": "Ableitungspfad",
|
"import_derivation_title": "Ableitungspfad",
|
||||||
"import_derivation_unknown": "unbekannt",
|
|
||||||
"import_wrong_path": "Falscher Ableitungspfad",
|
|
||||||
"list_create_a_button": "Jetzt hinzufügen",
|
"list_create_a_button": "Jetzt hinzufügen",
|
||||||
"list_create_a_wallet": "Wallet hinzufügen",
|
"list_create_a_wallet": "Wallet hinzufügen",
|
||||||
"list_create_a_wallet_text": "Wallets sind kostenlos. \nErstelle so viel du magst.",
|
|
||||||
"list_empty_txs1": "Deine Transaktionen erscheinen hier",
|
"list_empty_txs1": "Deine Transaktionen erscheinen hier",
|
||||||
"list_empty_txs1_lightning": "Verwende das Lightning Wallet für Deine täglichen Bezahlungen. Lightning Transaktionen sind konkurrenzlos günstig und verblüffend schnell.",
|
"list_empty_txs1_lightning": "Verwende das Lightning Wallet für Deine täglichen Bezahlungen. Lightning Transaktionen sind konkurrenzlos günstig und verblüffend schnell.",
|
||||||
"list_empty_txs2": "Beginne mit deinem Wallet.",
|
"list_empty_txs2": "Beginne mit deinem Wallet.",
|
||||||
|
@ -503,20 +479,14 @@
|
||||||
"quorum_header": "Signaturfähigkeit",
|
"quorum_header": "Signaturfähigkeit",
|
||||||
"of": "von",
|
"of": "von",
|
||||||
"wallet_type": "Typ des Wallets",
|
"wallet_type": "Typ des Wallets",
|
||||||
"invalid_mnemonics": "Ungültige mnemonische Phrase",
|
|
||||||
"invalid_cosigner": "Die Mitsignierer Daten sind ungültig",
|
|
||||||
"not_a_multisignature_xpub": "Dies ist keine XPUB eines Multisignatur-Wallet!",
|
"not_a_multisignature_xpub": "Dies ist keine XPUB eines Multisignatur-Wallet!",
|
||||||
"invalid_cosigner_format": "Falscher Mitsignierer: Dies ist kein Mitsignierer für das Format {format} ",
|
|
||||||
"create_new_key": "Neuerstellen",
|
"create_new_key": "Neuerstellen",
|
||||||
"scan_or_open_file": "Datei scannen oder öffnen",
|
"scan_or_open_file": "Datei scannen oder öffnen",
|
||||||
"i_have_mnemonics": "Seed des Schlüssels importieren",
|
"i_have_mnemonics": "Seed des Schlüssels importieren",
|
||||||
"type_your_mnemonics": "Seed zum Import deines Tresorschlüssels eingeben",
|
"type_your_mnemonics": "Seed zum Import deines Tresorschlüssels eingeben",
|
||||||
"this_is_cosigners_xpub": "Dies ist der xPub für Mitsigierer zum Import in ein anderes Wallet. Er kann sicher mit anderen geteilt werden.",
|
|
||||||
"wallet_key_created": "Dein Tresorschlüssel wurde erstellt. Nimm dir Zeit ein sicheres Backup des mnemonischen Seeds herzustellen. ",
|
"wallet_key_created": "Dein Tresorschlüssel wurde erstellt. Nimm dir Zeit ein sicheres Backup des mnemonischen Seeds herzustellen. ",
|
||||||
"are_you_sure_seed_will_be_lost": "Bist du sicher? Dein mnemonischer Seed ist ohne Backup verloren!",
|
"are_you_sure_seed_will_be_lost": "Bist du sicher? Dein mnemonischer Seed ist ohne Backup verloren!",
|
||||||
"forget_this_seed": "Seed vergessen und xPub verwenden.",
|
"forget_this_seed": "Seed vergessen und xPub verwenden.",
|
||||||
"view_edit_cosigners": "Mitsignierer anzeigen/bearbeiten",
|
|
||||||
"this_cosigner_is_already_imported": "Dieser Mitsignierer ist schon vorhanden",
|
|
||||||
"export_signed_psbt": "Signierte PSBT exportieren",
|
"export_signed_psbt": "Signierte PSBT exportieren",
|
||||||
"input_fp": "Fingerabdruckkennung eingeben",
|
"input_fp": "Fingerabdruckkennung eingeben",
|
||||||
"input_fp_explain": "Überspringen, um den Standard zu verwenden (00000000)",
|
"input_fp_explain": "Überspringen, um den Standard zu verwenden (00000000)",
|
||||||
|
@ -541,14 +511,12 @@
|
||||||
"owns": "{label} besitzt {address}",
|
"owns": "{label} besitzt {address}",
|
||||||
"enter_address": "Adresse eingeben",
|
"enter_address": "Adresse eingeben",
|
||||||
"check_address": "Adresse prüfen",
|
"check_address": "Adresse prüfen",
|
||||||
"no_wallet_owns_address": "Keines der verfügbaren Wallet besitzt die eingegebene Adresse.",
|
"no_wallet_owns_address": "Keines der verfügbaren Wallet besitzt die eingegebene Adresse."
|
||||||
"view_qrcode": "QR-Code anzeigen"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Ändern",
|
"change": "Ändern",
|
||||||
"coins_selected": "Anz. gewählte Münzen ({number})",
|
"coins_selected": "Anz. gewählte Münzen ({number})",
|
||||||
"selected_summ": "{value} ausgewählt",
|
"selected_summ": "{value} ausgewählt",
|
||||||
"empty": "Dieses Wallet hat aktuell keine Münzen",
|
|
||||||
"freeze": "einfrieren",
|
"freeze": "einfrieren",
|
||||||
"freezeLabel": "Einfrieren",
|
"freezeLabel": "Einfrieren",
|
||||||
"freezeLabel_un": "Entblocken",
|
"freezeLabel_un": "Entblocken",
|
||||||
|
|
38
loc/el.json
38
loc/el.json
|
@ -42,9 +42,12 @@
|
||||||
"no_channels": "Δεν υπάρχουν κανάλια",
|
"no_channels": "Δεν υπάρχουν κανάλια",
|
||||||
"close_channel": "Κλείσιμο καναλιού",
|
"close_channel": "Κλείσιμο καναλιού",
|
||||||
"new_channel": "Νέο κανάλι",
|
"new_channel": "Νέο κανάλι",
|
||||||
|
"errorInvoiceExpired": "Το τιμολόγιο έληξε",
|
||||||
"expired": "Έληξε",
|
"expired": "Έληξε",
|
||||||
|
"node_alias": "Ψευδώνυμο κόμβου",
|
||||||
"expiresIn": "Λήγει σε {time} λεπτά",
|
"expiresIn": "Λήγει σε {time} λεπτά",
|
||||||
"payButton": "Πληρωμή",
|
"payButton": "Πληρωμή",
|
||||||
|
"payment": "Πληρωμή",
|
||||||
"placeholder": "Τιμολόγιο ή διεύθυνση",
|
"placeholder": "Τιμολόγιο ή διεύθυνση",
|
||||||
"open_channel": "Άνοιγμα καναλιού",
|
"open_channel": "Άνοιγμα καναλιού",
|
||||||
"are_you_sure_open_channel": "Είσαι βέβαιος ότι θέλεις να ανοίξεις αυτό το κανάλι;",
|
"are_you_sure_open_channel": "Είσαι βέβαιος ότι θέλεις να ανοίξεις αυτό το κανάλι;",
|
||||||
|
@ -78,7 +81,12 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Έχετε αποθηκεύσει αντίγραφο ασφαλείας της φράσης του πορτοφολιού; Αυτό το αντίγραφο ασφαλείας απαιτείται για να έχετε πρόσβαση στα κεφάλαια σας στην περίπτωση απώλειας της συσκευής σας. Χωρίς το αντίγραφο ασφαλείας της φράσης, τα κεφάλαια σας θα χαθούν οριστικά.",
|
"ask": "Έχετε αποθηκεύσει αντίγραφο ασφαλείας της φράσης του πορτοφολιού; Αυτό το αντίγραφο ασφαλείας απαιτείται για να έχετε πρόσβαση στα κεφάλαια σας στην περίπτωση απώλειας της συσκευής σας. Χωρίς το αντίγραφο ασφαλείας της φράσης, τα κεφάλαια σας θα χαθούν οριστικά.",
|
||||||
"text": "Παρακαλώ αφιερώστε λίγο χρόνο να γράψετε σε ένα κομμάτι χαρτί την φράση απομνημόνευσης.\nΕίναι το αντίγραφο ασφαλείας σας και μπορείτε να την χρησιμοποιήσετε για να ανακτήσετε το πορτοφόλι σας."
|
"ask_no": "Όχι, δεν έχω.",
|
||||||
|
"ask_yes": "Ναι, έχω.",
|
||||||
|
"ok": "Εντάξει, το έγραψα.",
|
||||||
|
"ok_lnd": "Εντάξει, το αποθήκευσα.",
|
||||||
|
"text": "Παρακαλώ αφιερώστε λίγο χρόνο να γράψετε σε ένα κομμάτι χαρτί την φράση απομνημόνευσης.\nΕίναι το αντίγραφο ασφαλείας σας και μπορείτε να την χρησιμοποιήσετε για να ανακτήσετε το πορτοφόλι σας.",
|
||||||
|
"title": "Το πορτοφόλι σας δημιουργήθηκε."
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Δημιουργία",
|
"details_create": "Δημιουργία",
|
||||||
|
@ -145,7 +153,9 @@
|
||||||
"input_paste": "Επικόλληση",
|
"input_paste": "Επικόλληση",
|
||||||
"input_total": "Σύνολο:",
|
"input_total": "Σύνολο:",
|
||||||
"permission_camera_message": "Χρειαζόμαστε την άδεια σου για την χρήση της κάμερας.",
|
"permission_camera_message": "Χρειαζόμαστε την άδεια σου για την χρήση της κάμερας.",
|
||||||
|
"psbt_sign": "Υπογραφή μιας συναλλαγής",
|
||||||
"open_settings": "Άνοιγμα ρυθμίσεων",
|
"open_settings": "Άνοιγμα ρυθμίσεων",
|
||||||
|
"permission_storage_later": "Να ερωτηθώ αργότερα.",
|
||||||
"permission_storage_message": "Το BlueWallet θέλει άδεια πρόσβασης στον αποθηκευτικό σας χώρο για να σώσει αυτό το αρχείο.",
|
"permission_storage_message": "Το BlueWallet θέλει άδεια πρόσβασης στον αποθηκευτικό σας χώρο για να σώσει αυτό το αρχείο.",
|
||||||
"permission_storage_denied_message": "Το BlueWallet δεν μπορεί να αποθηκεύσει αυτό το αρχείο. Παρακαλώ ανοίξτε τις ρυθμίσεις της συσκευής σας και ενεργοποιήστε την πρόσβαση στον αποθηκευτικό χώρο.",
|
"permission_storage_denied_message": "Το BlueWallet δεν μπορεί να αποθηκεύσει αυτό το αρχείο. Παρακαλώ ανοίξτε τις ρυθμίσεις της συσκευής σας και ενεργοποιήστε την πρόσβαση στον αποθηκευτικό χώρο.",
|
||||||
"permission_storage_title": "Άδεια πρόσβαση στον αποθηκευτικό χώρο",
|
"permission_storage_title": "Άδεια πρόσβαση στον αποθηκευτικό χώρο",
|
||||||
|
@ -159,6 +169,7 @@
|
||||||
"about_license": "Άδεια χρήσης MIT",
|
"about_license": "Άδεια χρήσης MIT",
|
||||||
"about_release_notes": "Σημειώσεις κυκλοφορίας.",
|
"about_release_notes": "Σημειώσεις κυκλοφορίας.",
|
||||||
"about_review": "Γράψτε μια κριτική",
|
"about_review": "Γράψτε μια κριτική",
|
||||||
|
"performance_score": "Σκορ επιδόσεων: {num}",
|
||||||
"run_performance_test": "Δοκιμή επιδόσεων",
|
"run_performance_test": "Δοκιμή επιδόσεων",
|
||||||
"about_selftest": "Εκτέλεση διαγνωστικού ελέγχου",
|
"about_selftest": "Εκτέλεση διαγνωστικού ελέγχου",
|
||||||
"about_sm_github": "GitHub",
|
"about_sm_github": "GitHub",
|
||||||
|
@ -170,6 +181,7 @@
|
||||||
"biom_conf_identity": "Παρακαλώ επιβεβαιώστε την ταυτότητα σας.",
|
"biom_conf_identity": "Παρακαλώ επιβεβαιώστε την ταυτότητα σας.",
|
||||||
"currency": "Νόμισμα",
|
"currency": "Νόμισμα",
|
||||||
"currency_source": "Η τιμή προέρχεται από",
|
"currency_source": "Η τιμή προέρχεται από",
|
||||||
|
"default_title": "Στην έναρξη",
|
||||||
"default_wallets": "Προβολή όλων των πορτοφολιών",
|
"default_wallets": "Προβολή όλων των πορτοφολιών",
|
||||||
"electrum_connected": "Σε σύνδεση",
|
"electrum_connected": "Σε σύνδεση",
|
||||||
"electrum_connected_not": "Εκτός σύνδεσης",
|
"electrum_connected_not": "Εκτός σύνδεσης",
|
||||||
|
@ -208,6 +220,7 @@
|
||||||
"privacy": "Ιδιωτικότητα",
|
"privacy": "Ιδιωτικότητα",
|
||||||
"privacy_read_clipboard": "Ανάγνωση προχείρου",
|
"privacy_read_clipboard": "Ανάγνωση προχείρου",
|
||||||
"privacy_system_settings": "Ρυθμίσεις συστήματος",
|
"privacy_system_settings": "Ρυθμίσεις συστήματος",
|
||||||
|
"privacy_do_not_track": "Απενεργοποίηση ανάλυσης ",
|
||||||
"retype_password": "Ξαναδώσε τον κωδικό",
|
"retype_password": "Ξαναδώσε τον κωδικό",
|
||||||
"selfTest": "Διαγνωστικός έλεγχος",
|
"selfTest": "Διαγνωστικός έλεγχος",
|
||||||
"save": "Σώσε",
|
"save": "Σώσε",
|
||||||
|
@ -215,7 +228,11 @@
|
||||||
"total_balance": "Συνολικό υπόλοιπο",
|
"total_balance": "Συνολικό υπόλοιπο",
|
||||||
"tools": "Εργαλεία"
|
"tools": "Εργαλεία"
|
||||||
},
|
},
|
||||||
|
"notifications": {
|
||||||
|
"ask_me_later": "Να ερωτηθώ αργότερα."
|
||||||
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
|
"confirmations_lowercase": "{confirmations} επιβεβαιώσεις",
|
||||||
"copy_link": "Αντιγραφή συνδέσμου",
|
"copy_link": "Αντιγραφή συνδέσμου",
|
||||||
"expand_note": "Επέκταση σημείωσης",
|
"expand_note": "Επέκταση σημείωσης",
|
||||||
"cpfp_create": "Δημιουργία",
|
"cpfp_create": "Δημιουργία",
|
||||||
|
@ -227,6 +244,7 @@
|
||||||
"details_from": "Εισερχόμενες διευθύνσεις",
|
"details_from": "Εισερχόμενες διευθύνσεις",
|
||||||
"date": "Ημερομηνία",
|
"date": "Ημερομηνία",
|
||||||
"details_received": "Ελήφθη",
|
"details_received": "Ελήφθη",
|
||||||
|
"transaction_note_saved": "Η σημείωση συναλλαγής δημιουργήθηκε με επιτυχία",
|
||||||
"details_show_in_block_explorer": "Προβολή στον block explorer",
|
"details_show_in_block_explorer": "Προβολή στον block explorer",
|
||||||
"details_title": "Συναλλαγή",
|
"details_title": "Συναλλαγή",
|
||||||
"details_to": "Εξερχόμενες διευθύνσεις",
|
"details_to": "Εξερχόμενες διευθύνσεις",
|
||||||
|
@ -265,6 +283,8 @@
|
||||||
"details_yes_delete": "Ναι, διαγραφή",
|
"details_yes_delete": "Ναι, διαγραφή",
|
||||||
"export_title": "Εξαγωγή πορτοφολιού",
|
"export_title": "Εξαγωγή πορτοφολιού",
|
||||||
"import_do_import": "Εισήγαγε",
|
"import_do_import": "Εισήγαγε",
|
||||||
|
"import_passphrase": "Φράση κωδικός",
|
||||||
|
"import_passphrase_title": "Φράση κωδικός",
|
||||||
"import_error": "Η εισαγωγή απέτυχε. Παρακαλούμε σιγουρευτείτε ότι τα δεδομένα που εισάγετε είναι σωστά.",
|
"import_error": "Η εισαγωγή απέτυχε. Παρακαλούμε σιγουρευτείτε ότι τα δεδομένα που εισάγετε είναι σωστά.",
|
||||||
"import_imported": "Εισήχθη",
|
"import_imported": "Εισήχθη",
|
||||||
"import_scan_qr": "ή θέλεις θα σκανάρεις ένα QR code;",
|
"import_scan_qr": "ή θέλεις θα σκανάρεις ένα QR code;",
|
||||||
|
@ -272,6 +292,9 @@
|
||||||
"import_search_accounts": "Αναζήτηση λογαριασμών",
|
"import_search_accounts": "Αναζήτηση λογαριασμών",
|
||||||
"import_title": "Εισαγωγή",
|
"import_title": "Εισαγωγή",
|
||||||
"import_discovery_no_wallets": "Δεν βρέθηκε κανένα πορτοφόλι",
|
"import_discovery_no_wallets": "Δεν βρέθηκε κανένα πορτοφόλι",
|
||||||
|
"import_derivation_found": "Βρέθηκε",
|
||||||
|
"import_derivation_found_not": "Δεν βρέθηκε",
|
||||||
|
"import_derivation_unknown": "Άγνωστο",
|
||||||
"list_create_a_button": "Προσθήκη τώρα",
|
"list_create_a_button": "Προσθήκη τώρα",
|
||||||
"list_create_a_wallet": "Προσθέστε ένα πορτοφόλι",
|
"list_create_a_wallet": "Προσθέστε ένα πορτοφόλι",
|
||||||
"list_empty_txs1": "Οι συναλλαγές θα εμφανιστούν εδώ,",
|
"list_empty_txs1": "Οι συναλλαγές θα εμφανιστούν εδώ,",
|
||||||
|
@ -288,6 +311,7 @@
|
||||||
"multisig": {
|
"multisig": {
|
||||||
"multisig_vault": "Θησαυροφυλάκιο",
|
"multisig_vault": "Θησαυροφυλάκιο",
|
||||||
"provide_signature": "Παροχή υπογραφής",
|
"provide_signature": "Παροχή υπογραφής",
|
||||||
|
"fee_btc": "{number} BTC",
|
||||||
"confirm": "Επιβεβαίωση",
|
"confirm": "Επιβεβαίωση",
|
||||||
"header": "Αποστολή",
|
"header": "Αποστολή",
|
||||||
"share": "Δώσε",
|
"share": "Δώσε",
|
||||||
|
@ -296,20 +320,26 @@
|
||||||
"scan_or_import_file": "Σάρωση ή εισαγωγή αρχείου",
|
"scan_or_import_file": "Σάρωση ή εισαγωγή αρχείου",
|
||||||
"lets_start": "Ας ξεκινήσουμε",
|
"lets_start": "Ας ξεκινήσουμε",
|
||||||
"create": "Δημιούργησε",
|
"create": "Δημιούργησε",
|
||||||
|
"native_segwit_title": "Καλές πρακτικές",
|
||||||
|
"co_sign_transaction": "Υπογραφή μιας συναλλαγής",
|
||||||
|
"what_is_vault_wallet": "πορτοφόλι.",
|
||||||
"wallet_type": "Τύπος πορτοφολιου",
|
"wallet_type": "Τύπος πορτοφολιου",
|
||||||
"create_new_key": "Δημιουργία νέου",
|
"create_new_key": "Δημιουργία νέου",
|
||||||
"scan_or_open_file": "Σάρωση ή άνοιγμα αρχείου",
|
"scan_or_open_file": "Σάρωση ή άνοιγμα αρχείου",
|
||||||
"ms_help": "Βοήθεια"
|
"ms_help": "Βοήθεια"
|
||||||
},
|
},
|
||||||
"is_it_my_address": {
|
"is_it_my_address": {
|
||||||
|
"title": "Είναι δική μου διεύθυνση;",
|
||||||
"enter_address": "Εισαγωγή διεύθυνσης",
|
"enter_address": "Εισαγωγή διεύθυνσης",
|
||||||
"check_address": "Έλεγχος διεύθυνσης"
|
"check_address": "Έλεγχος διεύθυνσης",
|
||||||
|
"view_qrcode": "Προβολή κωδικού QR"
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Αλλαγή"
|
"change": "Αλλαγή"
|
||||||
},
|
},
|
||||||
"units": {
|
"units": {
|
||||||
"BTC": "BTC",
|
"BTC": "BTC",
|
||||||
|
"MAX": "Μέγιστο",
|
||||||
"sat_vbyte": "sat/vByte",
|
"sat_vbyte": "sat/vByte",
|
||||||
"sats": "sats"
|
"sats": "sats"
|
||||||
},
|
},
|
||||||
|
@ -329,6 +359,8 @@
|
||||||
},
|
},
|
||||||
"bip47": {
|
"bip47": {
|
||||||
"payment_code": "Κωδικός πληρωμής",
|
"payment_code": "Κωδικός πληρωμής",
|
||||||
"payment_codes_list": "Λίστα κωδικών πληρωμής"
|
"payment_codes_list": "Λίστα κωδικών πληρωμής",
|
||||||
|
"who_can_pay_me": "Ποιος μπορεί να με πληρώσει:",
|
||||||
|
"not_found": "Ο κωδικός πληρωμής δεν βρέθηκε"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
"success": "Success",
|
"success": "Success",
|
||||||
"wallet_key": "Wallet key",
|
"wallet_key": "Wallet key",
|
||||||
"invalid_animated_qr_code_fragment": "Invalid animated QR Code fragment. Please try again.",
|
"invalid_animated_qr_code_fragment": "Invalid animated QR Code fragment. Please try again.",
|
||||||
"file_saved": "File {filePath} has been saved in your {destination}.",
|
|
||||||
"downloads_folder": "Downloads Folder",
|
|
||||||
"close": "Close",
|
"close": "Close",
|
||||||
"change_input_currency": "Change input currency",
|
"change_input_currency": "Change input currency",
|
||||||
"refresh": "Refresh",
|
"refresh": "Refresh",
|
||||||
|
@ -464,7 +462,8 @@
|
||||||
"warning_do_not_disclose": "Warning! Do not disclose.",
|
"warning_do_not_disclose": "Warning! Do not disclose.",
|
||||||
"add_ln_wallet_first": "You must first add a Lightning wallet.",
|
"add_ln_wallet_first": "You must first add a Lightning wallet.",
|
||||||
"identity_pubkey": "Identity Pubkey",
|
"identity_pubkey": "Identity Pubkey",
|
||||||
"xpub_title": "Wallet XPUB"
|
"xpub_title": "Wallet XPUB",
|
||||||
|
"search_wallets": "Search Wallets"
|
||||||
},
|
},
|
||||||
"multisig": {
|
"multisig": {
|
||||||
"multisig_vault": "Vault",
|
"multisig_vault": "Vault",
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
"success": "Éxito",
|
"success": "Éxito",
|
||||||
"wallet_key": "Clave de la billetera",
|
"wallet_key": "Clave de la billetera",
|
||||||
"invalid_animated_qr_code_fragment": "Fragmento de código QR animado no válido. Inténtalo de nuevo.",
|
"invalid_animated_qr_code_fragment": "Fragmento de código QR animado no válido. Inténtalo de nuevo.",
|
||||||
"file_saved": "El archivo {filePath} se ha guardado en tu {destination}.",
|
|
||||||
"downloads_folder": "Carpeta de descargas",
|
|
||||||
"close": "Cerrar",
|
"close": "Cerrar",
|
||||||
"change_input_currency": "Cambiar moneda de entrada",
|
"change_input_currency": "Cambiar moneda de entrada",
|
||||||
"refresh": "Actualizar",
|
"refresh": "Actualizar",
|
||||||
|
|
|
@ -14,10 +14,7 @@
|
||||||
"save": "Tallenna",
|
"save": "Tallenna",
|
||||||
"seed": "Siemen",
|
"seed": "Siemen",
|
||||||
"success": "Onnistui",
|
"success": "Onnistui",
|
||||||
"wallet_key": "Lompakkoavain",
|
"wallet_key": "Lompakkoavain"
|
||||||
"invalid_animated_qr_code_fragment": "Virheellinen animoitu QRCode-fragmentti, yritä uudelleen",
|
|
||||||
"file_saved": "Tiedosto {filePath} on talletettu sinun {destination}.",
|
|
||||||
"downloads_folder": "Lataukset-kansio"
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "Hälytys"
|
"default": "Hälytys"
|
||||||
|
@ -49,17 +46,15 @@
|
||||||
"claim_balance": "Lunasta saldo {balance}",
|
"claim_balance": "Lunasta saldo {balance}",
|
||||||
"close_channel": "Sulje kanava",
|
"close_channel": "Sulje kanava",
|
||||||
"new_channel": "Uusi kanava",
|
"new_channel": "Uusi kanava",
|
||||||
"errorInvoiceExpired": "Lasku vanheni",
|
|
||||||
"force_close_channel": "Pakota kanavan sulku?",
|
"force_close_channel": "Pakota kanavan sulku?",
|
||||||
"expired": "Erääntynyt",
|
"expired": "Erääntynyt",
|
||||||
"node_alias": "Solmun lempinimi",
|
"node_alias": "Solmun lempinimi",
|
||||||
"expiresIn": "Vanhenee {time} minuutissa",
|
"expiresIn": "Vanhenee {time} minuutissa",
|
||||||
"payButton": "Maksa",
|
"payButton": "Maksa",
|
||||||
"open_channel": "Avaa kanava",
|
"open_channel": "Avaa kanava",
|
||||||
"funding_amount_placeholder": "Rahoitettava määrä, esimerkiksi 0.001",
|
|
||||||
"opening_channnel_for_from": "Ota rahoitus {fromWalletLabel}:sta kanavan avaamiseksi lompakkoon {forWalletLabel}",
|
"opening_channnel_for_from": "Ota rahoitus {fromWalletLabel}:sta kanavan avaamiseksi lompakkoon {forWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Oletko varma että haluat avata tämän kanavan?",
|
"are_you_sure_open_channel": "Oletko varma että haluat avata tämän kanavan?",
|
||||||
"potentialFee": "Mahdollinen siirtomaksu: {fee}",
|
"potentialFee": "Mahdollinen siirtokulu: {fee}",
|
||||||
"remote_host": "Etäpalvelin",
|
"remote_host": "Etäpalvelin",
|
||||||
"refill": "Täytä",
|
"refill": "Täytä",
|
||||||
"reconnect_peer": "Palauta yhteys naapuriin",
|
"reconnect_peer": "Palauta yhteys naapuriin",
|
||||||
|
@ -79,7 +74,6 @@
|
||||||
"open_direct_channel": "Avaa suora kanava tällä solmulla:",
|
"open_direct_channel": "Avaa suora kanava tällä solmulla:",
|
||||||
"please_pay_between_and": "Maksa vähintään {min} ja enintään {max}",
|
"please_pay_between_and": "Maksa vähintään {min} ja enintään {max}",
|
||||||
"please_pay": "Ole hyvä ja maksa",
|
"please_pay": "Ole hyvä ja maksa",
|
||||||
"preimage": "Alkukuva",
|
|
||||||
"sats": "sattia",
|
"sats": "sattia",
|
||||||
"wasnt_paid_and_expired": "Tätä laskua ei maksettu, ja se on vanhentunut."
|
"wasnt_paid_and_expired": "Tätä laskua ei maksettu, ja se on vanhentunut."
|
||||||
},
|
},
|
||||||
|
@ -97,10 +91,8 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Oletko tallentanut lompakon varmuuskopion? Tämä varmuuskopio vaaditaan varojen käyttämiseen, jos kadotat tämän laitteen. Ilman varmuuskopiota varat menetetään lopullisesti.",
|
"ask": "Oletko tallentanut lompakon varmuuskopion? Tämä varmuuskopio vaaditaan varojen käyttämiseen, jos kadotat tämän laitteen. Ilman varmuuskopiota varat menetetään lopullisesti.",
|
||||||
"ask_no": "Ei, en ole",
|
"ok": "Ok, kirjoitin sen ylös",
|
||||||
"ask_yes": "Kyllä, olen",
|
"ok_lnd": "OK, olen tallentanut sen.",
|
||||||
"ok": "OK, kirjoitin sen ylös",
|
|
||||||
"ok_lnd": "OK, Olen tallettanut sen",
|
|
||||||
"text": "Varaa hetki aikaa ja kirjoita palautuslause (mnemonic) talteen paperille.\nSe on varmuuskopiosi ja voit käyttää sitä lompakon palauttamiseen.",
|
"text": "Varaa hetki aikaa ja kirjoita palautuslause (mnemonic) talteen paperille.\nSe on varmuuskopiosi ja voit käyttää sitä lompakon palauttamiseen.",
|
||||||
"text_lnd": "Tallenna tämä lompakon varmuuskopio. Sen avulla voit palauttaa lompakon, jos lompakko katoaa.",
|
"text_lnd": "Tallenna tämä lompakon varmuuskopio. Sen avulla voit palauttaa lompakon, jos lompakko katoaa.",
|
||||||
"title": "Lompakkosi on luotu"
|
"title": "Lompakkosi on luotu"
|
||||||
|
@ -151,7 +143,6 @@
|
||||||
"details_create": "Luo Lasku",
|
"details_create": "Luo Lasku",
|
||||||
"details_error_decode": "Bitcoin-osoitetta ei voida dekoodata ",
|
"details_error_decode": "Bitcoin-osoitetta ei voida dekoodata ",
|
||||||
"details_fee_field_is_not_valid": "Siirtomaksu ei ole pätevä",
|
"details_fee_field_is_not_valid": "Siirtomaksu ei ole pätevä",
|
||||||
"details_frozen": "{amount} BTC on jäädytetty",
|
|
||||||
"details_next": "Seuraava",
|
"details_next": "Seuraava",
|
||||||
"details_no_signed_tx": "Valittu tiedosto ei sisällä tuotavaa siirtotapahtumaa.",
|
"details_no_signed_tx": "Valittu tiedosto ei sisällä tuotavaa siirtotapahtumaa.",
|
||||||
"details_note_placeholder": "muistiinpano itselle",
|
"details_note_placeholder": "muistiinpano itselle",
|
||||||
|
@ -183,7 +174,6 @@
|
||||||
"permission_camera_message": "Tarvitsemme lupasi kameran käyttöön",
|
"permission_camera_message": "Tarvitsemme lupasi kameran käyttöön",
|
||||||
"psbt_sign": "Allekirjoita siirtotapahtuma",
|
"psbt_sign": "Allekirjoita siirtotapahtuma",
|
||||||
"open_settings": "Avaa Asetukset",
|
"open_settings": "Avaa Asetukset",
|
||||||
"permission_storage_later": "Kysy Minulta Myöhemmin",
|
|
||||||
"permission_storage_message": "BlueWallet tarvitsee lupasi käyttääkseen tallennustilaasi tämän tiedoston tallentamiseksi.",
|
"permission_storage_message": "BlueWallet tarvitsee lupasi käyttääkseen tallennustilaasi tämän tiedoston tallentamiseksi.",
|
||||||
"permission_storage_denied_message": "BlueWallet ei voinut tallettaa tätä tiedostoa. Aseta laitteesi sallimaan tallentaminen kyttkemällä Storage Permission päälle.",
|
"permission_storage_denied_message": "BlueWallet ei voinut tallettaa tätä tiedostoa. Aseta laitteesi sallimaan tallentaminen kyttkemällä Storage Permission päälle.",
|
||||||
"permission_storage_title": "Tallennustilan käyttöoikeus",
|
"permission_storage_title": "Tallennustilan käyttöoikeus",
|
||||||
|
@ -194,7 +184,6 @@
|
||||||
"outdated_rate": "Vaihtokurssi päivitettiin viimeksi: {date}",
|
"outdated_rate": "Vaihtokurssi päivitettiin viimeksi: {date}",
|
||||||
"psbt_tx_open": "Avaa allekirjoitettu siirtotapahtuma",
|
"psbt_tx_open": "Avaa allekirjoitettu siirtotapahtuma",
|
||||||
"psbt_tx_scan": "Skannaa allekirjoitettu siirtotapahtuma",
|
"psbt_tx_scan": "Skannaa allekirjoitettu siirtotapahtuma",
|
||||||
"qr_error_no_qrcode": "Kuvasta ei löytynyt QR-koodia. Varmista että kuva sisältää ainoastaan QR-koodin eikä muita tietoja kuten tekstia tai nappeja.",
|
|
||||||
"reset_amount": "Nollaa määrä",
|
"reset_amount": "Nollaa määrä",
|
||||||
"reset_amount_confirm": "Haluaisitko nollata määrän?",
|
"reset_amount_confirm": "Haluaisitko nollata määrän?",
|
||||||
"success_done": "Valmis",
|
"success_done": "Valmis",
|
||||||
|
@ -233,7 +222,6 @@
|
||||||
"default_wallets": "Näytä Kaikki Lompakot",
|
"default_wallets": "Näytä Kaikki Lompakot",
|
||||||
"electrum_connected": "Yhdistetty",
|
"electrum_connected": "Yhdistetty",
|
||||||
"electrum_connected_not": "Ei yhteyttä",
|
"electrum_connected_not": "Ei yhteyttä",
|
||||||
"electrum_error_connect": "Ei voida yhdistää tarjottuun Electrum-palvelimeen",
|
|
||||||
"lndhub_uri": "esim, {example}",
|
"lndhub_uri": "esim, {example}",
|
||||||
"electrum_host": "esim, {example}",
|
"electrum_host": "esim, {example}",
|
||||||
"electrum_offline_mode": "Offline-tila",
|
"electrum_offline_mode": "Offline-tila",
|
||||||
|
@ -291,7 +279,6 @@
|
||||||
"privacy_read_clipboard": "Lue Leikepöytä",
|
"privacy_read_clipboard": "Lue Leikepöytä",
|
||||||
"privacy_system_settings": "Järjestelmäasetukset",
|
"privacy_system_settings": "Järjestelmäasetukset",
|
||||||
"privacy_quickactions": "Lompakon Pikanäppäimet",
|
"privacy_quickactions": "Lompakon Pikanäppäimet",
|
||||||
"privacy_quickactions_explanation": "Kosketa ja pidä Aloitusnäytön BlueWallet-sovelluskuvaketta nähdäksesi nopeasti lompakon saldon.",
|
|
||||||
"privacy_clipboard_explanation": "Toimita pikakuvakkeet, jos leikepöydältä löytyy osoite tai lasku.",
|
"privacy_clipboard_explanation": "Toimita pikakuvakkeet, jos leikepöydältä löytyy osoite tai lasku.",
|
||||||
"privacy_do_not_track": "Poista analytiikka käytöstä",
|
"privacy_do_not_track": "Poista analytiikka käytöstä",
|
||||||
"privacy_do_not_track_explanation": "Suorituskyky- ja luotettavuustietoja ei lähtetä analysoitavaksi.",
|
"privacy_do_not_track_explanation": "Suorituskyky- ja luotettavuustietoja ei lähtetä analysoitavaksi.",
|
||||||
|
@ -301,16 +288,13 @@
|
||||||
"selfTest": "Itsetestaus ",
|
"selfTest": "Itsetestaus ",
|
||||||
"save": "Tallenna",
|
"save": "Tallenna",
|
||||||
"saved": "Tallennettu",
|
"saved": "Tallennettu",
|
||||||
"success_transaction_broadcasted": "Siirtotapahtumasi on lähetetty onnistuneesti.",
|
|
||||||
"total_balance": "Kokonaissaldo",
|
"total_balance": "Kokonaissaldo",
|
||||||
"total_balance_explanation": "Näytä kaikkien lompakoiden kokonaissaldo aloitusnäytön widgeteissä.",
|
"total_balance_explanation": "Näytä kaikkien lompakoiden kokonaissaldo aloitusnäytön widgeteissä.",
|
||||||
"widgets": "Widgetit",
|
"widgets": "Widgetit",
|
||||||
"tools": "Työkalut"
|
"tools": "Työkalut"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Haluatko saada ilmoituksia, kun saat saapuvia maksuja?",
|
"would_you_like_to_receive_notifications": "Haluatko saada ilmoituksia, kun saat saapuvia maksuja?"
|
||||||
"no_and_dont_ask": "En, ja Älä Kysy Minulta Uudelleen",
|
|
||||||
"ask_me_later": "Kysy Minulta Myöhemmin"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Korvaamme tämän siirtotapahtuman sellaisella, joka maksaa sinulle ja jossa on korkeammat siirtomaksut. Tämä käytännössä peruuttaa nykyisen siirtotapahtuman. Tätä kutsutaan nimellä RBF-Replace by Fee.",
|
"cancel_explain": "Korvaamme tämän siirtotapahtuman sellaisella, joka maksaa sinulle ja jossa on korkeammat siirtomaksut. Tämä käytännössä peruuttaa nykyisen siirtotapahtuman. Tätä kutsutaan nimellä RBF-Replace by Fee.",
|
||||||
|
@ -383,7 +367,6 @@
|
||||||
"details_advanced": "Edistynyt",
|
"details_advanced": "Edistynyt",
|
||||||
"details_are_you_sure": "Oletko varma?",
|
"details_are_you_sure": "Oletko varma?",
|
||||||
"details_connected_to": "Yhdistetty",
|
"details_connected_to": "Yhdistetty",
|
||||||
"details_del_wb_err": "Annettu saldo ei vastaa tämän lompakon saldoa. Yritä uudelleen",
|
|
||||||
"details_del_wb_q": "Lompakossa on varoja. Ennenkuin jatkat, ymmärrä että tarvitset lompakon palautukseen tulevaisuudeessa palautuslauseen. Varmistaaksemme ettet tuhoa lompakkoa vahingossa, tulee sinun syöttää saldosi {balance} satosheina.",
|
"details_del_wb_q": "Lompakossa on varoja. Ennenkuin jatkat, ymmärrä että tarvitset lompakon palautukseen tulevaisuudeessa palautuslauseen. Varmistaaksemme ettet tuhoa lompakkoa vahingossa, tulee sinun syöttää saldosi {balance} satosheina.",
|
||||||
"details_delete": "Poista",
|
"details_delete": "Poista",
|
||||||
"details_delete_wallet": "Poista lompakko",
|
"details_delete_wallet": "Poista lompakko",
|
||||||
|
@ -420,16 +403,9 @@
|
||||||
"import_discovery_subtitle": "Valitse löydetty lompakko",
|
"import_discovery_subtitle": "Valitse löydetty lompakko",
|
||||||
"import_discovery_derivation": "Vaihtoehtoinen derivation path",
|
"import_discovery_derivation": "Vaihtoehtoinen derivation path",
|
||||||
"import_discovery_no_wallets": "Lompakkoja ei löytynyt",
|
"import_discovery_no_wallets": "Lompakkoja ei löytynyt",
|
||||||
"import_derivation_found": "löytyi",
|
|
||||||
"import_derivation_found_not": "ei löytynyt",
|
|
||||||
"import_derivation_loading": "ladataan...",
|
|
||||||
"import_derivation_subtitle": "Syötä vaihtoehtoinen derivation path, niin yritämme etsiä lompakkosi",
|
|
||||||
"import_derivation_title": "Derivation path",
|
"import_derivation_title": "Derivation path",
|
||||||
"import_derivation_unknown": "tuntematon",
|
|
||||||
"import_wrong_path": "Väärä derivation path",
|
|
||||||
"list_create_a_button": "Lisää nyt",
|
"list_create_a_button": "Lisää nyt",
|
||||||
"list_create_a_wallet": "Lisää lompakko",
|
"list_create_a_wallet": "Lisää lompakko",
|
||||||
"list_create_a_wallet_text": "Se on ilmainen ja voit luoda\nniin monta kuin haluat",
|
|
||||||
"list_empty_txs1": "Siirtotapahtumasi näkyvät tässä,",
|
"list_empty_txs1": "Siirtotapahtumasi näkyvät tässä,",
|
||||||
"list_empty_txs1_lightning": "Salamalompakkoa voit käyttää päivittäisiin siirtoihin. Siirtomaksut ovat kohtuuttoman halvat ja se toimii todella nopeasti.",
|
"list_empty_txs1_lightning": "Salamalompakkoa voit käyttää päivittäisiin siirtoihin. Siirtomaksut ovat kohtuuttoman halvat ja se toimii todella nopeasti.",
|
||||||
"list_empty_txs2": "Aloita lompakostasi. ",
|
"list_empty_txs2": "Aloita lompakostasi. ",
|
||||||
|
@ -494,20 +470,14 @@
|
||||||
"quorum_header": "Quorum",
|
"quorum_header": "Quorum",
|
||||||
"of": "n",
|
"of": "n",
|
||||||
"wallet_type": "Lompakon tyyppi",
|
"wallet_type": "Lompakon tyyppi",
|
||||||
"invalid_mnemonics": "Tämä muistilauseke ei näytä olevan pätevä",
|
|
||||||
"invalid_cosigner": "Virheellinen kanssa-allekirjoittajan tieto",
|
|
||||||
"not_a_multisignature_xpub": "Tämä ei ole xpub multisignature-lompakosta!",
|
"not_a_multisignature_xpub": "Tämä ei ole xpub multisignature-lompakosta!",
|
||||||
"invalid_cosigner_format": "Virheellinen allekirjoittaja: tämä ei ole muodon {format} allekirjoittaja",
|
|
||||||
"create_new_key": "Luo Uusi",
|
"create_new_key": "Luo Uusi",
|
||||||
"scan_or_open_file": "Skannaa tai avaa tiedosto",
|
"scan_or_open_file": "Skannaa tai avaa tiedosto",
|
||||||
"i_have_mnemonics": "Minulla on siemen tälle avaimelle...",
|
"i_have_mnemonics": "Minulla on siemen tälle avaimelle...",
|
||||||
"type_your_mnemonics": "Lisää siemen tuodaksesi Vault-avaimesi",
|
"type_your_mnemonics": "Lisää siemen tuodaksesi Vault-avaimesi",
|
||||||
"this_is_cosigners_xpub": "Tämä on allekirjoittajan xpub, joka on valmis tuotavaksi toiseen lompakkoon. On turvallista jakaa se.",
|
|
||||||
"wallet_key_created": "Vault-avaimesi luotiin. Käytä hetki muistisanojen turvalliseen varmuuskopioimiseen",
|
"wallet_key_created": "Vault-avaimesi luotiin. Käytä hetki muistisanojen turvalliseen varmuuskopioimiseen",
|
||||||
"are_you_sure_seed_will_be_lost": "Oletko varma? Muistisiemenesi menetetään, jos sinulla ei ole varmuuskopiota",
|
"are_you_sure_seed_will_be_lost": "Oletko varma? Muistisiemenesi menetetään, jos sinulla ei ole varmuuskopiota",
|
||||||
"forget_this_seed": "Unohda tämä siemen ja käytä XPUB:ia",
|
"forget_this_seed": "Unohda tämä siemen ja käytä XPUB:ia",
|
||||||
"view_edit_cosigners": "Tarkastele/muokkaa allekirjoittajia",
|
|
||||||
"this_cosigner_is_already_imported": "Tämä allekirjoittaja on jo tuotu.",
|
|
||||||
"export_signed_psbt": "Vie Allekirjoitettu PSBT",
|
"export_signed_psbt": "Vie Allekirjoitettu PSBT",
|
||||||
"input_fp": "Syötä sormenjälki",
|
"input_fp": "Syötä sormenjälki",
|
||||||
"input_fp_explain": "ohita käyttääksesi oletusarvoa (00000000)",
|
"input_fp_explain": "ohita käyttääksesi oletusarvoa (00000000)",
|
||||||
|
@ -532,14 +502,12 @@
|
||||||
"owns": "{label} omistaa {address}",
|
"owns": "{label} omistaa {address}",
|
||||||
"enter_address": "Syötä osoite",
|
"enter_address": "Syötä osoite",
|
||||||
"check_address": "Tarkista osoite",
|
"check_address": "Tarkista osoite",
|
||||||
"no_wallet_owns_address": "Mikään käytettävissä olevista lompakoista ei omista annettua osoitetta.",
|
"no_wallet_owns_address": "Mikään käytettävissä olevista lompakoista ei omista annettua osoitetta."
|
||||||
"view_qrcode": "Näytä QR-koodi"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "vaihto",
|
"change": "vaihto",
|
||||||
"coins_selected": "Kolikot valittu ({number})",
|
"coins_selected": "Kolikot valittu ({number})",
|
||||||
"selected_summ": "{value} valittuna",
|
"selected_summ": "{value} valittuna",
|
||||||
"empty": "Tässä lompakossa ei ole tällä hetkellä kolikoita",
|
|
||||||
"freeze": "jäädytä",
|
"freeze": "jäädytä",
|
||||||
"freezeLabel": "Jäädytä",
|
"freezeLabel": "Jäädytä",
|
||||||
"freezeLabel_un": "Vapauta",
|
"freezeLabel_un": "Vapauta",
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
"seed": "Graine",
|
"seed": "Graine",
|
||||||
"success": "Succès",
|
"success": "Succès",
|
||||||
"wallet_key": "Clé du portefeuille",
|
"wallet_key": "Clé du portefeuille",
|
||||||
"invalid_animated_qr_code_fragment": "Fragment du QR Code animé invalide. Veuillez réessayer.",
|
|
||||||
"file_saved": "Le fichier {filePath} a été enregistré dans votre {destination}.",
|
|
||||||
"downloads_folder": "Dossier des téléchargements",
|
|
||||||
"pick_file": "Choisir un fichier",
|
"pick_file": "Choisir un fichier",
|
||||||
"enter_amount": "Entrer un montant"
|
"enter_amount": "Entrer un montant"
|
||||||
},
|
},
|
||||||
|
@ -51,7 +48,6 @@
|
||||||
"claim_balance": "Réclamer le solde {balance}",
|
"claim_balance": "Réclamer le solde {balance}",
|
||||||
"close_channel": "Fermer le canal",
|
"close_channel": "Fermer le canal",
|
||||||
"new_channel": "Nouveau canal",
|
"new_channel": "Nouveau canal",
|
||||||
"errorInvoiceExpired": "Requête expirée",
|
|
||||||
"force_close_channel": "Forcer la fermeture du canal ?",
|
"force_close_channel": "Forcer la fermeture du canal ?",
|
||||||
"expired": "Expiré",
|
"expired": "Expiré",
|
||||||
"node_alias": "Alias du node",
|
"node_alias": "Alias du node",
|
||||||
|
@ -59,7 +55,6 @@
|
||||||
"payButton": "Payer",
|
"payButton": "Payer",
|
||||||
"placeholder": "Facture ou adresse",
|
"placeholder": "Facture ou adresse",
|
||||||
"open_channel": "Ouverture canal",
|
"open_channel": "Ouverture canal",
|
||||||
"funding_amount_placeholder": "Montant financement, par exemple 0,001",
|
|
||||||
"opening_channnel_for_from": "Canal d'ouverture pour le portefeuille {forWalletLabel}, financement depuis {fromWalletLabel}",
|
"opening_channnel_for_from": "Canal d'ouverture pour le portefeuille {forWalletLabel}, financement depuis {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Etes vous sûre de vouloir ouvrir ce canal?",
|
"are_you_sure_open_channel": "Etes vous sûre de vouloir ouvrir ce canal?",
|
||||||
"potentialFee": "Frais potentiels : {fee}",
|
"potentialFee": "Frais potentiels : {fee}",
|
||||||
|
@ -69,7 +64,7 @@
|
||||||
"refill_create": "Pour continuer, veuillez créer un portefeuille Bitcoin à partir duquel déposer des fonds.",
|
"refill_create": "Pour continuer, veuillez créer un portefeuille Bitcoin à partir duquel déposer des fonds.",
|
||||||
"refill_external": "Déposer des fonds depuis un portefeuille externe",
|
"refill_external": "Déposer des fonds depuis un portefeuille externe",
|
||||||
"refill_lnd_balance": "Déposer des fonds dans votre portfeuille Lightning",
|
"refill_lnd_balance": "Déposer des fonds dans votre portfeuille Lightning",
|
||||||
"sameWalletAsInvoiceError": "Vous ne pouvez pas payer une facture avec le même porte-feuille qui la crée",
|
"sameWalletAsInvoiceError": "Vous ne pouvez pas payer une facture avec le même portefeuille utilisé pour la créer.",
|
||||||
"title": "gérer vos fonds",
|
"title": "gérer vos fonds",
|
||||||
"can_send": "Peut envoyer",
|
"can_send": "Peut envoyer",
|
||||||
"can_receive": "Peut recevoir",
|
"can_receive": "Peut recevoir",
|
||||||
|
@ -82,7 +77,6 @@
|
||||||
"open_direct_channel": "Ouvrir un canal direct avec ce noeud :",
|
"open_direct_channel": "Ouvrir un canal direct avec ce noeud :",
|
||||||
"please_pay_between_and": "Veuillez payer entre {min} et {max}",
|
"please_pay_between_and": "Veuillez payer entre {min} et {max}",
|
||||||
"please_pay": "Veuillez payer",
|
"please_pay": "Veuillez payer",
|
||||||
"preimage": "Préimage",
|
|
||||||
"sats": "sats",
|
"sats": "sats",
|
||||||
"wasnt_paid_and_expired": "Cette requête n'a pas été réglée et a expiré"
|
"wasnt_paid_and_expired": "Cette requête n'a pas été réglée et a expiré"
|
||||||
},
|
},
|
||||||
|
@ -100,13 +94,11 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Avez-vous noté la phrase de sauvegarde de votre portefeuille ? Cette phrase de sauvegarde est nécessaire pour accéder à vos fonds en cas de perte de votre appareil. Sans ce backup, vos fonds pourraient être perdus pour toujours.",
|
"ask": "Avez-vous noté la phrase de sauvegarde de votre portefeuille ? Cette phrase de sauvegarde est nécessaire pour accéder à vos fonds en cas de perte de votre appareil. Sans ce backup, vos fonds pourraient être perdus pour toujours.",
|
||||||
"ask_no": "Non",
|
"ok": "Ok, Je l'ai écrite sur un papier.",
|
||||||
"ask_yes": "Oui",
|
|
||||||
"ok": "OK, je l'ai notée !",
|
|
||||||
"ok_lnd": "OK, je l'ai sauvegardée.",
|
"ok_lnd": "OK, je l'ai sauvegardée.",
|
||||||
"text": "Veuillez prendre un moment pour noter cette phrase de sauvegarde sur papier.\nC'est votre backup et vous pouvez l'utiliser pour restaurer votre portefeuille.",
|
"text": "Veuillez prendre un moment pour noter cette phrase de sauvegarde sur papier.\nC'est votre backup et vous pouvez l'utiliser pour restaurer votre portefeuille.",
|
||||||
"text_lnd": "Veuillez sauvegarder cette sauvegarde de portefeuille. Elle vous permettra de restaurer le portefeuille en cas de perte.",
|
"text_lnd": "Veuillez sauvegarder cette sauvegarde de portefeuille. Elle vous permettra de restaurer le portefeuille en cas de perte.",
|
||||||
"title": "Votre portefeuille a été créé"
|
"title": "Votre portefeuille est créé"
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Créer",
|
"details_create": "Créer",
|
||||||
|
@ -154,7 +146,6 @@
|
||||||
"details_create": "Créer la requête",
|
"details_create": "Créer la requête",
|
||||||
"details_error_decode": "Impossible de décoder l'adresse bitcoin",
|
"details_error_decode": "Impossible de décoder l'adresse bitcoin",
|
||||||
"details_fee_field_is_not_valid": "Champ frais invalide",
|
"details_fee_field_is_not_valid": "Champ frais invalide",
|
||||||
"details_frozen": "{amount} BTC est gelé",
|
|
||||||
"details_next": "Suivant",
|
"details_next": "Suivant",
|
||||||
"details_no_signed_tx": "Le fichier sélectionné ne contient pas de transaction pouvant être importée.",
|
"details_no_signed_tx": "Le fichier sélectionné ne contient pas de transaction pouvant être importée.",
|
||||||
"details_note_placeholder": "note à moi même (optionnelle)",
|
"details_note_placeholder": "note à moi même (optionnelle)",
|
||||||
|
@ -186,7 +177,6 @@
|
||||||
"permission_camera_message": "Nous avons besoin de votre permission pour utiliser l'appareil photo",
|
"permission_camera_message": "Nous avons besoin de votre permission pour utiliser l'appareil photo",
|
||||||
"psbt_sign": "Signer une transaction",
|
"psbt_sign": "Signer une transaction",
|
||||||
"open_settings": "Ouvrir les paramètres",
|
"open_settings": "Ouvrir les paramètres",
|
||||||
"permission_storage_later": "Redemander Plus Tard",
|
|
||||||
"permission_storage_message": "BlueWallet a besoin de votre permission pour accéder a votre stockage pour enregistrer ce fichier.",
|
"permission_storage_message": "BlueWallet a besoin de votre permission pour accéder a votre stockage pour enregistrer ce fichier.",
|
||||||
"permission_storage_denied_message": "BlueWallet est incapable d'enregistrer ce fichier. Veuillez ouvrir les paramètres de votre appareil et activer les autorisation de stockage.",
|
"permission_storage_denied_message": "BlueWallet est incapable d'enregistrer ce fichier. Veuillez ouvrir les paramètres de votre appareil et activer les autorisation de stockage.",
|
||||||
"permission_storage_title": "Permission d'accès au stockage pour BlueWallet",
|
"permission_storage_title": "Permission d'accès au stockage pour BlueWallet",
|
||||||
|
@ -197,7 +187,6 @@
|
||||||
"outdated_rate": "Les taux ont été mis a jour: {date}",
|
"outdated_rate": "Les taux ont été mis a jour: {date}",
|
||||||
"psbt_tx_open": "Ouvrir la transaction signée",
|
"psbt_tx_open": "Ouvrir la transaction signée",
|
||||||
"psbt_tx_scan": "Scanner la transaction signée",
|
"psbt_tx_scan": "Scanner la transaction signée",
|
||||||
"qr_error_no_qrcode": "Impossible de trouver un QR code dans l'image sélectionnée. Assurez-vous que l'image contienne uniquement un QR code et pas de contenu additionnel comme du texte ou des boutons.",
|
|
||||||
"reset_amount": "Annuler le montant",
|
"reset_amount": "Annuler le montant",
|
||||||
"reset_amount_confirm": "Voulez vous réinitialiser le montant ?",
|
"reset_amount_confirm": "Voulez vous réinitialiser le montant ?",
|
||||||
"success_done": "Terminé",
|
"success_done": "Terminé",
|
||||||
|
@ -234,7 +223,6 @@
|
||||||
"default_wallets": "Voir tous les portefeuilles",
|
"default_wallets": "Voir tous les portefeuilles",
|
||||||
"electrum_connected": "Connecté",
|
"electrum_connected": "Connecté",
|
||||||
"electrum_connected_not": "Déconnecté",
|
"electrum_connected_not": "Déconnecté",
|
||||||
"electrum_error_connect": "Impossible de se connecter au serveur Electrum fourni",
|
|
||||||
"lndhub_uri": "Par exemple, {example}",
|
"lndhub_uri": "Par exemple, {example}",
|
||||||
"electrum_host": "Par exemple, {example}",
|
"electrum_host": "Par exemple, {example}",
|
||||||
"electrum_offline_mode": "Mode hors-ligne",
|
"electrum_offline_mode": "Mode hors-ligne",
|
||||||
|
@ -292,7 +280,6 @@
|
||||||
"privacy_read_clipboard": "Lecture du presse-papier ",
|
"privacy_read_clipboard": "Lecture du presse-papier ",
|
||||||
"privacy_system_settings": "Paramètres système",
|
"privacy_system_settings": "Paramètres système",
|
||||||
"privacy_quickactions": "Raccourci Portefeuille",
|
"privacy_quickactions": "Raccourci Portefeuille",
|
||||||
"privacy_quickactions_explanation": "Touchez et maintenez l'icone BlueWallet sur votre écran d'accueil pour voir rapidement le solde de vos portefeuilles.",
|
|
||||||
"privacy_clipboard_explanation": "Fourni un raccourci si une adresse ou une facture est trouvée dans le presse-papier.",
|
"privacy_clipboard_explanation": "Fourni un raccourci si une adresse ou une facture est trouvée dans le presse-papier.",
|
||||||
"privacy_do_not_track": "Désactiver l'analyse des données",
|
"privacy_do_not_track": "Désactiver l'analyse des données",
|
||||||
"privacy_do_not_track_explanation": "Les informations de performance et de fiabilité ne seront pas soumises pour analyse.",
|
"privacy_do_not_track_explanation": "Les informations de performance et de fiabilité ne seront pas soumises pour analyse.",
|
||||||
|
@ -302,16 +289,13 @@
|
||||||
"selfTest": "Auto-test",
|
"selfTest": "Auto-test",
|
||||||
"save": "Enregistrer",
|
"save": "Enregistrer",
|
||||||
"saved": "Enregistré",
|
"saved": "Enregistré",
|
||||||
"success_transaction_broadcasted": "Succès! Votre transaction a été diffusée!",
|
|
||||||
"total_balance": "Solde total",
|
"total_balance": "Solde total",
|
||||||
"total_balance_explanation": "Afficher le solde total de tous vos portefeuilles sur l'écran d'accueil.",
|
"total_balance_explanation": "Afficher le solde total de tous vos portefeuilles sur l'écran d'accueil.",
|
||||||
"widgets": "Widgets",
|
"widgets": "Widgets",
|
||||||
"tools": "Outils"
|
"tools": "Outils"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Voulez vous recevoir les notifications quand vous recevez des paiements entrants ?",
|
"would_you_like_to_receive_notifications": "Voulez vous recevoir les notifications quand vous recevez des paiements entrants ?"
|
||||||
"no_and_dont_ask": "Non, et ne pas me redemander ",
|
|
||||||
"ask_me_later": "Me demander plus tard"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Nous allons remplacer cette transaction par celle où les fonds vous reviennent, avec de plus hauts frais. Cela annulera la transaction. On parle de RBF - Replace By Fee.",
|
"cancel_explain": "Nous allons remplacer cette transaction par celle où les fonds vous reviennent, avec de plus hauts frais. Cela annulera la transaction. On parle de RBF - Replace By Fee.",
|
||||||
|
@ -383,7 +367,6 @@
|
||||||
"details_advanced": "Avancé",
|
"details_advanced": "Avancé",
|
||||||
"details_are_you_sure": "Êtes vous sur?",
|
"details_are_you_sure": "Êtes vous sur?",
|
||||||
"details_connected_to": "Connecté à",
|
"details_connected_to": "Connecté à",
|
||||||
"details_del_wb_err": "Le solde ne correspond pas à celui du portefeuille. Veuillez réessayer",
|
|
||||||
"details_del_wb_q": "Ce portefeuille a un solde non nul. Avant de continuer, veuillez noter que vous ne serez pas en mesure de récupérer vos fonds sans la phrase mnémonique du portefeuille. Pour éviter toute suppression accidentelle du portefeuille, veuillez entrer son solde de {balance} satoshis.",
|
"details_del_wb_q": "Ce portefeuille a un solde non nul. Avant de continuer, veuillez noter que vous ne serez pas en mesure de récupérer vos fonds sans la phrase mnémonique du portefeuille. Pour éviter toute suppression accidentelle du portefeuille, veuillez entrer son solde de {balance} satoshis.",
|
||||||
"details_delete": "Supprimer",
|
"details_delete": "Supprimer",
|
||||||
"details_delete_wallet": "Supprimer le portefeuille",
|
"details_delete_wallet": "Supprimer le portefeuille",
|
||||||
|
@ -418,16 +401,9 @@
|
||||||
"import_discovery_subtitle": "Choisissez un portefeuille trouvé",
|
"import_discovery_subtitle": "Choisissez un portefeuille trouvé",
|
||||||
"import_discovery_derivation": "Utiliser un chemin de dérivation personnalisé",
|
"import_discovery_derivation": "Utiliser un chemin de dérivation personnalisé",
|
||||||
"import_discovery_no_wallets": "Aucaun portefeuille trouvé.",
|
"import_discovery_no_wallets": "Aucaun portefeuille trouvé.",
|
||||||
"import_derivation_found": "trouvé",
|
|
||||||
"import_derivation_found_not": "non trouvé",
|
|
||||||
"import_derivation_loading": "Chargement...",
|
|
||||||
"import_derivation_subtitle": "Entrez le chemin de dérivation personnalisé et nous essaierons de découvrir votre portefeuille",
|
|
||||||
"import_derivation_title": "Chemin de dérivation",
|
"import_derivation_title": "Chemin de dérivation",
|
||||||
"import_derivation_unknown": "inconnu",
|
|
||||||
"import_wrong_path": "chemin de dérivation erroné",
|
|
||||||
"list_create_a_button": "Ajouter maintenant",
|
"list_create_a_button": "Ajouter maintenant",
|
||||||
"list_create_a_wallet": "Ajouter un portefeuille",
|
"list_create_a_wallet": "Ajouter un portefeuille",
|
||||||
"list_create_a_wallet_text": "Cest gratuit et vous pouvez en créer \nautant que vous voulez.",
|
|
||||||
"list_empty_txs1": "Vos transactions apparaîtront ici,",
|
"list_empty_txs1": "Vos transactions apparaîtront ici,",
|
||||||
"list_empty_txs1_lightning": "Un portefeuille Lightning devrait être utilisé pour les transactions quotidiennes. Les frais sont très bas et la vitesse est étourdissante.",
|
"list_empty_txs1_lightning": "Un portefeuille Lightning devrait être utilisé pour les transactions quotidiennes. Les frais sont très bas et la vitesse est étourdissante.",
|
||||||
"list_empty_txs2": "Commencez avec votre portefeuille.",
|
"list_empty_txs2": "Commencez avec votre portefeuille.",
|
||||||
|
@ -492,20 +468,14 @@
|
||||||
"quorum_header": "Quorum",
|
"quorum_header": "Quorum",
|
||||||
"of": "de",
|
"of": "de",
|
||||||
"wallet_type": "Type portefeuille",
|
"wallet_type": "Type portefeuille",
|
||||||
"invalid_mnemonics": "Cette phrase mnémonique ne semble pas valide ",
|
|
||||||
"invalid_cosigner": "Données de cosigner invalides",
|
|
||||||
"not_a_multisignature_xpub": "Ceci n'est pas un xpub provenant d'un portefeuille multisig",
|
"not_a_multisignature_xpub": "Ceci n'est pas un xpub provenant d'un portefeuille multisig",
|
||||||
"invalid_cosigner_format": "Co-signeur incorrecte: Ceci nest pas un co-signeur au {format} format",
|
|
||||||
"create_new_key": "Créer nouveau",
|
"create_new_key": "Créer nouveau",
|
||||||
"scan_or_open_file": "Scanner ou ouvrir fichier",
|
"scan_or_open_file": "Scanner ou ouvrir fichier",
|
||||||
"i_have_mnemonics": "J'ai une graine pour cette clé...",
|
"i_have_mnemonics": "J'ai une graine pour cette clé...",
|
||||||
"type_your_mnemonics": "Insérez une graine pour importer votre clé de coffre existante",
|
"type_your_mnemonics": "Insérez une graine pour importer votre clé de coffre existante",
|
||||||
"this_is_cosigners_xpub": "Ceci est l'XPUB du co-signeur, prêt a être importé dans un autre portefeuille. C'est sure de le partager.",
|
|
||||||
"wallet_key_created": "Votre clé de coffre a été créé. Prenez un moment pour sauvegarder votre graine sous forme de mnémonique ",
|
"wallet_key_created": "Votre clé de coffre a été créé. Prenez un moment pour sauvegarder votre graine sous forme de mnémonique ",
|
||||||
"are_you_sure_seed_will_be_lost": "Etes Vous sûr? ",
|
"are_you_sure_seed_will_be_lost": "Etes Vous sûr? ",
|
||||||
"forget_this_seed": "Oublier cette graine et utiliser l'XPUB à la place",
|
"forget_this_seed": "Oublier cette graine et utiliser l'XPUB à la place",
|
||||||
"view_edit_cosigners": "Voir/Editer les co-signeurs",
|
|
||||||
"this_cosigner_is_already_imported": "Ce co-signeur a été déjà importé.",
|
|
||||||
"export_signed_psbt": "Exporter la PSBT signée",
|
"export_signed_psbt": "Exporter la PSBT signée",
|
||||||
"input_fp": "Entrer l'empreinte",
|
"input_fp": "Entrer l'empreinte",
|
||||||
"input_fp_explain": "Passer pour utiliser celle par défaut (00000000)",
|
"input_fp_explain": "Passer pour utiliser celle par défaut (00000000)",
|
||||||
|
@ -530,14 +500,12 @@
|
||||||
"owns": "{label} possède {address}",
|
"owns": "{label} possède {address}",
|
||||||
"enter_address": "Entrez l'adresse",
|
"enter_address": "Entrez l'adresse",
|
||||||
"check_address": "Vérifiez l'adresse",
|
"check_address": "Vérifiez l'adresse",
|
||||||
"no_wallet_owns_address": "Aucun des portefeuilles ne possède l'adresse fournie.",
|
"no_wallet_owns_address": "Aucun des portefeuilles ne possède l'adresse fournie."
|
||||||
"view_qrcode": "Voir QRCode"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "monnaie rendu",
|
"change": "monnaie rendu",
|
||||||
"coins_selected": "UTXO sélectionnées ({number})",
|
"coins_selected": "UTXO sélectionnées ({number})",
|
||||||
"selected_summ": "{value} sélectionnée ",
|
"selected_summ": "{value} sélectionnée ",
|
||||||
"empty": "Ce portefeuille ne possède aucune pièces en ce moment",
|
|
||||||
"freeze": "Geler",
|
"freeze": "Geler",
|
||||||
"freezeLabel": "Gelé",
|
"freezeLabel": "Gelé",
|
||||||
"freezeLabel_un": "Dégeler",
|
"freezeLabel_un": "Dégeler",
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
"expired": "Isteklo",
|
"expired": "Isteklo",
|
||||||
"refill": "Dopuni",
|
"refill": "Dopuni",
|
||||||
"refill_lnd_balance": "Dopuni Lightning volet saldo",
|
"refill_lnd_balance": "Dopuni Lightning volet saldo",
|
||||||
|
"sameWalletAsInvoiceError": "Buraz! Ne možeš platiti račun s istim voletom s kojim si račun stvorio, ono.",
|
||||||
"title": "Uredi novčeke"
|
"title": "Uredi novčeke"
|
||||||
},
|
},
|
||||||
"plausibledeniability": {
|
"plausibledeniability": {
|
||||||
|
|
|
@ -14,10 +14,7 @@
|
||||||
"save": "Mentés",
|
"save": "Mentés",
|
||||||
"seed": "jelszó sorozat",
|
"seed": "jelszó sorozat",
|
||||||
"success": "Sikeres",
|
"success": "Sikeres",
|
||||||
"wallet_key": "Tárca kulcs",
|
"wallet_key": "Tárca kulcs"
|
||||||
"invalid_animated_qr_code_fragment": "Érvénytelen animált QR kód részlet, próbáld újra!",
|
|
||||||
"file_saved": "{filePath} elmentve a kijelölt helyen: {destination}.",
|
|
||||||
"downloads_folder": "Letöltések Mappa"
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "Figyelem"
|
"default": "Figyelem"
|
||||||
|
@ -49,15 +46,12 @@
|
||||||
"claim_balance": "Egyenleg lefoglalása {balance}",
|
"claim_balance": "Egyenleg lefoglalása {balance}",
|
||||||
"close_channel": "Csatorna zárása",
|
"close_channel": "Csatorna zárása",
|
||||||
"new_channel": "Új csatorna",
|
"new_channel": "Új csatorna",
|
||||||
"errorInvoiceExpired": "A számla lejárt",
|
|
||||||
"force_close_channel": "Csatorna erőltetett zárása?",
|
"force_close_channel": "Csatorna erőltetett zárása?",
|
||||||
"expired": "Lejárt",
|
"expired": "Lejárt",
|
||||||
"node_alias": "Node aliasz",
|
"node_alias": "Node aliasz",
|
||||||
"expiresIn": "{time} percen belül elévül",
|
"expiresIn": "{time} percen belül elévül",
|
||||||
"payButton": "Fizess",
|
"payButton": "Fizess",
|
||||||
"placeholder": "Számla",
|
|
||||||
"open_channel": "Csatorna nyitása",
|
"open_channel": "Csatorna nyitása",
|
||||||
"funding_amount_placeholder": "Feltöltési mennyiség, például 0.001",
|
|
||||||
"opening_channnel_for_from": "Csatornanyitás a {forWalletLabel} tárca számára, {fromWalletLabel} által finanszírozva.",
|
"opening_channnel_for_from": "Csatornanyitás a {forWalletLabel} tárca számára, {fromWalletLabel} által finanszírozva.",
|
||||||
"are_you_sure_open_channel": "Biztosan meg akarja nyitni ezt a csatornát?",
|
"are_you_sure_open_channel": "Biztosan meg akarja nyitni ezt a csatornát?",
|
||||||
"potentialFee": "Várható díj: {fee}",
|
"potentialFee": "Várható díj: {fee}",
|
||||||
|
@ -80,7 +74,6 @@
|
||||||
"open_direct_channel": "Közvetlen csatorna nyitása erre a csomópontra:",
|
"open_direct_channel": "Közvetlen csatorna nyitása erre a csomópontra:",
|
||||||
"please_pay_between_and": "Kérem fizessen {min} és {max} közötti összeget",
|
"please_pay_between_and": "Kérem fizessen {min} és {max} közötti összeget",
|
||||||
"please_pay": "Kérlek fizess",
|
"please_pay": "Kérlek fizess",
|
||||||
"preimage": "Pre-image (hashlock feloldáshoz)",
|
|
||||||
"sats": "satoshi",
|
"sats": "satoshi",
|
||||||
"wasnt_paid_and_expired": "Ezt a számlát nem fizették ki és lejárt"
|
"wasnt_paid_and_expired": "Ezt a számlát nem fizették ki és lejárt"
|
||||||
},
|
},
|
||||||
|
@ -98,13 +91,11 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Készítettél másolatot a tárca visszaállításához szükséges jelszó sorozatról? Ez az elmentett jelszó sorozat nélkülözhetetlen ha elveszik ez az eszközt. A jelszó sorozat nélkül a pénzed végleg elveszik.",
|
"ask": "Készítettél másolatot a tárca visszaállításához szükséges jelszó sorozatról? Ez az elmentett jelszó sorozat nélkülözhetetlen ha elveszik ez az eszközt. A jelszó sorozat nélkül a pénzed végleg elveszik.",
|
||||||
"ask_no": "Nem, nincs",
|
"ok": "Rendben, leírtam!",
|
||||||
"ask_yes": "Igen, van",
|
"ok_lnd": "OK, elmentettem.",
|
||||||
"ok": "OKÉ, leírtam",
|
|
||||||
"ok_lnd": "OKÉ, elmentettem",
|
|
||||||
"text": "Kérlek írd le az alábbi biztonsági szavakat egy papírlapra. \nEz egy biztonsági mentés, amellyel helyreállíthatod a tárcádat.",
|
"text": "Kérlek írd le az alábbi biztonsági szavakat egy papírlapra. \nEz egy biztonsági mentés, amellyel helyreállíthatod a tárcádat.",
|
||||||
"text_lnd": "Készíts biztonsági másolatot erről az LNDHub hitelesítésről. Ezzel a biztonsági másolattal visszaállíthatod a tárcát más eszközön.",
|
"text_lnd": "Készíts biztonsági másolatot erről az LNDHub hitelesítésről. Ezzel a biztonsági másolattal visszaállíthatod a tárcát más eszközön.",
|
||||||
"title": "A tárcája elkészült."
|
"title": "A tárcád elkészült..."
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Létrehoz",
|
"details_create": "Létrehoz",
|
||||||
|
@ -174,10 +165,8 @@
|
||||||
"input_paste": "beillesztés",
|
"input_paste": "beillesztés",
|
||||||
"input_total": "Összesen:",
|
"input_total": "Összesen:",
|
||||||
"permission_camera_message": "Kamera használat engedélyezése",
|
"permission_camera_message": "Kamera használat engedélyezése",
|
||||||
"permission_camera_title": "Kamera használatának engedélyezése",
|
|
||||||
"psbt_sign": "Egy tranzakció aláírása",
|
"psbt_sign": "Egy tranzakció aláírása",
|
||||||
"open_settings": "Beállítások megnyitása",
|
"open_settings": "Beállítások megnyitása",
|
||||||
"permission_storage_later": "Később",
|
|
||||||
"permission_storage_message": "A fájl elmentéséhez engedélyezned kell a BlueWallet hozzáférését a háttértárhoz.",
|
"permission_storage_message": "A fájl elmentéséhez engedélyezned kell a BlueWallet hozzáférését a háttértárhoz.",
|
||||||
"permission_storage_denied_message": "BlueWallet nem képes elmenteni ezt a fájlt. Kérem nyissa meg a beállításokat és engedélyezze a tárhely hozzáférést az eszközén.",
|
"permission_storage_denied_message": "BlueWallet nem képes elmenteni ezt a fájlt. Kérem nyissa meg a beállításokat és engedélyezze a tárhely hozzáférést az eszközén.",
|
||||||
"permission_storage_title": "Háttértár hozzáférés engedélyezés",
|
"permission_storage_title": "Háttértár hozzáférés engedélyezés",
|
||||||
|
@ -188,7 +177,6 @@
|
||||||
"outdated_rate": "A ráta utoljára frissítve: {date}",
|
"outdated_rate": "A ráta utoljára frissítve: {date}",
|
||||||
"psbt_tx_open": "Aláírt tranzakció megnyitása",
|
"psbt_tx_open": "Aláírt tranzakció megnyitása",
|
||||||
"psbt_tx_scan": "Aláírt tranzakció szkennelése",
|
"psbt_tx_scan": "Aláírt tranzakció szkennelése",
|
||||||
"qr_error_no_qrcode": "Nem találtunk QR kódot a kiválasztott képen. Győződjön meg arról, hogy a kép csak QR kódot tartalmaz, és nem tartalmaz további tartalmat, például szöveget vagy gombokat.",
|
|
||||||
"reset_amount": "Összeg Visszaállítása",
|
"reset_amount": "Összeg Visszaállítása",
|
||||||
"reset_amount_confirm": "Valóban visszaállítja az összeget?",
|
"reset_amount_confirm": "Valóban visszaállítja az összeget?",
|
||||||
"success_done": "Kész!",
|
"success_done": "Kész!",
|
||||||
|
@ -224,7 +212,6 @@
|
||||||
"default_wallets": "Összes tárca megtekintése",
|
"default_wallets": "Összes tárca megtekintése",
|
||||||
"electrum_connected": "Kapcsolódva",
|
"electrum_connected": "Kapcsolódva",
|
||||||
"electrum_connected_not": "Nincs kapcsolat",
|
"electrum_connected_not": "Nincs kapcsolat",
|
||||||
"electrum_error_connect": "Nem tud csatlakozni a kiválasztott Electrum szerverhez",
|
|
||||||
"lndhub_uri": "P.l., {example}",
|
"lndhub_uri": "P.l., {example}",
|
||||||
"electrum_host": "P.l., {example}",
|
"electrum_host": "P.l., {example}",
|
||||||
"electrum_offline_mode": "Offline Mód",
|
"electrum_offline_mode": "Offline Mód",
|
||||||
|
@ -267,7 +254,6 @@
|
||||||
"lightning_error_lndhub_uri": "Nem megfelelő LNDHub URI",
|
"lightning_error_lndhub_uri": "Nem megfelelő LNDHub URI",
|
||||||
"lightning_saved": "A változtatások sikeresen elmentve",
|
"lightning_saved": "A változtatások sikeresen elmentve",
|
||||||
"lightning_settings": "Lightning Beállítások",
|
"lightning_settings": "Lightning Beállítások",
|
||||||
"lightning_settings_explain": "Ha saját LND node-hoz szeretne csatlakozni, telepítse az LNDHub alkalmazást, és adja meg az URL-címét a beállításokban. Hagyja üresen a BlueWallet LNDHub használatát. Kérjük, vegye figyelembe, hogy csak a módosítások mentése után létrehozott pénztárcák csatlakoznak a megadott LNDHub-hoz.",
|
|
||||||
"network": "Hálózat",
|
"network": "Hálózat",
|
||||||
"network_broadcast": "Tranzakció továbbitása",
|
"network_broadcast": "Tranzakció továbbitása",
|
||||||
"network_electrum": "Electrum szerver",
|
"network_electrum": "Electrum szerver",
|
||||||
|
@ -282,7 +268,6 @@
|
||||||
"privacy_read_clipboard": "Vágólap olvasása",
|
"privacy_read_clipboard": "Vágólap olvasása",
|
||||||
"privacy_system_settings": "Rendszer beállítások",
|
"privacy_system_settings": "Rendszer beállítások",
|
||||||
"privacy_quickactions": "tárca gyorsbillentyűk",
|
"privacy_quickactions": "tárca gyorsbillentyűk",
|
||||||
"privacy_quickactions_explanation": "Érintsd meg és tartsd nyomva a BlueWallet alkalmazás ikont a képernyőn a tárca egyenleg gyors megtekintéséhez.",
|
|
||||||
"privacy_clipboard_explanation": "Jelentsen meg opciókat, ha cím vagy számla található a vágólapon. ",
|
"privacy_clipboard_explanation": "Jelentsen meg opciókat, ha cím vagy számla található a vágólapon. ",
|
||||||
"privacy_do_not_track": "Analitika kikapcsolása",
|
"privacy_do_not_track": "Analitika kikapcsolása",
|
||||||
"privacy_do_not_track_explanation": "A teljesítményre és a megbízhatóságra vonatkozó információk nem lessznek beküldve elemzésre.",
|
"privacy_do_not_track_explanation": "A teljesítményre és a megbízhatóságra vonatkozó információk nem lessznek beküldve elemzésre.",
|
||||||
|
@ -292,16 +277,13 @@
|
||||||
"selfTest": "Önteszt",
|
"selfTest": "Önteszt",
|
||||||
"save": "Ment",
|
"save": "Ment",
|
||||||
"saved": "Elmentve",
|
"saved": "Elmentve",
|
||||||
"success_transaction_broadcasted": "Sikeres! A tranzakciója továbbítva!",
|
|
||||||
"total_balance": "Teljes egyenleg",
|
"total_balance": "Teljes egyenleg",
|
||||||
"total_balance_explanation": "Jelenítse meg az összes pénztárca egyenlegét a kezdőképernyő moduljain.",
|
"total_balance_explanation": "Jelenítse meg az összes pénztárca egyenlegét a kezdőképernyő moduljain.",
|
||||||
"widgets": "Widgetek",
|
"widgets": "Widgetek",
|
||||||
"tools": "Eszközök"
|
"tools": "Eszközök"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Szeretnél értesítést a bejövő utalásokról? ",
|
"would_you_like_to_receive_notifications": "Szeretnél értesítést a bejövő utalásokról? "
|
||||||
"no_and_dont_ask": "Nem és ne kérdezd újra",
|
|
||||||
"ask_me_later": "Később"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "Ez a tranzakció nem helyettesíthető",
|
"cancel_no": "Ez a tranzakció nem helyettesíthető",
|
||||||
|
@ -369,7 +351,6 @@
|
||||||
"details_advanced": "Haladó",
|
"details_advanced": "Haladó",
|
||||||
"details_are_you_sure": "Biztos vagy benne?",
|
"details_are_you_sure": "Biztos vagy benne?",
|
||||||
"details_connected_to": "Kapcsolódva: ",
|
"details_connected_to": "Kapcsolódva: ",
|
||||||
"details_del_wb_err": "A megadott egyenleg összege nem egyezik a tárca egyenlegével. Próbáld újra. ",
|
|
||||||
"details_del_wb_q": "Ennek a tárcának van egyenlege. Mielőtt tovább lép, tudnia kell, hogy nem fogja tudni vissza szerezni ezen összeget ha nem rendelkezik ezen tárca biztonsági szavaival. A véletlen eltávolítások elkerülése érdekéven kérem adja meg a tárcán található {balance} egyenleget satoshiban.",
|
"details_del_wb_q": "Ennek a tárcának van egyenlege. Mielőtt tovább lép, tudnia kell, hogy nem fogja tudni vissza szerezni ezen összeget ha nem rendelkezik ezen tárca biztonsági szavaival. A véletlen eltávolítások elkerülése érdekéven kérem adja meg a tárcán található {balance} egyenleget satoshiban.",
|
||||||
"details_delete": "Törlés",
|
"details_delete": "Törlés",
|
||||||
"details_delete_wallet": "Tárca törlése",
|
"details_delete_wallet": "Tárca törlése",
|
||||||
|
@ -404,16 +385,9 @@
|
||||||
"import_discovery_subtitle": "Már felfedezett tárca választása",
|
"import_discovery_subtitle": "Már felfedezett tárca választása",
|
||||||
"import_discovery_derivation": "Egyedi derivációs útvonal használata",
|
"import_discovery_derivation": "Egyedi derivációs útvonal használata",
|
||||||
"import_discovery_no_wallets": "Nem található tárca.",
|
"import_discovery_no_wallets": "Nem található tárca.",
|
||||||
"import_derivation_found": "megtalálva",
|
|
||||||
"import_derivation_found_not": "nem található",
|
|
||||||
"import_derivation_loading": "töltés...",
|
|
||||||
"import_derivation_subtitle": "Egyedi derivációs útvonal beírása és mi megpróbáljuk felfedezni a tárcáját",
|
|
||||||
"import_derivation_title": "Derivációs útvonal",
|
"import_derivation_title": "Derivációs útvonal",
|
||||||
"import_derivation_unknown": "ismeretlen",
|
|
||||||
"import_wrong_path": "hibás derivációs útvonal",
|
|
||||||
"list_create_a_button": "add hozzá",
|
"list_create_a_button": "add hozzá",
|
||||||
"list_create_a_wallet": "Új tárca",
|
"list_create_a_wallet": "Új tárca",
|
||||||
"list_create_a_wallet_text": "Ingyenes, és annyit hozhatsz létre amennyit szeretnél",
|
|
||||||
"list_empty_txs1": "A tranzakcióid itt fognak megjelenni",
|
"list_empty_txs1": "A tranzakcióid itt fognak megjelenni",
|
||||||
"list_empty_txs1_lightning": "A Lightning tárcát a mindennapi tranzakcióidhoz használhatod. A tranzakciók azonnal végrehajtódnak, minimális átutalási díjjal.",
|
"list_empty_txs1_lightning": "A Lightning tárcát a mindennapi tranzakcióidhoz használhatod. A tranzakciók azonnal végrehajtódnak, minimális átutalási díjjal.",
|
||||||
"list_empty_txs2": "Kezd a tárcáddal.",
|
"list_empty_txs2": "Kezd a tárcáddal.",
|
||||||
|
@ -478,20 +452,14 @@
|
||||||
"quorum_header": "Kvórum",
|
"quorum_header": "Kvórum",
|
||||||
"of": "/",
|
"of": "/",
|
||||||
"wallet_type": "Tárca típusa",
|
"wallet_type": "Tárca típusa",
|
||||||
"invalid_mnemonics": "Ez a biztonsági mentés nem tűnik megfelelőnek.",
|
|
||||||
"invalid_cosigner": "Helytelen másodaláíró adat",
|
|
||||||
"not_a_multisignature_xpub": "Ez nem egy multiszignaturás tárca publikus kulcsa azaz XPUBja!",
|
"not_a_multisignature_xpub": "Ez nem egy multiszignaturás tárca publikus kulcsa azaz XPUBja!",
|
||||||
"invalid_cosigner_format": "Nem megfelelő másodaláíró: Ez a másodaláíró nem a megfelelő {format} formátumú.",
|
|
||||||
"create_new_key": "Készíts újat",
|
"create_new_key": "Készíts újat",
|
||||||
"scan_or_open_file": "Szkennelés vagy fájl megnyitása",
|
"scan_or_open_file": "Szkennelés vagy fájl megnyitása",
|
||||||
"i_have_mnemonics": "Megvan a jelszó sorozatom ehhez a kulcshoz...",
|
"i_have_mnemonics": "Megvan a jelszó sorozatom ehhez a kulcshoz...",
|
||||||
"type_your_mnemonics": "Jelszó sorozat megadása egy létező trezor-kulcs megadásához",
|
"type_your_mnemonics": "Jelszó sorozat megadása egy létező trezor-kulcs megadásához",
|
||||||
"this_is_cosigners_xpub": "Ez a másodaláíró XPUB-ja — készen áll egy másik pénztárcába történő importálásra. Megosztani biztonságos.",
|
|
||||||
"wallet_key_created": "A Vault kulcs létrehozva. Szánjon egy percet arra, hogy biztonságosan, biztonsági másolatot készítsen a titkos kulcsszavakról.",
|
"wallet_key_created": "A Vault kulcs létrehozva. Szánjon egy percet arra, hogy biztonságosan, biztonsági másolatot készítsen a titkos kulcsszavakról.",
|
||||||
"are_you_sure_seed_will_be_lost": "Biztos benne? A biztonsági mentése el fog veszni ha nincs létező másolata.",
|
"are_you_sure_seed_will_be_lost": "Biztos benne? A biztonsági mentése el fog veszni ha nincs létező másolata.",
|
||||||
"forget_this_seed": "Felejtse el ezt a kulcsot és használjon XPUB-ot inkább.",
|
"forget_this_seed": "Felejtse el ezt a kulcsot és használjon XPUB-ot inkább.",
|
||||||
"view_edit_cosigners": "Társ aláírok megtekintése/szerkesztése ",
|
|
||||||
"this_cosigner_is_already_imported": "Ezen másodaláíró már importálva van.",
|
|
||||||
"export_signed_psbt": "Aláírt PSBT Exportálása",
|
"export_signed_psbt": "Aláírt PSBT Exportálása",
|
||||||
"input_fp": "Ujjlenyomat megadása",
|
"input_fp": "Ujjlenyomat megadása",
|
||||||
"input_fp_explain": "Átugrás az alapértelmezett használatához (00000000)",
|
"input_fp_explain": "Átugrás az alapértelmezett használatához (00000000)",
|
||||||
|
@ -516,14 +484,12 @@
|
||||||
"owns": "{label} tulajdonolja {address}",
|
"owns": "{label} tulajdonolja {address}",
|
||||||
"enter_address": "Cím megadása",
|
"enter_address": "Cím megadása",
|
||||||
"check_address": "Cím ellenőrzése",
|
"check_address": "Cím ellenőrzése",
|
||||||
"no_wallet_owns_address": "Semelyik tárca nem birtokolja ezen használt címet.",
|
"no_wallet_owns_address": "Semelyik tárca nem birtokolja ezen használt címet."
|
||||||
"view_qrcode": "QRKód megtekintése"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "váltás",
|
"change": "váltás",
|
||||||
"coins_selected": "Érmék kiválasztva ({number})",
|
"coins_selected": "Érmék kiválasztva ({number})",
|
||||||
"selected_summ": "{value} kijelölve",
|
"selected_summ": "{value} kijelölve",
|
||||||
"empty": "Ez a tárca jelenleg üres.",
|
|
||||||
"freeze": "zárolás",
|
"freeze": "zárolás",
|
||||||
"freezeLabel": "zárolás",
|
"freezeLabel": "zárolás",
|
||||||
"freezeLabel_un": "Zárolás feloldása",
|
"freezeLabel_un": "Zárolás feloldása",
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
"seed": "Benih",
|
"seed": "Benih",
|
||||||
"success": "Sukses",
|
"success": "Sukses",
|
||||||
"wallet_key": "Kunci Dompet",
|
"wallet_key": "Kunci Dompet",
|
||||||
"invalid_animated_qr_code_fragment": "QRCode fragment tidak dapat dibaca. Mohon coba lagi",
|
|
||||||
"file_saved": "Berkas {filePath} sudah tersimpan di {destination}",
|
|
||||||
"downloads_folder": "Folder unduhan",
|
|
||||||
"close": "Tutup",
|
"close": "Tutup",
|
||||||
"change_input_currency": "Ubah input mata uang",
|
"change_input_currency": "Ubah input mata uang",
|
||||||
"refresh": "Segarkan",
|
"refresh": "Segarkan",
|
||||||
|
@ -57,14 +54,12 @@
|
||||||
"claim_balance": "Klaim saldo {saldo}",
|
"claim_balance": "Klaim saldo {saldo}",
|
||||||
"close_channel": "Tutup kanal",
|
"close_channel": "Tutup kanal",
|
||||||
"new_channel": "Kanal baru",
|
"new_channel": "Kanal baru",
|
||||||
"errorInvoiceExpired": "Faktur kadarluasa",
|
|
||||||
"force_close_channel": "Tutup paksa kanal?",
|
"force_close_channel": "Tutup paksa kanal?",
|
||||||
"expired": "Kadaluarsa",
|
"expired": "Kadaluarsa",
|
||||||
"node_alias": "Alias node",
|
"node_alias": "Alias node",
|
||||||
"expiresIn": "Kadaluwarsa dalam {waktu} menit",
|
"expiresIn": "Kadaluwarsa dalam {waktu} menit",
|
||||||
"payButton": "Bayar",
|
"payButton": "Bayar",
|
||||||
"open_channel": "Buka kanal",
|
"open_channel": "Buka kanal",
|
||||||
"funding_amount_placeholder": "Jumlah pendanaan, contoh 0,001",
|
|
||||||
"are_you_sure_open_channel": "Apakah Anda yakin ingin membuka kanal ini?",
|
"are_you_sure_open_channel": "Apakah Anda yakin ingin membuka kanal ini?",
|
||||||
"potentialFee": "Potensi biaya: {fee}",
|
"potentialFee": "Potensi biaya: {fee}",
|
||||||
"remote_host": "Host jarak jauh",
|
"remote_host": "Host jarak jauh",
|
||||||
|
@ -73,7 +68,7 @@
|
||||||
"refill_create": "Untuk melanjutkan, buat dompet Bitcoin untuk diisi ulang.",
|
"refill_create": "Untuk melanjutkan, buat dompet Bitcoin untuk diisi ulang.",
|
||||||
"refill_external": "Isi ulang dengan Dompet Eksternal",
|
"refill_external": "Isi ulang dengan Dompet Eksternal",
|
||||||
"refill_lnd_balance": "Isi ulang saldo Lightning",
|
"refill_lnd_balance": "Isi ulang saldo Lightning",
|
||||||
"sameWalletAsInvoiceError": "Anda tidak bisa membayar sebuah fraktur dengan dompet yang digunakan untuk membuat fraktur tersebut.",
|
"sameWalletAsInvoiceError": "Kamu tidak bisa membayar invoice dengan dompet yang sama yang dipakai untuk membuat invoice.",
|
||||||
"title": "Atur Dana",
|
"title": "Atur Dana",
|
||||||
"can_send": "Bisa Mengirim",
|
"can_send": "Bisa Mengirim",
|
||||||
"can_receive": "Bisa Menerima",
|
"can_receive": "Bisa Menerima",
|
||||||
|
@ -86,7 +81,6 @@
|
||||||
"open_direct_channel": "Buka saluran langsung dengan node ini:",
|
"open_direct_channel": "Buka saluran langsung dengan node ini:",
|
||||||
"please_pay_between_and": "Silakan bayar antara {minimal} dan {maksimal}",
|
"please_pay_between_and": "Silakan bayar antara {minimal} dan {maksimal}",
|
||||||
"please_pay": "Silakan bayar",
|
"please_pay": "Silakan bayar",
|
||||||
"preimage": "Pra gambar",
|
|
||||||
"sats": "sat.",
|
"sats": "sat.",
|
||||||
"wasnt_paid_and_expired": "Faktur ini belum dibayar dan telah kedaluwarsa"
|
"wasnt_paid_and_expired": "Faktur ini belum dibayar dan telah kedaluwarsa"
|
||||||
},
|
},
|
||||||
|
@ -104,13 +98,10 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Sudahkah Anda menyimpan frase cadangan dompet Anda? Frase cadangan ini diperlukan untuk mengakses dana Anda jika Anda kehilangan perangkat ini. Tanpa frase cadangan, dana Anda akan hilang secara permanen.",
|
"ask": "Sudahkah Anda menyimpan frase cadangan dompet Anda? Frase cadangan ini diperlukan untuk mengakses dana Anda jika Anda kehilangan perangkat ini. Tanpa frase cadangan, dana Anda akan hilang secara permanen.",
|
||||||
"ask_no": "Tidak, belum saya lakukan",
|
"ok_lnd": "Oke, saya sudah menyimpannya.",
|
||||||
"ask_yes": "Ya, sudah",
|
|
||||||
"ok": "OK, sudah saya tulis",
|
|
||||||
"ok_lnd": "OK, sudah saya simpan",
|
|
||||||
"text": "Silakan tulis frasa mnemonik ini di atas kertas.\nIni adalah cadangan Anda dan Anda bisa menggunakannya untuk memulihkan dompet Anda.",
|
"text": "Silakan tulis frasa mnemonik ini di atas kertas.\nIni adalah cadangan Anda dan Anda bisa menggunakannya untuk memulihkan dompet Anda.",
|
||||||
"text_lnd": "Harap luangkan waktu sejenak untuk menyimpan otentikasi LNDHub ini. Ini cadangan Anda yang dapat Anda gunakan untuk memulihkan dompet di perangkat lain.",
|
"text_lnd": "Harap luangkan waktu sejenak untuk menyimpan otentikasi LNDHub ini. Ini cadangan Anda yang dapat Anda gunakan untuk memulihkan dompet di perangkat lain.",
|
||||||
"title": "Dompet Anda telah dibuat"
|
"title": "Dompet Anda telah dibuat ..."
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Buat",
|
"details_create": "Buat",
|
||||||
|
@ -158,9 +149,7 @@
|
||||||
"details_create": "Buat",
|
"details_create": "Buat",
|
||||||
"details_error_decode": "Tidak dapat membaca alamat Bitcoin",
|
"details_error_decode": "Tidak dapat membaca alamat Bitcoin",
|
||||||
"details_fee_field_is_not_valid": "Tarif tidak valid",
|
"details_fee_field_is_not_valid": "Tarif tidak valid",
|
||||||
"details_frozen": "{nominal} BTC dibekukan",
|
|
||||||
"details_next": "Selanjutnya",
|
"details_next": "Selanjutnya",
|
||||||
"details_no_signed_tx": "File yang dipilih tidak berisi transaksi yang dapat diimpor.",
|
|
||||||
"details_note_placeholder": "catatan pribadi",
|
"details_note_placeholder": "catatan pribadi",
|
||||||
"details_scan": "Pindai",
|
"details_scan": "Pindai",
|
||||||
"details_scan_hint": "Ketuk dua kali untuk memindai atau mengimpor tujuan",
|
"details_scan_hint": "Ketuk dua kali untuk memindai atau mengimpor tujuan",
|
||||||
|
@ -190,7 +179,6 @@
|
||||||
"permission_camera_message": "Kami membutuhkan izin anda untuk menggunakan kamera.",
|
"permission_camera_message": "Kami membutuhkan izin anda untuk menggunakan kamera.",
|
||||||
"psbt_sign": "Tanda tangani transaksi",
|
"psbt_sign": "Tanda tangani transaksi",
|
||||||
"open_settings": "Buka Setelan",
|
"open_settings": "Buka Setelan",
|
||||||
"permission_storage_later": "Tanyakan saya nanti",
|
|
||||||
"permission_storage_message": "BlueWallet membutuhkan izin anda untuk mengakses tempat penyimpanan anda untuk menyimpan file ini",
|
"permission_storage_message": "BlueWallet membutuhkan izin anda untuk mengakses tempat penyimpanan anda untuk menyimpan file ini",
|
||||||
"permission_storage_denied_message": "BlueWallet tidak bisa menyimpan berkas ini. Harap buka pengaturan perangkat Anda dan aktifkan Izin Penyimpanan.",
|
"permission_storage_denied_message": "BlueWallet tidak bisa menyimpan berkas ini. Harap buka pengaturan perangkat Anda dan aktifkan Izin Penyimpanan.",
|
||||||
"permission_storage_title": "Izin Akses Penyimpanan",
|
"permission_storage_title": "Izin Akses Penyimpanan",
|
||||||
|
@ -201,7 +189,6 @@
|
||||||
"outdated_rate": "Tarif diperbaharui terakhir: {tanggal}",
|
"outdated_rate": "Tarif diperbaharui terakhir: {tanggal}",
|
||||||
"psbt_tx_open": "Buka Transaksi yang Ditandatangani",
|
"psbt_tx_open": "Buka Transaksi yang Ditandatangani",
|
||||||
"psbt_tx_scan": "Pindai Transaksi yang Ditandatangani",
|
"psbt_tx_scan": "Pindai Transaksi yang Ditandatangani",
|
||||||
"qr_error_no_qrcode": "Kami tidak bisa menemukan QR Code pada gambar terpilih. Pastikan gambar hanya memiliki QR Code dan tidak ada konten tambahan seperti teks, atau tombol.",
|
|
||||||
"reset_amount": "Atur ulang Nominal",
|
"reset_amount": "Atur ulang Nominal",
|
||||||
"reset_amount_confirm": "Apakah Anda ingin mengatur ulang nominal?",
|
"reset_amount_confirm": "Apakah Anda ingin mengatur ulang nominal?",
|
||||||
"success_done": "Selesai",
|
"success_done": "Selesai",
|
||||||
|
@ -238,7 +225,6 @@
|
||||||
"default_wallets": "Lihat Semua Dompet",
|
"default_wallets": "Lihat Semua Dompet",
|
||||||
"electrum_connected": "Terhubung",
|
"electrum_connected": "Terhubung",
|
||||||
"electrum_connected_not": "Tidak Terhubung",
|
"electrum_connected_not": "Tidak Terhubung",
|
||||||
"electrum_error_connect": "Tidak dapat terhubung dengan server Electrum",
|
|
||||||
"lndhub_uri": "Contoh {contoh}",
|
"lndhub_uri": "Contoh {contoh}",
|
||||||
"electrum_host": "Contoh {contoh}",
|
"electrum_host": "Contoh {contoh}",
|
||||||
"electrum_offline_mode": "Mode luring",
|
"electrum_offline_mode": "Mode luring",
|
||||||
|
@ -286,14 +272,9 @@
|
||||||
"retype_password": "Ulangi kata sandi",
|
"retype_password": "Ulangi kata sandi",
|
||||||
"save": "simpan",
|
"save": "simpan",
|
||||||
"saved": "Tersimpan",
|
"saved": "Tersimpan",
|
||||||
"success_transaction_broadcasted": "Berhasil! Transaksi Anda telah disiarkan!",
|
|
||||||
"total_balance": "Total saldo",
|
"total_balance": "Total saldo",
|
||||||
"tools": "Alat"
|
"tools": "Alat"
|
||||||
},
|
},
|
||||||
"notifications": {
|
|
||||||
"no_and_dont_ask": "Tidak, dan jangan tanya saya lagi",
|
|
||||||
"ask_me_later": "Tanyakan saya nanti"
|
|
||||||
},
|
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "Transaksi ini tidak bisa digantikan.",
|
"cancel_no": "Transaksi ini tidak bisa digantikan.",
|
||||||
"cancel_title": "Batalkan transaksi ini (RBF)",
|
"cancel_title": "Batalkan transaksi ini (RBF)",
|
||||||
|
@ -365,13 +346,8 @@
|
||||||
"import_discovery_title": "Penemuan",
|
"import_discovery_title": "Penemuan",
|
||||||
"import_discovery_subtitle": "Pilih dompet yang ditemukan",
|
"import_discovery_subtitle": "Pilih dompet yang ditemukan",
|
||||||
"import_discovery_no_wallets": "Tidak ada dompet yang ditemukan",
|
"import_discovery_no_wallets": "Tidak ada dompet yang ditemukan",
|
||||||
"import_derivation_found": "ditemukan",
|
|
||||||
"import_derivation_found_not": "tidak ditemukan",
|
|
||||||
"import_derivation_loading": "memuat",
|
|
||||||
"import_derivation_unknown": "tidak diketahui",
|
|
||||||
"list_create_a_button": "tambah sekarang",
|
"list_create_a_button": "tambah sekarang",
|
||||||
"list_create_a_wallet": "Tambah dompet",
|
"list_create_a_wallet": "Tambah dompet",
|
||||||
"list_create_a_wallet_text": "Gratis dan Anda bisa membuat\nsebanyak yang Anda suka.",
|
|
||||||
"list_empty_txs1": "Transaksimu akan muncul di sini,",
|
"list_empty_txs1": "Transaksimu akan muncul di sini,",
|
||||||
"list_empty_txs2": "Mulai dengan dompet Anda.",
|
"list_empty_txs2": "Mulai dengan dompet Anda.",
|
||||||
"list_latest_transaction": "transaksi terbaru",
|
"list_latest_transaction": "transaksi terbaru",
|
||||||
|
@ -423,8 +399,7 @@
|
||||||
"title": "Apakah ini alamat saya?",
|
"title": "Apakah ini alamat saya?",
|
||||||
"owns": "{label} memiliki {alamat}",
|
"owns": "{label} memiliki {alamat}",
|
||||||
"enter_address": "Masukkan alamat",
|
"enter_address": "Masukkan alamat",
|
||||||
"check_address": "Cek alamat",
|
"check_address": "Cek alamat"
|
||||||
"view_qrcode": "Lihat QRCode"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Ubah",
|
"change": "Ubah",
|
||||||
|
|
|
@ -30,6 +30,10 @@ const setDateTimeLocale = async () => {
|
||||||
lang = 'bg';
|
lang = 'bg';
|
||||||
require('dayjs/locale/bg');
|
require('dayjs/locale/bg');
|
||||||
break;
|
break;
|
||||||
|
case 'bqi':
|
||||||
|
lang = 'fa';
|
||||||
|
require('dayjs/locale/fa');
|
||||||
|
break;
|
||||||
case 'ca':
|
case 'ca':
|
||||||
require('dayjs/locale/ca');
|
require('dayjs/locale/ca');
|
||||||
break;
|
break;
|
||||||
|
@ -203,6 +207,7 @@ const loc = new Localization({
|
||||||
ar: require('./ar.json'),
|
ar: require('./ar.json'),
|
||||||
be: require('./be@tarask.json'),
|
be: require('./be@tarask.json'),
|
||||||
bg_bg: require('./bg_bg.json'),
|
bg_bg: require('./bg_bg.json'),
|
||||||
|
bqi: require('./bqi.json'),
|
||||||
ca: require('./ca.json'),
|
ca: require('./ca.json'),
|
||||||
cy: require('./cy.json'),
|
cy: require('./cy.json'),
|
||||||
cs_cz: require('./cs_cz.json'),
|
cs_cz: require('./cs_cz.json'),
|
||||||
|
|
44
loc/it.json
44
loc/it.json
|
@ -15,9 +15,6 @@
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Operazione avvenuta con successo",
|
"success": "Operazione avvenuta con successo",
|
||||||
"wallet_key": "Chiave del portafoglio",
|
"wallet_key": "Chiave del portafoglio",
|
||||||
"invalid_animated_qr_code_fragment": "Frammento di codice QR animato non valido. Riprova.",
|
|
||||||
"file_saved": "Il file {filepath} è stato salvato in {destination}.",
|
|
||||||
"downloads_folder": "Cartella di download",
|
|
||||||
"close": "Chiudi",
|
"close": "Chiudi",
|
||||||
"change_input_currency": "Cambia la valuta di input",
|
"change_input_currency": "Cambia la valuta di input",
|
||||||
"refresh": "Aggiorna",
|
"refresh": "Aggiorna",
|
||||||
|
@ -57,7 +54,6 @@
|
||||||
"claim_balance": "Richiedi il saldo {balance}",
|
"claim_balance": "Richiedi il saldo {balance}",
|
||||||
"close_channel": "Chiudi il canale",
|
"close_channel": "Chiudi il canale",
|
||||||
"new_channel": "Nuovo canale",
|
"new_channel": "Nuovo canale",
|
||||||
"errorInvoiceExpired": "Fattura scaduta",
|
|
||||||
"force_close_channel": "Forza la chiusura del canale?",
|
"force_close_channel": "Forza la chiusura del canale?",
|
||||||
"expired": "Scaduto",
|
"expired": "Scaduto",
|
||||||
"node_alias": "Alias del nodo",
|
"node_alias": "Alias del nodo",
|
||||||
|
@ -65,7 +61,6 @@
|
||||||
"payButton": "Paga",
|
"payButton": "Paga",
|
||||||
"placeholder": "Fattura o indirizzo",
|
"placeholder": "Fattura o indirizzo",
|
||||||
"open_channel": "Apri canale",
|
"open_channel": "Apri canale",
|
||||||
"funding_amount_placeholder": "Quantità di fondi, ad esempio 0.001",
|
|
||||||
"opening_channnel_for_from": "Apri canale per il wallet {forWalletLabel}, caricando fondi da {fromWalletLabel}",
|
"opening_channnel_for_from": "Apri canale per il wallet {forWalletLabel}, caricando fondi da {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Sei sicuro di voler aprie questo canale?",
|
"are_you_sure_open_channel": "Sei sicuro di voler aprie questo canale?",
|
||||||
"potentialFee": "Commissioni potenziali: {fee}",
|
"potentialFee": "Commissioni potenziali: {fee}",
|
||||||
|
@ -75,7 +70,7 @@
|
||||||
"refill_create": "Per continuare, crea un portafoglio Bitcoin dal quale ricaricare.",
|
"refill_create": "Per continuare, crea un portafoglio Bitcoin dal quale ricaricare.",
|
||||||
"refill_external": "Ricarica con un wallet esterno",
|
"refill_external": "Ricarica con un wallet esterno",
|
||||||
"refill_lnd_balance": "Ricarica saldo del portafoglio Lightning",
|
"refill_lnd_balance": "Ricarica saldo del portafoglio Lightning",
|
||||||
"sameWalletAsInvoiceError": "Non puoi pagare una fattura con lo stesso portafoglio che e' stato usato per crearla.",
|
"sameWalletAsInvoiceError": "Non puoi pagare una fattura con lo stesso portafoglio utilizzato per crearla.",
|
||||||
"title": "Gestisci fondi",
|
"title": "Gestisci fondi",
|
||||||
"can_send": "Puoi inviare",
|
"can_send": "Puoi inviare",
|
||||||
"can_receive": "Puoi ricevere",
|
"can_receive": "Puoi ricevere",
|
||||||
|
@ -88,7 +83,6 @@
|
||||||
"open_direct_channel": "Apri un canale diretto con questo nodo:",
|
"open_direct_channel": "Apri un canale diretto con questo nodo:",
|
||||||
"please_pay_between_and": "Paga tra {min} e {max}",
|
"please_pay_between_and": "Paga tra {min} e {max}",
|
||||||
"please_pay": "Per favore paga",
|
"please_pay": "Per favore paga",
|
||||||
"preimage": "Preimage",
|
|
||||||
"sats": "sats.",
|
"sats": "sats.",
|
||||||
"wasnt_paid_and_expired": "Questa fattura non è stata pagata ed è scaduta."
|
"wasnt_paid_and_expired": "Questa fattura non è stata pagata ed è scaduta."
|
||||||
},
|
},
|
||||||
|
@ -106,13 +100,10 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Hai salvato la frase di backup del tuo portafoglio? Questa è necessaria per accedere ai tuoi fondi nel caso in cui tu smarrisca questo dispositivo. Senza la frase di backup, i tuoi fondi saranno definitivamente persi. ",
|
"ask": "Hai salvato la frase di backup del tuo portafoglio? Questa è necessaria per accedere ai tuoi fondi nel caso in cui tu smarrisca questo dispositivo. Senza la frase di backup, i tuoi fondi saranno definitivamente persi. ",
|
||||||
"ask_no": "No",
|
"ok_lnd": "OK, l'ho registrata.",
|
||||||
"ask_yes": "Sì",
|
|
||||||
"ok": "OK, l'ho scritto",
|
|
||||||
"ok_lnd": "OK, l'ho salvato",
|
|
||||||
"text": "Per favore prenditi un momento per scrivere questa frase mnemonica su un foglio di carta.\nÈ il tuo backup e puoi usarlo per ripristinare il portafoglio.",
|
"text": "Per favore prenditi un momento per scrivere questa frase mnemonica su un foglio di carta.\nÈ il tuo backup e puoi usarlo per ripristinare il portafoglio.",
|
||||||
"text_lnd": "Per favore salva questo backup. Ti consente di ripristinare il portafoglio in caso di smarrimento.",
|
"text_lnd": "Per favore salva questo backup. Ti consente di ripristinare il portafoglio in caso di smarrimento.",
|
||||||
"title": "Il tuo portafoglio è stato creato"
|
"title": "Il tuo portafoglio è stato creato."
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Crea",
|
"details_create": "Crea",
|
||||||
|
@ -160,9 +151,7 @@
|
||||||
"details_create": "Crea Fattura",
|
"details_create": "Crea Fattura",
|
||||||
"details_error_decode": "Impossibile decodificare l'indirizzo Bitcoin",
|
"details_error_decode": "Impossibile decodificare l'indirizzo Bitcoin",
|
||||||
"details_fee_field_is_not_valid": "La commissione non è valida.",
|
"details_fee_field_is_not_valid": "La commissione non è valida.",
|
||||||
"details_frozen": "{amount} BTC sono congelati",
|
|
||||||
"details_next": "Avanti",
|
"details_next": "Avanti",
|
||||||
"details_no_signed_tx": "Il file selezionato non contiene una transazione che può essere importata.",
|
|
||||||
"details_note_placeholder": "Nota",
|
"details_note_placeholder": "Nota",
|
||||||
"details_scan": "Scansiona",
|
"details_scan": "Scansiona",
|
||||||
"details_scan_hint": "Tocca due volte per scannerizzare o importare una destinazione",
|
"details_scan_hint": "Tocca due volte per scannerizzare o importare una destinazione",
|
||||||
|
@ -192,7 +181,6 @@
|
||||||
"permission_camera_message": "Abbiamo bisogno della tua autorizzazione per utilizzare la fotocamera.",
|
"permission_camera_message": "Abbiamo bisogno della tua autorizzazione per utilizzare la fotocamera.",
|
||||||
"psbt_sign": "Firma una transazione",
|
"psbt_sign": "Firma una transazione",
|
||||||
"open_settings": "Apri le impostazioni",
|
"open_settings": "Apri le impostazioni",
|
||||||
"permission_storage_later": "Chiedimelo dopo",
|
|
||||||
"permission_storage_message": "BlueWallet ha bisogno della tua autorizzazione per accedere allo spazio di archiviazione e salvare questo file.",
|
"permission_storage_message": "BlueWallet ha bisogno della tua autorizzazione per accedere allo spazio di archiviazione e salvare questo file.",
|
||||||
"permission_storage_denied_message": "BlueWallet non è in grado di salvare questo file. Per favore apri le impostazioni del tuo dispositivo e abilita i Permessi di Archiviazione.",
|
"permission_storage_denied_message": "BlueWallet non è in grado di salvare questo file. Per favore apri le impostazioni del tuo dispositivo e abilita i Permessi di Archiviazione.",
|
||||||
"permission_storage_title": "Permessi di accesso allo spazio di archiviazione",
|
"permission_storage_title": "Permessi di accesso allo spazio di archiviazione",
|
||||||
|
@ -203,7 +191,6 @@
|
||||||
"outdated_rate": "La tariffa è stata aggiornata il: {data}",
|
"outdated_rate": "La tariffa è stata aggiornata il: {data}",
|
||||||
"psbt_tx_open": "Apri una transazione firmata",
|
"psbt_tx_open": "Apri una transazione firmata",
|
||||||
"psbt_tx_scan": "Scansiona una transazione firmata",
|
"psbt_tx_scan": "Scansiona una transazione firmata",
|
||||||
"qr_error_no_qrcode": "Non siamo stati in grado di trovare un codice QR nell'immagine selezionata. Assicurati che l'immagine contenga solo un codice QR e nessun altro contenuto aggiuntivo, tipo testo o pulsanti.",
|
|
||||||
"reset_amount": "Resetta l'importo",
|
"reset_amount": "Resetta l'importo",
|
||||||
"reset_amount_confirm": "Vuoi resettare l'importo?",
|
"reset_amount_confirm": "Vuoi resettare l'importo?",
|
||||||
"success_done": "Fatto",
|
"success_done": "Fatto",
|
||||||
|
@ -242,7 +229,6 @@
|
||||||
"default_wallets": "Vedi tutti i portafogli",
|
"default_wallets": "Vedi tutti i portafogli",
|
||||||
"electrum_connected": "Connesso",
|
"electrum_connected": "Connesso",
|
||||||
"electrum_connected_not": "Non connesso",
|
"electrum_connected_not": "Non connesso",
|
||||||
"electrum_error_connect": "Impossibile connettersi al server Electrum specificato",
|
|
||||||
"lndhub_uri": "Per esempio, {example}",
|
"lndhub_uri": "Per esempio, {example}",
|
||||||
"electrum_host": "Per esempio, {example}",
|
"electrum_host": "Per esempio, {example}",
|
||||||
"electrum_offline_mode": "Modalità offline",
|
"electrum_offline_mode": "Modalità offline",
|
||||||
|
@ -300,7 +286,6 @@
|
||||||
"privacy_read_clipboard": "Leggi gli appunti",
|
"privacy_read_clipboard": "Leggi gli appunti",
|
||||||
"privacy_system_settings": "Impostazioni di sistema",
|
"privacy_system_settings": "Impostazioni di sistema",
|
||||||
"privacy_quickactions": "Scorciatoie Wallet",
|
"privacy_quickactions": "Scorciatoie Wallet",
|
||||||
"privacy_quickactions_explanation": "Tocca e mantieni premuto l'icona dell'app BlueWallet sulla tua Schermata Home per visualizzare rapidamente il saldo del tuo wallet.",
|
|
||||||
"privacy_clipboard_explanation": "Fornisci scorciatoie se viene rilevato un indirizzo o una ricevuta nella tua clipboard.",
|
"privacy_clipboard_explanation": "Fornisci scorciatoie se viene rilevato un indirizzo o una ricevuta nella tua clipboard.",
|
||||||
"privacy_do_not_track": "Disattiva Analytics",
|
"privacy_do_not_track": "Disattiva Analytics",
|
||||||
"privacy_do_not_track_explanation": "Le informazioni circa la performance e l'affidabilità non saranno inviati per l'analisi.",
|
"privacy_do_not_track_explanation": "Le informazioni circa la performance e l'affidabilità non saranno inviati per l'analisi.",
|
||||||
|
@ -310,16 +295,13 @@
|
||||||
"selfTest": "Auto-Test",
|
"selfTest": "Auto-Test",
|
||||||
"save": "Salva",
|
"save": "Salva",
|
||||||
"saved": "Salvato",
|
"saved": "Salvato",
|
||||||
"success_transaction_broadcasted": "Successo! La transazione è stata trasmessa!",
|
|
||||||
"total_balance": "Saldo totale",
|
"total_balance": "Saldo totale",
|
||||||
"total_balance_explanation": "Mostra il saldo totale del tutti i tuoi portafogli in una widget sulla tua schermata home.",
|
"total_balance_explanation": "Mostra il saldo totale del tutti i tuoi portafogli in una widget sulla tua schermata home.",
|
||||||
"widgets": "Widgets",
|
"widgets": "Widgets",
|
||||||
"tools": "Strumenti"
|
"tools": "Strumenti"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Desideri ricevere delle notifiche quando ricevi dei pagamenti?",
|
"would_you_like_to_receive_notifications": "Desideri ricevere delle notifiche quando ricevi dei pagamenti?"
|
||||||
"no_and_dont_ask": "No, e non chiedermelo più",
|
|
||||||
"ask_me_later": "Chiedimelo dopo"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Rimpiazzeremo questa transazione con una che effettua un pagamento a te stesso ed ha costi di transazione più alti. Questa cancella di fatto la transazione attualmente in corso. Questa procedura è chiamata RBF—Replace by Fee.",
|
"cancel_explain": "Rimpiazzeremo questa transazione con una che effettua un pagamento a te stesso ed ha costi di transazione più alti. Questa cancella di fatto la transazione attualmente in corso. Questa procedura è chiamata RBF—Replace by Fee.",
|
||||||
|
@ -392,7 +374,6 @@
|
||||||
"details_advanced": "Avanzato",
|
"details_advanced": "Avanzato",
|
||||||
"details_are_you_sure": "Sei sicuro?",
|
"details_are_you_sure": "Sei sicuro?",
|
||||||
"details_connected_to": "Connesso a",
|
"details_connected_to": "Connesso a",
|
||||||
"details_del_wb_err": "Il saldo fornito non coincide con il saldo di questo wallet. Si prega di riprovare.",
|
|
||||||
"details_del_wb_q": "Attenzione: questo wallet non è vuoto, non sarà possibile recuperare i fondi senza la seed phrase del wallet. Per evitare la rimozione accidentale, si prega di inserire il saldo del wallet {balance} satoshi.",
|
"details_del_wb_q": "Attenzione: questo wallet non è vuoto, non sarà possibile recuperare i fondi senza la seed phrase del wallet. Per evitare la rimozione accidentale, si prega di inserire il saldo del wallet {balance} satoshi.",
|
||||||
"details_delete": "Elimina",
|
"details_delete": "Elimina",
|
||||||
"details_delete_wallet": "Rimuovi portafoglio",
|
"details_delete_wallet": "Rimuovi portafoglio",
|
||||||
|
@ -429,16 +410,9 @@
|
||||||
"import_discovery_subtitle": "Scegli un portafoglio scoperto",
|
"import_discovery_subtitle": "Scegli un portafoglio scoperto",
|
||||||
"import_discovery_derivation": "Usa un percorso di derivazione personalizzato",
|
"import_discovery_derivation": "Usa un percorso di derivazione personalizzato",
|
||||||
"import_discovery_no_wallets": "Non è stato trovato alcun portafoglio.",
|
"import_discovery_no_wallets": "Non è stato trovato alcun portafoglio.",
|
||||||
"import_derivation_found": "trovato",
|
|
||||||
"import_derivation_found_not": "non trovato",
|
|
||||||
"import_derivation_loading": "caricamento...",
|
|
||||||
"import_derivation_subtitle": "Inserisci un percorso di derivazione personalizzato e proveremo a scoprire il tuo portafoglio.",
|
|
||||||
"import_derivation_title": "Percorso di derivazione",
|
"import_derivation_title": "Percorso di derivazione",
|
||||||
"import_derivation_unknown": "sconosciuto",
|
|
||||||
"import_wrong_path": "Percorso di derivazione errato",
|
|
||||||
"list_create_a_button": "Aggiungi ora",
|
"list_create_a_button": "Aggiungi ora",
|
||||||
"list_create_a_wallet": "Aggiungi un portafoglio",
|
"list_create_a_wallet": "Aggiungi un portafoglio",
|
||||||
"list_create_a_wallet_text": "È gratuito e puoi crearne\nquanti ne vuoi.",
|
|
||||||
"list_empty_txs1": "Le tue transazioni appariranno qui,",
|
"list_empty_txs1": "Le tue transazioni appariranno qui,",
|
||||||
"list_empty_txs1_lightning": "Il portafoglio Lightning dovrebbe essere utilizzato per le tue transazioni quotidiane. Le commissioni sono bassissime e la velocità delle transazioni è incredibile.",
|
"list_empty_txs1_lightning": "Il portafoglio Lightning dovrebbe essere utilizzato per le tue transazioni quotidiane. Le commissioni sono bassissime e la velocità delle transazioni è incredibile.",
|
||||||
"list_empty_txs2": "Inizia con il tuo wallet.",
|
"list_empty_txs2": "Inizia con il tuo wallet.",
|
||||||
|
@ -503,20 +477,14 @@
|
||||||
"quorum_header": "Quorum",
|
"quorum_header": "Quorum",
|
||||||
"of": "di",
|
"of": "di",
|
||||||
"wallet_type": "Tipologia di portafoglio",
|
"wallet_type": "Tipologia di portafoglio",
|
||||||
"invalid_mnemonics": "La frase mnemonica non è valida.",
|
|
||||||
"invalid_cosigner": "Dati del cofirmatario non validi",
|
|
||||||
"not_a_multisignature_xpub": "Questa non è una XPUB appartenente ad un portafoglio multifirma!",
|
"not_a_multisignature_xpub": "Questa non è una XPUB appartenente ad un portafoglio multifirma!",
|
||||||
"invalid_cosigner_format": "Cofirmatario non corretto: Questo non è un cofirmatario per il formato {format}.",
|
|
||||||
"create_new_key": "Crea nuovo",
|
"create_new_key": "Crea nuovo",
|
||||||
"scan_or_open_file": "Scansiona o apri file",
|
"scan_or_open_file": "Scansiona o apri file",
|
||||||
"i_have_mnemonics": "Ho un seed per questa chiave.",
|
"i_have_mnemonics": "Ho un seed per questa chiave.",
|
||||||
"type_your_mnemonics": "Inserisci un seed per importare la tua chiave Vault esistente.",
|
"type_your_mnemonics": "Inserisci un seed per importare la tua chiave Vault esistente.",
|
||||||
"this_is_cosigners_xpub": "Questa è la XPUB del cofirmatario—pronta per essere importata in un altro portafoglio. È possibile condividerla.",
|
|
||||||
"wallet_key_created": "La tua chiave Vault è stata creata. Prenditi un momento per creare un backup sicuro del tuo seed mnemonico.",
|
"wallet_key_created": "La tua chiave Vault è stata creata. Prenditi un momento per creare un backup sicuro del tuo seed mnemonico.",
|
||||||
"are_you_sure_seed_will_be_lost": "Sei sicuro/a? Il tuo seed mnemonico andrà perduto se non hai un backup.",
|
"are_you_sure_seed_will_be_lost": "Sei sicuro/a? Il tuo seed mnemonico andrà perduto se non hai un backup.",
|
||||||
"forget_this_seed": "Dimentica questo seed e invece usa la XPUB.",
|
"forget_this_seed": "Dimentica questo seed e invece usa la XPUB.",
|
||||||
"view_edit_cosigners": "Visualizza/Modifica i cofirmatari",
|
|
||||||
"this_cosigner_is_already_imported": "Questo cofirmatario è già stato importato.",
|
|
||||||
"export_signed_psbt": "Esporta una PSBT firmata",
|
"export_signed_psbt": "Esporta una PSBT firmata",
|
||||||
"input_fp": "Inserisci fingerprint",
|
"input_fp": "Inserisci fingerprint",
|
||||||
"input_fp_explain": "Salta per usare il valore predefinito (00000000)",
|
"input_fp_explain": "Salta per usare il valore predefinito (00000000)",
|
||||||
|
@ -541,14 +509,12 @@
|
||||||
"owns": "{label} è proprietario dell'indirizzo {address}",
|
"owns": "{label} è proprietario dell'indirizzo {address}",
|
||||||
"enter_address": "Inserisci l'indirizzo",
|
"enter_address": "Inserisci l'indirizzo",
|
||||||
"check_address": "Controlla l'indirizzo",
|
"check_address": "Controlla l'indirizzo",
|
||||||
"no_wallet_owns_address": "Nessuno dei portafogli disponibili è proprietario dell'indirizzo fornito.",
|
"no_wallet_owns_address": "Nessuno dei portafogli disponibili è proprietario dell'indirizzo fornito."
|
||||||
"view_qrcode": "Visualizza QRCode"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Resto",
|
"change": "Resto",
|
||||||
"coins_selected": "Bitcoin selezionati ({number})",
|
"coins_selected": "Bitcoin selezionati ({number})",
|
||||||
"selected_summ": "{value} selezionati",
|
"selected_summ": "{value} selezionati",
|
||||||
"empty": "Questo wallet non contiene monete al momento.",
|
|
||||||
"freeze": "Congela",
|
"freeze": "Congela",
|
||||||
"freezeLabel": "Congela",
|
"freezeLabel": "Congela",
|
||||||
"freezeLabel_un": "Scongela",
|
"freezeLabel_un": "Scongela",
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
"success": "成功",
|
"success": "成功",
|
||||||
"wallet_key": "ウォレットキー",
|
"wallet_key": "ウォレットキー",
|
||||||
"invalid_animated_qr_code_fragment": "無効なアニメーションQRコードフラグメントです。再度お試しください。",
|
"invalid_animated_qr_code_fragment": "無効なアニメーションQRコードフラグメントです。再度お試しください。",
|
||||||
"file_saved": "ファイル {filePath} は {destination} に保存されました。",
|
|
||||||
"downloads_folder": "ダウンロードフォルダ",
|
|
||||||
"close": "閉じる",
|
"close": "閉じる",
|
||||||
"change_input_currency": "入金額を変更",
|
"change_input_currency": "入金額を変更",
|
||||||
"refresh": "更新",
|
"refresh": "更新",
|
||||||
|
|
|
@ -11,8 +11,7 @@
|
||||||
"yes": "ಹೌದು",
|
"yes": "ಹೌದು",
|
||||||
"no": "ಇಲ್ಲ",
|
"no": "ಇಲ್ಲ",
|
||||||
"save": "ಉಳಿಸಿ",
|
"save": "ಉಳಿಸಿ",
|
||||||
"wallet_key": "ವ್ಯಾಲೆಟ್ ಕೀ",
|
"wallet_key": "ವ್ಯಾಲೆಟ್ ಕೀ"
|
||||||
"invalid_animated_qr_code_fragment": "ಅಮಾನ್ಯ ಅನಿಮೇಟೆಡ್ QR ಕೋಡ್. ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ."
|
|
||||||
},
|
},
|
||||||
"entropy": {
|
"entropy": {
|
||||||
"save": "ಉಳಿಸಿ"
|
"save": "ಉಳಿಸಿ"
|
||||||
|
|
|
@ -14,10 +14,7 @@
|
||||||
"save": "저장",
|
"save": "저장",
|
||||||
"seed": "시드",
|
"seed": "시드",
|
||||||
"success": "성공",
|
"success": "성공",
|
||||||
"wallet_key": "지갑 키",
|
"wallet_key": "지갑 키"
|
||||||
"invalid_animated_qr_code_fragment": "유효하지 않은 QR 코드입니다. 다시 시도하십시오.",
|
|
||||||
"file_saved": "파일이{filePath} {destination}에 저장되었습니다.",
|
|
||||||
"downloads_folder": "폴더를 다운로드합니다."
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "경고"
|
"default": "경고"
|
||||||
|
@ -49,25 +46,20 @@
|
||||||
"claim_balance": "현 잔고{balance} 찾아가기",
|
"claim_balance": "현 잔고{balance} 찾아가기",
|
||||||
"close_channel": "챈널 닫기",
|
"close_channel": "챈널 닫기",
|
||||||
"new_channel": "새 챈널",
|
"new_channel": "새 챈널",
|
||||||
"errorInvoiceExpired": "청구서가 만료되었습니다.",
|
|
||||||
"force_close_channel": "챈널을 강제로 닫을까요?",
|
"force_close_channel": "챈널을 강제로 닫을까요?",
|
||||||
"expired": "만료되었습니다",
|
"expired": "만료되었습니다",
|
||||||
"node_alias": "노드 별칭",
|
"node_alias": "노드 별칭",
|
||||||
"expiresIn": "{time}분 뒤 무효화됩니다",
|
"expiresIn": "{time}분 뒤 무효화됩니다",
|
||||||
"payButton": "지불하기",
|
"payButton": "지불하기",
|
||||||
"placeholder": "청구서",
|
|
||||||
"open_channel": "챈널 열기",
|
"open_channel": "챈널 열기",
|
||||||
"funding_amount_placeholder": "자금규모, 예를 들면 0.001",
|
|
||||||
"opening_channnel_for_from": "{fromWalletLabel} 지갑의 기금으로 {forWalletLabel} 지갑에 챈널을 개설중",
|
"opening_channnel_for_from": "{fromWalletLabel} 지갑의 기금으로 {forWalletLabel} 지갑에 챈널을 개설중",
|
||||||
"are_you_sure_open_channel": "정말 이 챈널을 개설하기 원하십니까?",
|
"are_you_sure_open_channel": "정말 이 챈널을 개설하기 원하십니까?",
|
||||||
"potentialFee": "잠재적 수수료:{fee}",
|
|
||||||
"remote_host": "원격 호스트",
|
"remote_host": "원격 호스트",
|
||||||
"refill": "재충전",
|
"refill": "재충전",
|
||||||
"reconnect_peer": "피어 재연결",
|
"reconnect_peer": "피어 재연결",
|
||||||
"refill_create": "진행을 위해서 재충전할 수있는 비트코인 지갑을 만들어주세요.",
|
"refill_create": "진행을 위해서 재충전할 수있는 비트코인 지갑을 만들어주세요.",
|
||||||
"refill_external": "외부 지갑으로 재충전합니다.",
|
"refill_external": "외부 지갑으로 재충전합니다.",
|
||||||
"refill_lnd_balance": "라이트닝 월렛잔액 재충전하기",
|
"refill_lnd_balance": "라이트닝 월렛잔액 재충전하기",
|
||||||
"sameWalletAsInvoiceError": "청구서를 만든 지갑으로는 해당 청구서를 지불할 수 없습니다.",
|
|
||||||
"title": "자금 관리하기",
|
"title": "자금 관리하기",
|
||||||
"can_send": "보내기 가능",
|
"can_send": "보내기 가능",
|
||||||
"can_receive": "받기가능",
|
"can_receive": "받기가능",
|
||||||
|
@ -80,7 +72,6 @@
|
||||||
"open_direct_channel": "이 노드로 직접 채널 열기:",
|
"open_direct_channel": "이 노드로 직접 채널 열기:",
|
||||||
"please_pay_between_and": "{min}와 {max} 사이의 금액으로 지불하세요",
|
"please_pay_between_and": "{min}와 {max} 사이의 금액으로 지불하세요",
|
||||||
"please_pay": "지불해주세요.",
|
"please_pay": "지불해주세요.",
|
||||||
"preimage": "사전 이미지/ 역상 이미지",
|
|
||||||
"sats": "사토시",
|
"sats": "사토시",
|
||||||
"wasnt_paid_and_expired": "이 청구서는 미결제되었으며 유효기간이 경과되었습니다."
|
"wasnt_paid_and_expired": "이 청구서는 미결제되었으며 유효기간이 경과되었습니다."
|
||||||
},
|
},
|
||||||
|
@ -98,13 +89,9 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "backup phrase 를 저장해뒀나요? 이 backup phrase는 디바이스를 잃어버렸을 때 자금에 접근하는데 필요합니다. backup phrase가 없다면 영구적으로 자금을 찾을 수 없게 됩니다. ",
|
"ask": "backup phrase 를 저장해뒀나요? 이 backup phrase는 디바이스를 잃어버렸을 때 자금에 접근하는데 필요합니다. backup phrase가 없다면 영구적으로 자금을 찾을 수 없게 됩니다. ",
|
||||||
"ask_no": "아니요. 없습니다.",
|
"ok": "OK. 기록 했습니다.",
|
||||||
"ask_yes": "예. 있습니다.",
|
|
||||||
"ok": "네. 적었습니다.",
|
|
||||||
"ok_lnd": "네 저장했습니다.",
|
|
||||||
"text": "잠시 멈추고 이 mnemonic phrase를 적을 종이를 준비해주세요.\n이건 월렛을 되찾을 때 쓸 예비 백업입니다.",
|
"text": "잠시 멈추고 이 mnemonic phrase를 적을 종이를 준비해주세요.\n이건 월렛을 되찾을 때 쓸 예비 백업입니다.",
|
||||||
"text_lnd": "이 지갑 백업을 저장하세요. 분실시 지갑을 복구할 수 있게 합니다.",
|
"text_lnd": "이 지갑 백업을 저장하세요. 분실시 지갑을 복구할 수 있게 합니다."
|
||||||
"title": "월렛이 생성되었습니다."
|
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "생성하기",
|
"details_create": "생성하기",
|
||||||
|
@ -152,9 +139,7 @@
|
||||||
"details_create": "청구서 만들기",
|
"details_create": "청구서 만들기",
|
||||||
"details_error_decode": "비트코인 주소를 해석할 수 없습니다",
|
"details_error_decode": "비트코인 주소를 해석할 수 없습니다",
|
||||||
"details_fee_field_is_not_valid": "유효한 수수료가 아닙니다",
|
"details_fee_field_is_not_valid": "유효한 수수료가 아닙니다",
|
||||||
"details_frozen": "{amount} BTC가 동결되어 있습니다",
|
|
||||||
"details_next": "다음",
|
"details_next": "다음",
|
||||||
"details_no_signed_tx": "선택된 화일에는 들여오기 가능한 거래내역이 없습니다.",
|
|
||||||
"details_note_placeholder": "자기보관용 노트",
|
"details_note_placeholder": "자기보관용 노트",
|
||||||
"details_scan": "스캔",
|
"details_scan": "스캔",
|
||||||
"details_scan_hint": "목적지를 스캔하거나 들여오기 하기위해서 더블 탭하세요",
|
"details_scan_hint": "목적지를 스캔하거나 들여오기 하기위해서 더블 탭하세요",
|
||||||
|
@ -182,10 +167,8 @@
|
||||||
"input_paste": "붙여넣기",
|
"input_paste": "붙여넣기",
|
||||||
"input_total": "총합계:",
|
"input_total": "총합계:",
|
||||||
"permission_camera_message": "카메라 사용 허가가 필요합니다.",
|
"permission_camera_message": "카메라 사용 허가가 필요합니다.",
|
||||||
"permission_camera_title": "카메라사용 허가",
|
|
||||||
"psbt_sign": "거래를 사인하세요",
|
"psbt_sign": "거래를 사인하세요",
|
||||||
"open_settings": "설정 열기",
|
"open_settings": "설정 열기",
|
||||||
"permission_storage_later": "나중에 물어보기",
|
|
||||||
"permission_storage_message": "블루월렛이 이 파일을 스토리지에 저장하기 위해서는 사용자의 허가가 필요합니다.",
|
"permission_storage_message": "블루월렛이 이 파일을 스토리지에 저장하기 위해서는 사용자의 허가가 필요합니다.",
|
||||||
"permission_storage_denied_message": "BlueWallet이 이 화일을 저장할 수 없습니다. 설정에 가셔서 저장관련 허가설정을 허락가능으로 설정하세요",
|
"permission_storage_denied_message": "BlueWallet이 이 화일을 저장할 수 없습니다. 설정에 가셔서 저장관련 허가설정을 허락가능으로 설정하세요",
|
||||||
"permission_storage_title": "스토리지 접근 허가",
|
"permission_storage_title": "스토리지 접근 허가",
|
||||||
|
@ -196,7 +179,6 @@
|
||||||
"outdated_rate": "최근 요율 갱신: {date}",
|
"outdated_rate": "최근 요율 갱신: {date}",
|
||||||
"psbt_tx_open": "사인된 거래 열기",
|
"psbt_tx_open": "사인된 거래 열기",
|
||||||
"psbt_tx_scan": "사인된 거래 스캔하기",
|
"psbt_tx_scan": "사인된 거래 스캔하기",
|
||||||
"qr_error_no_qrcode": "선택된 이미지에서 QR코드를 인식할 수 없습니다. 이미지에 QR코드를 제외한 다른 내용이 포함되어 있는 지 확인해주세요. ",
|
|
||||||
"reset_amount": "금액 재설정",
|
"reset_amount": "금액 재설정",
|
||||||
"reset_amount_confirm": "금액을 재설정하기 원하십니까?",
|
"reset_amount_confirm": "금액을 재설정하기 원하십니까?",
|
||||||
"success_done": "끝났습니다.",
|
"success_done": "끝났습니다.",
|
||||||
|
@ -232,7 +214,6 @@
|
||||||
"default_wallets": "모든 지갑 보기",
|
"default_wallets": "모든 지갑 보기",
|
||||||
"electrum_connected": "연결되었습니다.",
|
"electrum_connected": "연결되었습니다.",
|
||||||
"electrum_connected_not": "연결되지 않았습니다.",
|
"electrum_connected_not": "연결되지 않았습니다.",
|
||||||
"electrum_error_connect": "제공된 일렉트럼 서버에 연결할 수 없습니다.",
|
|
||||||
"lndhub_uri": "예, {example}",
|
"lndhub_uri": "예, {example}",
|
||||||
"electrum_host": "예, {example}",
|
"electrum_host": "예, {example}",
|
||||||
"electrum_offline_mode": "오프라인 모드",
|
"electrum_offline_mode": "오프라인 모드",
|
||||||
|
@ -275,7 +256,6 @@
|
||||||
"lightning_error_lndhub_uri": "무효 LNDhub URI",
|
"lightning_error_lndhub_uri": "무효 LNDhub URI",
|
||||||
"lightning_saved": "변경된 사항이 성공적으로 저장되었습니다.",
|
"lightning_saved": "변경된 사항이 성공적으로 저장되었습니다.",
|
||||||
"lightning_settings": "라이트닝 설정",
|
"lightning_settings": "라이트닝 설정",
|
||||||
"lightning_settings_explain": "자신이 직접운영하는 LND 노드에 연결하기위해선 LNDHub를 설치하고 그 URL을 여기 설정에 넣어십시요. 블루월렛에서 제공하는 LNDHub를 사용하실 경우는 공란으로 남겨주세요. 변경사항이 저장된 후 생선된 지갑들 만이 지정된 LNDHub에 연결됨을 주의하시기 바랍니다.",
|
|
||||||
"network": "네트워크",
|
"network": "네트워크",
|
||||||
"network_broadcast": "거래내역 송출",
|
"network_broadcast": "거래내역 송출",
|
||||||
"network_electrum": "일렉트럼 서버",
|
"network_electrum": "일렉트럼 서버",
|
||||||
|
@ -290,7 +270,6 @@
|
||||||
"privacy_read_clipboard": "읽기용 클립보드",
|
"privacy_read_clipboard": "읽기용 클립보드",
|
||||||
"privacy_system_settings": "시스템 설정",
|
"privacy_system_settings": "시스템 설정",
|
||||||
"privacy_quickactions": "지갑 단축경로",
|
"privacy_quickactions": "지갑 단축경로",
|
||||||
"privacy_quickactions_explanation": "지갑의 잔고를 신속 확인하기 위해서 바탕화면에 있는 블루월렛 어플 아이콘에 한동안 눌러주기를 하세요",
|
|
||||||
"privacy_clipboard_explanation": "클립보드에 주소나 청구서가 보이면 단축경로를 제공하세요",
|
"privacy_clipboard_explanation": "클립보드에 주소나 청구서가 보이면 단축경로를 제공하세요",
|
||||||
"privacy_do_not_track": "분석을 사용불가로",
|
"privacy_do_not_track": "분석을 사용불가로",
|
||||||
"privacy_do_not_track_explanation": "성능과 신뢰성 정보는 분석하는 데 제출되지 않을 것 입니다.",
|
"privacy_do_not_track_explanation": "성능과 신뢰성 정보는 분석하는 데 제출되지 않을 것 입니다.",
|
||||||
|
@ -300,16 +279,13 @@
|
||||||
"selfTest": "자가 테스트",
|
"selfTest": "자가 테스트",
|
||||||
"save": "저장",
|
"save": "저장",
|
||||||
"saved": "저장됨",
|
"saved": "저장됨",
|
||||||
"success_transaction_broadcasted": "성공! 거래내역이 송출되었습니다.",
|
|
||||||
"total_balance": "총 잔고",
|
"total_balance": "총 잔고",
|
||||||
"total_balance_explanation": "홈 화면 위젯에 총 잔액을 보여줍니다. ",
|
"total_balance_explanation": "홈 화면 위젯에 총 잔액을 보여줍니다. ",
|
||||||
"widgets": "위젯",
|
"widgets": "위젯",
|
||||||
"tools": "도구"
|
"tools": "도구"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "입금이 있을 때 알림경고를 받으시겠습니까?",
|
"would_you_like_to_receive_notifications": "입금이 있을 때 알림경고를 받으시겠습니까?"
|
||||||
"no_and_dont_ask": "아니오, 다시 묻기 없기",
|
|
||||||
"ask_me_later": "나중에 묻기"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "더 높은 수수료율로 사용자님께 지불되도록 하는 거래내역으로 당 거래내역을 교체하려고 합니다. 결과적으로 현 거래내역을 취소하는 것과 같습니다. 이런 방법을 RBF라고 합니다. - 수수료를 통한 교체",
|
"cancel_explain": "더 높은 수수료율로 사용자님께 지불되도록 하는 거래내역으로 당 거래내역을 교체하려고 합니다. 결과적으로 현 거래내역을 취소하는 것과 같습니다. 이런 방법을 RBF라고 합니다. - 수수료를 통한 교체",
|
||||||
|
@ -380,7 +356,6 @@
|
||||||
"details_advanced": "고급",
|
"details_advanced": "고급",
|
||||||
"details_are_you_sure": "정말 맞습니까?",
|
"details_are_you_sure": "정말 맞습니까?",
|
||||||
"details_connected_to": "연결됨",
|
"details_connected_to": "연결됨",
|
||||||
"details_del_wb_err": "제공된 잔고가 이 지갑의 잔고와 일치하지 않습니다. 다시 시도해보세요.",
|
|
||||||
"details_del_wb_q": "이 지갑에는 아직 잔고가 남아 있습니다. 계속하시기 전에 지갑의 종자 단어들이 없으면 남아있는 기금을 다시 찾을 수 없음을 인지하시기 바랍니다. 원치않게 제거되는 것을 피하기 위해 {balance} 사토시로 표시된 지갑 잔고를 입력하세요.",
|
"details_del_wb_q": "이 지갑에는 아직 잔고가 남아 있습니다. 계속하시기 전에 지갑의 종자 단어들이 없으면 남아있는 기금을 다시 찾을 수 없음을 인지하시기 바랍니다. 원치않게 제거되는 것을 피하기 위해 {balance} 사토시로 표시된 지갑 잔고를 입력하세요.",
|
||||||
"details_delete": "지움",
|
"details_delete": "지움",
|
||||||
"details_delete_wallet": "지갑 지우기",
|
"details_delete_wallet": "지갑 지우기",
|
||||||
|
@ -415,16 +390,9 @@
|
||||||
"import_discovery_subtitle": "발견된 지갑 선택",
|
"import_discovery_subtitle": "발견된 지갑 선택",
|
||||||
"import_discovery_derivation": "맞춤형 유도경로 사용",
|
"import_discovery_derivation": "맞춤형 유도경로 사용",
|
||||||
"import_discovery_no_wallets": "지갑이 없습니다.",
|
"import_discovery_no_wallets": "지갑이 없습니다.",
|
||||||
"import_derivation_found": "발견",
|
|
||||||
"import_derivation_found_not": "미발견",
|
|
||||||
"import_derivation_loading": "실어오는 중...",
|
|
||||||
"import_derivation_subtitle": "맞춤형 유도경로를 입력하시면 사용자의 지갑을 찾아보도록 하겠습니다.",
|
|
||||||
"import_derivation_title": "유도 경로",
|
"import_derivation_title": "유도 경로",
|
||||||
"import_derivation_unknown": "미상",
|
|
||||||
"import_wrong_path": "잘못된 유도경로",
|
|
||||||
"list_create_a_button": "지금 추가하기",
|
"list_create_a_button": "지금 추가하기",
|
||||||
"list_create_a_wallet": "지갑 추가하기",
|
"list_create_a_wallet": "지갑 추가하기",
|
||||||
"list_create_a_wallet_text": "무료이고 원하시는 만큼 만드실 수 있습니다.",
|
|
||||||
"list_empty_txs1": "사용자 거래내역은 여기에 표시됩니다.",
|
"list_empty_txs1": "사용자 거래내역은 여기에 표시됩니다.",
|
||||||
"list_empty_txs1_lightning": "라이트닝 월렛은 데일리 트랜잭션에 사용해야합니다. 수수료는 매우 저렴하고 속도는 바람처럼 빠릅니다.",
|
"list_empty_txs1_lightning": "라이트닝 월렛은 데일리 트랜잭션에 사용해야합니다. 수수료는 매우 저렴하고 속도는 바람처럼 빠릅니다.",
|
||||||
"list_empty_txs2": "사용자 지갑으로 시작",
|
"list_empty_txs2": "사용자 지갑으로 시작",
|
||||||
|
@ -489,20 +457,14 @@
|
||||||
"quorum_header": "정족수",
|
"quorum_header": "정족수",
|
||||||
"of": "의",
|
"of": "의",
|
||||||
"wallet_type": "지갑 형태",
|
"wallet_type": "지갑 형태",
|
||||||
"invalid_mnemonics": "이 연상문구는 유효하지 않아보입니다.",
|
|
||||||
"invalid_cosigner": "무효한 공동서명 데이터",
|
|
||||||
"not_a_multisignature_xpub": "다중 서명 지갑에서 나온 XPUB이 아닙니다.",
|
"not_a_multisignature_xpub": "다중 서명 지갑에서 나온 XPUB이 아닙니다.",
|
||||||
"invalid_cosigner_format": "틀린 공동서명자: {format} 형식의 공동서명이 아닙니다.",
|
|
||||||
"create_new_key": "새로 생성",
|
"create_new_key": "새로 생성",
|
||||||
"scan_or_open_file": "스캔하거나 화일 들여오기",
|
"scan_or_open_file": "스캔하거나 화일 들여오기",
|
||||||
"i_have_mnemonics": "이 키에 맞는 종자단어를 가지고 있습니다.",
|
"i_have_mnemonics": "이 키에 맞는 종자단어를 가지고 있습니다.",
|
||||||
"type_your_mnemonics": "이미 있는 금고키를 들여오기 위해 종자단어를 넣어세요.",
|
"type_your_mnemonics": "이미 있는 금고키를 들여오기 위해 종자단어를 넣어세요.",
|
||||||
"this_is_cosigners_xpub": "공동서명자의 XPUB입니다-다른 지갑으로 들여오기할 수 있는 상태. 공유하기를 하셔도 안전합니다.",
|
|
||||||
"wallet_key_created": "금고 키가 생성되었습니다. 시간을 내서 사용자의 종자단어를 백업하세요.",
|
"wallet_key_created": "금고 키가 생성되었습니다. 시간을 내서 사용자의 종자단어를 백업하세요.",
|
||||||
"are_you_sure_seed_will_be_lost": "이대로 진행하시겠습니까? 백업하지 않을 시 니모닉 시드(menonic seed)를 잃을 수 있습니다. ",
|
"are_you_sure_seed_will_be_lost": "이대로 진행하시겠습니까? 백업하지 않을 시 니모닉 시드(menonic seed)를 잃을 수 있습니다. ",
|
||||||
"forget_this_seed": "이 시드를 잊어버리고 대신 공개 키를 사용하십시오.",
|
"forget_this_seed": "이 시드를 잊어버리고 대신 공개 키를 사용하십시오.",
|
||||||
"view_edit_cosigners": "공동 서명자 보기/편집",
|
|
||||||
"this_cosigner_is_already_imported": "이 공동 서명자가 이미 있습니다.",
|
|
||||||
"export_signed_psbt": "서명 된 PSBT 내보내기",
|
"export_signed_psbt": "서명 된 PSBT 내보내기",
|
||||||
"input_fp": "지문 입력",
|
"input_fp": "지문 입력",
|
||||||
"input_fp_explain": "기본값 (00000000) 사용 건너뛰기",
|
"input_fp_explain": "기본값 (00000000) 사용 건너뛰기",
|
||||||
|
@ -527,14 +489,12 @@
|
||||||
"owns": "{label} 소유 {address}",
|
"owns": "{label} 소유 {address}",
|
||||||
"enter_address": "주소 입력",
|
"enter_address": "주소 입력",
|
||||||
"check_address": "주소 확인",
|
"check_address": "주소 확인",
|
||||||
"no_wallet_owns_address": "제공된 주소를 가지고 있는 지갑이 없습니다.",
|
"no_wallet_owns_address": "제공된 주소를 가지고 있는 지갑이 없습니다."
|
||||||
"view_qrcode": "QR코드 보기"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "변경",
|
"change": "변경",
|
||||||
"coins_selected": "선택 된 코인 ({number})",
|
"coins_selected": "선택 된 코인 ({number})",
|
||||||
"selected_summ": "{value} 선택됨",
|
"selected_summ": "{value} 선택됨",
|
||||||
"empty": "이 지갑에는 현재 코인이 없습니다.",
|
|
||||||
"freeze": "동결",
|
"freeze": "동결",
|
||||||
"freezeLabel": "동결",
|
"freezeLabel": "동결",
|
||||||
"freezeLabel_un": "동결해제",
|
"freezeLabel_un": "동결해제",
|
||||||
|
|
|
@ -17,6 +17,7 @@ export const AvailableLanguages: Readonly<TLanguage[]> = Object.freeze([
|
||||||
{ label: 'Eesti (ET)', value: 'et' },
|
{ label: 'Eesti (ET)', value: 'et' },
|
||||||
{ label: 'Ελληνικά (EL)', value: 'el' },
|
{ label: 'Ελληνικά (EL)', value: 'el' },
|
||||||
{ label: 'فارسی (FA)', value: 'fa', isRTL: true },
|
{ label: 'فارسی (FA)', value: 'fa', isRTL: true },
|
||||||
|
{ label: 'بختیاری (BQI)', value: 'bqi', isRTL: true },
|
||||||
{ label: 'Français (FR)', value: 'fr_fr' },
|
{ label: 'Français (FR)', value: 'fr_fr' },
|
||||||
{ label: 'עִברִית (HE)', value: 'he', isRTL: true },
|
{ label: 'עִברִית (HE)', value: 'he', isRTL: true },
|
||||||
{ label: 'Italiano (IT)', value: 'it' },
|
{ label: 'Italiano (IT)', value: 'it' },
|
||||||
|
|
40
loc/ms.json
40
loc/ms.json
|
@ -14,10 +14,7 @@
|
||||||
"save": "Simpan",
|
"save": "Simpan",
|
||||||
"seed": "Benih",
|
"seed": "Benih",
|
||||||
"success": "Berjaya",
|
"success": "Berjaya",
|
||||||
"wallet_key": "Anak kunci dompet",
|
"wallet_key": "Anak kunci dompet"
|
||||||
"invalid_animated_qr_code_fragment": "Serpihan QRCode teranimasi tidak sah. Sila cuba lagi.",
|
|
||||||
"file_saved": "Fail {filePath} sudah disimpan di dalam {destination} anda.",
|
|
||||||
"downloads_folder": "Folder Muat Turun"
|
|
||||||
},
|
},
|
||||||
"azteco": {
|
"azteco": {
|
||||||
"codeIs": "Kod baucar anda ialah",
|
"codeIs": "Kod baucar anda ialah",
|
||||||
|
@ -46,25 +43,20 @@
|
||||||
"claim_balance": "Tebus baki {balance}",
|
"claim_balance": "Tebus baki {balance}",
|
||||||
"close_channel": "Tutup saluran",
|
"close_channel": "Tutup saluran",
|
||||||
"new_channel": "Saluran baru",
|
"new_channel": "Saluran baru",
|
||||||
"errorInvoiceExpired": "Invois tamat tempoh",
|
|
||||||
"force_close_channel": "Tutup saluran secara paksa?",
|
"force_close_channel": "Tutup saluran secara paksa?",
|
||||||
"expired": "Tamat tempoh",
|
"expired": "Tamat tempoh",
|
||||||
"node_alias": "Surihan nod",
|
"node_alias": "Surihan nod",
|
||||||
"expiresIn": "Tamat tempoh dalam {time} minit",
|
"expiresIn": "Tamat tempoh dalam {time} minit",
|
||||||
"payButton": "Bayar",
|
"payButton": "Bayar",
|
||||||
"placeholder": "Invois",
|
|
||||||
"open_channel": "Saluran Terbuka",
|
"open_channel": "Saluran Terbuka",
|
||||||
"funding_amount_placeholder": "Jumlah wang, contohnya 0.001",
|
|
||||||
"opening_channnel_for_from": "Membuka saluran untuk dompet {forWalletLabel}, atas pembiayaan dari {fromWalletLabel}",
|
"opening_channnel_for_from": "Membuka saluran untuk dompet {forWalletLabel}, atas pembiayaan dari {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Adakah anda pasti anda mahu membuka saluran ini?",
|
"are_you_sure_open_channel": "Adakah anda pasti anda mahu membuka saluran ini?",
|
||||||
"potentialFee": "Agakan Yuran: {fee}",
|
|
||||||
"remote_host": "Host Jauh",
|
"remote_host": "Host Jauh",
|
||||||
"refill": "Isi semula",
|
"refill": "Isi semula",
|
||||||
"reconnect_peer": "Sambung semula dengan rakan",
|
"reconnect_peer": "Sambung semula dengan rakan",
|
||||||
"refill_create": "Untuk meneruskan, sila buat dompet Bitcoin untuk diisi semula.",
|
"refill_create": "Untuk meneruskan, sila buat dompet Bitcoin untuk diisi semula.",
|
||||||
"refill_external": "Isi Semula dengan Dompet Luaran",
|
"refill_external": "Isi Semula dengan Dompet Luaran",
|
||||||
"refill_lnd_balance": "Isi Semula Baki Dompet Lightning",
|
"refill_lnd_balance": "Isi Semula Baki Dompet Lightning",
|
||||||
"sameWalletAsInvoiceError": "Anda tidak boleh membayar invois dengan dompet yang mencipta invois tersebut.",
|
|
||||||
"title": "Uruskan Wang",
|
"title": "Uruskan Wang",
|
||||||
"can_send": "Boleh Menghantar",
|
"can_send": "Boleh Menghantar",
|
||||||
"can_receive": "Boleh Menerima",
|
"can_receive": "Boleh Menerima",
|
||||||
|
@ -77,7 +69,6 @@
|
||||||
"open_direct_channel": "Buka saluran terus dengan nod ini:",
|
"open_direct_channel": "Buka saluran terus dengan nod ini:",
|
||||||
"please_pay_between_and": "Sila bayar di antara {min} dan {max}",
|
"please_pay_between_and": "Sila bayar di antara {min} dan {max}",
|
||||||
"please_pay": "Sila bayar",
|
"please_pay": "Sila bayar",
|
||||||
"preimage": "Praimej",
|
|
||||||
"sats": "sat.",
|
"sats": "sat.",
|
||||||
"wasnt_paid_and_expired": "Invois ini tidak dibayar dan sudah luput."
|
"wasnt_paid_and_expired": "Invois ini tidak dibayar dan sudah luput."
|
||||||
},
|
},
|
||||||
|
@ -95,13 +86,9 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Sudahkah anda simpan frasa sandaran dompet anda? Frasa sandaran ini diperlukan untuk mencapai wang anda andai anda kehilangan peranti ini. Tanpa frasa sandaran ini, wang anda akan hilang selamanya.",
|
"ask": "Sudahkah anda simpan frasa sandaran dompet anda? Frasa sandaran ini diperlukan untuk mencapai wang anda andai anda kehilangan peranti ini. Tanpa frasa sandaran ini, wang anda akan hilang selamanya.",
|
||||||
"ask_no": "Tidak, belum lagi",
|
"ok": "OK, sudah disalin.",
|
||||||
"ask_yes": "Ya, sudah",
|
|
||||||
"ok": "OK, sudah disalin",
|
|
||||||
"ok_lnd": "OK, sudah disimpan",
|
|
||||||
"text": "Sila ambil sedikit waktu untuk menyalin frasa nemonik ini di atas sehelai kertas.\nSalinan ini adalah sandaran anda dan anda boleh menggunakan salinan ini untuk mendapatkan semula dompet anda. ",
|
"text": "Sila ambil sedikit waktu untuk menyalin frasa nemonik ini di atas sehelai kertas.\nSalinan ini adalah sandaran anda dan anda boleh menggunakan salinan ini untuk mendapatkan semula dompet anda. ",
|
||||||
"text_lnd": "Sila simpan sandaran dompet ini. Sandaran ini membolehkan anda untuk mengembalikan dompet ini dalam kes kehilangan.",
|
"text_lnd": "Sila simpan sandaran dompet ini. Sandaran ini membolehkan anda untuk mengembalikan dompet ini dalam kes kehilangan."
|
||||||
"title": "Dompet anda sudah dicipta"
|
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Cipta",
|
"details_create": "Cipta",
|
||||||
|
@ -143,7 +130,6 @@
|
||||||
"details_error_decode": "Tidak dapat menyahkod alamat Bitcoin",
|
"details_error_decode": "Tidak dapat menyahkod alamat Bitcoin",
|
||||||
"details_fee_field_is_not_valid": "Yuran tidak sah.",
|
"details_fee_field_is_not_valid": "Yuran tidak sah.",
|
||||||
"details_next": "Seterusnya",
|
"details_next": "Seterusnya",
|
||||||
"details_no_signed_tx": "Fail yang dipilih tidak mengandungi urus niaga yang boleh dipindah masuk.",
|
|
||||||
"details_note_placeholder": "Nota Kendiri",
|
"details_note_placeholder": "Nota Kendiri",
|
||||||
"details_scan": "Imbas",
|
"details_scan": "Imbas",
|
||||||
"details_scan_hint": "Ketik dua kali untuk mengimbas atau memindah masuk destinasi",
|
"details_scan_hint": "Ketik dua kali untuk mengimbas atau memindah masuk destinasi",
|
||||||
|
@ -169,10 +155,8 @@
|
||||||
"input_paste": "Tampal",
|
"input_paste": "Tampal",
|
||||||
"input_total": "Jumlah:",
|
"input_total": "Jumlah:",
|
||||||
"permission_camera_message": "Kami memerlukan izin anda untuk menggunakan kamera anda.",
|
"permission_camera_message": "Kami memerlukan izin anda untuk menggunakan kamera anda.",
|
||||||
"permission_camera_title": "Keizinan untuk menggunakan kamera.",
|
|
||||||
"psbt_sign": "Tandatangan urus niaga",
|
"psbt_sign": "Tandatangan urus niaga",
|
||||||
"open_settings": "Buka Tetapan",
|
"open_settings": "Buka Tetapan",
|
||||||
"permission_storage_later": "Tanya semula kemudian",
|
|
||||||
"permission_storage_message": "BlueWallet memerlukan keizinan anda untuk mencapai simpanan anda untuk menyimpan fail ini.",
|
"permission_storage_message": "BlueWallet memerlukan keizinan anda untuk mencapai simpanan anda untuk menyimpan fail ini.",
|
||||||
"permission_storage_denied_message": "BlueWallet tidak dapat menyimpan fail ini. Sila buka tetapan peranti anda dan benarkan Keizinan Simpanan.",
|
"permission_storage_denied_message": "BlueWallet tidak dapat menyimpan fail ini. Sila buka tetapan peranti anda dan benarkan Keizinan Simpanan.",
|
||||||
"permission_storage_title": "Keizinan Capaian Simpanan",
|
"permission_storage_title": "Keizinan Capaian Simpanan",
|
||||||
|
@ -182,7 +166,6 @@
|
||||||
"no_tx_signing_in_progress": "Tiada penandatanganan urus niaga sedang berjalan.",
|
"no_tx_signing_in_progress": "Tiada penandatanganan urus niaga sedang berjalan.",
|
||||||
"psbt_tx_open": "Buka Urus Niaga Bertandatangan",
|
"psbt_tx_open": "Buka Urus Niaga Bertandatangan",
|
||||||
"psbt_tx_scan": "Imbas Urus Niaga Bertandatangan",
|
"psbt_tx_scan": "Imbas Urus Niaga Bertandatangan",
|
||||||
"qr_error_no_qrcode": "Kami tidak menjumpai Kod QR di dalam gambar yang dipilih. Sila pastikan gambar itu hanya mengandungi Kod QR dan tiada isi kandungan lain seperti teks atau butang.",
|
|
||||||
"reset_amount": "Tetapkan Semula Jumlah",
|
"reset_amount": "Tetapkan Semula Jumlah",
|
||||||
"reset_amount_confirm": "Adakah anda ingin menetapkan semula jumlah?",
|
"reset_amount_confirm": "Adakah anda ingin menetapkan semula jumlah?",
|
||||||
"success_done": "Selesai",
|
"success_done": "Selesai",
|
||||||
|
@ -217,7 +200,6 @@
|
||||||
"default_wallets": "Paparkan Semua Dompet",
|
"default_wallets": "Paparkan Semua Dompet",
|
||||||
"electrum_connected": "Terhubung",
|
"electrum_connected": "Terhubung",
|
||||||
"electrum_connected_not": "Tidak Terhubung",
|
"electrum_connected_not": "Tidak Terhubung",
|
||||||
"electrum_error_connect": "Tidak dapat menghubungi pelayan Electrum yang disediakan",
|
|
||||||
"lndhub_uri": "cth., {example}",
|
"lndhub_uri": "cth., {example}",
|
||||||
"electrum_host": "cth., {example}",
|
"electrum_host": "cth., {example}",
|
||||||
"electrum_offline_mode": "Mod Luar Talian",
|
"electrum_offline_mode": "Mod Luar Talian",
|
||||||
|
@ -259,7 +241,6 @@
|
||||||
"lightning_error_lndhub_uri": "URL LNDHub tidak sah",
|
"lightning_error_lndhub_uri": "URL LNDHub tidak sah",
|
||||||
"lightning_saved": "Pengubahan oleh anda berjaya disimpan.",
|
"lightning_saved": "Pengubahan oleh anda berjaya disimpan.",
|
||||||
"lightning_settings": "Tetapan Lightning",
|
"lightning_settings": "Tetapan Lightning",
|
||||||
"lightning_settings_explain": "Untuk menghubungkan nod LND anda sendiri, sila pasang LNDHub dan letakkan URL LNDHub dalam tetapan ini. Kosongkan untuk menggunakan LNDHub BlueWallet . Sila ambil perhatian hanya dompet yang dicipta setelah perubahan disimpan akan dihubungkan kepada LNDHub tersebut.",
|
|
||||||
"network": "Rangkaian",
|
"network": "Rangkaian",
|
||||||
"network_broadcast": "Siarkan Urus Niaga",
|
"network_broadcast": "Siarkan Urus Niaga",
|
||||||
"network_electrum": "Pelayan Electrum",
|
"network_electrum": "Pelayan Electrum",
|
||||||
|
@ -274,7 +255,6 @@
|
||||||
"privacy_read_clipboard": "Baca Papan Sepit",
|
"privacy_read_clipboard": "Baca Papan Sepit",
|
||||||
"privacy_system_settings": "Tetapan Sistem",
|
"privacy_system_settings": "Tetapan Sistem",
|
||||||
"privacy_quickactions": "Pintasan Dompet",
|
"privacy_quickactions": "Pintasan Dompet",
|
||||||
"privacy_quickactions_explanation": "Sentuh dan jeda pada ikon aplikasi BlueWallet di layar beranda anda untuk melihat baki dompet anda secara pantas.",
|
|
||||||
"privacy_clipboard_explanation": "Memberikan pintasan jika alamat atau invois dijumpai pada papan sepit anda.",
|
"privacy_clipboard_explanation": "Memberikan pintasan jika alamat atau invois dijumpai pada papan sepit anda.",
|
||||||
"privacy_do_not_track": "Lumpuhkan Penyelidik",
|
"privacy_do_not_track": "Lumpuhkan Penyelidik",
|
||||||
"privacy_do_not_track_explanation": "Maklumat pencapaian dan keandalan tidak akan dihantar untuk kaji selidik.",
|
"privacy_do_not_track_explanation": "Maklumat pencapaian dan keandalan tidak akan dihantar untuk kaji selidik.",
|
||||||
|
@ -283,16 +263,13 @@
|
||||||
"selfTest": "Swaujian",
|
"selfTest": "Swaujian",
|
||||||
"save": "Simpan",
|
"save": "Simpan",
|
||||||
"saved": "Disimpan",
|
"saved": "Disimpan",
|
||||||
"success_transaction_broadcasted": "Berjaya! Urus niaga anda sudah disiarkan!",
|
|
||||||
"total_balance": "Jumlah Baki",
|
"total_balance": "Jumlah Baki",
|
||||||
"total_balance_explanation": "Paparkan jumlah baki kesemua dompet anda di widget layar beranda anda.",
|
"total_balance_explanation": "Paparkan jumlah baki kesemua dompet anda di widget layar beranda anda.",
|
||||||
"widgets": "Widget",
|
"widgets": "Widget",
|
||||||
"tools": "Alatan"
|
"tools": "Alatan"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Adakah anda mahu menerima pemberitahuan apabila anda mendapat bayaran sedang masuk?",
|
"would_you_like_to_receive_notifications": "Adakah anda mahu menerima pemberitahuan apabila anda mendapat bayaran sedang masuk?"
|
||||||
"no_and_dont_ask": "Tidak, dan jangan ulang tanya saya.",
|
|
||||||
"ask_me_later": "Tanya semula kemudian"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "Urus niaga ini tidak boleh diganti.",
|
"cancel_no": "Urus niaga ini tidak boleh diganti.",
|
||||||
|
@ -355,7 +332,6 @@
|
||||||
"details_advanced": "Lanjut",
|
"details_advanced": "Lanjut",
|
||||||
"details_are_you_sure": "Adakah anda pasti?",
|
"details_are_you_sure": "Adakah anda pasti?",
|
||||||
"details_connected_to": "Terhububg kepada",
|
"details_connected_to": "Terhububg kepada",
|
||||||
"details_del_wb_err": "Jumlah baki yang diberi tidak sepadan dengan baki dompet ini. Sila cuba lagi.",
|
|
||||||
"details_delete": "Padam",
|
"details_delete": "Padam",
|
||||||
"details_delete_wallet": "Padamkan Dompet",
|
"details_delete_wallet": "Padamkan Dompet",
|
||||||
"details_derivation_path": "laluan terbitan",
|
"details_derivation_path": "laluan terbitan",
|
||||||
|
@ -386,7 +362,6 @@
|
||||||
"import_title": "Pindah Masuk",
|
"import_title": "Pindah Masuk",
|
||||||
"list_create_a_button": "Tambah sekarang",
|
"list_create_a_button": "Tambah sekarang",
|
||||||
"list_create_a_wallet": "Tambah dompet",
|
"list_create_a_wallet": "Tambah dompet",
|
||||||
"list_create_a_wallet_text": "Percuma dan anda boleh mencipta\nsebanyak mana yang anda mahu.",
|
|
||||||
"list_empty_txs1": "Urus niaga anda akan terpapar di sini.",
|
"list_empty_txs1": "Urus niaga anda akan terpapar di sini.",
|
||||||
"list_empty_txs1_lightning": "Dompet Lightning sebaiknya digunakan untuk urus niaga harian anda. Yurannya rendah dan kelajuannya sepantas kilat.",
|
"list_empty_txs1_lightning": "Dompet Lightning sebaiknya digunakan untuk urus niaga harian anda. Yurannya rendah dan kelajuannya sepantas kilat.",
|
||||||
"list_empty_txs2": "Mulakan dengan dompet anda.",
|
"list_empty_txs2": "Mulakan dengan dompet anda.",
|
||||||
|
@ -448,20 +423,14 @@
|
||||||
"quorum_header": "Kuorum",
|
"quorum_header": "Kuorum",
|
||||||
"of": "daripada",
|
"of": "daripada",
|
||||||
"wallet_type": "Jenis Dompet",
|
"wallet_type": "Jenis Dompet",
|
||||||
"invalid_mnemonics": "Frasa nemonik ini nampaknya tidak sah.",
|
|
||||||
"invalid_cosigner": "Butiran penanda tangan bersama tidak sah",
|
|
||||||
"not_a_multisignature_xpub": "Ini bukanlah sebentuk XPUB dari dompet tandamai!",
|
"not_a_multisignature_xpub": "Ini bukanlah sebentuk XPUB dari dompet tandamai!",
|
||||||
"invalid_cosigner_format": "Penandamai yang salah: Ini bukanlah seorang penandamai untuk susun atur {format}. ",
|
|
||||||
"create_new_key": "Cipta Baharu",
|
"create_new_key": "Cipta Baharu",
|
||||||
"scan_or_open_file": "Imbas atau buka fail",
|
"scan_or_open_file": "Imbas atau buka fail",
|
||||||
"i_have_mnemonics": "Saya ada benih untuk kunci ini.",
|
"i_have_mnemonics": "Saya ada benih untuk kunci ini.",
|
||||||
"type_your_mnemonics": "Masukkan benih untuk memindah masuk kunci Bilik Kebal yang anda punyai.",
|
"type_your_mnemonics": "Masukkan benih untuk memindah masuk kunci Bilik Kebal yang anda punyai.",
|
||||||
"this_is_cosigners_xpub": "Ini adalah XPUB milik penandamai—sedia untuk dipindah masuk ke dalam dompet lain. Selamat untuk dikongsikan.",
|
|
||||||
"wallet_key_created": "Kunci Bilik Kebal anda sudah dicipta. Sila ambil sedikit waktu untuk membuat sandaran benih nemonik anda.",
|
"wallet_key_created": "Kunci Bilik Kebal anda sudah dicipta. Sila ambil sedikit waktu untuk membuat sandaran benih nemonik anda.",
|
||||||
"are_you_sure_seed_will_be_lost": "Adakah anda pasti? Benih nemonik anda akan hilang jika anda tidak membuat sandaran.",
|
"are_you_sure_seed_will_be_lost": "Adakah anda pasti? Benih nemonik anda akan hilang jika anda tidak membuat sandaran.",
|
||||||
"forget_this_seed": "Lupakan benih ini dan gunakan XPUB sebagai ganti.",
|
"forget_this_seed": "Lupakan benih ini dan gunakan XPUB sebagai ganti.",
|
||||||
"view_edit_cosigners": "Lihat/Ubah Penandamai",
|
|
||||||
"this_cosigner_is_already_imported": "Penandamai ini sudah dipindah masuk.",
|
|
||||||
"export_signed_psbt": "Pindah Keluar PSBT Bertandatangan Penuh",
|
"export_signed_psbt": "Pindah Keluar PSBT Bertandatangan Penuh",
|
||||||
"input_fp": "Masukkan cap jari",
|
"input_fp": "Masukkan cap jari",
|
||||||
"input_fp_explain": "Langkau untuk gunakan nilai lalai (00000000)",
|
"input_fp_explain": "Langkau untuk gunakan nilai lalai (00000000)",
|
||||||
|
@ -491,7 +460,6 @@
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Ubah",
|
"change": "Ubah",
|
||||||
"coins_selected": "Duit yang Dipilih ({number})",
|
"coins_selected": "Duit yang Dipilih ({number})",
|
||||||
"empty": "Dompet ini tidak mempunyai sebarang duit ketika ini.",
|
|
||||||
"freeze": "Bekukan",
|
"freeze": "Bekukan",
|
||||||
"freezeLabel": "Bekukan",
|
"freezeLabel": "Bekukan",
|
||||||
"freezeLabel_un": "Cairkan",
|
"freezeLabel_un": "Cairkan",
|
||||||
|
|
|
@ -14,10 +14,7 @@
|
||||||
"save": "Lagre",
|
"save": "Lagre",
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Vellykket",
|
"success": "Vellykket",
|
||||||
"wallet_key": "Lommebok-nøkkel",
|
"wallet_key": "Lommebok-nøkkel"
|
||||||
"invalid_animated_qr_code_fragment" : "Ugyldig animert QRCode-fragment. Vennligst prøv på nytt.",
|
|
||||||
"file_saved": "Filen {filePath} er lagret i {destination}.",
|
|
||||||
"downloads_folder": "Nedlastingsmappe"
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "Varsling"
|
"default": "Varsling"
|
||||||
|
@ -42,32 +39,28 @@
|
||||||
"network": "Nettverksfeil"
|
"network": "Nettverksfeil"
|
||||||
},
|
},
|
||||||
"lnd": {
|
"lnd": {
|
||||||
"active":"Aktiv",
|
"active": "Aktiv",
|
||||||
"inactive":"Inaktiv",
|
"inactive": "Inaktiv",
|
||||||
"channels": "Kanaler",
|
"channels": "Kanaler",
|
||||||
"no_channels": "Ingen kanaler",
|
"no_channels": "Ingen kanaler",
|
||||||
"claim_balance": "Få saldo {balance}",
|
"claim_balance": "Få saldo {balance}",
|
||||||
"close_channel": "Lukk kanal",
|
"close_channel": "Lukk kanal",
|
||||||
"new_channel" : "Ny kanal",
|
"new_channel": "Ny kanal",
|
||||||
"errorInvoiceExpired": "Faktura utløpt",
|
|
||||||
"force_close_channel": "Tvinge kanal til å lukke?",
|
"force_close_channel": "Tvinge kanal til å lukke?",
|
||||||
"expired": "Utløpt",
|
"expired": "Utløpt",
|
||||||
"node_alias": "Node alias",
|
"node_alias": "Node alias",
|
||||||
"expiresIn": "Utløper om {time} minutter",
|
"expiresIn": "Utløper om {time} minutter",
|
||||||
"payButton": "Betal",
|
"payButton": "Betal",
|
||||||
"placeholder": "Faktura",
|
|
||||||
"open_channel": "Åpne kanal",
|
"open_channel": "Åpne kanal",
|
||||||
"funding_amount_placeholder": "Finansieringsbeløp, for eksempel 0,001",
|
"opening_channnel_for_from": "Åpner kanal for lommebok {forWalletLabel}, med finansiering fra {fromWalletLabel}",
|
||||||
"opening_channnel_for_from":"Åpner kanal for lommebok {forWalletLabel}, med finansiering fra {fromWalletLabel}",
|
|
||||||
"are_you_sure_open_channel": "Er du sikker på at du vil åpne denne kanalen?",
|
"are_you_sure_open_channel": "Er du sikker på at du vil åpne denne kanalen?",
|
||||||
"potentialFee": "Potensiell avgift: {fee}",
|
|
||||||
"remote_host": "Remote host",
|
"remote_host": "Remote host",
|
||||||
"refill": "Fyll på",
|
"refill": "Fyll på",
|
||||||
"reconnect_peer": "Koble til peer på nytt",
|
"reconnect_peer": "Koble til peer på nytt",
|
||||||
"refill_create": "For å fortsette må du lage en Bitcoin-lommebok du kan fylle på med.",
|
"refill_create": "For å fortsette må du lage en Bitcoin-lommebok du kan fylle på med.",
|
||||||
"refill_external": "Fyll på med Ekstern Lommebok",
|
"refill_external": "Fyll på med Ekstern Lommebok",
|
||||||
"refill_lnd_balance": "Fyll på Lightning Wallet-balanse",
|
"refill_lnd_balance": "Fyll på Lightning Wallet-balanse",
|
||||||
"sameWalletAsInvoiceError": "Du kan ikke betale en faktura med samme lommebok som ble brukt til å opprette den.",
|
"sameWalletAsInvoiceError": "Du kan ikke betale en faktura med samme lommebok som brukes til å lage den.",
|
||||||
"title": "Administrer Midler",
|
"title": "Administrer Midler",
|
||||||
"can_send": "Kan Sende",
|
"can_send": "Kan Sende",
|
||||||
"can_receive": "Kan Motta",
|
"can_receive": "Kan Motta",
|
||||||
|
@ -80,7 +73,6 @@
|
||||||
"open_direct_channel": "Åpne direkte kanal med denne noden:",
|
"open_direct_channel": "Åpne direkte kanal med denne noden:",
|
||||||
"please_pay_between_and": "Vennligst betal mellom {min} og {max}",
|
"please_pay_between_and": "Vennligst betal mellom {min} og {max}",
|
||||||
"please_pay": "Vennligst betal",
|
"please_pay": "Vennligst betal",
|
||||||
"preimage": "Preimage",
|
|
||||||
"sats": "sats.",
|
"sats": "sats.",
|
||||||
"wasnt_paid_and_expired": "Denne fakturaen ble ikke betalt og har utløpt."
|
"wasnt_paid_and_expired": "Denne fakturaen ble ikke betalt og har utløpt."
|
||||||
},
|
},
|
||||||
|
@ -98,13 +90,9 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Har du lagret lommebokens sikkerhetskopifrase? Denne sikkerhetskopifrasen er nødvendig for å få tilgang til pengene dine i tilfelle du mister denne enheten. Uten sikkerhetskopifrasen vil pengene dine gå tapt permanent.",
|
"ask": "Har du lagret lommebokens sikkerhetskopifrase? Denne sikkerhetskopifrasen er nødvendig for å få tilgang til pengene dine i tilfelle du mister denne enheten. Uten sikkerhetskopifrasen vil pengene dine gå tapt permanent.",
|
||||||
"ask_no": "Nei, det jeg har ikke",
|
"ok": "Greit, jeg skrev det ned.",
|
||||||
"ask_yes": "Ja, det har jeg",
|
|
||||||
"ok": "Greit, jeg skrev den ned",
|
|
||||||
"ok_lnd": "Greit, jeg har lagret den",
|
|
||||||
"text": "Vennligst bruk et øyeblikk til å skrive ned denne mnemoniske frasen på et stykke papir.\nDet er sikkerhetskopien din, og du kan bruke den til å gjenopprette lommeboken.",
|
"text": "Vennligst bruk et øyeblikk til å skrive ned denne mnemoniske frasen på et stykke papir.\nDet er sikkerhetskopien din, og du kan bruke den til å gjenopprette lommeboken.",
|
||||||
"text_lnd": "Vennligst lagre denne sikkerhetskopien. Den lar deg gjenopprette lommeboken i tilfelle tap.",
|
"text_lnd": "Vennligst lagre denne sikkerhetskopien. Den lar deg gjenopprette lommeboken i tilfelle tap."
|
||||||
"title": "Lommeboken din er opprettet"
|
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Oprett",
|
"details_create": "Oprett",
|
||||||
|
@ -152,9 +140,7 @@
|
||||||
"details_create": "Opprett Faktura",
|
"details_create": "Opprett Faktura",
|
||||||
"details_error_decode": "Kan ikke dekode Bitcoin-adressen",
|
"details_error_decode": "Kan ikke dekode Bitcoin-adressen",
|
||||||
"details_fee_field_is_not_valid": "Avgiftsfeltet er ikke gyldig",
|
"details_fee_field_is_not_valid": "Avgiftsfeltet er ikke gyldig",
|
||||||
"details_frozen": "{amount} BTC er frosset",
|
|
||||||
"details_next": "Neste",
|
"details_next": "Neste",
|
||||||
"details_no_signed_tx": "Den valgte filen inneholder ikke en transaksjon som kan importeres.",
|
|
||||||
"details_note_placeholder": "Notat til meg selv",
|
"details_note_placeholder": "Notat til meg selv",
|
||||||
"details_scan": "Skanne",
|
"details_scan": "Skanne",
|
||||||
"details_scan_hint": "Dobbelttrykk for å skanne eller importere en destinasjon",
|
"details_scan_hint": "Dobbelttrykk for å skanne eller importere en destinasjon",
|
||||||
|
@ -184,7 +170,6 @@
|
||||||
"permission_camera_message": "Vi trenger din tillatelse for å bruke kameraet ditt.",
|
"permission_camera_message": "Vi trenger din tillatelse for å bruke kameraet ditt.",
|
||||||
"psbt_sign": "Signer en transaksjon",
|
"psbt_sign": "Signer en transaksjon",
|
||||||
"open_settings": "Åpne Innstillinger",
|
"open_settings": "Åpne Innstillinger",
|
||||||
"permission_storage_later": "Spør meg senere",
|
|
||||||
"permission_storage_message": "BlueWallet trenger din tillatelse for å få tilgang til lagringsplassen din for å lagre denne filen.",
|
"permission_storage_message": "BlueWallet trenger din tillatelse for å få tilgang til lagringsplassen din for å lagre denne filen.",
|
||||||
"permission_storage_denied_message": "BlueWallet kan ikke lagre denne filen. Åpne innstillinger og aktiver lagringstillatelse.",
|
"permission_storage_denied_message": "BlueWallet kan ikke lagre denne filen. Åpne innstillinger og aktiver lagringstillatelse.",
|
||||||
"permission_storage_title": "Lagringstilgangstillatelse",
|
"permission_storage_title": "Lagringstilgangstillatelse",
|
||||||
|
@ -195,7 +180,6 @@
|
||||||
"outdated_rate": "Prisen ble sist oppdatert: {date}",
|
"outdated_rate": "Prisen ble sist oppdatert: {date}",
|
||||||
"psbt_tx_open": "Åpne Signert Transaksjon",
|
"psbt_tx_open": "Åpne Signert Transaksjon",
|
||||||
"psbt_tx_scan": "Skann Signert Transaksjon",
|
"psbt_tx_scan": "Skann Signert Transaksjon",
|
||||||
"qr_error_no_qrcode": "Vi kunne ikke finne en QR-kode i det valgte bildet. Sørg for at bildet bare inneholder en QR-kode og ikke noe tilleggsinnhold som tekst eller knapper.",
|
|
||||||
"reset_amount": "Tilbakestill Beløp",
|
"reset_amount": "Tilbakestill Beløp",
|
||||||
"reset_amount_confirm": "Vil du tilbakestille beløpet?",
|
"reset_amount_confirm": "Vil du tilbakestille beløpet?",
|
||||||
"success_done": "Ferdig",
|
"success_done": "Ferdig",
|
||||||
|
@ -232,7 +216,6 @@
|
||||||
"default_wallets": "Se Alle Lommebøker",
|
"default_wallets": "Se Alle Lommebøker",
|
||||||
"electrum_connected": "Tilkoblet",
|
"electrum_connected": "Tilkoblet",
|
||||||
"electrum_connected_not": "Ikke Tilkoblet",
|
"electrum_connected_not": "Ikke Tilkoblet",
|
||||||
"electrum_error_connect": "Kan ikke koble til den Electrum-serveren",
|
|
||||||
"lndhub_uri": "F.eks. {eksempel}",
|
"lndhub_uri": "F.eks. {eksempel}",
|
||||||
"electrum_host": "F.eks. {eksempel}",
|
"electrum_host": "F.eks. {eksempel}",
|
||||||
"electrum_offline_mode": "Offline-modus",
|
"electrum_offline_mode": "Offline-modus",
|
||||||
|
@ -275,13 +258,12 @@
|
||||||
"lightning_error_lndhub_uri": "Ugyldig LNDHub URI",
|
"lightning_error_lndhub_uri": "Ugyldig LNDHub URI",
|
||||||
"lightning_saved": "Endringene dine er lagret.",
|
"lightning_saved": "Endringene dine er lagret.",
|
||||||
"lightning_settings": "Lightning Innstillinger",
|
"lightning_settings": "Lightning Innstillinger",
|
||||||
"lightning_settings_explain": "For å koble til din egen LND-node, installer LNDHub og legg inn URL-adressen her i innstillingene. La feltet stå tomt for å bruke BlueWallet sin LNDHub . Vær oppmerksom på at bare lommebøker opprettet etter lagring av endringer vil koble til den angitte LNDHub.",
|
|
||||||
"network": "Nettverk",
|
"network": "Nettverk",
|
||||||
"network_broadcast": "Kringkast Transaksjon",
|
"network_broadcast": "Kringkast Transaksjon",
|
||||||
"network_electrum": "Electrum Server",
|
"network_electrum": "Electrum Server",
|
||||||
"not_a_valid_uri": "Ugyldig URI",
|
"not_a_valid_uri": "Ugyldig URI",
|
||||||
"notifications": "Varslinger",
|
"notifications": "Varslinger",
|
||||||
"open_link_in_explorer" : "Åpne lenken i Utforsker",
|
"open_link_in_explorer": "Åpne lenken i Utforsker",
|
||||||
"password": "Passord",
|
"password": "Passord",
|
||||||
"password_explain": "Opprett passordet du vil bruke til å dekryptere lagringen",
|
"password_explain": "Opprett passordet du vil bruke til å dekryptere lagringen",
|
||||||
"passwords_do_not_match": "Passordene er ikke like.",
|
"passwords_do_not_match": "Passordene er ikke like.",
|
||||||
|
@ -290,7 +272,6 @@
|
||||||
"privacy_read_clipboard": "Les Utklippstavlen",
|
"privacy_read_clipboard": "Les Utklippstavlen",
|
||||||
"privacy_system_settings": "Systeminnstillinger",
|
"privacy_system_settings": "Systeminnstillinger",
|
||||||
"privacy_quickactions": "Lommebok-snarveier",
|
"privacy_quickactions": "Lommebok-snarveier",
|
||||||
"privacy_quickactions_explanation": "Berør og hold BlueWallet-appikonet inne på startskjermen for raskt å se lommebokens saldo.",
|
|
||||||
"privacy_clipboard_explanation": "Oppgi snarveier hvis en adresse eller faktura er funnet i utklippstavlen.",
|
"privacy_clipboard_explanation": "Oppgi snarveier hvis en adresse eller faktura er funnet i utklippstavlen.",
|
||||||
"privacy_do_not_track": "Deaktiver Analyse",
|
"privacy_do_not_track": "Deaktiver Analyse",
|
||||||
"privacy_do_not_track_explanation": "Informasjon om ytelse og pålitelighet vil ikke bli sendt inn for analyse.",
|
"privacy_do_not_track_explanation": "Informasjon om ytelse og pålitelighet vil ikke bli sendt inn for analyse.",
|
||||||
|
@ -300,16 +281,13 @@
|
||||||
"selfTest": "Selvtest",
|
"selfTest": "Selvtest",
|
||||||
"save": "Lagre",
|
"save": "Lagre",
|
||||||
"saved": "Lagret",
|
"saved": "Lagret",
|
||||||
"success_transaction_broadcasted" : "Suksess! Transaksjonen din har blitt kringkastet!",
|
|
||||||
"total_balance": "Total balanse",
|
"total_balance": "Total balanse",
|
||||||
"total_balance_explanation": "Vis den totale saldoen til alle lommebokene dine på widgetene på startskjermen.",
|
"total_balance_explanation": "Vis den totale saldoen til alle lommebokene dine på widgetene på startskjermen.",
|
||||||
"widgets": "Widgets",
|
"widgets": "Widgets",
|
||||||
"tools": "Verktøy"
|
"tools": "Verktøy"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Vil du motta varsler når du mottar innbetalinger?",
|
"would_you_like_to_receive_notifications": "Vil du motta varsler når du mottar innbetalinger?"
|
||||||
"no_and_dont_ask": "Nei, og ikke spør meg igjen",
|
|
||||||
"ask_me_later": "Spør meg senere"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Vi vil erstatte denne transaksjonen med en som betaler deg og har høyere gebyrer. Dette kansellerer gjeldende transaksjon. Dette kalles RBF - Replace by Fee.",
|
"cancel_explain": "Vi vil erstatte denne transaksjonen med en som betaler deg og har høyere gebyrer. Dette kansellerer gjeldende transaksjon. Dette kalles RBF - Replace by Fee.",
|
||||||
|
@ -381,7 +359,6 @@
|
||||||
"details_advanced": "Avansert",
|
"details_advanced": "Avansert",
|
||||||
"details_are_you_sure": "Er du sikker?",
|
"details_are_you_sure": "Er du sikker?",
|
||||||
"details_connected_to": "Koblet til",
|
"details_connected_to": "Koblet til",
|
||||||
"details_del_wb_err": "Det oppgitte saldobeløpet samsvarer ikke med denne lommeboksaldoen. Vennligst prøv på nytt.",
|
|
||||||
"details_del_wb_q": "Denne lommeboken har en balanse. Før du fortsetter, vær oppmerksom på at du ikke vil være i stand til å få tilbake pengene dine uten lommeboken sin seed phrase. For å unngå utilsiktet fjerning, skriv inn lommeboken sin saldo på {balance} satoshier.",
|
"details_del_wb_q": "Denne lommeboken har en balanse. Før du fortsetter, vær oppmerksom på at du ikke vil være i stand til å få tilbake pengene dine uten lommeboken sin seed phrase. For å unngå utilsiktet fjerning, skriv inn lommeboken sin saldo på {balance} satoshier.",
|
||||||
"details_delete": "Slett",
|
"details_delete": "Slett",
|
||||||
"details_delete_wallet": "Slett Lommebok",
|
"details_delete_wallet": "Slett Lommebok",
|
||||||
|
@ -416,16 +393,9 @@
|
||||||
"import_discovery_subtitle": "Velg en oppdaget lommebok",
|
"import_discovery_subtitle": "Velg en oppdaget lommebok",
|
||||||
"import_discovery_derivation": "Bruk egendefinert derivation path",
|
"import_discovery_derivation": "Bruk egendefinert derivation path",
|
||||||
"import_discovery_no_wallets": "Ingen lommebøker ble funnet.",
|
"import_discovery_no_wallets": "Ingen lommebøker ble funnet.",
|
||||||
"import_derivation_found": "funnet",
|
|
||||||
"import_derivation_found_not": "ikke funnet",
|
|
||||||
"import_derivation_loading": "laster...",
|
|
||||||
"import_derivation_subtitle": "Angi egendefinert derivation path, og vi vil prøve å finne lommeboken din",
|
|
||||||
"import_derivation_title": "Derivation path",
|
"import_derivation_title": "Derivation path",
|
||||||
"import_derivation_unknown": "ukjent",
|
|
||||||
"import_wrong_path": "feil derivation path",
|
|
||||||
"list_create_a_button": "Legg til nå",
|
"list_create_a_button": "Legg til nå",
|
||||||
"list_create_a_wallet": "Legg til en lommebok",
|
"list_create_a_wallet": "Legg til en lommebok",
|
||||||
"list_create_a_wallet_text": "Det er gratis og du kan lage\nså mange du vil.",
|
|
||||||
"list_empty_txs1": "Dine transaksjoner vil vises her.",
|
"list_empty_txs1": "Dine transaksjoner vil vises her.",
|
||||||
"list_empty_txs1_lightning": "Lightning-lommeboken bør brukes til dine daglige transaksjoner. Avgiftene er urettferdig billige og hastigheten er lynrask.",
|
"list_empty_txs1_lightning": "Lightning-lommeboken bør brukes til dine daglige transaksjoner. Avgiftene er urettferdig billige og hastigheten er lynrask.",
|
||||||
"list_empty_txs2": "Start med lommeboken din.",
|
"list_empty_txs2": "Start med lommeboken din.",
|
||||||
|
@ -490,20 +460,14 @@
|
||||||
"quorum_header": "Quorum",
|
"quorum_header": "Quorum",
|
||||||
"of": "av",
|
"of": "av",
|
||||||
"wallet_type": "Lommebok Type",
|
"wallet_type": "Lommebok Type",
|
||||||
"invalid_mnemonics": "Denne mnemoniske frasen ser ikke ut til å være gyldig.",
|
|
||||||
"invalid_cosigner": "Ugyldig medunderskriver-data",
|
|
||||||
"not_a_multisignature_xpub": "Dette er ikke en XPUB fra en multisignatur-lommebok!",
|
"not_a_multisignature_xpub": "Dette er ikke en XPUB fra en multisignatur-lommebok!",
|
||||||
"invalid_cosigner_format": "Feil medunderskriver: Dette er ikke en medunderskriver for {format}-format.",
|
|
||||||
"create_new_key": "Opprett Ny",
|
"create_new_key": "Opprett Ny",
|
||||||
"scan_or_open_file": "Skann eller åpne fil",
|
"scan_or_open_file": "Skann eller åpne fil",
|
||||||
"i_have_mnemonics": "Jeg har en seed til denne nøkkelen.",
|
"i_have_mnemonics": "Jeg har en seed til denne nøkkelen.",
|
||||||
"type_your_mnemonics": "Sett inn en seed for å importere din eksisterende Vault-nøkkel.",
|
"type_your_mnemonics": "Sett inn en seed for å importere din eksisterende Vault-nøkkel.",
|
||||||
"this_is_cosigners_xpub": "Dette er medunderskriveren sin XPUB – klar til å importeres til en annen lommebok. Det er trygt å dele det.",
|
|
||||||
"wallet_key_created": "Vault-nøkkelen din ble opprettet. Ta deg tid til å ta sikkerhetskopi din mnemoniske seed.",
|
"wallet_key_created": "Vault-nøkkelen din ble opprettet. Ta deg tid til å ta sikkerhetskopi din mnemoniske seed.",
|
||||||
"are_you_sure_seed_will_be_lost": "Er du sikker? Din mnemoniske seed vil gå tapt hvis du ikke har en sikkerhetskopi.",
|
"are_you_sure_seed_will_be_lost": "Er du sikker? Din mnemoniske seed vil gå tapt hvis du ikke har en sikkerhetskopi.",
|
||||||
"forget_this_seed": "Glem den seeden og bruk XPUB i stedet.",
|
"forget_this_seed": "Glem den seeden og bruk XPUB i stedet.",
|
||||||
"view_edit_cosigners": "Se/rediger Medunderskrivere",
|
|
||||||
"this_cosigner_is_already_imported": "Denne medunderskriveren er allerede importert.",
|
|
||||||
"export_signed_psbt": "Eksporter Signert PSBT",
|
"export_signed_psbt": "Eksporter Signert PSBT",
|
||||||
"input_fp": "Skriv inn fingeravtrykk",
|
"input_fp": "Skriv inn fingeravtrykk",
|
||||||
"input_fp_explain": "Hopp over for å bruke standard (00000000)",
|
"input_fp_explain": "Hopp over for å bruke standard (00000000)",
|
||||||
|
@ -528,14 +492,12 @@
|
||||||
"owns": "{label} eier {address}",
|
"owns": "{label} eier {address}",
|
||||||
"enter_address": "Skriv inn adresse",
|
"enter_address": "Skriv inn adresse",
|
||||||
"check_address": "Sjekk adresse",
|
"check_address": "Sjekk adresse",
|
||||||
"no_wallet_owns_address": "Ingen av de tilgjengelige lommebøkene eier den oppgitte adressen.",
|
"no_wallet_owns_address": "Ingen av de tilgjengelige lommebøkene eier den oppgitte adressen."
|
||||||
"view_qrcode": "Se QR-kode"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Endre",
|
"change": "Endre",
|
||||||
"coins_selected": "Mynter valgt ({number})",
|
"coins_selected": "Mynter valgt ({number})",
|
||||||
"selected_summ": "{value} valgt",
|
"selected_summ": "{value} valgt",
|
||||||
"empty": "Denne lommeboken har ingen mynter for øyeblikket.",
|
|
||||||
"freeze": "Frys",
|
"freeze": "Frys",
|
||||||
"freezeLabel": "Frys",
|
"freezeLabel": "Frys",
|
||||||
"freezeLabel_un": "Fjern frys",
|
"freezeLabel_un": "Fjern frys",
|
||||||
|
|
32
loc/ne.json
32
loc/ne.json
|
@ -15,9 +15,6 @@
|
||||||
"seed": "सीड",
|
"seed": "सीड",
|
||||||
"success": "सफल",
|
"success": "सफल",
|
||||||
"wallet_key": "वालेट को सांचो",
|
"wallet_key": "वालेट को सांचो",
|
||||||
"invalid_animated_qr_code_fragment": "अवैध एनिमेटेड QRCode को टुक्रा। फेरि प्रयास गर्नुहोस।",
|
|
||||||
"file_saved": "तपाईंको फाइल - {filePath}, गन्तव्यमा - {destination} मा सेव गरिएको छ।",
|
|
||||||
"downloads_folder": "डाउनलोड फोल्डर",
|
|
||||||
"close": "बन्द",
|
"close": "बन्द",
|
||||||
"change_input_currency": "इनपुट मुद्रा परिवर्तन गर्नुहोस्",
|
"change_input_currency": "इनपुट मुद्रा परिवर्तन गर्नुहोस्",
|
||||||
"refresh": "रिफ्रेस गर्नुहोस",
|
"refresh": "रिफ्रेस गर्नुहोस",
|
||||||
|
@ -56,17 +53,14 @@
|
||||||
"claim_balance": "दावी ब्यालेन्स {balance}",
|
"claim_balance": "दावी ब्यालेन्स {balance}",
|
||||||
"close_channel": "च्यानलहरू बन्द गर्नुहोस्",
|
"close_channel": "च्यानलहरू बन्द गर्नुहोस्",
|
||||||
"new_channel": "नयाँ च्यानल",
|
"new_channel": "नयाँ च्यानल",
|
||||||
"errorInvoiceExpired": "इनभ्वाइसको म्याद सकियो",
|
|
||||||
"force_close_channel": "जबरजस्ती च्यानल बन्द गर्ने हो?",
|
"force_close_channel": "जबरजस्ती च्यानल बन्द गर्ने हो?",
|
||||||
"expired": "म्याद सकियो",
|
"expired": "म्याद सकियो",
|
||||||
"node_alias": "नोड को उपनाम",
|
"node_alias": "नोड को उपनाम",
|
||||||
"expiresIn": "{time} मिनेटमा म्याद सकिन्छ",
|
"expiresIn": "{time} मिनेटमा म्याद सकिन्छ",
|
||||||
"payButton": "तिर्नुहोस्",
|
"payButton": "तिर्नुहोस्",
|
||||||
"open_channel": "च्यानल खोल्नुहोस्",
|
"open_channel": "च्यानल खोल्नुहोस्",
|
||||||
"funding_amount_placeholder": "कोष रकम, उदाहरण को लागी 0.001",
|
|
||||||
"opening_channnel_for_from": "वालेट {forWalletLabel} को लागि वालेट {fromWalletLabel} को कोषद्वारा बाट च्यानल खोल्दै",
|
"opening_channnel_for_from": "वालेट {forWalletLabel} को लागि वालेट {fromWalletLabel} को कोषद्वारा बाट च्यानल खोल्दै",
|
||||||
"are_you_sure_open_channel": "के तपाइँ यो च्यानल खोल्न निश्चित हुनुहुन्छ?",
|
"are_you_sure_open_channel": "के तपाइँ यो च्यानल खोल्न निश्चित हुनुहुन्छ?",
|
||||||
"potentialFee": "सम्भावित शुल्क: {fee}",
|
|
||||||
"remote_host": "रिमोट होस्ट",
|
"remote_host": "रिमोट होस्ट",
|
||||||
"refill": "फेरि भर्नु",
|
"refill": "फेरि भर्नु",
|
||||||
"reconnect_peer": "पियर पुन: जडान गर्नुहोस्",
|
"reconnect_peer": "पियर पुन: जडान गर्नुहोस्",
|
||||||
|
@ -85,7 +79,6 @@
|
||||||
"open_direct_channel": "यो नोडको साथ प्रत्यक्ष च्यानल खोल्नुहोस्:",
|
"open_direct_channel": "यो नोडको साथ प्रत्यक्ष च्यानल खोल्नुहोस्:",
|
||||||
"please_pay_between_and": "कृपया {min} र {max} को बीचमा भुक्तानी गर्नुहोस्",
|
"please_pay_between_and": "कृपया {min} र {max} को बीचमा भुक्तानी गर्नुहोस्",
|
||||||
"please_pay": "कृपया तिर्नुहोस्",
|
"please_pay": "कृपया तिर्नुहोस्",
|
||||||
"preimage": "प्रिमेज",
|
|
||||||
"sats": "सातस।",
|
"sats": "सातस।",
|
||||||
"wasnt_paid_and_expired": "यो इनभ्वाइस भुक्तान गरिएको थिएन र म्याद सकिएको छ।"
|
"wasnt_paid_and_expired": "यो इनभ्वाइस भुक्तान गरिएको थिएन र म्याद सकिएको छ।"
|
||||||
},
|
},
|
||||||
|
@ -103,13 +96,8 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "के तपाईंले आफ्नो वालेटको ब्याकअप पासफ्रेज सेव गर्नुभयो? यदि तपाईँले यो यन्त्र गुमाउनु भयो भने, यो ब्याकअप पासफ्रेज तपाईँको कोष पहुँच गर्न आवश्यक हुनेछ। ब्याकअप पासफ्रेज बिना, तपाईंको कोष स्थायी रूपमा हराउनेछ।",
|
"ask": "के तपाईंले आफ्नो वालेटको ब्याकअप पासफ्रेज सेव गर्नुभयो? यदि तपाईँले यो यन्त्र गुमाउनु भयो भने, यो ब्याकअप पासफ्रेज तपाईँको कोष पहुँच गर्न आवश्यक हुनेछ। ब्याकअप पासफ्रेज बिना, तपाईंको कोष स्थायी रूपमा हराउनेछ।",
|
||||||
"ask_no": "होइन",
|
|
||||||
"ask_yes": "हो",
|
|
||||||
"ok": "ठीक छ, मैले यो लेखे",
|
|
||||||
"ok_lnd": "ठीक छ, मैले यसलाई सुरक्षित गरेको छु",
|
|
||||||
"text": "कृपया कागजको टुक्रामा यो निमोनिक फ्रेज लेख्न एक क्षण लिनुहोस्।\nयो तपाइँको ब्याकअप हो र तपाइँ वालेट रिकभर गर्न प्रयोग गर्न सक्नुहुन्छ।",
|
"text": "कृपया कागजको टुक्रामा यो निमोनिक फ्रेज लेख्न एक क्षण लिनुहोस्।\nयो तपाइँको ब्याकअप हो र तपाइँ वालेट रिकभर गर्न प्रयोग गर्न सक्नुहुन्छ।",
|
||||||
"text_lnd": "कृपया यो वालेट ब्याकअप सेव गर्नुहोस्। यसले वालेट हराएको अवस्थामा पुनर्स्थापना गर्न मद्दत गर्नेछ।",
|
"text_lnd": "कृपया यो वालेट ब्याकअप सेव गर्नुहोस्। यसले वालेट हराएको अवस्थामा पुनर्स्थापना गर्न मद्दत गर्नेछ।"
|
||||||
"title": "तपाईंको वालेट सिर्जना गरिएको छ।"
|
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "बनाउनुहोस",
|
"details_create": "बनाउनुहोस",
|
||||||
|
@ -157,9 +145,7 @@
|
||||||
"details_create": "इनभ्वाइस सिर्जना गर्नुहोस्",
|
"details_create": "इनभ्वाइस सिर्जना गर्नुहोस्",
|
||||||
"details_error_decode": "बिटकोइन ठेगाना डिकोड गर्न असमर्थ भयो",
|
"details_error_decode": "बिटकोइन ठेगाना डिकोड गर्न असमर्थ भयो",
|
||||||
"details_fee_field_is_not_valid": "शुल्क मान्य छैन।",
|
"details_fee_field_is_not_valid": "शुल्क मान्य छैन।",
|
||||||
"details_frozen": "{amount} BTC स्थिर छ",
|
|
||||||
"details_next": "अर्को",
|
"details_next": "अर्को",
|
||||||
"details_no_signed_tx": "चयन गरिएको फाइलमा आयात गर्न सकिने लेनदेन समावेश छैन।",
|
|
||||||
"details_note_placeholder": "आफैलाई नोट",
|
"details_note_placeholder": "आफैलाई नोट",
|
||||||
"details_scan": "स्क्यान",
|
"details_scan": "स्क्यान",
|
||||||
"details_scan_hint": "स्क्यान गर्न वा गन्तव्य आयात गर्न डबल ट्याप गर्नुहोस्",
|
"details_scan_hint": "स्क्यान गर्न वा गन्तव्य आयात गर्न डबल ट्याप गर्नुहोस्",
|
||||||
|
@ -189,7 +175,6 @@
|
||||||
"permission_camera_message": "हामीलाई तपाईंको क्यामेरा प्रयोग गर्न तपाईंको अनुमति चाहिन्छ।",
|
"permission_camera_message": "हामीलाई तपाईंको क्यामेरा प्रयोग गर्न तपाईंको अनुमति चाहिन्छ।",
|
||||||
"psbt_sign": "लेनदेनमा हस्ताक्षर गर्नुहोस्",
|
"psbt_sign": "लेनदेनमा हस्ताक्षर गर्नुहोस्",
|
||||||
"open_settings": "सेटिङ्हरू खोल्नुहोस्",
|
"open_settings": "सेटिङ्हरू खोल्नुहोस्",
|
||||||
"permission_storage_later": "पछि सोध्नुहोस्",
|
|
||||||
"permission_storage_message": "यो फाइल सेव गर्नको लागि BlueWallet लाई तपाइँको अनुमति चाहिन्छ।",
|
"permission_storage_message": "यो फाइल सेव गर्नको लागि BlueWallet लाई तपाइँको अनुमति चाहिन्छ।",
|
||||||
"permission_storage_denied_message": "BlueWallet यो फाइल सेव गर्न असमर्थ भयो। कृपया आफ्नो यन्त्र सेटिङहरू खोल्नुहोस् र Storage Permission गर्न अनुमति गर्नुहोस्।",
|
"permission_storage_denied_message": "BlueWallet यो फाइल सेव गर्न असमर्थ भयो। कृपया आफ्नो यन्त्र सेटिङहरू खोल्नुहोस् र Storage Permission गर्न अनुमति गर्नुहोस्।",
|
||||||
"permission_storage_title": "Storage Access Permission ",
|
"permission_storage_title": "Storage Access Permission ",
|
||||||
|
@ -200,7 +185,6 @@
|
||||||
"outdated_rate": "दर पछिल्लो पटक अद्यावधिक गरिएको समय: {date}",
|
"outdated_rate": "दर पछिल्लो पटक अद्यावधिक गरिएको समय: {date}",
|
||||||
"psbt_tx_open": "हस्ताक्षरित लेनदेन खोल्नुहोस्",
|
"psbt_tx_open": "हस्ताक्षरित लेनदेन खोल्नुहोस्",
|
||||||
"psbt_tx_scan": "हस्ताक्षरित लेनदेन स्क्यान गर्नुहोस्",
|
"psbt_tx_scan": "हस्ताक्षरित लेनदेन स्क्यान गर्नुहोस्",
|
||||||
"qr_error_no_qrcode": "हामीले चयन गरिएको छविमा QR कोड फेला पार्न सकेनौं। छविमा QR कोड मात्र समावेश छ र बटनहरू जस्ता अतिरिक्त सामग्रीहरू छैनन् भनी सुनिश्चित गर्नुहोस्।",
|
|
||||||
"reset_amount": "रकम रिसेट गर्नुहोस्",
|
"reset_amount": "रकम रिसेट गर्नुहोस्",
|
||||||
"reset_amount_confirm": "के तपाइँ रकम रिसेट गर्न चाहनुहुन्छ?",
|
"reset_amount_confirm": "के तपाइँ रकम रिसेट गर्न चाहनुहुन्छ?",
|
||||||
"success_done": "सकियो",
|
"success_done": "सकियो",
|
||||||
|
@ -269,13 +253,10 @@
|
||||||
"retype_password": "पासवर्ड पुन: लेख्नुहोस",
|
"retype_password": "पासवर्ड पुन: लेख्नुहोस",
|
||||||
"save": "सेव",
|
"save": "सेव",
|
||||||
"saved": "बचत गरियो",
|
"saved": "बचत गरियो",
|
||||||
"success_transaction_broadcasted": "सफलता! तपाईंको लेनदेन प्रसारण गरिएको छ!",
|
|
||||||
"total_balance": "पूरा रकम"
|
"total_balance": "पूरा रकम"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "तपाईंले आगमन भुक्तानीहरू प्राप्त गर्दा सूचनाहरू प्राप्त गर्न चाहनुहुन्छ?",
|
"would_you_like_to_receive_notifications": "तपाईंले आगमन भुक्तानीहरू प्राप्त गर्दा सूचनाहरू प्राप्त गर्न चाहनुहुन्छ?"
|
||||||
"no_and_dont_ask": "होइन, र मलाई फेरि नसोध्नुहोस्",
|
|
||||||
"ask_me_later": "पछि सोध्नुहोस्"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "यो लेनदेन बदल्न सकिने योग्य छैन",
|
"cancel_no": "यो लेनदेन बदल्न सकिने योग्य छैन",
|
||||||
|
@ -330,13 +311,8 @@
|
||||||
"import_discovery_title": "आविष्कार",
|
"import_discovery_title": "आविष्कार",
|
||||||
"import_discovery_subtitle": "पत्ता लागेको वालेट छान्नुहोस्",
|
"import_discovery_subtitle": "पत्ता लागेको वालेट छान्नुहोस्",
|
||||||
"import_discovery_no_wallets": "कुनै वालेट फेला परेन।",
|
"import_discovery_no_wallets": "कुनै वालेट फेला परेन।",
|
||||||
"import_derivation_found": "भेटियो",
|
|
||||||
"import_derivation_found_not": "फेला परेन",
|
|
||||||
"import_derivation_loading": "लोड गर्दै...",
|
|
||||||
"import_derivation_unknown": "नजानिएको",
|
|
||||||
"list_create_a_button": "अहिले थप्नुहोस्",
|
"list_create_a_button": "अहिले थप्नुहोस्",
|
||||||
"list_create_a_wallet": "वालेट थप्नुहोस्",
|
"list_create_a_wallet": "वालेट थप्नुहोस्",
|
||||||
"list_create_a_wallet_text": "यो नि: शुल्क छ र तपाईं सिर्जना गर्न सक्नुहुन्छ तपाईलाई मन पर्ने जति।",
|
|
||||||
"list_empty_txs1": "तपाईंको लेनदेन यहाँ देखा पर्नेछ।",
|
"list_empty_txs1": "तपाईंको लेनदेन यहाँ देखा पर्नेछ।",
|
||||||
"list_empty_txs1_lightning": "तपाईंको दैनिक लेनदेनको लागि लाइटनिङ वालेट प्रयोग गर्नुपर्छ। शुल्कहरू अनुचित रूपमा सस्तो र छिटो छ।",
|
"list_empty_txs1_lightning": "तपाईंको दैनिक लेनदेनको लागि लाइटनिङ वालेट प्रयोग गर्नुपर्छ। शुल्कहरू अनुचित रूपमा सस्तो र छिटो छ।",
|
||||||
"list_empty_txs2": "आफ्नो वालेटबाट सुरु गर्नुहोस्।",
|
"list_empty_txs2": "आफ्नो वालेटबाट सुरु गर्नुहोस्।",
|
||||||
|
@ -383,14 +359,12 @@
|
||||||
"title": "यो मेरो ठेगाना हो?",
|
"title": "यो मेरो ठेगाना हो?",
|
||||||
"enter_address": " ठेगाना लेख्नुहोस्",
|
"enter_address": " ठेगाना लेख्नुहोस्",
|
||||||
"check_address": "ठेगाना जाँच गर्नुहोस्",
|
"check_address": "ठेगाना जाँच गर्नुहोस्",
|
||||||
"no_wallet_owns_address": "उपलब्ध वालेटहरू मध्ये कुनै पनि प्रदान गरिएको ठेगानाको स्वामित्व छैन।",
|
"no_wallet_owns_address": "उपलब्ध वालेटहरू मध्ये कुनै पनि प्रदान गरिएको ठेगानाको स्वामित्व छैन।"
|
||||||
"view_qrcode": "QRCode हेर्नुहोस्"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "परिवर्तन",
|
"change": "परिवर्तन",
|
||||||
"coins_selected": "कोइन छानिएको ({number})",
|
"coins_selected": "कोइन छानिएको ({number})",
|
||||||
"selected_summ": "{value} छानिएको",
|
"selected_summ": "{value} छानिएको",
|
||||||
"empty": "यो वालेटमा अहिले कुनै पनि कोइनहरू छैन।",
|
|
||||||
"freeze": "फ्रिज",
|
"freeze": "फ्रिज",
|
||||||
"freezeLabel": "फ्रिज",
|
"freezeLabel": "फ्रिज",
|
||||||
"freezeLabel_un": "अनफ्रिज गर्नुहोस्",
|
"freezeLabel_un": "अनफ्रिज गर्नुहोस्",
|
||||||
|
|
|
@ -14,10 +14,7 @@
|
||||||
"save": "Opslaan",
|
"save": "Opslaan",
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Succes",
|
"success": "Succes",
|
||||||
"wallet_key": "Wallet sleutel",
|
"wallet_key": "Wallet sleutel"
|
||||||
"invalid_animated_qr_code_fragment": "Ongeldig geanimeerde QRCode, probeer het opnieuw",
|
|
||||||
"file_saved": "Bestand {filePath} is opgeslagen in {destination}",
|
|
||||||
"downloads_folder": "Downloads map"
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "Melding"
|
"default": "Melding"
|
||||||
|
@ -49,15 +46,12 @@
|
||||||
"claim_balance": "Saldo claimen {balance}",
|
"claim_balance": "Saldo claimen {balance}",
|
||||||
"close_channel": "Sluit kanaal",
|
"close_channel": "Sluit kanaal",
|
||||||
"new_channel": "Nieuw kanaal",
|
"new_channel": "Nieuw kanaal",
|
||||||
"errorInvoiceExpired": "Factuur verlopen",
|
|
||||||
"force_close_channel": "Het sluiten van een kanaal forceren?",
|
"force_close_channel": "Het sluiten van een kanaal forceren?",
|
||||||
"expired": "Verlopen",
|
"expired": "Verlopen",
|
||||||
"node_alias": "Node alias",
|
"node_alias": "Node alias",
|
||||||
"expiresIn": "Verloopt in {time} minuten",
|
"expiresIn": "Verloopt in {time} minuten",
|
||||||
"payButton": "Betalen",
|
"payButton": "Betalen",
|
||||||
"placeholder": "Factuur",
|
|
||||||
"open_channel": "Open kanaal",
|
"open_channel": "Open kanaal",
|
||||||
"funding_amount_placeholder": "Stortingsbedrag, bijvoorbeeld 0.001",
|
|
||||||
"opening_channnel_for_from": "Open kanaal voor wallet {forWalletLabel}, door financiering vanuit {fromWalletLabel}",
|
"opening_channnel_for_from": "Open kanaal voor wallet {forWalletLabel}, door financiering vanuit {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Weet je het zeker dat je dit kanaal wilt openen?",
|
"are_you_sure_open_channel": "Weet je het zeker dat je dit kanaal wilt openen?",
|
||||||
"potentialFee": "Mogelijke fee: {fee}",
|
"potentialFee": "Mogelijke fee: {fee}",
|
||||||
|
@ -80,7 +74,6 @@
|
||||||
"open_direct_channel": "Open een rechtstreeks kanaal met deze node:",
|
"open_direct_channel": "Open een rechtstreeks kanaal met deze node:",
|
||||||
"please_pay_between_and": "Betaal alsjeblieft tussen de {min} en {max}",
|
"please_pay_between_and": "Betaal alsjeblieft tussen de {min} en {max}",
|
||||||
"please_pay": "Betaal alstublieft",
|
"please_pay": "Betaal alstublieft",
|
||||||
"preimage": "Préimage",
|
|
||||||
"sats": "sats",
|
"sats": "sats",
|
||||||
"wasnt_paid_and_expired": "Deze factuur is niet betaald en is verlopen"
|
"wasnt_paid_and_expired": "Deze factuur is niet betaald en is verlopen"
|
||||||
},
|
},
|
||||||
|
@ -98,13 +91,11 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Heeft u uw back-up zin opgeslagen? Deze back-up zin is nodig om toegang te krijgen tot uw tegoeden wanneer u dit apparaat verliest. Zonder de back-up zin zijn je gelden voor altijd verloren.",
|
"ask": "Heeft u uw back-up zin opgeslagen? Deze back-up zin is nodig om toegang te krijgen tot uw tegoeden wanneer u dit apparaat verliest. Zonder de back-up zin zijn je gelden voor altijd verloren.",
|
||||||
"ask_no": "Nee, dat heb ik niet",
|
"ok": "Ok, ik heb het opgeschreven",
|
||||||
"ask_yes": "Ja, dat heb ik.",
|
"ok_lnd": "Oké, ik heb het bewaard.",
|
||||||
"ok": "Oké, ik heb het opgeschreven",
|
|
||||||
"ok_lnd": "Oké, ik heb het opgeslagen",
|
|
||||||
"text": "Neem alstublieft een moment om deze mnemonische zin te noteren op een stukje papier.\nHet is uw backup en kan gebruikt worden om de wallet te herstellen.",
|
"text": "Neem alstublieft een moment om deze mnemonische zin te noteren op een stukje papier.\nHet is uw backup en kan gebruikt worden om de wallet te herstellen.",
|
||||||
"text_lnd": "Sla deze wallet backup op. Zo kun je de wallet herstellen in geval van verlies.",
|
"text_lnd": "Sla deze wallet backup op. Zo kun je de wallet herstellen in geval van verlies.",
|
||||||
"title": "Uw wallet is gecreëerd"
|
"title": "Je wallet is aangemaakt"
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Maken",
|
"details_create": "Maken",
|
||||||
|
@ -176,7 +167,6 @@
|
||||||
"permission_camera_message": "We hebben toestemming nodig om uw camera te gebruiken",
|
"permission_camera_message": "We hebben toestemming nodig om uw camera te gebruiken",
|
||||||
"psbt_sign": "Onderteken een transactie",
|
"psbt_sign": "Onderteken een transactie",
|
||||||
"open_settings": "Open instellingen",
|
"open_settings": "Open instellingen",
|
||||||
"permission_storage_later": "Vraag mij later",
|
|
||||||
"permission_storage_message": "BlueWallet heeft u toestemming nodig om toegang te krijgen tot uw opslag om deze transactie op te slaan.",
|
"permission_storage_message": "BlueWallet heeft u toestemming nodig om toegang te krijgen tot uw opslag om deze transactie op te slaan.",
|
||||||
"permission_storage_denied_message": "Bluewallet kan dit bestand niet opslaan. Ga naar apparaatinstellingen en zet Opslag Toegestaan aan,",
|
"permission_storage_denied_message": "Bluewallet kan dit bestand niet opslaan. Ga naar apparaatinstellingen en zet Opslag Toegestaan aan,",
|
||||||
"permission_storage_title": "BlueWallet opslag toegang toestemming",
|
"permission_storage_title": "BlueWallet opslag toegang toestemming",
|
||||||
|
@ -187,7 +177,6 @@
|
||||||
"outdated_rate": "De Rate is voor het laatst geüpdate op: {date} ",
|
"outdated_rate": "De Rate is voor het laatst geüpdate op: {date} ",
|
||||||
"psbt_tx_open": "Open ondertekende transactie",
|
"psbt_tx_open": "Open ondertekende transactie",
|
||||||
"psbt_tx_scan": "Scan ondertekende transactie",
|
"psbt_tx_scan": "Scan ondertekende transactie",
|
||||||
"qr_error_no_qrcode": "We hebben geen QR Code kunnen vinden in de geselecteerde afbeelding. Zorg ervoor dat de afbeelding enkel een QR Code bevat en geen extra gegevens zoals tekst of knoppen.",
|
|
||||||
"reset_amount": "Bedrag resetten",
|
"reset_amount": "Bedrag resetten",
|
||||||
"reset_amount_confirm": "Weet je het zeker dat je het bedrag wilt resetten?",
|
"reset_amount_confirm": "Weet je het zeker dat je het bedrag wilt resetten?",
|
||||||
"success_done": "Klaar",
|
"success_done": "Klaar",
|
||||||
|
@ -223,7 +212,6 @@
|
||||||
"default_wallets": "Bekijk alle wallets",
|
"default_wallets": "Bekijk alle wallets",
|
||||||
"electrum_connected": "Verbonden",
|
"electrum_connected": "Verbonden",
|
||||||
"electrum_connected_not": "Niet verbonden",
|
"electrum_connected_not": "Niet verbonden",
|
||||||
"electrum_error_connect": "Kan niet verbinden met aangeleverde Electrum server",
|
|
||||||
"lndhub_uri": "Bijv., {example}",
|
"lndhub_uri": "Bijv., {example}",
|
||||||
"electrum_host": "Bijv., {example}",
|
"electrum_host": "Bijv., {example}",
|
||||||
"electrum_offline_mode": "Offline Modus",
|
"electrum_offline_mode": "Offline Modus",
|
||||||
|
@ -266,7 +254,6 @@
|
||||||
"lightning_error_lndhub_uri": "Ongeldige LNDHub URI",
|
"lightning_error_lndhub_uri": "Ongeldige LNDHub URI",
|
||||||
"lightning_saved": "Uw wijzigingen zijn succesvol opgeslagen",
|
"lightning_saved": "Uw wijzigingen zijn succesvol opgeslagen",
|
||||||
"lightning_settings": "Lightning-instellingen",
|
"lightning_settings": "Lightning-instellingen",
|
||||||
"lightning_settings_explain": "Om uw eigen LND node te verbinden, installeer LNDHub en voer de URL hier in bij instellingen. Laat open om de BlueWallet LNDHub te gebruiken. Let op dat enkel wallets die gecreëerd zijn na het opslaan van wijzigingen zullen verbinden met de aangegeven LNDHub.",
|
|
||||||
"network": "Netwerk",
|
"network": "Netwerk",
|
||||||
"network_broadcast": "Verzend transactie",
|
"network_broadcast": "Verzend transactie",
|
||||||
"network_electrum": "Electrum server",
|
"network_electrum": "Electrum server",
|
||||||
|
@ -281,7 +268,6 @@
|
||||||
"privacy_read_clipboard": "Lees klembord",
|
"privacy_read_clipboard": "Lees klembord",
|
||||||
"privacy_system_settings": "Systeeminstellingen",
|
"privacy_system_settings": "Systeeminstellingen",
|
||||||
"privacy_quickactions": "Wallet snelkoppelingen",
|
"privacy_quickactions": "Wallet snelkoppelingen",
|
||||||
"privacy_quickactions_explanation": "Houd het BlueWallet-app-pictogram op uw startscherm ingedrukt om snel het saldo van uw wallet te bekijken.",
|
|
||||||
"privacy_clipboard_explanation": "Bied snelkoppelingen aan als een adres of factuur op uw klembord staat.",
|
"privacy_clipboard_explanation": "Bied snelkoppelingen aan als een adres of factuur op uw klembord staat.",
|
||||||
"privacy_do_not_track": "Analyses Uitschakelen",
|
"privacy_do_not_track": "Analyses Uitschakelen",
|
||||||
"privacy_do_not_track_explanation": "Informatie over de prestatie en betrouwbaarheid zal niet worden opgegeven voor analyse.",
|
"privacy_do_not_track_explanation": "Informatie over de prestatie en betrouwbaarheid zal niet worden opgegeven voor analyse.",
|
||||||
|
@ -291,16 +277,13 @@
|
||||||
"selfTest": "Zelf-Test",
|
"selfTest": "Zelf-Test",
|
||||||
"save": "Opslaan",
|
"save": "Opslaan",
|
||||||
"saved": "Opgeslagen",
|
"saved": "Opgeslagen",
|
||||||
"success_transaction_broadcasted": "Gelukt! Jouw transactie is uitgezonden!",
|
|
||||||
"total_balance": "Totaalbalans",
|
"total_balance": "Totaalbalans",
|
||||||
"total_balance_explanation": "Laat de totaalbalans van al je wallets zien op de widgets op je thuisscherm.",
|
"total_balance_explanation": "Laat de totaalbalans van al je wallets zien op de widgets op je thuisscherm.",
|
||||||
"widgets": "Widgets",
|
"widgets": "Widgets",
|
||||||
"tools": "Hulpmiddelen"
|
"tools": "Hulpmiddelen"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Wil je meldingen ontvangen als je binnenkomende betalingen ontvangt?",
|
"would_you_like_to_receive_notifications": "Wil je meldingen ontvangen als je binnenkomende betalingen ontvangt?"
|
||||||
"no_and_dont_ask": "Nee, en vraag het mij niet meer",
|
|
||||||
"ask_me_later": "Vraag het mij later"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "Deze transactie is niet vervangbaar",
|
"cancel_no": "Deze transactie is niet vervangbaar",
|
||||||
|
@ -368,7 +351,6 @@
|
||||||
"details_advanced": "Geavenceerd",
|
"details_advanced": "Geavenceerd",
|
||||||
"details_are_you_sure": "Weet u het zeker?",
|
"details_are_you_sure": "Weet u het zeker?",
|
||||||
"details_connected_to": "Verbonden met",
|
"details_connected_to": "Verbonden met",
|
||||||
"details_del_wb_err": "Het opgegeven saldo komt niet overeen met het saldo van deze wallet. Probeer het a.u.b. opnieuw",
|
|
||||||
"details_del_wb_q": "Deze wallet heeft een balans. Voor je verder gaat, wees er van bewust dat je het bedrag in deze wallet niet kan herstellen zonder de seed phrase van deze wallet. Om onbedoelde verwijdering te voorkomen, voer alsjeblieft hier de balans {balance} van de wallet in Satoshis in. ",
|
"details_del_wb_q": "Deze wallet heeft een balans. Voor je verder gaat, wees er van bewust dat je het bedrag in deze wallet niet kan herstellen zonder de seed phrase van deze wallet. Om onbedoelde verwijdering te voorkomen, voer alsjeblieft hier de balans {balance} van de wallet in Satoshis in. ",
|
||||||
"details_delete": "Verwijderen",
|
"details_delete": "Verwijderen",
|
||||||
"details_delete_wallet": "Verwijder wallet",
|
"details_delete_wallet": "Verwijder wallet",
|
||||||
|
@ -403,16 +385,9 @@
|
||||||
"import_discovery_subtitle": "Kies een ontdekte wallet",
|
"import_discovery_subtitle": "Kies een ontdekte wallet",
|
||||||
"import_discovery_derivation": "Gebruik een handmatig derivation path",
|
"import_discovery_derivation": "Gebruik een handmatig derivation path",
|
||||||
"import_discovery_no_wallets": "Er zijn geen wallets gevonden",
|
"import_discovery_no_wallets": "Er zijn geen wallets gevonden",
|
||||||
"import_derivation_found": "gevonden",
|
|
||||||
"import_derivation_found_not": "niet gevonden",
|
|
||||||
"import_derivation_loading": "aan het laden...",
|
|
||||||
"import_derivation_subtitle": "Vul hier het handmatige derivation path in en wel zullen proberen te helpen met je wallet te vinden",
|
|
||||||
"import_derivation_title": "Derivation path",
|
"import_derivation_title": "Derivation path",
|
||||||
"import_derivation_unknown": "Onbekend",
|
|
||||||
"import_wrong_path": "verkeerde Derivation Path",
|
|
||||||
"list_create_a_button": "Voeg nu toe",
|
"list_create_a_button": "Voeg nu toe",
|
||||||
"list_create_a_wallet": "Wallet aanmaken",
|
"list_create_a_wallet": "Wallet aanmaken",
|
||||||
"list_create_a_wallet_text": "Het is gratis en u kunt \ner zoveel maken als u wilt",
|
|
||||||
"list_empty_txs1": "Uw transacties verschijnen hier",
|
"list_empty_txs1": "Uw transacties verschijnen hier",
|
||||||
"list_empty_txs1_lightning": "Lightning-wallet moet worden gebruikt voor uw dagelijkse transacties. De fees zijn oneerlijk goedkoop en het is razendsnel.",
|
"list_empty_txs1_lightning": "Lightning-wallet moet worden gebruikt voor uw dagelijkse transacties. De fees zijn oneerlijk goedkoop en het is razendsnel.",
|
||||||
"list_empty_txs2": "Begin met uw wallet.",
|
"list_empty_txs2": "Begin met uw wallet.",
|
||||||
|
@ -476,20 +451,14 @@
|
||||||
"quorum_header": "Quorum",
|
"quorum_header": "Quorum",
|
||||||
"of": "van",
|
"of": "van",
|
||||||
"wallet_type": "Wallettype",
|
"wallet_type": "Wallettype",
|
||||||
"invalid_mnemonics": "Deze mnemonic phrase lijkt niet te kloppen",
|
|
||||||
"invalid_cosigner": "Ongeldige medeondertekenaargegevens",
|
|
||||||
"not_a_multisignature_xpub": "Dit is geen xpub van een multisignature wallet!",
|
"not_a_multisignature_xpub": "Dit is geen xpub van een multisignature wallet!",
|
||||||
"invalid_cosigner_format": "Onjuiste mede-ondertekenaar: dit is geen mede-ondertekenaar voor het {format} formaat",
|
|
||||||
"create_new_key": "Maak een nieuwe",
|
"create_new_key": "Maak een nieuwe",
|
||||||
"scan_or_open_file": "Scan of open bestand",
|
"scan_or_open_file": "Scan of open bestand",
|
||||||
"i_have_mnemonics": "Ik heb een seed voor deze key...",
|
"i_have_mnemonics": "Ik heb een seed voor deze key...",
|
||||||
"type_your_mnemonics": "Voeg een seed in om uw bestaande kluissleutel te importeren",
|
"type_your_mnemonics": "Voeg een seed in om uw bestaande kluissleutel te importeren",
|
||||||
"this_is_cosigners_xpub": "Dit is de XPUB van mede-ondertekenaar, klaar om in een andere wallet te worden geïmporteerd. Het is veilig om het te delen.",
|
|
||||||
"wallet_key_created": "Uw kluissleutel is gemaakt. Neem even de tijd om een veilige back-up van uw mnemonic seed te maken",
|
"wallet_key_created": "Uw kluissleutel is gemaakt. Neem even de tijd om een veilige back-up van uw mnemonic seed te maken",
|
||||||
"are_you_sure_seed_will_be_lost": "Weet u het zeker? Uw mnemonic seed zal verloren gaan als u geen back-up heeft",
|
"are_you_sure_seed_will_be_lost": "Weet u het zeker? Uw mnemonic seed zal verloren gaan als u geen back-up heeft",
|
||||||
"forget_this_seed": "Vergeet deze seed en gebruik XPUB",
|
"forget_this_seed": "Vergeet deze seed en gebruik XPUB",
|
||||||
"view_edit_cosigners": "Bekijk/bewerk mede-ondertekenaars",
|
|
||||||
"this_cosigner_is_already_imported": "Deze mede-ondertekenaar is al geïmporteerd",
|
|
||||||
"export_signed_psbt": "Ondertekende PSBT exporteren",
|
"export_signed_psbt": "Ondertekende PSBT exporteren",
|
||||||
"input_fp": "Vingerafdruk invoeren",
|
"input_fp": "Vingerafdruk invoeren",
|
||||||
"input_fp_explain": "Overslaan om de standaard te gebruiken (00000000)",
|
"input_fp_explain": "Overslaan om de standaard te gebruiken (00000000)",
|
||||||
|
@ -514,13 +483,11 @@
|
||||||
"owns": "{label} eigen {address}",
|
"owns": "{label} eigen {address}",
|
||||||
"enter_address": "Adres invoeren",
|
"enter_address": "Adres invoeren",
|
||||||
"check_address": "Adres checken",
|
"check_address": "Adres checken",
|
||||||
"no_wallet_owns_address": "Geen van de beschikbare wallets bezit het opgegeven adres.",
|
"no_wallet_owns_address": "Geen van de beschikbare wallets bezit het opgegeven adres."
|
||||||
"view_qrcode": "Bekijk QR code"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Veranderen",
|
"change": "Veranderen",
|
||||||
"coins_selected": "Geselecteerde coins ({number})",
|
"coins_selected": "Geselecteerde coins ({number})",
|
||||||
"empty": "Deze wallet heeft momenteel geen coins",
|
|
||||||
"freeze": "Bevriezen",
|
"freeze": "Bevriezen",
|
||||||
"freezeLabel": "Bevriezen",
|
"freezeLabel": "Bevriezen",
|
||||||
"freezeLabel_un": "Ontvriezen",
|
"freezeLabel_un": "Ontvriezen",
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
"success": "Sukces",
|
"success": "Sukces",
|
||||||
"wallet_key": "Klucz Portfela",
|
"wallet_key": "Klucz Portfela",
|
||||||
"invalid_animated_qr_code_fragment": "Nieprawidłowy fragment animowanego kodu QR. Spróbuj ponownie.",
|
"invalid_animated_qr_code_fragment": "Nieprawidłowy fragment animowanego kodu QR. Spróbuj ponownie.",
|
||||||
"file_saved": "Plik {filePath} został zapisany w lokalizacji {destination}",
|
|
||||||
"downloads_folder": "Folder Pobrane",
|
|
||||||
"close": "Zamknij",
|
"close": "Zamknij",
|
||||||
"change_input_currency": "Zmień walutę",
|
"change_input_currency": "Zmień walutę",
|
||||||
"refresh": "Odśwież",
|
"refresh": "Odśwież",
|
||||||
|
@ -106,7 +104,7 @@
|
||||||
"title": "Wiarygodna zaprzeczalność"
|
"title": "Wiarygodna zaprzeczalność"
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Czy zapisałeś już słowa klucze? Są one niezbędne, by dysponować środkami, w przypadku zgubienia tego urządzenia. Bez słów kluczy, twoje środki przepadną na zawsze,",
|
"ask": "Czy zapisałeś już słowa klucze? Są one niezbędne, by dysponować środkami, w przypadku zgubienia tego urządzenia. Bez słów kluczy, twoje środki przepadną na zawsze.",
|
||||||
"ask_no": "Nie, nie mam.",
|
"ask_no": "Nie, nie mam.",
|
||||||
"ask_yes": "Tak, mam.",
|
"ask_yes": "Tak, mam.",
|
||||||
"ok": "OK, zapisałem.",
|
"ok": "OK, zapisałem.",
|
||||||
|
|
|
@ -15,9 +15,7 @@
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Sucesso",
|
"success": "Sucesso",
|
||||||
"wallet_key": "Chave da Carteira",
|
"wallet_key": "Chave da Carteira",
|
||||||
"invalid_animated_qr_code_fragment": "Código QR animado inválido, por favor tente novamente.",
|
"invalid_animated_qr_code_fragment": "QR Code animado com fragmento inválido. Favor tentar de novo.",
|
||||||
"file_saved": "Arquivo {filePath} foi salvo em {destination}.",
|
|
||||||
"downloads_folder": "Pasta de Downloads",
|
|
||||||
"close": "Fechar",
|
"close": "Fechar",
|
||||||
"change_input_currency": "Alterar moeda de entrada",
|
"change_input_currency": "Alterar moeda de entrada",
|
||||||
"refresh": "Atualizar",
|
"refresh": "Atualizar",
|
||||||
|
@ -63,9 +61,10 @@
|
||||||
"node_alias": "Apelido do nó",
|
"node_alias": "Apelido do nó",
|
||||||
"expiresIn": "Expira em {time} minutos",
|
"expiresIn": "Expira em {time} minutos",
|
||||||
"payButton": "Pagar",
|
"payButton": "Pagar",
|
||||||
|
"payment": "Pagamento",
|
||||||
"placeholder": "Fatura ou endereço",
|
"placeholder": "Fatura ou endereço",
|
||||||
"open_channel": "Abrir canal",
|
"open_channel": "Abrir canal",
|
||||||
"funding_amount_placeholder": "Quantidade de financiamento, por exemplo 0.001",
|
"funding_amount_placeholder": "Quantidade financiamento, exemplo: 0.001",
|
||||||
"opening_channnel_for_from": "Abrindo canal para carteira {forWalletLabel}, com financiamento de {fromWalletLabel}",
|
"opening_channnel_for_from": "Abrindo canal para carteira {forWalletLabel}, com financiamento de {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Tem certeza que deseja abrir esse canal?",
|
"are_you_sure_open_channel": "Tem certeza que deseja abrir esse canal?",
|
||||||
"potentialFee": "Taxa potencial: {fee}",
|
"potentialFee": "Taxa potencial: {fee}",
|
||||||
|
@ -75,7 +74,7 @@
|
||||||
"refill_create": "Para continuar, por favor, crie uma carteira Bitcoin para recarregar.",
|
"refill_create": "Para continuar, por favor, crie uma carteira Bitcoin para recarregar.",
|
||||||
"refill_external": "Recarregar com uma carteira externa",
|
"refill_external": "Recarregar com uma carteira externa",
|
||||||
"refill_lnd_balance": "Recarregar a carteira Lightning",
|
"refill_lnd_balance": "Recarregar a carteira Lightning",
|
||||||
"sameWalletAsInvoiceError": "Você não pode pagar uma fatura com a mesma carteira que a criou.",
|
"sameWalletAsInvoiceError": "Você não pode pagar um boleto com a mesma carteira que o criou.",
|
||||||
"title": "Administrar fundos",
|
"title": "Administrar fundos",
|
||||||
"can_send": "Pode enviar",
|
"can_send": "Pode enviar",
|
||||||
"can_receive": "Pode receber",
|
"can_receive": "Pode receber",
|
||||||
|
@ -88,7 +87,7 @@
|
||||||
"open_direct_channel": "Abrir canal direto com este nó:",
|
"open_direct_channel": "Abrir canal direto com este nó:",
|
||||||
"please_pay_between_and": "Por favor, pague entre {min} e {max}",
|
"please_pay_between_and": "Por favor, pague entre {min} e {max}",
|
||||||
"please_pay": "Por favor, pague",
|
"please_pay": "Por favor, pague",
|
||||||
"preimage": "Preimage",
|
"preimage": "Imagem prévia",
|
||||||
"sats": "sats.",
|
"sats": "sats.",
|
||||||
"wasnt_paid_and_expired": "Esta fatura não foi paga e expirou."
|
"wasnt_paid_and_expired": "Esta fatura não foi paga e expirou."
|
||||||
},
|
},
|
||||||
|
@ -106,13 +105,13 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Você salvou a frase de backup da sua carteira? Esta frase de backup é necessária para acessar seus fundos, caso você perca este dispositivo. Sem a frase de backup, seus fundos serão perdidos permanentemente.",
|
"ask": "Você salvou a frase de backup da sua carteira? Esta frase de backup é necessária para acessar seus fundos, caso você perca este dispositivo. Sem a frase de backup, seus fundos serão perdidos permanentemente.",
|
||||||
"ask_no": "Não fiz",
|
"ask_no": "Não, eu não salvei.",
|
||||||
"ask_yes": "Sim, já fiz",
|
"ask_yes": "Sim, eu salvei",
|
||||||
"ok": "OK, eu anotei",
|
"ok": "Ok, eu anotei.",
|
||||||
"ok_lnd": "OK, eu salvei",
|
"ok_lnd": "OK, eu salvei.",
|
||||||
"text": "Reserve um tempo para anotar esta sequência de palavras em um pedaço de papel.\nÉ o seu backup e você pode usá-la para recuperar a sua carteira.",
|
"text": "Reserve um tempo para anotar esta sequência de palavras em um pedaço de papel.\nÉ o seu backup e você pode usá-la para recuperar a sua carteira.",
|
||||||
"text_lnd": "Por favor, salve este backup. É ele que permite a restauração da carteira em caso de perda.",
|
"text_lnd": "Por favor, salve este backup. É ele que permite a restauração da carteira em caso de perda.",
|
||||||
"title": "Sua carteira foi criada"
|
"title": "Sua carteira foi criada."
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Criar",
|
"details_create": "Criar",
|
||||||
|
@ -160,7 +159,7 @@
|
||||||
"details_create": "Criar fatura",
|
"details_create": "Criar fatura",
|
||||||
"details_error_decode": "Não foi possível decodificar o endereço Bitcoin",
|
"details_error_decode": "Não foi possível decodificar o endereço Bitcoin",
|
||||||
"details_fee_field_is_not_valid": "A taxa não é válida.",
|
"details_fee_field_is_not_valid": "A taxa não é válida.",
|
||||||
"details_frozen": "{amount} BTC estão congelados",
|
"details_frozen": "{amount} BTC está congelado.",
|
||||||
"details_next": "Próximo",
|
"details_next": "Próximo",
|
||||||
"details_no_signed_tx": "O arquivo selecionado não contém uma transação que possa ser importada.",
|
"details_no_signed_tx": "O arquivo selecionado não contém uma transação que possa ser importada.",
|
||||||
"details_note_placeholder": "Nota pessoal",
|
"details_note_placeholder": "Nota pessoal",
|
||||||
|
@ -192,7 +191,7 @@
|
||||||
"permission_camera_message": "Precisamos de permissão para usar a câmera.",
|
"permission_camera_message": "Precisamos de permissão para usar a câmera.",
|
||||||
"psbt_sign": "Assinar uma transação",
|
"psbt_sign": "Assinar uma transação",
|
||||||
"open_settings": "Abrir Configurações",
|
"open_settings": "Abrir Configurações",
|
||||||
"permission_storage_later": "Me pergunte mais tarde",
|
"permission_storage_later": "Lembre-me depois.",
|
||||||
"permission_storage_message": "A BlueWallet precisa da sua permissão para acessar seu armazenamento e salvar o arquivo.",
|
"permission_storage_message": "A BlueWallet precisa da sua permissão para acessar seu armazenamento e salvar o arquivo.",
|
||||||
"permission_storage_denied_message": "BlueWallet não pode salvar este arquivo. Por favor abra as configurações do seu dispositivo e habilite as permissões de armazenamento.",
|
"permission_storage_denied_message": "BlueWallet não pode salvar este arquivo. Por favor abra as configurações do seu dispositivo e habilite as permissões de armazenamento.",
|
||||||
"permission_storage_title": "Permissão de acesso ao armazenamento",
|
"permission_storage_title": "Permissão de acesso ao armazenamento",
|
||||||
|
@ -203,7 +202,7 @@
|
||||||
"outdated_rate": "A taxa foi atualizada pela última vez em: {date}",
|
"outdated_rate": "A taxa foi atualizada pela última vez em: {date}",
|
||||||
"psbt_tx_open": "Abrir transação assinada",
|
"psbt_tx_open": "Abrir transação assinada",
|
||||||
"psbt_tx_scan": "Ler transação assinada",
|
"psbt_tx_scan": "Ler transação assinada",
|
||||||
"qr_error_no_qrcode": "Não foi possível encontrar um código QR na imagem selecionada. Certifique-se de que a imagem contém apenas um código QR e nenhum conteúdo adicional, como texto ou botões.",
|
"qr_error_no_qrcode": "Não foi possível encontrar um QR Code na imagem selecionada. Certifique-se de que a imagem contenha apenas um QR Code e nenhum conteúdo adicional, como texto ou botões.",
|
||||||
"reset_amount": "Redefinir quantia",
|
"reset_amount": "Redefinir quantia",
|
||||||
"reset_amount_confirm": "Gostaria de redefinir a quantia?",
|
"reset_amount_confirm": "Gostaria de redefinir a quantia?",
|
||||||
"success_done": "Enviado",
|
"success_done": "Enviado",
|
||||||
|
@ -242,7 +241,7 @@
|
||||||
"default_wallets": "Ver todas as carteiras",
|
"default_wallets": "Ver todas as carteiras",
|
||||||
"electrum_connected": "Conectado",
|
"electrum_connected": "Conectado",
|
||||||
"electrum_connected_not": "Não conectado",
|
"electrum_connected_not": "Não conectado",
|
||||||
"electrum_error_connect": "Não é possível conectar ao servidor Electrum fornecido",
|
"electrum_error_connect": "Não possível conectar com servidor Electrum fornecido",
|
||||||
"lndhub_uri": "Por ex. {example}",
|
"lndhub_uri": "Por ex. {example}",
|
||||||
"electrum_host": "Por ex. {example}",
|
"electrum_host": "Por ex. {example}",
|
||||||
"electrum_offline_mode": "Modo offline",
|
"electrum_offline_mode": "Modo offline",
|
||||||
|
@ -300,7 +299,7 @@
|
||||||
"privacy_read_clipboard": "Leia a área de transferência",
|
"privacy_read_clipboard": "Leia a área de transferência",
|
||||||
"privacy_system_settings": "Configurações do sistema",
|
"privacy_system_settings": "Configurações do sistema",
|
||||||
"privacy_quickactions": "Atalhos da carteira",
|
"privacy_quickactions": "Atalhos da carteira",
|
||||||
"privacy_quickactions_explanation": "Toque e segure o ícone do aplicativo BlueWallet em sua tela inicial para visualizar rapidamente o saldo de sua carteira.",
|
"privacy_quickactions_explanation": "Toque e segure o ícone do aplicativo BlueWallet para visualizar rapidamente o saldo da sua carteira.",
|
||||||
"privacy_clipboard_explanation": "Fornece atalhos se endereços ou faturas são encontrados na área de transferência.",
|
"privacy_clipboard_explanation": "Fornece atalhos se endereços ou faturas são encontrados na área de transferência.",
|
||||||
"privacy_do_not_track": "Desativar analítica",
|
"privacy_do_not_track": "Desativar analítica",
|
||||||
"privacy_do_not_track_explanation": "Informações de confiabilidade e desempenho não serão enviadas para análise.",
|
"privacy_do_not_track_explanation": "Informações de confiabilidade e desempenho não serão enviadas para análise.",
|
||||||
|
@ -310,7 +309,7 @@
|
||||||
"selfTest": "Autoteste",
|
"selfTest": "Autoteste",
|
||||||
"save": "Salvar",
|
"save": "Salvar",
|
||||||
"saved": "Salvo",
|
"saved": "Salvo",
|
||||||
"success_transaction_broadcasted": "Sucesso! Sua transação foi transmitida!",
|
"success_transaction_broadcasted": "Sua transação foi transmitida com sucesso!",
|
||||||
"total_balance": "Saldo total",
|
"total_balance": "Saldo total",
|
||||||
"total_balance_explanation": "Exibir o saldo total de todas suas carteiras nos seus widgets da tela inicial.",
|
"total_balance_explanation": "Exibir o saldo total de todas suas carteiras nos seus widgets da tela inicial.",
|
||||||
"widgets": "Widgets",
|
"widgets": "Widgets",
|
||||||
|
@ -318,8 +317,8 @@
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Gostaria de receber notificações quando receber pagamentos?",
|
"would_you_like_to_receive_notifications": "Gostaria de receber notificações quando receber pagamentos?",
|
||||||
"no_and_dont_ask": "Não e não me pergunte de novo",
|
"no_and_dont_ask": "Não, e não me perguntar novamente.",
|
||||||
"ask_me_later": "Me pergunte mais tarde"
|
"ask_me_later": "Lembre-me depois."
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Nós vamos substituir esta transação por uma que envia os fundos para você com taxas mais altas. Isto, efetivamente, cancela a transação atual. Este ato é denominado RBF—Replace by Fee.",
|
"cancel_explain": "Nós vamos substituir esta transação por uma que envia os fundos para você com taxas mais altas. Isto, efetivamente, cancela a transação atual. Este ato é denominado RBF—Replace by Fee.",
|
||||||
|
@ -392,7 +391,7 @@
|
||||||
"details_advanced": "Avançado",
|
"details_advanced": "Avançado",
|
||||||
"details_are_you_sure": "Tem certeza?",
|
"details_are_you_sure": "Tem certeza?",
|
||||||
"details_connected_to": "Conectado a",
|
"details_connected_to": "Conectado a",
|
||||||
"details_del_wb_err": "O valor do saldo fornecido não corresponde ao saldo desta carteira. Tente novamente.",
|
"details_del_wb_err": "O valor do saldo fornecido não corresponde ao saldo desta carteira. Por favor, tente novamente.",
|
||||||
"details_del_wb_q": "Esta carteira tem um saldo. Antes de continuar, esteja ciente de que você não será capaz de recuperar os seus fundos sem a seed desta carteira. Para evitar a remoção acidental, insira o saldo de sua carteira de {balance} satoshis.",
|
"details_del_wb_q": "Esta carteira tem um saldo. Antes de continuar, esteja ciente de que você não será capaz de recuperar os seus fundos sem a seed desta carteira. Para evitar a remoção acidental, insira o saldo de sua carteira de {balance} satoshis.",
|
||||||
"details_delete": "Apagar",
|
"details_delete": "Apagar",
|
||||||
"details_delete_wallet": "Apagar Carteira",
|
"details_delete_wallet": "Apagar Carteira",
|
||||||
|
@ -429,16 +428,16 @@
|
||||||
"import_discovery_subtitle": "Escolha uma carteira encontrada",
|
"import_discovery_subtitle": "Escolha uma carteira encontrada",
|
||||||
"import_discovery_derivation": "Use um caminho de derivação personalizado",
|
"import_discovery_derivation": "Use um caminho de derivação personalizado",
|
||||||
"import_discovery_no_wallets": "Nenhuma carteira foi encontrada.",
|
"import_discovery_no_wallets": "Nenhuma carteira foi encontrada.",
|
||||||
"import_derivation_found": "encontrado",
|
"import_derivation_found": "Encontrado",
|
||||||
"import_derivation_found_not": "não encontrado",
|
"import_derivation_found_not": "Não encontrado",
|
||||||
"import_derivation_loading": "carregando...",
|
"import_derivation_loading": "Carregando...",
|
||||||
"import_derivation_subtitle": "Insira um caminho de derivação personalizado e tentaremos descobrir sua carteira",
|
"import_derivation_subtitle": "Forneça o caminho de derivação personalizado, e vamos tentar encontrar sua carteira.",
|
||||||
"import_derivation_title": "Caminho de derivação",
|
"import_derivation_title": "Caminho de derivação",
|
||||||
"import_derivation_unknown": "desconhecido",
|
"import_derivation_unknown": "Desconhecido",
|
||||||
"import_wrong_path": "caminho de derivação errado",
|
"import_wrong_path": "Caminho de derivação errado",
|
||||||
"list_create_a_button": "Adicionar agora",
|
"list_create_a_button": "Adicionar agora",
|
||||||
"list_create_a_wallet": "Adicionar uma carteira",
|
"list_create_a_wallet": "Adicionar uma carteira",
|
||||||
"list_create_a_wallet_text": "É grátis e você pode criar\nquantas quiser.",
|
"list_create_a_wallet_text": "É gratuito, e você pode criar \nquantos você quiser.",
|
||||||
"list_empty_txs1": "Suas transações aparecerão aqui,",
|
"list_empty_txs1": "Suas transações aparecerão aqui,",
|
||||||
"list_empty_txs1_lightning": "A carteira Lightning faz transações super-rápidas e tem taxas ridiculamente baratas, ideal para transações diárias e de baixo valor.",
|
"list_empty_txs1_lightning": "A carteira Lightning faz transações super-rápidas e tem taxas ridiculamente baratas, ideal para transações diárias e de baixo valor.",
|
||||||
"list_empty_txs2": "Comece por sua carteira.",
|
"list_empty_txs2": "Comece por sua carteira.",
|
||||||
|
@ -478,6 +477,8 @@
|
||||||
"header": "Enviar",
|
"header": "Enviar",
|
||||||
"share": "Compartilhar",
|
"share": "Compartilhar",
|
||||||
"view": "Ver",
|
"view": "Ver",
|
||||||
|
"shared_key_detected": "Coassinatura compartilhada",
|
||||||
|
"shared_key_detected_question": "Uma coassinatura foi compartilhada com você, deseja importá-la?",
|
||||||
"manage_keys": "Gerenciar chaves",
|
"manage_keys": "Gerenciar chaves",
|
||||||
"how_many_signatures_can_bluewallet_make": "quantas assinaturas a BlueWallet pode fazer",
|
"how_many_signatures_can_bluewallet_make": "quantas assinaturas a BlueWallet pode fazer",
|
||||||
"signatures_required_to_spend": "Assinaturas necessárias {number}",
|
"signatures_required_to_spend": "Assinaturas necessárias {number}",
|
||||||
|
@ -503,20 +504,20 @@
|
||||||
"quorum_header": "Quantidade",
|
"quorum_header": "Quantidade",
|
||||||
"of": "de",
|
"of": "de",
|
||||||
"wallet_type": "Tipo da Carteira",
|
"wallet_type": "Tipo da Carteira",
|
||||||
"invalid_mnemonics": "Esta frase mnemônica não parece ser válida.",
|
"invalid_mnemonics": "Esta seed mnemônica não parece ser válida. ",
|
||||||
"invalid_cosigner": "Dados de cossignatário inválidos",
|
"invalid_cosigner": "Coassinatura inválida",
|
||||||
"not_a_multisignature_xpub": "Esta não é uma XPUB de uma carteira multisig!",
|
"not_a_multisignature_xpub": "Esta não é uma XPUB de uma carteira multisig!",
|
||||||
"invalid_cosigner_format": "Cossignatário incorreto: não é um cossignatário para o formato {format}.",
|
"invalid_cosigner_format": "Coassinatura errada: Esta não é uma coassinatura para formato {format} .",
|
||||||
"create_new_key": "Criar nova",
|
"create_new_key": "Criar nova",
|
||||||
"scan_or_open_file": "Ler código ou abrir arquivo",
|
"scan_or_open_file": "Ler código ou abrir arquivo",
|
||||||
"i_have_mnemonics": "Eu tenho uma seed para esta chave...",
|
"i_have_mnemonics": "Eu tenho uma seed para esta chave...",
|
||||||
"type_your_mnemonics": "Insira uma seed para importar a sua chave do Cofre",
|
"type_your_mnemonics": "Insira uma seed para importar a sua chave do Cofre",
|
||||||
"this_is_cosigners_xpub": "Esta é a XPUB do cossignatário, pronta para ser importada para outra carteira. É seguro compartilhá-la.",
|
"this_is_cosigners_xpub": "Este é o XPUB da coassinatura—pronto para ser importado para outra carteira. É seguro compartilhá-la .",
|
||||||
"wallet_key_created": "Sua chave do Cofre foi criada. Reserve um momento para fazer backup com segurança de sua seed.",
|
"wallet_key_created": "Sua chave do Cofre foi criada. Reserve um momento para fazer backup com segurança de sua seed.",
|
||||||
"are_you_sure_seed_will_be_lost": "Você tem certeza? Sua seed mnemônica será perdida se você não tiver um backup",
|
"are_you_sure_seed_will_be_lost": "Você tem certeza? Sua seed mnemônica será perdida se você não tiver um backup",
|
||||||
"forget_this_seed": "Esquecer esta seed e usar a XPUB no lugar.",
|
"forget_this_seed": "Esquecer esta seed e usar a XPUB no lugar.",
|
||||||
"view_edit_cosigners": "Ver/Editar cossignatários",
|
"view_edit_cosigners": "Ver/Editar Coassinaturas",
|
||||||
"this_cosigner_is_already_imported": "Este cossignatário já foi importado.",
|
"this_cosigner_is_already_imported": "Esta coassinatura já foi importada antes.",
|
||||||
"export_signed_psbt": "Exportar PSBT Assinado",
|
"export_signed_psbt": "Exportar PSBT Assinado",
|
||||||
"input_fp": "Inserir fingerprint",
|
"input_fp": "Inserir fingerprint",
|
||||||
"input_fp_explain": "Pule para usar a padrão (00000000)",
|
"input_fp_explain": "Pule para usar a padrão (00000000)",
|
||||||
|
@ -542,13 +543,19 @@
|
||||||
"enter_address": "Insira o endereço",
|
"enter_address": "Insira o endereço",
|
||||||
"check_address": "Verificar endereço",
|
"check_address": "Verificar endereço",
|
||||||
"no_wallet_owns_address": "Nenhuma das carteiras disponíveis possui o endereço fornecido.",
|
"no_wallet_owns_address": "Nenhuma das carteiras disponíveis possui o endereço fornecido.",
|
||||||
"view_qrcode": "Ver o QRCode"
|
"view_qrcode": "Ver QR Code"
|
||||||
|
},
|
||||||
|
"autofill_word": {
|
||||||
|
"title": "Gerar última palavra da seed mnemônica ",
|
||||||
|
"enter": "Forneça sua seed mnemônica parcial",
|
||||||
|
"generate_word": "Gerar última palavra",
|
||||||
|
"error": "Não foi fornecida seed mnemônica parcial no formato de 11 OU 23 palavras. Por favor, tente novamente."
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Troco",
|
"change": "Troco",
|
||||||
"coins_selected": "Moedas selecionadas ({number})",
|
"coins_selected": "Moedas selecionadas ({number})",
|
||||||
"selected_summ": "{value} selecionado",
|
"selected_summ": "{value} selecionado",
|
||||||
"empty": "Esta carteira ainda não tem nenhuma moeda",
|
"empty": "Esta carteira não tem fundos no momento.",
|
||||||
"freeze": "Congelar",
|
"freeze": "Congelar",
|
||||||
"freezeLabel": "Congelar",
|
"freezeLabel": "Congelar",
|
||||||
"freezeLabel_un": "Descongelar",
|
"freezeLabel_un": "Descongelar",
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Sucesso",
|
"success": "Sucesso",
|
||||||
"wallet_key": "Chave da carteira",
|
"wallet_key": "Chave da carteira",
|
||||||
"invalid_animated_qr_code_fragment": "Fragmento de QRCode animado inválido. Por favor, tente novamente.",
|
|
||||||
"downloads_folder": "Pasta de downloads",
|
|
||||||
"close": "Fechar",
|
"close": "Fechar",
|
||||||
"more": "Mais",
|
"more": "Mais",
|
||||||
"pick_file": "Escolha um ficheiro",
|
"pick_file": "Escolha um ficheiro",
|
||||||
|
@ -45,7 +43,6 @@
|
||||||
},
|
},
|
||||||
"lnd": {
|
"lnd": {
|
||||||
"new_channel": "Novo canal",
|
"new_channel": "Novo canal",
|
||||||
"errorInvoiceExpired": "Factura expirada",
|
|
||||||
"expired": "Expirado",
|
"expired": "Expirado",
|
||||||
"expiresIn": "Expira em {time} minutos",
|
"expiresIn": "Expira em {time} minutos",
|
||||||
"payButton": "Paga",
|
"payButton": "Paga",
|
||||||
|
@ -57,6 +54,7 @@
|
||||||
"refill_create": "Para continuar, crie uma carteira Bitcoin para recarregar.",
|
"refill_create": "Para continuar, crie uma carteira Bitcoin para recarregar.",
|
||||||
"refill_external": "Recarregar com carteira externa",
|
"refill_external": "Recarregar com carteira externa",
|
||||||
"refill_lnd_balance": "Carregar o saldo da Lightning wallet",
|
"refill_lnd_balance": "Carregar o saldo da Lightning wallet",
|
||||||
|
"sameWalletAsInvoiceError": "Não pode pagar uma factura com a mesma wallet usada para a criar.",
|
||||||
"title": "Gerir saldo"
|
"title": "Gerir saldo"
|
||||||
},
|
},
|
||||||
"lndViewInvoice": {
|
"lndViewInvoice": {
|
||||||
|
@ -66,7 +64,6 @@
|
||||||
"open_direct_channel": "Abrir canal directo com este nó:",
|
"open_direct_channel": "Abrir canal directo com este nó:",
|
||||||
"please_pay_between_and": "Por favor pague entre {min} e {max}",
|
"please_pay_between_and": "Por favor pague entre {min} e {max}",
|
||||||
"please_pay": "Por favor pague",
|
"please_pay": "Por favor pague",
|
||||||
"preimage": "Preimage",
|
|
||||||
"sats": "sats",
|
"sats": "sats",
|
||||||
"wasnt_paid_and_expired": "Esta factura não foi paga e expirou"
|
"wasnt_paid_and_expired": "Esta factura não foi paga e expirou"
|
||||||
},
|
},
|
||||||
|
@ -84,12 +81,9 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Salvou a frase de backup da sua carteira? Esta frase de backup é necessária para pode ter acesso aos fundos em caso de perder este dispositivo. Sem a frase de backup, os fundos serão perdidos permanentemente.",
|
"ask": "Salvou a frase de backup da sua carteira? Esta frase de backup é necessária para pode ter acesso aos fundos em caso de perder este dispositivo. Sem a frase de backup, os fundos serão perdidos permanentemente.",
|
||||||
"ask_no": "Não, eu não tenho",
|
"ok_lnd": "Ok, eu guardei.",
|
||||||
"ask_yes": "Sim, eu fiz",
|
|
||||||
"ok": "OK, eu anotei",
|
|
||||||
"ok_lnd": "OK, eu guardei",
|
|
||||||
"text_lnd": "Por favor, reserve um momento para guardar este backup. É o seu backup que lhe permite restaurar a carteira em outro dispositivo.",
|
"text_lnd": "Por favor, reserve um momento para guardar este backup. É o seu backup que lhe permite restaurar a carteira em outro dispositivo.",
|
||||||
"title": "A sua carteira foi criada"
|
"title": "A sua wallet foi criada..."
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Criar",
|
"details_create": "Criar",
|
||||||
|
@ -154,7 +148,6 @@
|
||||||
"permission_camera_message": "Precisamos da sua permissão para usar a sua câmera",
|
"permission_camera_message": "Precisamos da sua permissão para usar a sua câmera",
|
||||||
"psbt_sign": "Assinar transação",
|
"psbt_sign": "Assinar transação",
|
||||||
"open_settings": "Abrir configurações",
|
"open_settings": "Abrir configurações",
|
||||||
"permission_storage_later": "Perguntar mais tarde",
|
|
||||||
"permission_storage_message": "A BlueWallet precisa da sua permissão para aceder ao seu armazenamento para guardar esta transação.",
|
"permission_storage_message": "A BlueWallet precisa da sua permissão para aceder ao seu armazenamento para guardar esta transação.",
|
||||||
"permission_storage_denied_message": "A BlueWallet não conseguiu gravar este ficheiro. Por favor aceda às definições do seu dispositivo e habilite as permissões de armazenamento.",
|
"permission_storage_denied_message": "A BlueWallet não conseguiu gravar este ficheiro. Por favor aceda às definições do seu dispositivo e habilite as permissões de armazenamento.",
|
||||||
"permission_storage_title": "Permissão de acesso ao armazenamento",
|
"permission_storage_title": "Permissão de acesso ao armazenamento",
|
||||||
|
@ -194,7 +187,6 @@
|
||||||
"default_wallets": "Ver todas as carteiras",
|
"default_wallets": "Ver todas as carteiras",
|
||||||
"electrum_connected": "Conectado",
|
"electrum_connected": "Conectado",
|
||||||
"electrum_connected_not": "Desconectado",
|
"electrum_connected_not": "Desconectado",
|
||||||
"electrum_error_connect": "Não é possível conectar ao servidor Electrum fornecido",
|
|
||||||
"use_ssl": "Usar SSL",
|
"use_ssl": "Usar SSL",
|
||||||
"electrum_saved": "As alterações foram guardadas com sucesso. Pode ser necessário reiniciar para que as alterações tenham efeito.",
|
"electrum_saved": "As alterações foram guardadas com sucesso. Pode ser necessário reiniciar para que as alterações tenham efeito.",
|
||||||
"set_electrum_server_as_default": "Definir {server} como servidor Electrum predefinido?",
|
"set_electrum_server_as_default": "Definir {server} como servidor Electrum predefinido?",
|
||||||
|
@ -243,21 +235,17 @@
|
||||||
"privacy": "Privacidade",
|
"privacy": "Privacidade",
|
||||||
"privacy_system_settings": "Configurações do Sistema",
|
"privacy_system_settings": "Configurações do Sistema",
|
||||||
"privacy_quickactions": "Atalhos da Carteira",
|
"privacy_quickactions": "Atalhos da Carteira",
|
||||||
"privacy_quickactions_explanation": "Toque e mantenha pressionado o ícone da aplicação BlueWallet no ecrã inicial para ver rapidamente o saldo da sua carteira.",
|
|
||||||
"push_notifications": "Notificações via push",
|
"push_notifications": "Notificações via push",
|
||||||
"retype_password": "Inserir password novamente",
|
"retype_password": "Inserir password novamente",
|
||||||
"save": "Guardar",
|
"save": "Guardar",
|
||||||
"saved": "Guardado",
|
"saved": "Guardado",
|
||||||
"success_transaction_broadcasted": "Sucesso! A sua transação foi transmitida!",
|
|
||||||
"total_balance": "Saldo Total",
|
"total_balance": "Saldo Total",
|
||||||
"total_balance_explanation": "Mostrar o saldo total de todas as suas carteiras nos widgets do ecrã inicial.",
|
"total_balance_explanation": "Mostrar o saldo total de todas as suas carteiras nos widgets do ecrã inicial.",
|
||||||
"widgets": "Widgets",
|
"widgets": "Widgets",
|
||||||
"tools": "Ferramentas"
|
"tools": "Ferramentas"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Você gostaria de receber notificações quando você receber pagamentos?",
|
"would_you_like_to_receive_notifications": "Você gostaria de receber notificações quando você receber pagamentos?"
|
||||||
"no_and_dont_ask": "Não, e não perguntar novamente",
|
|
||||||
"ask_me_later": "Pergunte-me depois"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "Esta transacção não é substituível",
|
"cancel_no": "Esta transacção não é substituível",
|
||||||
|
@ -321,7 +309,6 @@
|
||||||
"details_advanced": "Avançado",
|
"details_advanced": "Avançado",
|
||||||
"details_are_you_sure": "Tem a certeza?",
|
"details_are_you_sure": "Tem a certeza?",
|
||||||
"details_connected_to": "Conectado a",
|
"details_connected_to": "Conectado a",
|
||||||
"details_del_wb_err": "O valor do saldo fornecido não corresponde ao saldo desta carteira. Por favor, tente novamente",
|
|
||||||
"details_del_wb_q": "Esta carteira tem saldo. Antes de continuar, tenha em atenção que não poderá recuperar os fundos sem as palavras-semente desta carteira. Para evitar uma remoção acidental, introduza o saldo da sua carteira de {balance} satoshis.",
|
"details_del_wb_q": "Esta carteira tem saldo. Antes de continuar, tenha em atenção que não poderá recuperar os fundos sem as palavras-semente desta carteira. Para evitar uma remoção acidental, introduza o saldo da sua carteira de {balance} satoshis.",
|
||||||
"details_delete": "Eliminar",
|
"details_delete": "Eliminar",
|
||||||
"details_delete_wallet": "Remover carteira",
|
"details_delete_wallet": "Remover carteira",
|
||||||
|
|
43
loc/ro.json
43
loc/ro.json
|
@ -14,10 +14,7 @@
|
||||||
"save": "Salvează",
|
"save": "Salvează",
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Succes",
|
"success": "Succes",
|
||||||
"wallet_key": "Cheia portofelului",
|
"wallet_key": "Cheia portofelului"
|
||||||
"invalid_animated_qr_code_fragment": "Fragment animat de QRCode invalid. Încearcă din nou.",
|
|
||||||
"file_saved": "Fișierul {filePath} a fost salvat în {destination}.",
|
|
||||||
"downloads_folder": "Folderul de descărcări"
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "Alertă"
|
"default": "Alertă"
|
||||||
|
@ -49,22 +46,17 @@
|
||||||
"claim_balance": "Revendică sold {balance}",
|
"claim_balance": "Revendică sold {balance}",
|
||||||
"close_channel": "Închide canal",
|
"close_channel": "Închide canal",
|
||||||
"new_channel": "Canal nou",
|
"new_channel": "Canal nou",
|
||||||
"errorInvoiceExpired": "Factură expirată",
|
|
||||||
"force_close_channel": "Forțează închiderea canalului?",
|
"force_close_channel": "Forțează închiderea canalului?",
|
||||||
"expired": "Expirat",
|
"expired": "Expirat",
|
||||||
"node_alias": "Alias nod",
|
"node_alias": "Alias nod",
|
||||||
"expiresIn": "Expiră în {time} minute",
|
"expiresIn": "Expiră în {time} minute",
|
||||||
"payButton": "Plătește",
|
"payButton": "Plătește",
|
||||||
"placeholder": "Factură",
|
|
||||||
"open_channel": "Deschide canal",
|
"open_channel": "Deschide canal",
|
||||||
"funding_amount_placeholder": "Valoarea finanțării, de exemplu 0.001",
|
|
||||||
"are_you_sure_open_channel": "Sigur vrei să deschizi acest canal?",
|
"are_you_sure_open_channel": "Sigur vrei să deschizi acest canal?",
|
||||||
"potentialFee": "Comision Potențial: {fee}",
|
|
||||||
"refill": "Reumple",
|
"refill": "Reumple",
|
||||||
"refill_create": "Pentru a continua, creează un portofel Bitcoin cu care să reumpli.",
|
"refill_create": "Pentru a continua, creează un portofel Bitcoin cu care să reumpli.",
|
||||||
"refill_external": "Reumple cu Portofel Extern",
|
"refill_external": "Reumple cu Portofel Extern",
|
||||||
"refill_lnd_balance": "Reumple balanța portofelului Lightning",
|
"refill_lnd_balance": "Reumple balanța portofelului Lightning",
|
||||||
"sameWalletAsInvoiceError": "Nu poți plăti o factură cu același portofel folosit să o creeze.",
|
|
||||||
"title": "Administrează fondurile",
|
"title": "Administrează fondurile",
|
||||||
"can_send": "Poate trimite",
|
"can_send": "Poate trimite",
|
||||||
"can_receive": "Poate primi",
|
"can_receive": "Poate primi",
|
||||||
|
@ -77,7 +69,6 @@
|
||||||
"open_direct_channel": "Deschide canal direct cu acest nod:",
|
"open_direct_channel": "Deschide canal direct cu acest nod:",
|
||||||
"please_pay_between_and": "Plătește între {min} și {max}",
|
"please_pay_between_and": "Plătește între {min} și {max}",
|
||||||
"please_pay": "Plătește",
|
"please_pay": "Plătește",
|
||||||
"preimage": "Pre-imagine",
|
|
||||||
"sats": "sats.",
|
"sats": "sats.",
|
||||||
"wasnt_paid_and_expired": "Această factură nu a fost plătită și a expirat."
|
"wasnt_paid_and_expired": "Această factură nu a fost plătită și a expirat."
|
||||||
},
|
},
|
||||||
|
@ -95,10 +86,8 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Ai salvat cuvintele de rezervă ale portofelului tău? Aceste cuvinte de rezervă sunt necesare pentru a-ți accesa fondurile în cazul în care îți pierzi dispozitivul. Fără cuvintele de rezervă, fondurile tale vor fi permanent pierdute.",
|
"ask": "Ai salvat cuvintele de rezervă ale portofelului tău? Aceste cuvinte de rezervă sunt necesare pentru a-ți accesa fondurile în cazul în care îți pierzi dispozitivul. Fără cuvintele de rezervă, fondurile tale vor fi permanent pierdute.",
|
||||||
"ask_no": "Nu, nu am făcut asta",
|
"ok": "OK, o scriu pe foaie.",
|
||||||
"ask_yes": "Da, am făcut asta",
|
"ok_lnd": "Ok, am salvat,",
|
||||||
"ok": "Ok, am notat acestea",
|
|
||||||
"ok_lnd": "Ok, am salvat acestea",
|
|
||||||
"text": "Notează această frază mnemonică pe o hîrtie. Este copia de rezervă pe care o poți folosi să restabilești portofelul pe alt dispozitiv. ",
|
"text": "Notează această frază mnemonică pe o hîrtie. Este copia de rezervă pe care o poți folosi să restabilești portofelul pe alt dispozitiv. ",
|
||||||
"text_lnd": "Salvează această copie de rezervă a portofelului. Îți permite să restabilești portofelul în cazul unei pierderi.",
|
"text_lnd": "Salvează această copie de rezervă a portofelului. Îți permite să restabilești portofelul în cazul unei pierderi.",
|
||||||
"title": "Portofelul tău a fost creat."
|
"title": "Portofelul tău a fost creat."
|
||||||
|
@ -145,7 +134,6 @@
|
||||||
"details_error_decode": "Nu s-a putut decoda adresa Bitcoin",
|
"details_error_decode": "Nu s-a putut decoda adresa Bitcoin",
|
||||||
"details_fee_field_is_not_valid": "Comisionul nu este valid.",
|
"details_fee_field_is_not_valid": "Comisionul nu este valid.",
|
||||||
"details_next": "Înainte",
|
"details_next": "Înainte",
|
||||||
"details_no_signed_tx": "Fișierul ales nu conține o tranzacție ce poate fi importată.",
|
|
||||||
"details_note_placeholder": "Notă pentru sine",
|
"details_note_placeholder": "Notă pentru sine",
|
||||||
"details_scan": "Scanează",
|
"details_scan": "Scanează",
|
||||||
"details_total_exceeds_balance": "Suma de trimis depășește balanța disponibilă.",
|
"details_total_exceeds_balance": "Suma de trimis depășește balanța disponibilă.",
|
||||||
|
@ -171,10 +159,8 @@
|
||||||
"input_paste": "Lipește",
|
"input_paste": "Lipește",
|
||||||
"input_total": "Total:",
|
"input_total": "Total:",
|
||||||
"permission_camera_message": "E nevoie de permisiune de folosire a camerei foto",
|
"permission_camera_message": "E nevoie de permisiune de folosire a camerei foto",
|
||||||
"permission_camera_title": "Permisiune de folosire a camerei foto",
|
|
||||||
"psbt_sign": "Semnează o tranzacție",
|
"psbt_sign": "Semnează o tranzacție",
|
||||||
"open_settings": "Deschide Setări",
|
"open_settings": "Deschide Setări",
|
||||||
"permission_storage_later": "Întreabă-mă mai tîrziu",
|
|
||||||
"permission_storage_message": "BlueWallet necesită permisiune de accesare a spațiului tău de stocare pentru a salva acest fișier.",
|
"permission_storage_message": "BlueWallet necesită permisiune de accesare a spațiului tău de stocare pentru a salva acest fișier.",
|
||||||
"permission_storage_denied_message": "BlueWallet nu poate salva acest fișier. Deschide setările dispozitivului și permite permisiunea de stocare.",
|
"permission_storage_denied_message": "BlueWallet nu poate salva acest fișier. Deschide setările dispozitivului și permite permisiunea de stocare.",
|
||||||
"permission_storage_title": "Permisiune de acces a spațiului de stocare",
|
"permission_storage_title": "Permisiune de acces a spațiului de stocare",
|
||||||
|
@ -217,7 +203,6 @@
|
||||||
"default_wallets": "Vezi Toate Portofelele",
|
"default_wallets": "Vezi Toate Portofelele",
|
||||||
"electrum_connected": "Conectat",
|
"electrum_connected": "Conectat",
|
||||||
"electrum_connected_not": "Nu e conectat",
|
"electrum_connected_not": "Nu e conectat",
|
||||||
"electrum_error_connect": "Nu se poate conecta la serverul Electrum furnizat",
|
|
||||||
"lndhub_uri": "Exemplu: {example}",
|
"lndhub_uri": "Exemplu: {example}",
|
||||||
"electrum_host": "Exemplu: {example}",
|
"electrum_host": "Exemplu: {example}",
|
||||||
"electrum_offline_mode": "Mod offline",
|
"electrum_offline_mode": "Mod offline",
|
||||||
|
@ -273,7 +258,6 @@
|
||||||
"privacy_read_clipboard": "Citește clipboard",
|
"privacy_read_clipboard": "Citește clipboard",
|
||||||
"privacy_system_settings": "Setări sistem",
|
"privacy_system_settings": "Setări sistem",
|
||||||
"privacy_quickactions": "Scurtături ale portofelului",
|
"privacy_quickactions": "Scurtături ale portofelului",
|
||||||
"privacy_quickactions_explanation": "Ține apăsat pe iconița aplicație BlueWallet de pe ecranul tău principal pentru a vedea rapid balanța portofelului tău.",
|
|
||||||
"privacy_clipboard_explanation": "Furnizează scurtături dacă o adresă sau factură este găsită în clipboard-ul tău.",
|
"privacy_clipboard_explanation": "Furnizează scurtături dacă o adresă sau factură este găsită în clipboard-ul tău.",
|
||||||
"privacy_do_not_track": "Dezactivează Analytics",
|
"privacy_do_not_track": "Dezactivează Analytics",
|
||||||
"push_notifications": "Notificări push",
|
"push_notifications": "Notificări push",
|
||||||
|
@ -282,16 +266,13 @@
|
||||||
"selfTest": "Auto-test",
|
"selfTest": "Auto-test",
|
||||||
"save": "Salvează",
|
"save": "Salvează",
|
||||||
"saved": "Salvat",
|
"saved": "Salvat",
|
||||||
"success_transaction_broadcasted": "Realizat cu succes! Tranzacția ta a fost difuzată!",
|
|
||||||
"total_balance": "Balanță totală",
|
"total_balance": "Balanță totală",
|
||||||
"total_balance_explanation": "Afișează balanța totală a tuturor portofelelor tale pe widget-urile ecranului tău principal.",
|
"total_balance_explanation": "Afișează balanța totală a tuturor portofelelor tale pe widget-urile ecranului tău principal.",
|
||||||
"widgets": "Widget-uri",
|
"widgets": "Widget-uri",
|
||||||
"tools": "Unelte"
|
"tools": "Unelte"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Ai vrea să primești notificări atunci cînd primești plăți?",
|
"would_you_like_to_receive_notifications": "Ai vrea să primești notificări atunci cînd primești plăți?"
|
||||||
"no_and_dont_ask": "Nu, și nu mă mai întreba",
|
|
||||||
"ask_me_later": "Întreabă-mă mai tîrziu"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Se va înlocui această tranzacție cu aceea care te plătește pe tine și are comisioane mai mari. Acest lucru anulează tranzacția curentă. Acest proces se numește RBF - Replace by Fee / Înlocuiește prin Comision. ",
|
"cancel_explain": "Se va înlocui această tranzacție cu aceea care te plătește pe tine și are comisioane mai mari. Acest lucru anulează tranzacția curentă. Acest proces se numește RBF - Replace by Fee / Înlocuiește prin Comision. ",
|
||||||
|
@ -357,7 +338,6 @@
|
||||||
"details_advanced": "Avansat",
|
"details_advanced": "Avansat",
|
||||||
"details_are_you_sure": "Ești sigur(ă)?",
|
"details_are_you_sure": "Ești sigur(ă)?",
|
||||||
"details_connected_to": "Conectat la",
|
"details_connected_to": "Conectat la",
|
||||||
"details_del_wb_err": "Balanța furnizată nu se potrivește cu balanța acestui portofel. Încearcă din nou.",
|
|
||||||
"details_delete": "Șterge",
|
"details_delete": "Șterge",
|
||||||
"details_delete_wallet": "Șterge Portofelul",
|
"details_delete_wallet": "Șterge Portofelul",
|
||||||
"details_derivation_path": "calea de derivare",
|
"details_derivation_path": "calea de derivare",
|
||||||
|
@ -387,15 +367,9 @@
|
||||||
"import_discovery_title": "Descoperire",
|
"import_discovery_title": "Descoperire",
|
||||||
"import_discovery_subtitle": "Alege un portofel descoperit",
|
"import_discovery_subtitle": "Alege un portofel descoperit",
|
||||||
"import_discovery_no_wallets": "Niciun portofel nu a fost găsit.",
|
"import_discovery_no_wallets": "Niciun portofel nu a fost găsit.",
|
||||||
"import_derivation_found": "găsit",
|
|
||||||
"import_derivation_found_not": "nu a fost găsit",
|
|
||||||
"import_derivation_loading": "se încarcă...",
|
|
||||||
"import_derivation_title": "Cale de derivare",
|
"import_derivation_title": "Cale de derivare",
|
||||||
"import_derivation_unknown": "necunoscut",
|
|
||||||
"import_wrong_path": "Cale greșită de derivare",
|
|
||||||
"list_create_a_button": "Adaugă acum",
|
"list_create_a_button": "Adaugă acum",
|
||||||
"list_create_a_wallet": "Adaugă un portofel",
|
"list_create_a_wallet": "Adaugă un portofel",
|
||||||
"list_create_a_wallet_text": "Este gratuit și poți crea\ncît de multe vrei",
|
|
||||||
"list_empty_txs1": "Tranzacțiile tale vor apărea aici.",
|
"list_empty_txs1": "Tranzacțiile tale vor apărea aici.",
|
||||||
"list_empty_txs1_lightning": "Portofelul Lightning e de folosit pentru tranzacțiile tale zilnice. Comisioanele sunt nedrept de ieftine, iar viteza este amețitor de rapidă. ",
|
"list_empty_txs1_lightning": "Portofelul Lightning e de folosit pentru tranzacțiile tale zilnice. Comisioanele sunt nedrept de ieftine, iar viteza este amețitor de rapidă. ",
|
||||||
"list_empty_txs2": "Pornește cu portofelul tău.",
|
"list_empty_txs2": "Pornește cu portofelul tău.",
|
||||||
|
@ -459,19 +433,14 @@
|
||||||
"quorum_header": "Cvorum",
|
"quorum_header": "Cvorum",
|
||||||
"of": "din",
|
"of": "din",
|
||||||
"wallet_type": "Tipul Portofelului",
|
"wallet_type": "Tipul Portofelului",
|
||||||
"invalid_mnemonics": "Această frază mnemonică nu pare să fie validă.",
|
|
||||||
"not_a_multisignature_xpub": "Acesta nu este un XPUB al unui portofel multi-semnătură!",
|
"not_a_multisignature_xpub": "Acesta nu este un XPUB al unui portofel multi-semnătură!",
|
||||||
"invalid_cosigner_format": "Co-semnatar incorect: acesta nu este un co-semnatar pentru formatul {format}.",
|
|
||||||
"create_new_key": "Creează o nouă",
|
"create_new_key": "Creează o nouă",
|
||||||
"scan_or_open_file": "Scanează sau deschide fișier",
|
"scan_or_open_file": "Scanează sau deschide fișier",
|
||||||
"i_have_mnemonics": "Am un seed pentru această cheie.",
|
"i_have_mnemonics": "Am un seed pentru această cheie.",
|
||||||
"type_your_mnemonics": "Inserează un seed pentru a importa cheia ta de Seif existentă.",
|
"type_your_mnemonics": "Inserează un seed pentru a importa cheia ta de Seif existentă.",
|
||||||
"this_is_cosigners_xpub": "Acesta este XPUB-ul co-semnatarului - gata de importat în alt portofel. Este sigur să îl distribui.",
|
|
||||||
"wallet_key_created": "Seiful tău a fost creat. Ia-ți un moment să faci o copie de rezervă a seed-ului tău mnemonic.",
|
"wallet_key_created": "Seiful tău a fost creat. Ia-ți un moment să faci o copie de rezervă a seed-ului tău mnemonic.",
|
||||||
"are_you_sure_seed_will_be_lost": "Ești sigur(ă)? Seed-ul tău mnemonic va fi pierdut dacă nu ai o copie de rezervă.",
|
"are_you_sure_seed_will_be_lost": "Ești sigur(ă)? Seed-ul tău mnemonic va fi pierdut dacă nu ai o copie de rezervă.",
|
||||||
"forget_this_seed": "Uită acest seed și folosește XPUB-ul în loc.",
|
"forget_this_seed": "Uită acest seed și folosește XPUB-ul în loc.",
|
||||||
"view_edit_cosigners": "Vezi/Editează co-semnatari.",
|
|
||||||
"this_cosigner_is_already_imported": "Co-semnatarul este deja importat.",
|
|
||||||
"export_signed_psbt": "Exportă PSBT semnată",
|
"export_signed_psbt": "Exportă PSBT semnată",
|
||||||
"input_fp": "Introdu amprenta",
|
"input_fp": "Introdu amprenta",
|
||||||
"input_fp_explain": "Sari peste pentru a o folosi pe cea implicită (00000000)",
|
"input_fp_explain": "Sari peste pentru a o folosi pe cea implicită (00000000)",
|
||||||
|
@ -494,14 +463,12 @@
|
||||||
"owns": "{label} deține {address}",
|
"owns": "{label} deține {address}",
|
||||||
"enter_address": "Introdu adresa",
|
"enter_address": "Introdu adresa",
|
||||||
"check_address": "Verifică adresa",
|
"check_address": "Verifică adresa",
|
||||||
"no_wallet_owns_address": "Niciunul dintre portofelele disponibile nu deține adresa furnizată.",
|
"no_wallet_owns_address": "Niciunul dintre portofelele disponibile nu deține adresa furnizată."
|
||||||
"view_qrcode": "Vezi cod QR"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Schimb",
|
"change": "Schimb",
|
||||||
"coins_selected": "Monede selectate ({number})",
|
"coins_selected": "Monede selectate ({number})",
|
||||||
"selected_summ": "{value} selectat",
|
"selected_summ": "{value} selectat",
|
||||||
"empty": "Acest portofel nu are nicio monedă în acest moment.",
|
|
||||||
"freeze": "Îngheață",
|
"freeze": "Îngheață",
|
||||||
"freezeLabel": "Îngheață",
|
"freezeLabel": "Îngheață",
|
||||||
"freezeLabel_un": "Deblochează",
|
"freezeLabel_un": "Deblochează",
|
||||||
|
|
40
loc/ru.json
40
loc/ru.json
|
@ -15,9 +15,6 @@
|
||||||
"seed": "Cид-фраза",
|
"seed": "Cид-фраза",
|
||||||
"success": "Успешно",
|
"success": "Успешно",
|
||||||
"wallet_key": "Ключ кошелька",
|
"wallet_key": "Ключ кошелька",
|
||||||
"invalid_animated_qr_code_fragment": "Ошибочный фрагмент QR-кода, попробуйте снова.",
|
|
||||||
"file_saved": "Файл {filePath} сохранён в {destination}.",
|
|
||||||
"downloads_folder": "Папка Загрузки",
|
|
||||||
"close": "Закрыть",
|
"close": "Закрыть",
|
||||||
"change_input_currency": "Сменить валюту",
|
"change_input_currency": "Сменить валюту",
|
||||||
"refresh": "Обновить",
|
"refresh": "Обновить",
|
||||||
|
@ -57,7 +54,6 @@
|
||||||
"claim_balance": "Требовать баланс {balance}",
|
"claim_balance": "Требовать баланс {balance}",
|
||||||
"close_channel": "Закрыть канал",
|
"close_channel": "Закрыть канал",
|
||||||
"new_channel": "Новый канал",
|
"new_channel": "Новый канал",
|
||||||
"errorInvoiceExpired": "Инвойс просрочен",
|
|
||||||
"force_close_channel": "Закрыть канал принудительно?",
|
"force_close_channel": "Закрыть канал принудительно?",
|
||||||
"expired": "Истекший",
|
"expired": "Истекший",
|
||||||
"node_alias": "Псевдоним ноды",
|
"node_alias": "Псевдоним ноды",
|
||||||
|
@ -65,7 +61,6 @@
|
||||||
"payButton": "Оплатить",
|
"payButton": "Оплатить",
|
||||||
"placeholder": "Инвойс",
|
"placeholder": "Инвойс",
|
||||||
"open_channel": "Открыть Канал",
|
"open_channel": "Открыть Канал",
|
||||||
"funding_amount_placeholder": "Количество для пополнения, например 0.001",
|
|
||||||
"opening_channnel_for_from": "Открытие канала для кошелька {forWalletLabel} средствами из {fromWalletLabel}",
|
"opening_channnel_for_from": "Открытие канала для кошелька {forWalletLabel} средствами из {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Вы уверены, что хотите открыть этот канал?",
|
"are_you_sure_open_channel": "Вы уверены, что хотите открыть этот канал?",
|
||||||
"potentialFee": "Примерная комиссия: {fee}",
|
"potentialFee": "Примерная комиссия: {fee}",
|
||||||
|
@ -75,7 +70,7 @@
|
||||||
"refill_create": "Чтобы продолжить, пожалуйста, создайте биткоин-кошелёк для пополнения.",
|
"refill_create": "Чтобы продолжить, пожалуйста, создайте биткоин-кошелёк для пополнения.",
|
||||||
"refill_external": "Пополнить с помощью внешнего кошелька",
|
"refill_external": "Пополнить с помощью внешнего кошелька",
|
||||||
"refill_lnd_balance": "Пополнить баланс кошелька Lightning",
|
"refill_lnd_balance": "Пополнить баланс кошелька Lightning",
|
||||||
"sameWalletAsInvoiceError": "Вы не можете оплатить инвойс тем же кошельком, который использовали для его создания.",
|
"sameWalletAsInvoiceError": "Ты не можешь оплатить Инвойс тем же кошельком, который ты использовал для его создания.",
|
||||||
"title": "Мои средства",
|
"title": "Мои средства",
|
||||||
"can_send": "Может Отправлять",
|
"can_send": "Может Отправлять",
|
||||||
"can_receive": "Может Получать",
|
"can_receive": "Может Получать",
|
||||||
|
@ -88,7 +83,6 @@
|
||||||
"open_direct_channel": "Открыть канал с этой нодой:",
|
"open_direct_channel": "Открыть канал с этой нодой:",
|
||||||
"please_pay_between_and": "Оплатите от {min} до {max}",
|
"please_pay_between_and": "Оплатите от {min} до {max}",
|
||||||
"please_pay": "Пожалуйста, оплатите",
|
"please_pay": "Пожалуйста, оплатите",
|
||||||
"preimage": "Предпросмотр",
|
|
||||||
"sats": "sats",
|
"sats": "sats",
|
||||||
"wasnt_paid_and_expired": "Этот инвойс не был оплачен и просрочен"
|
"wasnt_paid_and_expired": "Этот инвойс не был оплачен и просрочен"
|
||||||
},
|
},
|
||||||
|
@ -106,8 +100,6 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Вы сохранили сид-фразу вашего кошелька? Эта резервная фраза необходима для восстановления доступа к вашим средствам, если вы потеряете это устройство. Без резервной фразы ваши средства будут потеряны навсегда.",
|
"ask": "Вы сохранили сид-фразу вашего кошелька? Эта резервная фраза необходима для восстановления доступа к вашим средствам, если вы потеряете это устройство. Без резервной фразы ваши средства будут потеряны навсегда.",
|
||||||
"ask_no": "Нет, я не сохранил",
|
|
||||||
"ask_yes": "Да, я сохранил",
|
|
||||||
"ok": "Я всё записал!",
|
"ok": "Я всё записал!",
|
||||||
"ok_lnd": "Я всё сохранил.",
|
"ok_lnd": "Я всё сохранил.",
|
||||||
"text": "Пожалуйста, запишите эту мнемоническую фразу на листе бумаги. \nЭто ваша резервная копия, которую вы можете использовать для восстановления кошелька на другом устройстве.",
|
"text": "Пожалуйста, запишите эту мнемоническую фразу на листе бумаги. \nЭто ваша резервная копия, которую вы можете использовать для восстановления кошелька на другом устройстве.",
|
||||||
|
@ -160,9 +152,8 @@
|
||||||
"details_create": "Создать",
|
"details_create": "Создать",
|
||||||
"details_error_decode": "Нельзя декодировать Bitcoin адрес",
|
"details_error_decode": "Нельзя декодировать Bitcoin адрес",
|
||||||
"details_fee_field_is_not_valid": "Введенная комиссия неверна",
|
"details_fee_field_is_not_valid": "Введенная комиссия неверна",
|
||||||
"details_frozen": "{amount} BTC заморожено",
|
|
||||||
"details_next": "Дальше",
|
"details_next": "Дальше",
|
||||||
"details_no_signed_tx": "В файле нет транзакций, которые можно импортировать.",
|
"details_no_signed_tx": "В файле нет транзакций которые можно импортировать.",
|
||||||
"details_note_placeholder": "примечание платежа",
|
"details_note_placeholder": "примечание платежа",
|
||||||
"details_scan": "Скан",
|
"details_scan": "Скан",
|
||||||
"details_scan_hint": "Тапните два раза, чтобы сканировать или импортировать адрес отправки",
|
"details_scan_hint": "Тапните два раза, чтобы сканировать или импортировать адрес отправки",
|
||||||
|
@ -192,7 +183,6 @@
|
||||||
"permission_camera_message": "Нужно ваше разрешение на использование камеры",
|
"permission_camera_message": "Нужно ваше разрешение на использование камеры",
|
||||||
"psbt_sign": "Подписать транзакцию",
|
"psbt_sign": "Подписать транзакцию",
|
||||||
"open_settings": "Открыть настройки",
|
"open_settings": "Открыть настройки",
|
||||||
"permission_storage_later": "Спросить позже",
|
|
||||||
"permission_storage_message": "BlueWallet нужно ваше разрешение для доступа к хранилищу, чтобы сохранить этот файл.",
|
"permission_storage_message": "BlueWallet нужно ваше разрешение для доступа к хранилищу, чтобы сохранить этот файл.",
|
||||||
"permission_storage_denied_message": "BlueWallet не может сохранить файл. Пожалуйста, откройте настройки устройства и разрешите использование Хранилища.",
|
"permission_storage_denied_message": "BlueWallet не может сохранить файл. Пожалуйста, откройте настройки устройства и разрешите использование Хранилища.",
|
||||||
"permission_storage_title": "Разрешение на доступ к Хранилищу",
|
"permission_storage_title": "Разрешение на доступ к Хранилищу",
|
||||||
|
@ -203,7 +193,6 @@
|
||||||
"outdated_rate": "Курс был обновлён: {date}",
|
"outdated_rate": "Курс был обновлён: {date}",
|
||||||
"psbt_tx_open": "Открыть Подписаную Транзакцию",
|
"psbt_tx_open": "Открыть Подписаную Транзакцию",
|
||||||
"psbt_tx_scan": "Сканировать Подписаную Транзакцию",
|
"psbt_tx_scan": "Сканировать Подписаную Транзакцию",
|
||||||
"qr_error_no_qrcode": "Нам не удалось найти QR-код на выбранном изображении. Убедитесь, что изображение содержит только QR-код и ничего лишнего, например текста или кнопок.",
|
|
||||||
"reset_amount": "Сбросить Количество",
|
"reset_amount": "Сбросить Количество",
|
||||||
"reset_amount_confirm": "Хотите сбросить количество?",
|
"reset_amount_confirm": "Хотите сбросить количество?",
|
||||||
"success_done": "Готово",
|
"success_done": "Готово",
|
||||||
|
@ -242,7 +231,6 @@
|
||||||
"default_wallets": "Показать все кошельки",
|
"default_wallets": "Показать все кошельки",
|
||||||
"electrum_connected": "Подключено",
|
"electrum_connected": "Подключено",
|
||||||
"electrum_connected_not": "Не Подключено",
|
"electrum_connected_not": "Не Подключено",
|
||||||
"electrum_error_connect": "Не удается подключиться к Electrum серверу",
|
|
||||||
"lndhub_uri": "Например, {example}",
|
"lndhub_uri": "Например, {example}",
|
||||||
"electrum_host": "Например, {example}",
|
"electrum_host": "Например, {example}",
|
||||||
"electrum_offline_mode": "Офлайн режим",
|
"electrum_offline_mode": "Офлайн режим",
|
||||||
|
@ -300,7 +288,6 @@
|
||||||
"privacy_read_clipboard": "Чтение буфера обмена",
|
"privacy_read_clipboard": "Чтение буфера обмена",
|
||||||
"privacy_system_settings": "Настройки системы",
|
"privacy_system_settings": "Настройки системы",
|
||||||
"privacy_quickactions": "Быстрые команды",
|
"privacy_quickactions": "Быстрые команды",
|
||||||
"privacy_quickactions_explanation": "Нажмите и удерживайте значок приложения BlueWallet на главном экране, чтобы быстро просмотреть баланс своего кошелька.",
|
|
||||||
"privacy_clipboard_explanation": "Показать меню с действием, если в Буфере обмена есть адрес или инвойс.",
|
"privacy_clipboard_explanation": "Показать меню с действием, если в Буфере обмена есть адрес или инвойс.",
|
||||||
"privacy_do_not_track": "Выключить Аналитику",
|
"privacy_do_not_track": "Выключить Аналитику",
|
||||||
"privacy_do_not_track_explanation": "Информация о производительности и надежности не будет отправлена на анализ.",
|
"privacy_do_not_track_explanation": "Информация о производительности и надежности не будет отправлена на анализ.",
|
||||||
|
@ -310,16 +297,13 @@
|
||||||
"selfTest": "Проверка приложения",
|
"selfTest": "Проверка приложения",
|
||||||
"save": "Сохранить",
|
"save": "Сохранить",
|
||||||
"saved": "Сохранено",
|
"saved": "Сохранено",
|
||||||
"success_transaction_broadcasted": "Транзакция успешно транслирована в сеть!",
|
|
||||||
"total_balance": "Общий баланс",
|
"total_balance": "Общий баланс",
|
||||||
"total_balance_explanation": "Показывать в виджетах общий баланс кошельков",
|
"total_balance_explanation": "Показывать в виджетах общий баланс кошельков",
|
||||||
"widgets": "Виджеты",
|
"widgets": "Виджеты",
|
||||||
"tools": "Инструменты"
|
"tools": "Инструменты"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Хотите получать уведомления при входящих платежах?",
|
"would_you_like_to_receive_notifications": "Хотите получать уведомления при входящих платежах?"
|
||||||
"no_and_dont_ask": "Нет, и больше не спрашивать",
|
|
||||||
"ask_me_later": "Спросить позже"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Мы заменим эту транзакцию на другую, которая переведет Вам деньги и имеет более высокую комиссию. Это позволит отменить текущую транзакцию. Это называется RBF — Replace by Fee.",
|
"cancel_explain": "Мы заменим эту транзакцию на другую, которая переведет Вам деньги и имеет более высокую комиссию. Это позволит отменить текущую транзакцию. Это называется RBF — Replace by Fee.",
|
||||||
|
@ -392,7 +376,6 @@
|
||||||
"details_advanced": "Расширенные настройки",
|
"details_advanced": "Расширенные настройки",
|
||||||
"details_are_you_sure": "Точно удалить?",
|
"details_are_you_sure": "Точно удалить?",
|
||||||
"details_connected_to": "Подключено к",
|
"details_connected_to": "Подключено к",
|
||||||
"details_del_wb_err": "Указанная сумма баланса не соответствует балансу этого кошелька. Пожалуйста, попробуйте еще раз",
|
|
||||||
"details_del_wb_q": "На этом кошельке есть средства. Прежде чем продолжить, имейте в виду, что вы не сможете вернуть средства без seed фразы этого кошелька. Чтобы избежать случайного удаления этого кошелька, введите баланс {balance} сатоши в вашем кошельке.",
|
"details_del_wb_q": "На этом кошельке есть средства. Прежде чем продолжить, имейте в виду, что вы не сможете вернуть средства без seed фразы этого кошелька. Чтобы избежать случайного удаления этого кошелька, введите баланс {balance} сатоши в вашем кошельке.",
|
||||||
"details_delete": "Удалить",
|
"details_delete": "Удалить",
|
||||||
"details_delete_wallet": "Удалить кошелёк",
|
"details_delete_wallet": "Удалить кошелёк",
|
||||||
|
@ -429,16 +412,9 @@
|
||||||
"import_discovery_subtitle": "Выберите обнаруженный кошелёк",
|
"import_discovery_subtitle": "Выберите обнаруженный кошелёк",
|
||||||
"import_discovery_derivation": "Использовать другой путь деривации",
|
"import_discovery_derivation": "Использовать другой путь деривации",
|
||||||
"import_discovery_no_wallets": "Кошельков не обнаружено.",
|
"import_discovery_no_wallets": "Кошельков не обнаружено.",
|
||||||
"import_derivation_found": "найден",
|
|
||||||
"import_derivation_found_not": "не найден",
|
|
||||||
"import_derivation_loading": "загрузка...",
|
|
||||||
"import_derivation_subtitle": "Введите свой собственный путь деривации, и мы постараемся обнаружить ваш кошелёк",
|
|
||||||
"import_derivation_title": "Путь деривации",
|
"import_derivation_title": "Путь деривации",
|
||||||
"import_derivation_unknown": "неизвестно",
|
|
||||||
"import_wrong_path": "неправильный путь деривации",
|
|
||||||
"list_create_a_button": "Добавить сейчас",
|
"list_create_a_button": "Добавить сейчас",
|
||||||
"list_create_a_wallet": "Добавить кошелёк",
|
"list_create_a_wallet": "Добавить кошелёк",
|
||||||
"list_create_a_wallet_text": "Это бесплатно, и вы можете создать\nнеограниченное количество кошельков",
|
|
||||||
"list_empty_txs1": "Список транзакций пока пуст",
|
"list_empty_txs1": "Список транзакций пока пуст",
|
||||||
"list_empty_txs1_lightning": "Lightning кошелёк отлично подходит для ежедневных транзакций. Комиссия несправедливо мала, а скорость невероятно высока.",
|
"list_empty_txs1_lightning": "Lightning кошелёк отлично подходит для ежедневных транзакций. Комиссия несправедливо мала, а скорость невероятно высока.",
|
||||||
"list_empty_txs2": "Добавьте кошелёк.",
|
"list_empty_txs2": "Добавьте кошелёк.",
|
||||||
|
@ -503,20 +479,14 @@
|
||||||
"quorum_header": "Кворум",
|
"quorum_header": "Кворум",
|
||||||
"of": "из",
|
"of": "из",
|
||||||
"wallet_type": "Тип кошелька",
|
"wallet_type": "Тип кошелька",
|
||||||
"invalid_mnemonics": "Сид-фраза неверна",
|
|
||||||
"invalid_cosigner": "Неверные данные cosigner",
|
|
||||||
"not_a_multisignature_xpub": "Это xpub не мультисиг кошелька!",
|
"not_a_multisignature_xpub": "Это xpub не мультисиг кошелька!",
|
||||||
"invalid_cosigner_format": "Неверный cosigner: он не подходит для {format} формата",
|
|
||||||
"create_new_key": "Создать Новый",
|
"create_new_key": "Создать Новый",
|
||||||
"scan_or_open_file": "Сканировать или открыть файл",
|
"scan_or_open_file": "Сканировать или открыть файл",
|
||||||
"i_have_mnemonics": "У меня есть сид-фраза для этого ключа...",
|
"i_have_mnemonics": "У меня есть сид-фраза для этого ключа...",
|
||||||
"type_your_mnemonics": "Вставьте сид-фразу для импорта вашего ключа хранилища",
|
"type_your_mnemonics": "Вставьте сид-фразу для импорта вашего ключа хранилища",
|
||||||
"this_is_cosigners_xpub": "Это xpub cosigner'а готов к импорту в другой кошелёк. Делиться им безопасно.",
|
|
||||||
"wallet_key_created": "Ваш ключ Хранилища был создан. Обязательно сделайте резервную копию вашей сид-фразы.",
|
"wallet_key_created": "Ваш ключ Хранилища был создан. Обязательно сделайте резервную копию вашей сид-фразы.",
|
||||||
"are_you_sure_seed_will_be_lost": "Вы уверены? Ваша сид-фраза будет утеряна, если нет резервной копии.",
|
"are_you_sure_seed_will_be_lost": "Вы уверены? Ваша сид-фраза будет утеряна, если нет резервной копии.",
|
||||||
"forget_this_seed": "Забыть сид-фразу и использовать XPUB",
|
"forget_this_seed": "Забыть сид-фразу и использовать XPUB",
|
||||||
"view_edit_cosigners": "Просмотр/редактирование cosigner'ов",
|
|
||||||
"this_cosigner_is_already_imported": "Этот cosigner уже импортирован.",
|
|
||||||
"export_signed_psbt": "Экспортировать PSBT с подписью",
|
"export_signed_psbt": "Экспортировать PSBT с подписью",
|
||||||
"input_fp": "Введите отпечаток (fingerprint)",
|
"input_fp": "Введите отпечаток (fingerprint)",
|
||||||
"input_fp_explain": "Пропустить и использовать значение по умолчанию (00000000)",
|
"input_fp_explain": "Пропустить и использовать значение по умолчанию (00000000)",
|
||||||
|
@ -541,14 +511,12 @@
|
||||||
"owns": "{label} имеет {address}",
|
"owns": "{label} имеет {address}",
|
||||||
"enter_address": "Введите адрес",
|
"enter_address": "Введите адрес",
|
||||||
"check_address": "Проверить адрес",
|
"check_address": "Проверить адрес",
|
||||||
"no_wallet_owns_address": "Ни один из доступных кошельков не владеет этим адресом.",
|
"no_wallet_owns_address": "Ни один из доступных кошельков не владеет этим адресом."
|
||||||
"view_qrcode": "Посмотреть QR-код"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Сдача",
|
"change": "Сдача",
|
||||||
"coins_selected": "Выбрано монет: {number}",
|
"coins_selected": "Выбрано монет: {number}",
|
||||||
"selected_summ": "{value} выбрано",
|
"selected_summ": "{value} выбрано",
|
||||||
"empty": "В этом кошельке пока нет монет",
|
|
||||||
"freeze": "Заморозить",
|
"freeze": "Заморозить",
|
||||||
"freezeLabel": "Заморозить",
|
"freezeLabel": "Заморозить",
|
||||||
"freezeLabel_un": "Разморозить",
|
"freezeLabel_un": "Разморозить",
|
||||||
|
|
|
@ -14,10 +14,7 @@
|
||||||
"save": "සුරකින්න",
|
"save": "සුරකින්න",
|
||||||
"seed": "බීජ",
|
"seed": "බීජ",
|
||||||
"success": "සාර්ථකයි",
|
"success": "සාර්ථකයි",
|
||||||
"wallet_key": "පසුබිම් යතුර",
|
"wallet_key": "පසුබිම් යතුර"
|
||||||
"invalid_animated_qr_code_fragment": "වලංගු නොවන සජීවිකරණ QR කේත ඛණ්ඩයකි. කරුණාකර නැවත උත්සාහ කරන්න.",
|
|
||||||
"file_saved": "ගොනුව {filePath} ඔබේ සුරැකුම් ස්ථානයේ සුරැකී ඇත {destination}.",
|
|
||||||
"downloads_folder": "බාගත ෆෝල්ඩරය "
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "අවදියෙන්"
|
"default": "අවදියෙන්"
|
||||||
|
@ -49,25 +46,20 @@
|
||||||
"claim_balance": "ශේෂය ඉල්ලන්න {balance}",
|
"claim_balance": "ශේෂය ඉල්ලන්න {balance}",
|
||||||
"close_channel": "නාලිකාව වසන්න",
|
"close_channel": "නාලිකාව වසන්න",
|
||||||
"new_channel": "නව නාලිකාව",
|
"new_channel": "නව නාලිකාව",
|
||||||
"errorInvoiceExpired": "ඉන්වොයිසිය කල් ඉකුත් වී ඇත",
|
|
||||||
"force_close_channel": "කෙසේ හෝ නාලිකාව වසා දමන්නද?",
|
"force_close_channel": "කෙසේ හෝ නාලිකාව වසා දමන්නද?",
|
||||||
"expired": "කල් ඉකුත් වී ඇත",
|
"expired": "කල් ඉකුත් වී ඇත",
|
||||||
"node_alias": "නෝඩ් අන්වර්ථ නාමය",
|
"node_alias": "නෝඩ් අන්වර්ථ නාමය",
|
||||||
"expiresIn": "මිනිත්තුවලින් {time} කල් ඉකුත් වේ",
|
"expiresIn": "මිනිත්තුවලින් {time} කල් ඉකුත් වේ",
|
||||||
"payButton": "ගෙවන්න",
|
"payButton": "ගෙවන්න",
|
||||||
"placeholder": "ඉන්වොයිසිය",
|
|
||||||
"open_channel": "විවෘත නාලිකාව",
|
"open_channel": "විවෘත නාලිකාව",
|
||||||
"funding_amount_placeholder": "අරමුදල් ප්රරමාණය, උදාහරණයක් ලෙස 0.001",
|
|
||||||
"opening_channnel_for_from": "මුදල් පසුම්බිය සඳහා {forWalletLabel}, {fromWalletLabel} අරමුදල් මඟින් නාලිකාව විවෘත කිරීම",
|
"opening_channnel_for_from": "මුදල් පසුම්බිය සඳහා {forWalletLabel}, {fromWalletLabel} අරමුදල් මඟින් නාලිකාව විවෘත කිරීම",
|
||||||
"are_you_sure_open_channel": "ඔබට මෙම නාලිකාව විවෘත කිරීමට අවශ්ය බව විශ්වාසද?",
|
"are_you_sure_open_channel": "ඔබට මෙම නාලිකාව විවෘත කිරීමට අවශ්ය බව විශ්වාසද?",
|
||||||
"potentialFee": "විභව ගාස්තුව: {fee}",
|
|
||||||
"remote_host": "දුරස්ථ ධාරකයා",
|
"remote_host": "දුරස්ථ ධාරකයා",
|
||||||
"refill": "නැවත පුරවන්න",
|
"refill": "නැවත පුරවන්න",
|
||||||
"reconnect_peer": "මිතුරා නැවත සම්බන්ධ කරන්න",
|
"reconnect_peer": "මිතුරා නැවත සම්බන්ධ කරන්න",
|
||||||
"refill_create": "ඉදිරියට යාමට, කරුණාකර නැවත පිරවීම සඳහා බිට්කොයින් පසුම්බියක් සාදන්න.",
|
"refill_create": "ඉදිරියට යාමට, කරුණාකර නැවත පිරවීම සඳහා බිට්කොයින් පසුම්බියක් සාදන්න.",
|
||||||
"refill_external": "බාහිර පසුම්බිය සමඟ නැවත පුරවන්න",
|
"refill_external": "බාහිර පසුම්බිය සමඟ නැවත පුරවන්න",
|
||||||
"refill_lnd_balance": "ලයිට්නින් පසුම්බියේ ශේෂය නැවත පුරවන්න",
|
"refill_lnd_balance": "ලයිට්නින් පසුම්බියේ ශේෂය නැවත පුරවන්න",
|
||||||
"sameWalletAsInvoiceError": "එය සෑදීමට භාවිතා කළ පසුම්බියෙන්ම ඔබට ඉන්වොයිසියක් ගෙවිය නොහැක.",
|
|
||||||
"title": "අරමුදල් කළමනාකරණය කරන්න",
|
"title": "අරමුදල් කළමනාකරණය කරන්න",
|
||||||
"can_send": "යැවිය හැක",
|
"can_send": "යැවිය හැක",
|
||||||
"can_receive": "ලබා ගත හැක",
|
"can_receive": "ලබා ගත හැක",
|
||||||
|
@ -80,7 +72,6 @@
|
||||||
"open_direct_channel": "මෙම නෝඩය සමග ඍජු නාලිකාව විවෘත කරන්න:",
|
"open_direct_channel": "මෙම නෝඩය සමග ඍජු නාලිකාව විවෘත කරන්න:",
|
||||||
"please_pay_between_and": "කරුණාකර {min} සහ {max} අතර ගෙවන්න",
|
"please_pay_between_and": "කරුණාකර {min} සහ {max} අතර ගෙවන්න",
|
||||||
"please_pay": "කරුණාකර ගෙවන්න",
|
"please_pay": "කරුණාකර ගෙවන්න",
|
||||||
"preimage": "ප්රාථමික",
|
|
||||||
"sats": "සැට්.",
|
"sats": "සැට්.",
|
||||||
"wasnt_paid_and_expired": "මෙම ඉන්වොයිසිය ගෙවා නැති අතර කල් ඉකුත් වී ඇත."
|
"wasnt_paid_and_expired": "මෙම ඉන්වොයිසිය ගෙවා නැති අතර කල් ඉකුත් වී ඇත."
|
||||||
},
|
},
|
||||||
|
@ -98,13 +89,9 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "ඔබේ පසුම්බියේ උපස්ථ වැකිය සුරැකී තිබේද? ඔබට මෙම උපකරණය නැති වුවහොත් ඔබේ අරමුදල් වෙත ප්රවේශ වීම සඳහා මෙම උපස්ථ වැකිය අවශ්ය වේ. උපස්ථ වාක්යය නොමැති වුවහොත් ඔබේ අරමුදල් සදහටම නැති වී යයි.",
|
"ask": "ඔබේ පසුම්බියේ උපස්ථ වැකිය සුරැකී තිබේද? ඔබට මෙම උපකරණය නැති වුවහොත් ඔබේ අරමුදල් වෙත ප්රවේශ වීම සඳහා මෙම උපස්ථ වැකිය අවශ්ය වේ. උපස්ථ වාක්යය නොමැති වුවහොත් ඔබේ අරමුදල් සදහටම නැති වී යයි.",
|
||||||
"ask_no": "නැත. මට නැත.",
|
"ok": "හරි, මම එය ලිව්වා.",
|
||||||
"ask_yes": "ඔව්, මට තිබේ.",
|
|
||||||
"ok": "හරි, මම ඒක සටහන් කළා",
|
|
||||||
"ok_lnd": "හරි, මම ඒක සුරැකුවා",
|
|
||||||
"text": "කරුණාකර මොහොතකට මෙම සිහිවටන වැකිය කඩදාසි කැබැල්ලක සටහන් කර ගන්න. එය ඔබේ උපස්ථය වන අතර පසුම්බිය ආපසු ලබා ගැනීමට ඔබට එය භාවිතා කළ හැකිය.",
|
"text": "කරුණාකර මොහොතකට මෙම සිහිවටන වැකිය කඩදාසි කැබැල්ලක සටහන් කර ගන්න. එය ඔබේ උපස්ථය වන අතර පසුම්බිය ආපසු ලබා ගැනීමට ඔබට එය භාවිතා කළ හැකිය.",
|
||||||
"text_lnd": "කරුණාකර මෙම පසුම්බි උපස්ථය සුරකින්න. නැති වූ පසු මුදල් පසුම්බිය නැවත ලබා ගැනීමට එය ඔබට ඉඩ සලසයි.",
|
"text_lnd": "කරුණාකර මෙම පසුම්බි උපස්ථය සුරකින්න. නැති වූ පසු මුදල් පසුම්බිය නැවත ලබා ගැනීමට එය ඔබට ඉඩ සලසයි."
|
||||||
"title": "ඔබේ මුදල් පසුම්බිය සාදා ඇත"
|
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "නිර්මාණය කරන්න",
|
"details_create": "නිර්මාණය කරන්න",
|
||||||
|
@ -151,9 +138,7 @@
|
||||||
"details_create": "ඉන්වොයිසියක් සාදන්න",
|
"details_create": "ඉන්වොයිසියක් සාදන්න",
|
||||||
"details_error_decode": "බිට්කොයින් ලිපිනය විකේතනය කළ නොහැක",
|
"details_error_decode": "බිට්කොයින් ලිපිනය විකේතනය කළ නොහැක",
|
||||||
"details_fee_field_is_not_valid": "ගාස්තුව වලංගු නොවේ.",
|
"details_fee_field_is_not_valid": "ගාස්තුව වලංගු නොවේ.",
|
||||||
"details_frozen": "{amount} BTC නිශ්චල කර ඇත",
|
|
||||||
"details_next": "ඊළඟ",
|
"details_next": "ඊළඟ",
|
||||||
"details_no_signed_tx": "තෝරාගත් ගොනුවේ ආනයනය කළ හැකි ගනුදෙනුවක් අඩංගු නොවේ.",
|
|
||||||
"details_note_placeholder": "ස්වයං සටහන්",
|
"details_note_placeholder": "ස්වයං සටහන්",
|
||||||
"details_scan": "ස්කෑන් කරන්න",
|
"details_scan": "ස්කෑන් කරන්න",
|
||||||
"details_scan_hint": "ගමනාන්තයක් පරිලෝකනය කිරීමට හෝ ආනයනය කිරීමට දෙවරක් තට්ටු කරන්න",
|
"details_scan_hint": "ගමනාන්තයක් පරිලෝකනය කිරීමට හෝ ආනයනය කිරීමට දෙවරක් තට්ටු කරන්න",
|
||||||
|
@ -180,10 +165,8 @@
|
||||||
"input_paste": "අලවන්න",
|
"input_paste": "අලවන්න",
|
||||||
"input_total": "එකතුව:",
|
"input_total": "එකතුව:",
|
||||||
"permission_camera_message": "ඔබේ කැමරාව භාවිතා කිරීමට අපට ඔබේ අවසරය අවශ්යයි.",
|
"permission_camera_message": "ඔබේ කැමරාව භාවිතා කිරීමට අපට ඔබේ අවසරය අවශ්යයි.",
|
||||||
"permission_camera_title": "කැමරාව භාවිතා කිරීමට අවසර",
|
|
||||||
"psbt_sign": "ගනුදෙනුවකට අත්සන් කරන්න",
|
"psbt_sign": "ගනුදෙනුවකට අත්සන් කරන්න",
|
||||||
"open_settings": "සැකසුම් විවෘත කරන්න",
|
"open_settings": "සැකසුම් විවෘත කරන්න",
|
||||||
"permission_storage_later": "පසුව මගෙන් විමසන්න",
|
|
||||||
"permission_storage_message": "මෙම ගොනුව සුරැකීමට ඔබේ ගබඩාවට ප්රවේශ වීමට බ්ලූවොලට් එකට ඔබේ අවසරය අවශ්යයි.",
|
"permission_storage_message": "මෙම ගොනුව සුරැකීමට ඔබේ ගබඩාවට ප්රවේශ වීමට බ්ලූවොලට් එකට ඔබේ අවසරය අවශ්යයි.",
|
||||||
"permission_storage_denied_message": "බ්ලූවොලට් හට මෙම ගොනුව සුරැකීමට නොහැකිය. කරුණාකර ඔබේ උපාංග සැකසීම් විවෘත කර ගබඩා කිරීමේ අවසරය සක්රීය කරන්න.",
|
"permission_storage_denied_message": "බ්ලූවොලට් හට මෙම ගොනුව සුරැකීමට නොහැකිය. කරුණාකර ඔබේ උපාංග සැකසීම් විවෘත කර ගබඩා කිරීමේ අවසරය සක්රීය කරන්න.",
|
||||||
"permission_storage_title": "ගබඩා ප්රවේශ අවසරය",
|
"permission_storage_title": "ගබඩා ප්රවේශ අවසරය",
|
||||||
|
@ -194,7 +177,6 @@
|
||||||
"outdated_rate": "අගය අවසන් වරට යාවත්කාලීන කරන ලද්දේ: {date}",
|
"outdated_rate": "අගය අවසන් වරට යාවත්කාලීන කරන ලද්දේ: {date}",
|
||||||
"psbt_tx_open": "අත්සන් කළ ගනුදෙනුව විවෘත කරන්න",
|
"psbt_tx_open": "අත්සන් කළ ගනුදෙනුව විවෘත කරන්න",
|
||||||
"psbt_tx_scan": "අත්සන් කළ ගනුදෙනුව පරිලෝකනය කරන්න",
|
"psbt_tx_scan": "අත්සන් කළ ගනුදෙනුව පරිලෝකනය කරන්න",
|
||||||
"qr_error_no_qrcode": "තෝරාගත් රූපයේ අපට QR කේතයක් සොයා ගැනීමට නොහැකි විය. රූපයේ ඇත්තේ QR කේතයක් පමණක් බවත් වචන, හෝ බොත්තම් වැනි අතිරේක අන්තර්ගතයන් නොමැති බවත් තහවුරු කර ගන්න.",
|
|
||||||
"reset_amount": "මුදල නැවත සකසන්න",
|
"reset_amount": "මුදල නැවත සකසන්න",
|
||||||
"reset_amount_confirm": "මුදල නැවත සැකසීමට ඔබ කැමතිද?",
|
"reset_amount_confirm": "මුදල නැවත සැකසීමට ඔබ කැමතිද?",
|
||||||
"success_done": "කළා",
|
"success_done": "කළා",
|
||||||
|
@ -230,7 +212,6 @@
|
||||||
"default_wallets": "සියලුම පසුම්බි බලන්න",
|
"default_wallets": "සියලුම පසුම්බි බලන්න",
|
||||||
"electrum_connected": "සම්බන්ධයි",
|
"electrum_connected": "සම්බන්ධයි",
|
||||||
"electrum_connected_not": "සම්බන්ධ නොවේ",
|
"electrum_connected_not": "සම්බන්ධ නොවේ",
|
||||||
"electrum_error_connect": "සපයා ඇති ඉලෙක්ට්රම් සේවාදායකයට සම්බන්ධ විය නොහැක",
|
|
||||||
"lndhub_uri": "උ.දා., {example}",
|
"lndhub_uri": "උ.දා., {example}",
|
||||||
"electrum_host": "උ.දා., {example}",
|
"electrum_host": "උ.දා., {example}",
|
||||||
"electrum_offline_mode": "නොබැඳි මාදිලිය",
|
"electrum_offline_mode": "නොබැඳි මාදිලිය",
|
||||||
|
@ -273,7 +254,6 @@
|
||||||
"lightning_error_lndhub_uri": "වලංගු නොවන LNDHub URI",
|
"lightning_error_lndhub_uri": "වලංගු නොවන LNDHub URI",
|
||||||
"lightning_saved": "ඔබේ වෙනස්කම් සාර්ථකව සුරැකී ඇත.",
|
"lightning_saved": "ඔබේ වෙනස්කම් සාර්ථකව සුරැකී ඇත.",
|
||||||
"lightning_settings": "ලයිට්නින් සැකසුම්",
|
"lightning_settings": "ලයිට්නින් සැකසුම්",
|
||||||
"lightning_settings_explain": "ඔබේම එල්එන්ඩී නෝඩයට සම්බන්ධ වීමට කරුණාකර එල්.එන්.ඩී.හබ් ස්ථාපනය කර එහි යූආර්එල් සැකසුම් තුළට දමන්න. බ්ලූවොලට් හි එල්.එන්.ඩී.හබ් භාවිතා කිරීමට හිස්ව තබන්න. වෙනස්කම් සුරැකීමෙන් පසු සාදන ලද පසුම්බි පමණක් නිශ්චිත එල්.එන්.ඩී.හබ් වෙත සම්බන්ධ වන බව කරුණාවෙන් සලකන්න.",
|
|
||||||
"network": "ජාල",
|
"network": "ජාල",
|
||||||
"network_broadcast": "විකාශන ගනුදෙනුව",
|
"network_broadcast": "විකාශන ගනුදෙනුව",
|
||||||
"network_electrum": "ඉලෙක්ට්රම් සේවාදායකය",
|
"network_electrum": "ඉලෙක්ට්රම් සේවාදායකය",
|
||||||
|
@ -288,7 +268,6 @@
|
||||||
"privacy_read_clipboard": "පසුරු පුවරුව කියවන්න",
|
"privacy_read_clipboard": "පසුරු පුවරුව කියවන්න",
|
||||||
"privacy_system_settings": "පද්ධති සැකසීම්",
|
"privacy_system_settings": "පද්ධති සැකසීම්",
|
||||||
"privacy_quickactions": "පසුම්බි කෙටිමං",
|
"privacy_quickactions": "පසුම්බි කෙටිමං",
|
||||||
"privacy_quickactions_explanation": "ඔබේ මුදල් පසුම්බියේ ශේෂය ඉක්මනින් බැලීමට ඔබගේ මුල් තිරයේ ඇති බ්ලූවොලට් යෙදුම් නිරූපකය ස්පර්ශ කර අල්ලා රඳවා සිටින්න.",
|
|
||||||
"privacy_clipboard_explanation": "ඔබේ පසුරු පුවරුවේ ලිපිනයක් හෝ ඉන්වොයිසියක් හමු වුවහොත් කෙටිමං ලබා දෙන්න.",
|
"privacy_clipboard_explanation": "ඔබේ පසුරු පුවරුවේ ලිපිනයක් හෝ ඉන්වොයිසියක් හමු වුවහොත් කෙටිමං ලබා දෙන්න.",
|
||||||
"privacy_do_not_track": "විශ්ලේෂණ අක්රීය කරන්න",
|
"privacy_do_not_track": "විශ්ලේෂණ අක්රීය කරන්න",
|
||||||
"privacy_do_not_track_explanation": "විශ්ලේෂණය සඳහා කාර්ය සාධනය සහ විශ්වසනීයත්ව තොරතුරු ඉදිරිපත් නොකෙරේ.",
|
"privacy_do_not_track_explanation": "විශ්ලේෂණය සඳහා කාර්ය සාධනය සහ විශ්වසනීයත්ව තොරතුරු ඉදිරිපත් නොකෙරේ.",
|
||||||
|
@ -298,16 +277,13 @@
|
||||||
"selfTest": "ස්වයං පරීක්ෂණය",
|
"selfTest": "ස්වයං පරීක්ෂණය",
|
||||||
"save": "සුරකින්න",
|
"save": "සුරකින්න",
|
||||||
"saved": "සුරකින ලදි",
|
"saved": "සුරකින ලදි",
|
||||||
"success_transaction_broadcasted": "සාර්ථකයි! ඔබේ ගනුදෙනුව විකාශනය වී ඇත!",
|
|
||||||
"total_balance": "මුළු ශේෂය",
|
"total_balance": "මුළු ශේෂය",
|
||||||
"total_balance_explanation": "ඔබේ මුදල් පසුම්බිවල මුළු ශේෂය ඔබේ මුල් තිරයේ විජට් වල පෙන්වන්න.",
|
"total_balance_explanation": "ඔබේ මුදල් පසුම්බිවල මුළු ශේෂය ඔබේ මුල් තිරයේ විජට් වල පෙන්වන්න.",
|
||||||
"widgets": "විජට්",
|
"widgets": "විජට්",
|
||||||
"tools": "මෙවලම්"
|
"tools": "මෙවලම්"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "ඔබට ගෙවීම් ලැබෙන විට දැනුම්දීම් ලැබීමට ඔබ කැමතිද?",
|
"would_you_like_to_receive_notifications": "ඔබට ගෙවීම් ලැබෙන විට දැනුම්දීම් ලැබීමට ඔබ කැමතිද?"
|
||||||
"no_and_dont_ask": "නැත, නැවත මගෙන් අහන්න එපා",
|
|
||||||
"ask_me_later": "පසුව මගෙන් අසන්න"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "අපි මෙම ගනුදෙනුව ඔබට ගෙවන සහ ඉහළ ගාස්තු සහිත එකක් සමඟ ප්රතිස්ථාපනය කරන්නෙමු. මෙය වත්මන් ගනුදෙනුව ඵලදායී ලෙස අවලංගු කරයි. මෙය RBF ලෙස හැඳින්වේ - ගාස්තුවෙන් ප්රතිස්ථාපනය කරන්න.",
|
"cancel_explain": "අපි මෙම ගනුදෙනුව ඔබට ගෙවන සහ ඉහළ ගාස්තු සහිත එකක් සමඟ ප්රතිස්ථාපනය කරන්නෙමු. මෙය වත්මන් ගනුදෙනුව ඵලදායී ලෙස අවලංගු කරයි. මෙය RBF ලෙස හැඳින්වේ - ගාස්තුවෙන් ප්රතිස්ථාපනය කරන්න.",
|
||||||
|
@ -378,7 +354,6 @@
|
||||||
"details_advanced": "උසස්",
|
"details_advanced": "උසස්",
|
||||||
"details_are_you_sure": "ඔබට විශ්වාසද?",
|
"details_are_you_sure": "ඔබට විශ්වාසද?",
|
||||||
"details_connected_to": "සම්බන්ධයි",
|
"details_connected_to": "සම්බන්ධයි",
|
||||||
"details_del_wb_err": "සපයන ලද ඉතිරි මුදල මෙම පසුම්බියේ ශේෂයට නොගැලපේ. කරුණාකර නැවත උත්සාහ කරන්න.",
|
|
||||||
"details_del_wb_q": "මෙම මුදල් පසුම්බියේ ශේෂයක් ඇත. ඉදිරියට යාමට පෙර, මෙම මුදල් පසුම්බියේ බීජ වාක්ය ඛණ්ඩය නොමැතිව ඔබට අරමුදල් අයකර ගැනීමට නොහැකි වනු ඇති බව කරුණාවෙන් සලකන්න. අහම්බෙන් ඉවත් කිරීම වළක්වා ගැනීම සඳහා, කරුණාකර ඔබේ මුදල් පසුම්බියේ {balance} satoshis හි ශේෂය ඇතුළත් කරන්න.",
|
"details_del_wb_q": "මෙම මුදල් පසුම්බියේ ශේෂයක් ඇත. ඉදිරියට යාමට පෙර, මෙම මුදල් පසුම්බියේ බීජ වාක්ය ඛණ්ඩය නොමැතිව ඔබට අරමුදල් අයකර ගැනීමට නොහැකි වනු ඇති බව කරුණාවෙන් සලකන්න. අහම්බෙන් ඉවත් කිරීම වළක්වා ගැනීම සඳහා, කරුණාකර ඔබේ මුදල් පසුම්බියේ {balance} satoshis හි ශේෂය ඇතුළත් කරන්න.",
|
||||||
"details_delete": "මකන්න",
|
"details_delete": "මකන්න",
|
||||||
"details_delete_wallet": "පසුම්බිය මකන්න",
|
"details_delete_wallet": "පසුම්බිය මකන්න",
|
||||||
|
@ -413,16 +388,9 @@
|
||||||
"import_discovery_subtitle": "සොයා ගත් පසුම්බියක් තෝරන්න",
|
"import_discovery_subtitle": "සොයා ගත් පසුම්බියක් තෝරන්න",
|
||||||
"import_discovery_derivation": "අභිරුචි ව්යුත්පන්න මාර්ගය භාවිතා කරන්න",
|
"import_discovery_derivation": "අභිරුචි ව්යුත්පන්න මාර්ගය භාවිතා කරන්න",
|
||||||
"import_discovery_no_wallets": "පසුම්බි කිසිවක් හමු නොවීය.",
|
"import_discovery_no_wallets": "පසුම්බි කිසිවක් හමු නොවීය.",
|
||||||
"import_derivation_found": "හමු විය",
|
|
||||||
"import_derivation_found_not": "සොයා ගත නොහැක",
|
|
||||||
"import_derivation_loading": "පූරණය වෙමින් ...",
|
|
||||||
"import_derivation_subtitle": "අභිරුචි ව්යුත්පන්න මාර්ගයක් ඇතුළු කරන්න, අපි ඔබේ මුදල් පසුම්බිය සොයා ගැනීමට උත්සාහ කරමු",
|
|
||||||
"import_derivation_title": "ව්යුත්පන්න මාර්ගය",
|
"import_derivation_title": "ව්යුත්පන්න මාර්ගය",
|
||||||
"import_derivation_unknown": "නොදන්නා",
|
|
||||||
"import_wrong_path": "වැරදි ව්යුත්පන්න මාර්ගය",
|
|
||||||
"list_create_a_button": "දැන් එකතු කරන්න",
|
"list_create_a_button": "දැන් එකතු කරන්න",
|
||||||
"list_create_a_wallet": "පසුම්බියක් එකතු කරන්න",
|
"list_create_a_wallet": "පසුම්බියක් එකතු කරන්න",
|
||||||
"list_create_a_wallet_text": "එය නොමිලේ වන අතර ඔබට කැමති ප්රමාණයක් ඔබට සෑදිය හැකිය.",
|
|
||||||
"list_empty_txs1": "ඔබේ ගනුදෙනු මෙහි දිස්වේ.",
|
"list_empty_txs1": "ඔබේ ගනුදෙනු මෙහි දිස්වේ.",
|
||||||
"list_empty_txs1_lightning": "ඔබේ දෛනික ගනුදෙනු සඳහා අකුණු පසුම්බිය භාවිතා කළ යුතුය. ගාස්තු අසාධාරණ ලෙස ලාභදායී වන අතර වේගය වේගයෙන් දැල්වෙමින් පවතී.",
|
"list_empty_txs1_lightning": "ඔබේ දෛනික ගනුදෙනු සඳහා අකුණු පසුම්බිය භාවිතා කළ යුතුය. ගාස්තු අසාධාරණ ලෙස ලාභදායී වන අතර වේගය වේගයෙන් දැල්වෙමින් පවතී.",
|
||||||
"list_empty_txs2": "ඔබේ පසුම්බිය සමඟ ආරම්භ කරන්න.",
|
"list_empty_txs2": "ඔබේ පසුම්බිය සමඟ ආරම්භ කරන්න.",
|
||||||
|
@ -487,20 +455,14 @@
|
||||||
"quorum_header": "ගණපූරණය",
|
"quorum_header": "ගණපූරණය",
|
||||||
"of": "වල",
|
"of": "වල",
|
||||||
"wallet_type": "පසුම්බි වර්ගය",
|
"wallet_type": "පසුම්බි වර්ගය",
|
||||||
"invalid_mnemonics": "මෙම සිහිවටන වැකිය වලංගු නොවන බව පෙනේ.",
|
|
||||||
"invalid_cosigner": "වලංගු නොවන කොසිනර් දත්ත",
|
|
||||||
"not_a_multisignature_xpub": "මෙය බහු අත්සන සහිත එක්ස්පබ් පසුම්බියකින් එකක් නොවේ!",
|
"not_a_multisignature_xpub": "මෙය බහු අත්සන සහිත එක්ස්පබ් පසුම්බියකින් එකක් නොවේ!",
|
||||||
"invalid_cosigner_format": "වැරදි කොස්නයිනර්: මෙය {format} ආකෘතිය සඳහා කොසිනර් නොවේ.",
|
|
||||||
"create_new_key": "අලුතින් නිර්මාණය කරන්න",
|
"create_new_key": "අලුතින් නිර්මාණය කරන්න",
|
||||||
"scan_or_open_file": "ගොනුව ස්කෑන් කරන්න හෝ විවෘත කරන්න",
|
"scan_or_open_file": "ගොනුව ස්කෑන් කරන්න හෝ විවෘත කරන්න",
|
||||||
"i_have_mnemonics": "මෙම යතුර සඳහා බීජයක් මා සතුව ඇත.",
|
"i_have_mnemonics": "මෙම යතුර සඳහා බීජයක් මා සතුව ඇත.",
|
||||||
"type_your_mnemonics": "ඔබේ දැනට තිබෙන සුරක්ෂිතාගාර යතුර ආනයනය කිරීමට බීජයක් ඇතුළු කරන්න.",
|
"type_your_mnemonics": "ඔබේ දැනට තිබෙන සුරක්ෂිතාගාර යතුර ආනයනය කිරීමට බීජයක් ඇතුළු කරන්න.",
|
||||||
"this_is_cosigners_xpub": "මෙය කොසිනර්ගේ එක්ස්පබ් වෙනත් මුදල් පසුම්බියකට ආනයනය කිරීමට සූදානම් ය. එය බෙදා ගැනීම ආරක්ෂිතයි.",
|
|
||||||
"wallet_key_created": "ඔබේ සුරක්ෂිතාගාර යතුර සාදන ලදි. ඔබේ සිහිවටන බීජ ආරක්ෂිතව උපස්ථ කර ගැනීමට සුළු වේලාවක් ගන්න.",
|
"wallet_key_created": "ඔබේ සුරක්ෂිතාගාර යතුර සාදන ලදි. ඔබේ සිහිවටන බීජ ආරක්ෂිතව උපස්ථ කර ගැනීමට සුළු වේලාවක් ගන්න.",
|
||||||
"are_you_sure_seed_will_be_lost": "ඔබට විශ්වාසද? ඔබට උපස්ථයක් නොමැති නම් ඔබේ මතක ශක්තිය නැති වී යයි.",
|
"are_you_sure_seed_will_be_lost": "ඔබට විශ්වාසද? ඔබට උපස්ථයක් නොමැති නම් ඔබේ මතක ශක්තිය නැති වී යයි.",
|
||||||
"forget_this_seed": "මෙම බීජ අමතක කර ඒ වෙනුවට XPUB භාවිතා කරන්න.",
|
"forget_this_seed": "මෙම බීජ අමතක කර ඒ වෙනුවට XPUB භාවිතා කරන්න.",
|
||||||
"view_edit_cosigners": "කොසිනර් බලන්න/සංස්කරණය කරන්න",
|
|
||||||
"this_cosigner_is_already_imported": "මෙම කොසිනර් දැනටමත් ආනයනය කර ඇත.",
|
|
||||||
"export_signed_psbt": "අපනයන අත්සන් කළ පී.එස්.බී.ටී",
|
"export_signed_psbt": "අපනයන අත්සන් කළ පී.එස්.බී.ටී",
|
||||||
"input_fp": "ඇඟිලි සලකුණ ඇතුළත් කරන්න",
|
"input_fp": "ඇඟිලි සලකුණ ඇතුළත් කරන්න",
|
||||||
"input_fp_explain": "පෙරනිමි එක භාවිතා කිරීමට මඟහැර යන්න (00000000)",
|
"input_fp_explain": "පෙරනිමි එක භාවිතා කිරීමට මඟහැර යන්න (00000000)",
|
||||||
|
@ -525,14 +487,12 @@
|
||||||
"owns": "{label} සතු {address}",
|
"owns": "{label} සතු {address}",
|
||||||
"enter_address": "ලිපිනය ඇතුළත් කරන්න",
|
"enter_address": "ලිපිනය ඇතුළත් කරන්න",
|
||||||
"check_address": "ලිපිනය පරීක්ෂා කරන්න",
|
"check_address": "ලිපිනය පරීක්ෂා කරන්න",
|
||||||
"no_wallet_owns_address": "සපයා ඇති ලිපිනයන් සතුව වලංගු මුදල් පසුම්බි කිසිවක් නැත.",
|
"no_wallet_owns_address": "සපයා ඇති ලිපිනයන් සතුව වලංගු මුදල් පසුම්බි කිසිවක් නැත."
|
||||||
"view_qrcode": "QR කේතය බලන්න"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "වෙනස් කරන්න",
|
"change": "වෙනස් කරන්න",
|
||||||
"coins_selected": "තෝරා ගත් කාසි ({number})",
|
"coins_selected": "තෝරා ගත් කාසි ({number})",
|
||||||
"selected_summ": "{value} තෝරා ඇත",
|
"selected_summ": "{value} තෝරා ඇත",
|
||||||
"empty": "මෙම පසුම්බියේ මේ මොහොතේ කාසි නොමැත.",
|
|
||||||
"freeze": "කැටි කරන්න",
|
"freeze": "කැටි කරන්න",
|
||||||
"freezeLabel": "කැටි කරන්න",
|
"freezeLabel": "කැටි කරන්න",
|
||||||
"freezeLabel_un": "කැරි නොකරන්න",
|
"freezeLabel_un": "කැරි නොකරන්න",
|
||||||
|
|
|
@ -13,10 +13,7 @@
|
||||||
"save": "Uložiť",
|
"save": "Uložiť",
|
||||||
"seed": "Semienko",
|
"seed": "Semienko",
|
||||||
"success": "Správne",
|
"success": "Správne",
|
||||||
"wallet_key": "Peňaženkový kľúč",
|
"wallet_key": "Peňaženkový kľúč"
|
||||||
"invalid_animated_qr_code_fragment": "Neplatný animovaný fragment QR kódu. Skúste to znovu, prosím.",
|
|
||||||
"file_saved": "Súbor {filePath} bol uložený v {destination}.",
|
|
||||||
"downloads_folder": "Priečinok so stiahnutými súbormi."
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "Varovanie"
|
"default": "Varovanie"
|
||||||
|
@ -40,11 +37,9 @@
|
||||||
"channels": "Kanály",
|
"channels": "Kanály",
|
||||||
"close_channel": "Zatvoriť kanál",
|
"close_channel": "Zatvoriť kanál",
|
||||||
"new_channel": "Nový kanál",
|
"new_channel": "Nový kanál",
|
||||||
"errorInvoiceExpired": "Faktúra je expirovaná",
|
|
||||||
"expired": "Expirovaná",
|
"expired": "Expirovaná",
|
||||||
"expiresIn": "Vyprší za {time} minút",
|
"expiresIn": "Vyprší za {time} minút",
|
||||||
"payButton": "Zaplatiť",
|
"payButton": "Zaplatiť",
|
||||||
"placeholder": "Faktúra",
|
|
||||||
"open_channel": "Otvoriť kanál",
|
"open_channel": "Otvoriť kanál",
|
||||||
"refill": "Doplniť",
|
"refill": "Doplniť",
|
||||||
"refill_create": "Pre pokračovanie, prosím, vytvorte si Bitcoinovú peňaženku",
|
"refill_create": "Pre pokračovanie, prosím, vytvorte si Bitcoinovú peňaženku",
|
||||||
|
@ -74,9 +69,8 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Zapísali ste si svoju zálohovaciu frázu? Táto fráza je nutná pre prístup k vašim prostriedkom v prípade straty či poruchy prístroja. Bez zálohovacej frázy by ste trvale prišli o svoje prostriedky.",
|
"ask": "Zapísali ste si svoju zálohovaciu frázu? Táto fráza je nutná pre prístup k vašim prostriedkom v prípade straty či poruchy prístroja. Bez zálohovacej frázy by ste trvale prišli o svoje prostriedky.",
|
||||||
"ask_no": "Ešte nie",
|
"ok_lnd": "OK, uložené.",
|
||||||
"ask_yes": "Áno",
|
"title": "Vaša peňaženka je vytvorená..."
|
||||||
"title": "Tvoja peňaženka bola vytvorená!"
|
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Vytvoriť",
|
"details_create": "Vytvoriť",
|
||||||
|
@ -124,8 +118,6 @@
|
||||||
"header": "Poslať",
|
"header": "Poslať",
|
||||||
"input_done": "Hotovo",
|
"input_done": "Hotovo",
|
||||||
"permission_camera_message": "Potrebujeme povolenie na použitie kamery",
|
"permission_camera_message": "Potrebujeme povolenie na použitie kamery",
|
||||||
"permission_camera_title": "Povolenie na použitie kamery",
|
|
||||||
"permission_storage_later": "Požiadať neskôr",
|
|
||||||
"psbt_tx_export": "Exportovať do súboru",
|
"psbt_tx_export": "Exportovať do súboru",
|
||||||
"psbt_tx_open": "Otvoriť podpísanú transakciu",
|
"psbt_tx_open": "Otvoriť podpísanú transakciu",
|
||||||
"psbt_tx_scan": "Skenovať podpísanú transakciu",
|
"psbt_tx_scan": "Skenovať podpísanú transakciu",
|
||||||
|
@ -172,9 +164,6 @@
|
||||||
"save": "Uložiť",
|
"save": "Uložiť",
|
||||||
"saved": "Uložené"
|
"saved": "Uložené"
|
||||||
},
|
},
|
||||||
"notifications": {
|
|
||||||
"ask_me_later": "Požiadať neskôr"
|
|
||||||
},
|
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "Táto transakcia sa nedá nahradiť",
|
"cancel_no": "Táto transakcia sa nedá nahradiť",
|
||||||
"cancel_title": "Zrušiť transakciu (RBF)",
|
"cancel_title": "Zrušiť transakciu (RBF)",
|
||||||
|
@ -215,7 +204,6 @@
|
||||||
"details_advanced": "Rozšírené",
|
"details_advanced": "Rozšírené",
|
||||||
"details_are_you_sure": "Ste si istý?",
|
"details_are_you_sure": "Ste si istý?",
|
||||||
"details_connected_to": "Napojené na",
|
"details_connected_to": "Napojené na",
|
||||||
"details_del_wb_err": "Napísaný zostatok nesedí so skutočným zostatkom v peňaženke. Skúste znovu",
|
|
||||||
"details_delete": "Zmazaž",
|
"details_delete": "Zmazaž",
|
||||||
"details_delete_wallet": "Zmazať peňaženku",
|
"details_delete_wallet": "Zmazať peňaženku",
|
||||||
"details_display": "zobraziť v zozname peňaženiek",
|
"details_display": "zobraziť v zozname peňaženiek",
|
||||||
|
|
|
@ -14,10 +14,7 @@
|
||||||
"save": "Shrani",
|
"save": "Shrani",
|
||||||
"seed": "Seme",
|
"seed": "Seme",
|
||||||
"success": "Uspešno",
|
"success": "Uspešno",
|
||||||
"wallet_key": "Ključ denarnice",
|
"wallet_key": "Ključ denarnice"
|
||||||
"invalid_animated_qr_code_fragment": "Neveljaven del animirane QR kode. Prosimo poskusite ponovno.",
|
|
||||||
"file_saved": "Datoteka {filePath} je bila shranjena v {destination}.",
|
|
||||||
"downloads_folder": "Mapa Prenosi"
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "Opozorilo"
|
"default": "Opozorilo"
|
||||||
|
@ -48,15 +45,12 @@
|
||||||
"no_channels": "Ni odprtih kanalov",
|
"no_channels": "Ni odprtih kanalov",
|
||||||
"close_channel": "Zapri kanal",
|
"close_channel": "Zapri kanal",
|
||||||
"new_channel": "Nov kanal",
|
"new_channel": "Nov kanal",
|
||||||
"errorInvoiceExpired": "Račun je potekel",
|
|
||||||
"force_close_channel": "Prisilno zapri kanal?",
|
"force_close_channel": "Prisilno zapri kanal?",
|
||||||
"expired": "Potekel",
|
"expired": "Potekel",
|
||||||
"node_alias": "Vzdevek vozlišča",
|
"node_alias": "Vzdevek vozlišča",
|
||||||
"expiresIn": "Poteče čez {time} min",
|
"expiresIn": "Poteče čez {time} min",
|
||||||
"payButton": "Plačaj",
|
"payButton": "Plačaj",
|
||||||
"placeholder": "Račun",
|
|
||||||
"open_channel": "Odpri kanal",
|
"open_channel": "Odpri kanal",
|
||||||
"funding_amount_placeholder": "Znesek sredstev, na primer 0.001",
|
|
||||||
"opening_channnel_for_from": "Odpiranje kanala denarnice {forWalletLabel}, z uporabo sredstev iz {fromWalletLabel}",
|
"opening_channnel_for_from": "Odpiranje kanala denarnice {forWalletLabel}, z uporabo sredstev iz {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Ali ste prepričani, da želite odpreti ta kanal?",
|
"are_you_sure_open_channel": "Ali ste prepričani, da želite odpreti ta kanal?",
|
||||||
"potentialFee": "Morebitna omrežnina: {fee}",
|
"potentialFee": "Morebitna omrežnina: {fee}",
|
||||||
|
@ -79,7 +73,6 @@
|
||||||
"open_direct_channel": "Odpri neposreden kanal s tem vozliščem:",
|
"open_direct_channel": "Odpri neposreden kanal s tem vozliščem:",
|
||||||
"please_pay_between_and": "Prosim plačajte med {min} in {max}",
|
"please_pay_between_and": "Prosim plačajte med {min} in {max}",
|
||||||
"please_pay": "Prosim plačajte",
|
"please_pay": "Prosim plačajte",
|
||||||
"preimage": "Preimage",
|
|
||||||
"sats": "sats.",
|
"sats": "sats.",
|
||||||
"wasnt_paid_and_expired": "Ta račun ni bil plačan in je potekel."
|
"wasnt_paid_and_expired": "Ta račun ni bil plačan in je potekel."
|
||||||
},
|
},
|
||||||
|
@ -97,10 +90,8 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Ali ste shranili varnostno kopijo (seznam besed) vaše denarnice? Varnostna kopija je potrebna za dostop do vaših sredstev v primeru izgube naprave. Brez varnostne kopije bodo vaša sredstva trajno izgubljena.",
|
"ask": "Ali ste shranili varnostno kopijo (seznam besed) vaše denarnice? Varnostna kopija je potrebna za dostop do vaših sredstev v primeru izgube naprave. Brez varnostne kopije bodo vaša sredstva trajno izgubljena.",
|
||||||
"ask_no": "Ne, nisem",
|
"ok": "V redu, sem si zapisal.",
|
||||||
"ask_yes": "Da, sem",
|
"ok_lnd": "V redu, sem shranil.",
|
||||||
"ok": "V redu, sem si zapisal",
|
|
||||||
"ok_lnd": "V redu, sem shranil",
|
|
||||||
"text": "Prosimo zapišite si seznam besed (mnemonično seme) na list papirja.\nTo je varnostna kopija, ki jo lahko uporabite za obnovitev denarnice.",
|
"text": "Prosimo zapišite si seznam besed (mnemonično seme) na list papirja.\nTo je varnostna kopija, ki jo lahko uporabite za obnovitev denarnice.",
|
||||||
"text_lnd": "Shranite varnostno kopijo te denarnice. Omogoča vam obnovitev denarnice v primeru izgube te naprave.",
|
"text_lnd": "Shranite varnostno kopijo te denarnice. Omogoča vam obnovitev denarnice v primeru izgube te naprave.",
|
||||||
"title": "Vaša denarnica je ustvarjena"
|
"title": "Vaša denarnica je ustvarjena"
|
||||||
|
@ -151,7 +142,6 @@
|
||||||
"details_create": "Ustvari Račun",
|
"details_create": "Ustvari Račun",
|
||||||
"details_error_decode": "Ni mogoče dekodirati Bitcoin naslova",
|
"details_error_decode": "Ni mogoče dekodirati Bitcoin naslova",
|
||||||
"details_fee_field_is_not_valid": "Omrežnina ni veljavna",
|
"details_fee_field_is_not_valid": "Omrežnina ni veljavna",
|
||||||
"details_frozen": "{amount} BTC zamrznjeno",
|
|
||||||
"details_next": "Naprej",
|
"details_next": "Naprej",
|
||||||
"details_no_signed_tx": "Izbrana datoteka ne vsebuje transakcije, ki jo je mogoče uvoziti.",
|
"details_no_signed_tx": "Izbrana datoteka ne vsebuje transakcije, ki jo je mogoče uvoziti.",
|
||||||
"details_note_placeholder": "lastna opomba",
|
"details_note_placeholder": "lastna opomba",
|
||||||
|
@ -183,7 +173,6 @@
|
||||||
"permission_camera_message": "Za uporabo kamere potrebujemo dovoljenje.",
|
"permission_camera_message": "Za uporabo kamere potrebujemo dovoljenje.",
|
||||||
"psbt_sign": "Podpiši transakcijo",
|
"psbt_sign": "Podpiši transakcijo",
|
||||||
"open_settings": "Odpri Nastavitve",
|
"open_settings": "Odpri Nastavitve",
|
||||||
"permission_storage_later": "Vprašaj me kasneje",
|
|
||||||
"permission_storage_message": "BlueWallet potrebuje dovoljenje za dostop do vaše shrambe, da shrani to datoteko.",
|
"permission_storage_message": "BlueWallet potrebuje dovoljenje za dostop do vaše shrambe, da shrani to datoteko.",
|
||||||
"permission_storage_denied_message": "BlueWallet ne more shraniti te datoteke. Odprite nastavitve naprave in omogočite dovoljenje za shranjevanje.",
|
"permission_storage_denied_message": "BlueWallet ne more shraniti te datoteke. Odprite nastavitve naprave in omogočite dovoljenje za shranjevanje.",
|
||||||
"permission_storage_title": "Dovoljenje za dostop do shrambe",
|
"permission_storage_title": "Dovoljenje za dostop do shrambe",
|
||||||
|
@ -194,7 +183,6 @@
|
||||||
"outdated_rate": "Tečaj posodobljen: {date}",
|
"outdated_rate": "Tečaj posodobljen: {date}",
|
||||||
"psbt_tx_open": "Odpri podpisano transakcijo",
|
"psbt_tx_open": "Odpri podpisano transakcijo",
|
||||||
"psbt_tx_scan": "Skeniraj podpisano transakcijo",
|
"psbt_tx_scan": "Skeniraj podpisano transakcijo",
|
||||||
"qr_error_no_qrcode": "Na izbrani sliki ni bilo mogoče najti QR kode. Prepričajte se, da slika vsebuje samo QR kodo brez dodatne vsebine, kot je besedilo ali gumbi.",
|
|
||||||
"reset_amount": "Ponastavi znesek",
|
"reset_amount": "Ponastavi znesek",
|
||||||
"reset_amount_confirm": "Ali želite ponastaviti znesek?",
|
"reset_amount_confirm": "Ali želite ponastaviti znesek?",
|
||||||
"success_done": "Končano",
|
"success_done": "Končano",
|
||||||
|
@ -231,7 +219,6 @@
|
||||||
"default_wallets": "Prikaži vse denarnice",
|
"default_wallets": "Prikaži vse denarnice",
|
||||||
"electrum_connected": "Povezano",
|
"electrum_connected": "Povezano",
|
||||||
"electrum_connected_not": "Brez povezave",
|
"electrum_connected_not": "Brez povezave",
|
||||||
"electrum_error_connect": "Povezave s podanim Electrum strežnikom ni mogoče vzpostaviti",
|
|
||||||
"lndhub_uri": "Npr. {example}",
|
"lndhub_uri": "Npr. {example}",
|
||||||
"electrum_host": "Npr. {example}",
|
"electrum_host": "Npr. {example}",
|
||||||
"electrum_offline_mode": "Način brez povezave",
|
"electrum_offline_mode": "Način brez povezave",
|
||||||
|
@ -274,7 +261,6 @@
|
||||||
"lightning_error_lndhub_uri": "Neveljaven LNDHub URI",
|
"lightning_error_lndhub_uri": "Neveljaven LNDHub URI",
|
||||||
"lightning_saved": "Spremembe so bile uspešno shranjene",
|
"lightning_saved": "Spremembe so bile uspešno shranjene",
|
||||||
"lightning_settings": "Lightning Nastavitve",
|
"lightning_settings": "Lightning Nastavitve",
|
||||||
"lightning_settings_explain": "Za povezavo z lastnim LND vozliščem, prosimo namestite LndHub in tukaj vnesite URL vozlišča. Pustite prazno za uporabo BlueWallet LNDHub . Z novim LNDHub-om bodo povezane samo denarnice ustvarjene po potrditvi sprememb.",
|
|
||||||
"network": "Omrežje",
|
"network": "Omrežje",
|
||||||
"network_broadcast": "Objavi transakcijo",
|
"network_broadcast": "Objavi transakcijo",
|
||||||
"network_electrum": "Electrum Strežnik",
|
"network_electrum": "Electrum Strežnik",
|
||||||
|
@ -289,7 +275,6 @@
|
||||||
"privacy_read_clipboard": "Branje odložišča",
|
"privacy_read_clipboard": "Branje odložišča",
|
||||||
"privacy_system_settings": "Sistemske nastavitve",
|
"privacy_system_settings": "Sistemske nastavitve",
|
||||||
"privacy_quickactions": "Bližnjice",
|
"privacy_quickactions": "Bližnjice",
|
||||||
"privacy_quickactions_explanation": "Za ogled stanja denarnice se dotaknite in pridržite ikono aplikacije BlueWallet na domačem zaslonu.",
|
|
||||||
"privacy_clipboard_explanation": "Prikaži bližnjice, če je v odložišču najden naslov ali račun.",
|
"privacy_clipboard_explanation": "Prikaži bližnjice, če je v odložišču najden naslov ali račun.",
|
||||||
"privacy_do_not_track": "Onemogoči analitiko",
|
"privacy_do_not_track": "Onemogoči analitiko",
|
||||||
"privacy_do_not_track_explanation": "Informacije o zmogljivosti in zanesljivosti ne bodo poslane v analizo.",
|
"privacy_do_not_track_explanation": "Informacije o zmogljivosti in zanesljivosti ne bodo poslane v analizo.",
|
||||||
|
@ -299,16 +284,13 @@
|
||||||
"selfTest": "Samotestiranje",
|
"selfTest": "Samotestiranje",
|
||||||
"save": "Shrani",
|
"save": "Shrani",
|
||||||
"saved": "Shranjeno",
|
"saved": "Shranjeno",
|
||||||
"success_transaction_broadcasted": "Vaša transakcija je bila objavljena!",
|
|
||||||
"total_balance": "Skupno stanje",
|
"total_balance": "Skupno stanje",
|
||||||
"total_balance_explanation": "Prikaži skupno stanje vseh denarnic na pripomočkih na domačem zaslonu.",
|
"total_balance_explanation": "Prikaži skupno stanje vseh denarnic na pripomočkih na domačem zaslonu.",
|
||||||
"widgets": "Pripomočki",
|
"widgets": "Pripomočki",
|
||||||
"tools": "Orodja"
|
"tools": "Orodja"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Želite prikaz obvestil ob prejemu plačila?",
|
"would_you_like_to_receive_notifications": "Želite prikaz obvestil ob prejemu plačila?"
|
||||||
"no_and_dont_ask": "Ne in ne sprašuj več",
|
|
||||||
"ask_me_later": "Vprašaj me kasneje"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "To transakcijo bomo nadomestili z novo, ki plača višjo omrežnino. Trenutna transakcija bo preklicana (RBF - Replace By Fee).",
|
"cancel_explain": "To transakcijo bomo nadomestili z novo, ki plača višjo omrežnino. Trenutna transakcija bo preklicana (RBF - Replace By Fee).",
|
||||||
|
@ -380,7 +362,6 @@
|
||||||
"details_advanced": "Napredno",
|
"details_advanced": "Napredno",
|
||||||
"details_are_you_sure": "Ali ste prepričani?",
|
"details_are_you_sure": "Ali ste prepričani?",
|
||||||
"details_connected_to": "Povezano z",
|
"details_connected_to": "Povezano z",
|
||||||
"details_del_wb_err": "Navedeni znesek stanja se ne ujema s stanjem v tej denarnici. Prosimo poskusite ponovno.",
|
|
||||||
"details_del_wb_q": "Ta denarnica ima pozitivno stanje. Preden nadaljujete se zavedajte, da sredstev ne boste mogli obnoviti brez seznama besed te denarnice (mnemonično seme). V izogib nenamerni odstranitvi te denarnice, vnesite stanje svoje denarnice {balance} satošijev.",
|
"details_del_wb_q": "Ta denarnica ima pozitivno stanje. Preden nadaljujete se zavedajte, da sredstev ne boste mogli obnoviti brez seznama besed te denarnice (mnemonično seme). V izogib nenamerni odstranitvi te denarnice, vnesite stanje svoje denarnice {balance} satošijev.",
|
||||||
"details_delete": "Izbriši",
|
"details_delete": "Izbriši",
|
||||||
"details_delete_wallet": "Izbriši denarnico",
|
"details_delete_wallet": "Izbriši denarnico",
|
||||||
|
@ -416,16 +397,9 @@
|
||||||
"import_discovery_subtitle": "Izberite odkrito denarnico",
|
"import_discovery_subtitle": "Izberite odkrito denarnico",
|
||||||
"import_discovery_derivation": "Uporabi pot izpeljave po meri",
|
"import_discovery_derivation": "Uporabi pot izpeljave po meri",
|
||||||
"import_discovery_no_wallets": "Nobena denarnica ni bila najdena.",
|
"import_discovery_no_wallets": "Nobena denarnica ni bila najdena.",
|
||||||
"import_derivation_found": "najdeno",
|
|
||||||
"import_derivation_found_not": "ni najdeno",
|
|
||||||
"import_derivation_loading": "nalaganje...",
|
|
||||||
"import_derivation_subtitle": "Vnesite pot izpeljave in poskusili bomo odkriti vašo denarnico",
|
|
||||||
"import_derivation_title": "Pot izpeljave",
|
"import_derivation_title": "Pot izpeljave",
|
||||||
"import_derivation_unknown": "neznano",
|
|
||||||
"import_wrong_path": "napačna pot izpeljave",
|
|
||||||
"list_create_a_button": "Ustvarite",
|
"list_create_a_button": "Ustvarite",
|
||||||
"list_create_a_wallet": "Ustvarite denarnico",
|
"list_create_a_wallet": "Ustvarite denarnico",
|
||||||
"list_create_a_wallet_text": "Je brezplačno in lahko jih ustvarite\nkolikor želite.",
|
|
||||||
"list_empty_txs1": "Tu bodo prikazane vaše transakcije",
|
"list_empty_txs1": "Tu bodo prikazane vaše transakcije",
|
||||||
"list_empty_txs1_lightning": "Lightning denarnica je namenjena za vsakodnevne transakcije. Omogoča takojšnja plačila z nizkimi stroški.",
|
"list_empty_txs1_lightning": "Lightning denarnica je namenjena za vsakodnevne transakcije. Omogoča takojšnja plačila z nizkimi stroški.",
|
||||||
"list_empty_txs2": "Začnite uporabljati denarnico.",
|
"list_empty_txs2": "Začnite uporabljati denarnico.",
|
||||||
|
@ -490,20 +464,14 @@
|
||||||
"quorum_header": "Kvorum",
|
"quorum_header": "Kvorum",
|
||||||
"of": "od",
|
"of": "od",
|
||||||
"wallet_type": "Tip denarnice",
|
"wallet_type": "Tip denarnice",
|
||||||
"invalid_mnemonics": "Zdi se, da to mnemonično seme ni veljavno",
|
|
||||||
"invalid_cosigner": "Neveljavni podatki sopodpisnika",
|
|
||||||
"not_a_multisignature_xpub": "Ta xpub ne pripada multisig denarnici!",
|
"not_a_multisignature_xpub": "Ta xpub ne pripada multisig denarnici!",
|
||||||
"invalid_cosigner_format": "Nepravilen sopodpisnik: to ni sopodpisnik za {format} obliko",
|
|
||||||
"create_new_key": "Ustvari novega",
|
"create_new_key": "Ustvari novega",
|
||||||
"scan_or_open_file": "Skeniraj ali odpri datoteko",
|
"scan_or_open_file": "Skeniraj ali odpri datoteko",
|
||||||
"i_have_mnemonics": "Za ta ključ imam seme...",
|
"i_have_mnemonics": "Za ta ključ imam seme...",
|
||||||
"type_your_mnemonics": "Vnesite seme za uvoz obstoječega ključa trezorja",
|
"type_your_mnemonics": "Vnesite seme za uvoz obstoječega ključa trezorja",
|
||||||
"this_is_cosigners_xpub": "To je XPUB sopodpisnika, pripravljen za uvoz v drugo denarnico. Varno ga lahko delite.",
|
|
||||||
"wallet_key_created": "Ključ trezorja je bil ustvarjen. Vzemite si trenutek, ter zapišite seznam besed (mnemonično seme) na list papirja.",
|
"wallet_key_created": "Ključ trezorja je bil ustvarjen. Vzemite si trenutek, ter zapišite seznam besed (mnemonično seme) na list papirja.",
|
||||||
"are_you_sure_seed_will_be_lost": "Ali ste prepričani? Če nimate varnostne kopije, bo vaše mnemonično seme izgubljeno.",
|
"are_you_sure_seed_will_be_lost": "Ali ste prepričani? Če nimate varnostne kopije, bo vaše mnemonično seme izgubljeno.",
|
||||||
"forget_this_seed": "Pozabi to seme in uporabi XPUB",
|
"forget_this_seed": "Pozabi to seme in uporabi XPUB",
|
||||||
"view_edit_cosigners": "Prikaži/uredi sopodpisnike",
|
|
||||||
"this_cosigner_is_already_imported": "Ta sopodpisnik je že uvožen.",
|
|
||||||
"export_signed_psbt": "Izvozi podpisano PSBT",
|
"export_signed_psbt": "Izvozi podpisano PSBT",
|
||||||
"input_fp": "Vnesite xfp (master key fingerprint)",
|
"input_fp": "Vnesite xfp (master key fingerprint)",
|
||||||
"input_fp_explain": "preskoči in uporabi privzetega (00000000)",
|
"input_fp_explain": "preskoči in uporabi privzetega (00000000)",
|
||||||
|
@ -528,14 +496,12 @@
|
||||||
"owns": "{label} ima v lasti {address}",
|
"owns": "{label} ima v lasti {address}",
|
||||||
"enter_address": "Vnesite naslov",
|
"enter_address": "Vnesite naslov",
|
||||||
"check_address": "Preveri naslov",
|
"check_address": "Preveri naslov",
|
||||||
"no_wallet_owns_address": "Nobena od razpoložljivih denarnic ni lastnik navedenega naslova.",
|
"no_wallet_owns_address": "Nobena od razpoložljivih denarnic ni lastnik navedenega naslova."
|
||||||
"view_qrcode": "Prikaži QR kodo"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Vračilo",
|
"change": "Vračilo",
|
||||||
"coins_selected": "Izbrani kovanci ({number})",
|
"coins_selected": "Izbrani kovanci ({number})",
|
||||||
"selected_summ": "{value} izbrano",
|
"selected_summ": "{value} izbrano",
|
||||||
"empty": "Ta denarnica trenutno nima kovancev",
|
|
||||||
"freeze": "Zamrznjen",
|
"freeze": "Zamrznjen",
|
||||||
"freezeLabel": "Zamrznitev",
|
"freezeLabel": "Zamrznitev",
|
||||||
"freezeLabel_un": "Odmrznitev",
|
"freezeLabel_un": "Odmrznitev",
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Framgång",
|
"success": "Framgång",
|
||||||
"wallet_key": "Nyckel till plånbok",
|
"wallet_key": "Nyckel till plånbok",
|
||||||
"invalid_animated_qr_code_fragment": "Felaktig animerad QR-kod. Vänligen försök igen.",
|
|
||||||
"file_saved": "Filen {filePath} har sparats i din {destination}.",
|
|
||||||
"downloads_folder": "Nedladdningsmapp",
|
|
||||||
"close": "Stäng",
|
"close": "Stäng",
|
||||||
"change_input_currency": "Ändra inmatningsvaluta",
|
"change_input_currency": "Ändra inmatningsvaluta",
|
||||||
"refresh": "Uppdatera",
|
"refresh": "Uppdatera",
|
||||||
|
@ -57,7 +54,6 @@
|
||||||
"claim_balance": "Begär saldo {saldo}",
|
"claim_balance": "Begär saldo {saldo}",
|
||||||
"close_channel": "Säng kanal",
|
"close_channel": "Säng kanal",
|
||||||
"new_channel": "Ny kanal",
|
"new_channel": "Ny kanal",
|
||||||
"errorInvoiceExpired": "Fakturan har förfallit",
|
|
||||||
"force_close_channel": "Tvinga stänga kanal",
|
"force_close_channel": "Tvinga stänga kanal",
|
||||||
"expired": "Förfallen",
|
"expired": "Förfallen",
|
||||||
"node_alias": "Node alias",
|
"node_alias": "Node alias",
|
||||||
|
@ -66,7 +62,6 @@
|
||||||
"payment": "Betalning",
|
"payment": "Betalning",
|
||||||
"placeholder": "Faktura eller adress",
|
"placeholder": "Faktura eller adress",
|
||||||
"open_channel": "Öppna kanal",
|
"open_channel": "Öppna kanal",
|
||||||
"funding_amount_placeholder": "Sätt in summa, tex 0.001",
|
|
||||||
"opening_channnel_for_from": "Öppnande kanal för plånbok {forWalletLabel}, genom insättning från {fromWalletLabel}",
|
"opening_channnel_for_from": "Öppnande kanal för plånbok {forWalletLabel}, genom insättning från {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Är du säker på att du vill öppna den här kanalen? ",
|
"are_you_sure_open_channel": "Är du säker på att du vill öppna den här kanalen? ",
|
||||||
"potentialFee": "Potentiell avgift: {avgift}",
|
"potentialFee": "Potentiell avgift: {avgift}",
|
||||||
|
@ -76,7 +71,7 @@
|
||||||
"refill_create": "För att fortsätta, vänligen skapa en Bitcoin plånbok att fylla på med",
|
"refill_create": "För att fortsätta, vänligen skapa en Bitcoin plånbok att fylla på med",
|
||||||
"refill_external": "Fyll på från extern plånbok",
|
"refill_external": "Fyll på från extern plånbok",
|
||||||
"refill_lnd_balance": "Fyll på Lightning-plånbok",
|
"refill_lnd_balance": "Fyll på Lightning-plånbok",
|
||||||
"sameWalletAsInvoiceError": "Du kan inte betala en faktura med samma plånbok som användes för att skapa den.",
|
"sameWalletAsInvoiceError": "Du kan inte betala en faktura från samma plånbok som användes för att skapa den.",
|
||||||
"title": "sätt in / ta ut",
|
"title": "sätt in / ta ut",
|
||||||
"can_send": "Kan skicka",
|
"can_send": "Kan skicka",
|
||||||
"can_receive": "Kan ta emot",
|
"can_receive": "Kan ta emot",
|
||||||
|
@ -89,7 +84,6 @@
|
||||||
"open_direct_channel": "Öppna en direkt kanal med denna nod:",
|
"open_direct_channel": "Öppna en direkt kanal med denna nod:",
|
||||||
"please_pay_between_and": "Betala mellan {min} och {max}",
|
"please_pay_between_and": "Betala mellan {min} och {max}",
|
||||||
"please_pay": "Var god betala",
|
"please_pay": "Var god betala",
|
||||||
"preimage": "Förbild",
|
|
||||||
"sats": "sats",
|
"sats": "sats",
|
||||||
"wasnt_paid_and_expired": "Denna faktura har ej betalats och är nu utgången"
|
"wasnt_paid_and_expired": "Denna faktura har ej betalats och är nu utgången"
|
||||||
},
|
},
|
||||||
|
@ -107,13 +101,10 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Har du skrivit ner din plånboks uppbacknings fras? Denna frasen är nödvändig för att komma åt dina pengar ifall du förlorar denna enheten. Utan denna uppbacknings frasen är dina pengar borta för alltid",
|
"ask": "Har du skrivit ner din plånboks uppbacknings fras? Denna frasen är nödvändig för att komma åt dina pengar ifall du förlorar denna enheten. Utan denna uppbacknings frasen är dina pengar borta för alltid",
|
||||||
"ask_no": "Nej",
|
|
||||||
"ask_yes": "Ja",
|
|
||||||
"ok": "OK, jag har skrivit ned dem",
|
|
||||||
"ok_lnd": "Ok, jag har sparat det",
|
"ok_lnd": "Ok, jag har sparat det",
|
||||||
"text": "Innan du går vidare, skriv ned dessa ord på ett papper och förvara på ett säkert ställe. \nDe är din backup och säkerställer att du kan återställa din plånbok igen om något händer.",
|
"text": "Innan du går vidare, skriv ned dessa ord på ett papper och förvara på ett säkert ställe. \nDe är din backup och säkerställer att du kan återställa din plånbok igen om något händer.",
|
||||||
"text_lnd": "Spara denna säkerhetskopia av plånboken. Det tillåter dig att återställa plånboken vid förlust.",
|
"text_lnd": "Spara denna säkerhetskopia av plånboken. Det tillåter dig att återställa plånboken vid förlust.",
|
||||||
"title": "Din plånbok har skapats"
|
"title": "Din plånbok har skapats..."
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Skapa",
|
"details_create": "Skapa",
|
||||||
|
@ -161,9 +152,7 @@
|
||||||
"details_create": "Skapa",
|
"details_create": "Skapa",
|
||||||
"details_error_decode": "Det går inte att avkoda Bitcoin-adress",
|
"details_error_decode": "Det går inte att avkoda Bitcoin-adress",
|
||||||
"details_fee_field_is_not_valid": "Angiven avgift är inte giltig",
|
"details_fee_field_is_not_valid": "Angiven avgift är inte giltig",
|
||||||
"details_frozen": "{amount} BTC är frusna",
|
|
||||||
"details_next": "Nästa",
|
"details_next": "Nästa",
|
||||||
"details_no_signed_tx": "Den valda filen innehåller inte en transaktion som kan importeras.",
|
|
||||||
"details_note_placeholder": "egen notering",
|
"details_note_placeholder": "egen notering",
|
||||||
"details_scan": "Skanna",
|
"details_scan": "Skanna",
|
||||||
"details_scan_hint": "Dubbeltryck för att skanna eller importera en destination",
|
"details_scan_hint": "Dubbeltryck för att skanna eller importera en destination",
|
||||||
|
@ -193,7 +182,6 @@
|
||||||
"permission_camera_message": "Vi behöver ditt godkännande för att använda kameran",
|
"permission_camera_message": "Vi behöver ditt godkännande för att använda kameran",
|
||||||
"psbt_sign": "Signera en transaktion",
|
"psbt_sign": "Signera en transaktion",
|
||||||
"open_settings": "Öppna inställningar",
|
"open_settings": "Öppna inställningar",
|
||||||
"permission_storage_later": "Fråga mig senare",
|
|
||||||
"permission_storage_message": "BlueWallet behöver din tillåtelse för att komma åt din lagring för att spara den här filen.",
|
"permission_storage_message": "BlueWallet behöver din tillåtelse för att komma åt din lagring för att spara den här filen.",
|
||||||
"permission_storage_denied_message": "BlueWallet kan inte spara den här filen. Öppna dina enhetsinställningar och aktivera lagringstillstånd.",
|
"permission_storage_denied_message": "BlueWallet kan inte spara den här filen. Öppna dina enhetsinställningar och aktivera lagringstillstånd.",
|
||||||
"permission_storage_title": "Lagringstillstånd",
|
"permission_storage_title": "Lagringstillstånd",
|
||||||
|
@ -204,7 +192,6 @@
|
||||||
"outdated_rate": "Betygsätt senaste uppdateringen: {date}",
|
"outdated_rate": "Betygsätt senaste uppdateringen: {date}",
|
||||||
"psbt_tx_open": "Öppna Signerad transaktion",
|
"psbt_tx_open": "Öppna Signerad transaktion",
|
||||||
"psbt_tx_scan": "Skanna Signerad transaktion",
|
"psbt_tx_scan": "Skanna Signerad transaktion",
|
||||||
"qr_error_no_qrcode": "Vi kunde inte hitta en QR-kod i den valda bilden. Se till att bilden endast innehåller en QR-kod och inget extra innehåll som text eller knappar.",
|
|
||||||
"reset_amount": "Återställ belopp",
|
"reset_amount": "Återställ belopp",
|
||||||
"reset_amount_confirm": "Vill du återställa beloppet?",
|
"reset_amount_confirm": "Vill du återställa beloppet?",
|
||||||
"success_done": "Klart!",
|
"success_done": "Klart!",
|
||||||
|
@ -243,7 +230,6 @@
|
||||||
"default_wallets": "Visa alla plånböcker",
|
"default_wallets": "Visa alla plånböcker",
|
||||||
"electrum_connected": "Ansluten",
|
"electrum_connected": "Ansluten",
|
||||||
"electrum_connected_not": "Inte Ansluten",
|
"electrum_connected_not": "Inte Ansluten",
|
||||||
"electrum_error_connect": "Det går inte att ansluta till den valda Electrum-servern",
|
|
||||||
"lndhub_uri": "E.g., {example}",
|
"lndhub_uri": "E.g., {example}",
|
||||||
"electrum_host": "E.g., {example}",
|
"electrum_host": "E.g., {example}",
|
||||||
"electrum_offline_mode": "Offline läge",
|
"electrum_offline_mode": "Offline läge",
|
||||||
|
@ -311,16 +297,13 @@
|
||||||
"selfTest": "Självtest",
|
"selfTest": "Självtest",
|
||||||
"save": "Spara",
|
"save": "Spara",
|
||||||
"saved": "Sparad",
|
"saved": "Sparad",
|
||||||
"success_transaction_broadcasted": "Framgång! Din transaktion har sänts ut!",
|
|
||||||
"total_balance": "Total balans",
|
"total_balance": "Total balans",
|
||||||
"total_balance_explanation": "Visa det totala saldot för alla dina plånböcker på dina startskärmswidgets.",
|
"total_balance_explanation": "Visa det totala saldot för alla dina plånböcker på dina startskärmswidgets.",
|
||||||
"widgets": "Widgets",
|
"widgets": "Widgets",
|
||||||
"tools": "Verktyg"
|
"tools": "Verktyg"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Vill du få aviseringar när du får inkommande betalningar?",
|
"would_you_like_to_receive_notifications": "Vill du få aviseringar när du får inkommande betalningar?"
|
||||||
"no_and_dont_ask": "Nej och fråga mig inte igen",
|
|
||||||
"ask_me_later": "Fråga mig senare"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Vi kommer att ersätta denna transaktion med en som betalar dig och har högre avgifter. Detta avbryter i praktiken den aktuella transaktionen. Detta kallas RBF--Replace by Fee--Ersätt med avgift.",
|
"cancel_explain": "Vi kommer att ersätta denna transaktion med en som betalar dig och har högre avgifter. Detta avbryter i praktiken den aktuella transaktionen. Detta kallas RBF--Replace by Fee--Ersätt med avgift.",
|
||||||
|
@ -393,7 +376,6 @@
|
||||||
"details_advanced": "Avancerat",
|
"details_advanced": "Avancerat",
|
||||||
"details_are_you_sure": "Är du säker?",
|
"details_are_you_sure": "Är du säker?",
|
||||||
"details_connected_to": "Ansluten till",
|
"details_connected_to": "Ansluten till",
|
||||||
"details_del_wb_err": "Det angivna saldobeloppet matchar inte plånbokens saldo. Var god försök igen.",
|
|
||||||
"details_del_wb_q": "Denna plånbok har en balans. Innan du fortsätter bör du vara medveten om att du inte kommer att kunna få tillbaka pengarna utan denna plånboks seed phrase. För att undvika oavsiktlig borttagning, ange saldot i din plånbok på {balance} satoshis.",
|
"details_del_wb_q": "Denna plånbok har en balans. Innan du fortsätter bör du vara medveten om att du inte kommer att kunna få tillbaka pengarna utan denna plånboks seed phrase. För att undvika oavsiktlig borttagning, ange saldot i din plånbok på {balance} satoshis.",
|
||||||
"details_delete": "Radera",
|
"details_delete": "Radera",
|
||||||
"details_delete_wallet": "Radera plånbok",
|
"details_delete_wallet": "Radera plånbok",
|
||||||
|
@ -430,16 +412,9 @@
|
||||||
"import_discovery_subtitle": "Välj en upptäckt plånbok",
|
"import_discovery_subtitle": "Välj en upptäckt plånbok",
|
||||||
"import_discovery_derivation": "Använd anpassad derivation path",
|
"import_discovery_derivation": "Använd anpassad derivation path",
|
||||||
"import_discovery_no_wallets": "Inga plånböcker hittades.",
|
"import_discovery_no_wallets": "Inga plånböcker hittades.",
|
||||||
"import_derivation_found": "hittades",
|
|
||||||
"import_derivation_found_not": "Hittades inte",
|
|
||||||
"import_derivation_loading": "laddar...",
|
|
||||||
"import_derivation_subtitle": "Ange anpassad derivation path så försöker vi hitta din plånbok",
|
|
||||||
"import_derivation_title": "Derivation path",
|
"import_derivation_title": "Derivation path",
|
||||||
"import_derivation_unknown": "okänd",
|
|
||||||
"import_wrong_path": "fel derivation path",
|
|
||||||
"list_create_a_button": "Ny plånbok",
|
"list_create_a_button": "Ny plånbok",
|
||||||
"list_create_a_wallet": "Ny plånbok",
|
"list_create_a_wallet": "Ny plånbok",
|
||||||
"list_create_a_wallet_text": "Det är gratis och du kan skapa\nhur många du vill.",
|
|
||||||
"list_empty_txs1": "Dina transaktioner kommer att visas här",
|
"list_empty_txs1": "Dina transaktioner kommer att visas här",
|
||||||
"list_empty_txs1_lightning": "Lightningplånboken ska användas för dagliga småtransaktioner. Avgifterna är minimala och transaktioner sker direkt.",
|
"list_empty_txs1_lightning": "Lightningplånboken ska användas för dagliga småtransaktioner. Avgifterna är minimala och transaktioner sker direkt.",
|
||||||
"list_empty_txs2": "Börja med din plånbok.",
|
"list_empty_txs2": "Börja med din plånbok.",
|
||||||
|
@ -479,8 +454,6 @@
|
||||||
"header": "Skicka",
|
"header": "Skicka",
|
||||||
"share": "dela",
|
"share": "dela",
|
||||||
"view": "Granska",
|
"view": "Granska",
|
||||||
"shared_key_detected": "Delade cosigner",
|
|
||||||
"shared_key_detected_question": "En cosigner delades med dig, vill du importera den?",
|
|
||||||
"manage_keys": "Hantera nycklar",
|
"manage_keys": "Hantera nycklar",
|
||||||
"how_many_signatures_can_bluewallet_make": "hur många signaturer kan BlueWallet göra",
|
"how_many_signatures_can_bluewallet_make": "hur många signaturer kan BlueWallet göra",
|
||||||
"signatures_required_to_spend": "Signaturer krävs {number}",
|
"signatures_required_to_spend": "Signaturer krävs {number}",
|
||||||
|
@ -506,20 +479,14 @@
|
||||||
"quorum_header": "Kvorum",
|
"quorum_header": "Kvorum",
|
||||||
"of": "av",
|
"of": "av",
|
||||||
"wallet_type": "Plånbokstyp",
|
"wallet_type": "Plånbokstyp",
|
||||||
"invalid_mnemonics": "Denna mnemoniska fras verkar inte vara giltig.",
|
|
||||||
"invalid_cosigner": "Ogiltig medundertecknings-data",
|
|
||||||
"not_a_multisignature_xpub": "Det här är inte en XPUB från en multisignaturplånbok!",
|
"not_a_multisignature_xpub": "Det här är inte en XPUB från en multisignaturplånbok!",
|
||||||
"invalid_cosigner_format": "Felaktig cosigner: Detta är inte en cosigner för formatet {format}.",
|
|
||||||
"create_new_key": "Skapa ny",
|
"create_new_key": "Skapa ny",
|
||||||
"scan_or_open_file": "Skanna eller öppna filen",
|
"scan_or_open_file": "Skanna eller öppna filen",
|
||||||
"i_have_mnemonics": "Jag har en seed till den här nyckeln.",
|
"i_have_mnemonics": "Jag har en seed till den här nyckeln.",
|
||||||
"type_your_mnemonics": "Infoga en seed för att importera din befintliga Valv-nyckel.",
|
"type_your_mnemonics": "Infoga en seed för att importera din befintliga Valv-nyckel.",
|
||||||
"this_is_cosigners_xpub": "Detta är cosignerns XPUB – redo att importeras till en annan plånbok. Det är säkert att dela det.",
|
|
||||||
"wallet_key_created": "Din Vault-nyckel skapades. Ta en stund för att säkerhetskopiera din mnemonic seed.",
|
"wallet_key_created": "Din Vault-nyckel skapades. Ta en stund för att säkerhetskopiera din mnemonic seed.",
|
||||||
"are_you_sure_seed_will_be_lost": "Är du säker? Din mnemonic seed kommer att gå förlorat om du inte har en backup.",
|
"are_you_sure_seed_will_be_lost": "Är du säker? Din mnemonic seed kommer att gå förlorat om du inte har en backup.",
|
||||||
"forget_this_seed": "Glöm denna seed och använd XPUB istället.",
|
"forget_this_seed": "Glöm denna seed och använd XPUB istället.",
|
||||||
"view_edit_cosigners": "Visa/redigera Medundertecknare",
|
|
||||||
"this_cosigner_is_already_imported": "Denna medundertecknare är redan importerad.",
|
|
||||||
"export_signed_psbt": "Exportera Signerad PSBT",
|
"export_signed_psbt": "Exportera Signerad PSBT",
|
||||||
"input_fp": "Ange fingerprint",
|
"input_fp": "Ange fingerprint",
|
||||||
"input_fp_explain": "Hoppa över för att använda standarden (00000000)",
|
"input_fp_explain": "Hoppa över för att använda standarden (00000000)",
|
||||||
|
@ -544,20 +511,12 @@
|
||||||
"owns": "{label} äger {address}",
|
"owns": "{label} äger {address}",
|
||||||
"enter_address": "Ange adress",
|
"enter_address": "Ange adress",
|
||||||
"check_address": "Kontrollera adressen",
|
"check_address": "Kontrollera adressen",
|
||||||
"no_wallet_owns_address": "Ingen av de tillgängliga plånböckerna äger den angivna adressen.",
|
"no_wallet_owns_address": "Ingen av de tillgängliga plånböckerna äger den angivna adressen."
|
||||||
"view_qrcode": "Visa QR-koden"
|
|
||||||
},
|
|
||||||
"autofill_word": {
|
|
||||||
"title": "Generera sista mnemoniska ord",
|
|
||||||
"enter": "Ange en delvis mnemonisk fras",
|
|
||||||
"generate_word": "Generera sista ordet",
|
|
||||||
"error": "Indata är inte en 11 eller 23 ords partiell mnemonic!"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "ändra",
|
"change": "ändra",
|
||||||
"coins_selected": "Valda mynt ({number})",
|
"coins_selected": "Valda mynt ({number})",
|
||||||
"selected_summ": "{value} har valts",
|
"selected_summ": "{value} har valts",
|
||||||
"empty": "Den här plånboken har inga mynt för tillfället.",
|
|
||||||
"freeze": "Lås",
|
"freeze": "Lås",
|
||||||
"freezeLabel": "Lås",
|
"freezeLabel": "Lås",
|
||||||
"freezeLabel_un": "Lås upp",
|
"freezeLabel_un": "Lås upp",
|
||||||
|
|
|
@ -35,10 +35,8 @@
|
||||||
"network": "เน็ตเวิร์คผิดพลาด"
|
"network": "เน็ตเวิร์คผิดพลาด"
|
||||||
},
|
},
|
||||||
"lnd": {
|
"lnd": {
|
||||||
"errorInvoiceExpired": "ใบวางบิลหมดอายุแล้ว",
|
|
||||||
"expired": "หมดอายุแล้ว",
|
"expired": "หมดอายุแล้ว",
|
||||||
"payButton": "จ่าย",
|
"payButton": "จ่าย",
|
||||||
"placeholder": "ใบวางบิล",
|
|
||||||
"potentialFee": "ค่าธรรมเนียมโดยประมาณ: {fee}",
|
"potentialFee": "ค่าธรรมเนียมโดยประมาณ: {fee}",
|
||||||
"refill": "เติม",
|
"refill": "เติม",
|
||||||
"refill_create": "กรุณาสร้างกระเป๋าสตางค์บิตคอยน์ เพื่อดำเนินการต่อ",
|
"refill_create": "กรุณาสร้างกระเป๋าสตางค์บิตคอยน์ เพื่อดำเนินการต่อ",
|
||||||
|
@ -53,7 +51,6 @@
|
||||||
"lightning_invoice": "ใบแจ้งหนี้ไลท์นิง",
|
"lightning_invoice": "ใบแจ้งหนี้ไลท์นิง",
|
||||||
"open_direct_channel": "เปิดช่องโดยตรงไปที่โหนดนี้",
|
"open_direct_channel": "เปิดช่องโดยตรงไปที่โหนดนี้",
|
||||||
"please_pay": "กรุณาจ่าย",
|
"please_pay": "กรุณาจ่าย",
|
||||||
"preimage": "Preimage",
|
|
||||||
"sats": "แซท",
|
"sats": "แซท",
|
||||||
"wasnt_paid_and_expired": "ใบวางบิลนี้ไม่ได้จ่ายและหมดอายุแล้ว"
|
"wasnt_paid_and_expired": "ใบวางบิลนี้ไม่ได้จ่ายและหมดอายุแล้ว"
|
||||||
},
|
},
|
||||||
|
@ -71,8 +68,8 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "ท่านได้บันทึก backup phrase แล้วใช่หรือไม่? ในกรณีที่ท่านสูญเสียอุปกรณ์นี้ ท่านสามารถกู้เงินของท่านได้ด้วย backup phrase อันนี้ หากท่านไม่ได้บันทึก backup phrase อันนี้ไว้ ท่านจะสูญเสียเงินของท่านไปอย่างถาวร",
|
"ask": "ท่านได้บันทึก backup phrase แล้วใช่หรือไม่? ในกรณีที่ท่านสูญเสียอุปกรณ์นี้ ท่านสามารถกู้เงินของท่านได้ด้วย backup phrase อันนี้ หากท่านไม่ได้บันทึก backup phrase อันนี้ไว้ ท่านจะสูญเสียเงินของท่านไปอย่างถาวร",
|
||||||
"ask_no": "ยัง ฉันยังไม่ได้ทำ",
|
"ok_lnd": "ฉันได้บันทึกไว้แล้ว",
|
||||||
"ask_yes": "ใช่ ฉันได้ทำแล้ว"
|
"title": "ได้สร้างกระเป๋าสตางค์ของท่านแล้ว"
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "สร้าง",
|
"details_create": "สร้าง",
|
||||||
|
@ -134,10 +131,8 @@
|
||||||
"input_paste": "วาง",
|
"input_paste": "วาง",
|
||||||
"input_total": "ยอดรวม:",
|
"input_total": "ยอดรวม:",
|
||||||
"permission_camera_message": "ต้องการคำอนุญาตในการใช้กล้อง",
|
"permission_camera_message": "ต้องการคำอนุญาตในการใช้กล้อง",
|
||||||
"permission_camera_title": "อนุญาตในการใช้กล้อง",
|
|
||||||
"psbt_sign": "ลงชื่อในธุรกรรม",
|
"psbt_sign": "ลงชื่อในธุรกรรม",
|
||||||
"open_settings": "เปิดการตั้งค่า",
|
"open_settings": "เปิดการตั้งค่า",
|
||||||
"permission_storage_later": "ถามฉันภายหลัง",
|
|
||||||
"psbt_clipboard": "คัดลอกไปที่คลิ๊ปบอร์ด",
|
"psbt_clipboard": "คัดลอกไปที่คลิ๊ปบอร์ด",
|
||||||
"psbt_tx_export": "ส่งไปที่ไฟล์",
|
"psbt_tx_export": "ส่งไปที่ไฟล์",
|
||||||
"psbt_tx_open": "เปิดธุรกรรมที่ลงนามไว้แล้ว",
|
"psbt_tx_open": "เปิดธุรกรรมที่ลงนามไว้แล้ว",
|
||||||
|
@ -164,7 +159,6 @@
|
||||||
"default_wallets": "ดูกระเป๋าสตางค์ทุกอัน",
|
"default_wallets": "ดูกระเป๋าสตางค์ทุกอัน",
|
||||||
"electrum_connected": "เชื่อมต่อแล้ว",
|
"electrum_connected": "เชื่อมต่อแล้ว",
|
||||||
"electrum_connected_not": "ไม่ได้เชื่อมต่อ",
|
"electrum_connected_not": "ไม่ได้เชื่อมต่อ",
|
||||||
"electrum_error_connect": "ไม่สามารถเชื่อมต่อไปยังเซิร์ฟเวอร์ Electrum ได้",
|
|
||||||
"electrum_saved": "บันทึกสำเร็จ ท่านอาจจำเป็นต้องรีสตาร์ท",
|
"electrum_saved": "บันทึกสำเร็จ ท่านอาจจำเป็นต้องรีสตาร์ท",
|
||||||
"electrum_settings_server": "เซิร์ฟเวอร์ Electrum",
|
"electrum_settings_server": "เซิร์ฟเวอร์ Electrum",
|
||||||
"electrum_status": "สถานะ",
|
"electrum_status": "สถานะ",
|
||||||
|
@ -205,9 +199,6 @@
|
||||||
"saved": "บันทึกแล้ว",
|
"saved": "บันทึกแล้ว",
|
||||||
"total_balance": "ยอดรวม"
|
"total_balance": "ยอดรวม"
|
||||||
},
|
},
|
||||||
"notifications": {
|
|
||||||
"ask_me_later": "ถามฉันภายหลัง"
|
|
||||||
},
|
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "ธุรกรรมนี้ไม่สามารทเปลี่ยนแทนได้",
|
"cancel_no": "ธุรกรรมนี้ไม่สามารทเปลี่ยนแทนได้",
|
||||||
"cancel_title": "ยกเลิกธุรกรรม (RBF)",
|
"cancel_title": "ยกเลิกธุรกรรม (RBF)",
|
||||||
|
@ -248,7 +239,6 @@
|
||||||
"details_advanced": "ขั้นสูง",
|
"details_advanced": "ขั้นสูง",
|
||||||
"details_are_you_sure": "คุณแน่ใจหรือไม่?",
|
"details_are_you_sure": "คุณแน่ใจหรือไม่?",
|
||||||
"details_connected_to": "เชื่อมไปที่",
|
"details_connected_to": "เชื่อมไปที่",
|
||||||
"details_del_wb_err": "จำนวนเงินไม่ตรงกับยอดเงินในกระเป๋าสตางค์",
|
|
||||||
"details_delete": "ลบ",
|
"details_delete": "ลบ",
|
||||||
"details_delete_wallet": "ลบกระเป๋าสตางค์",
|
"details_delete_wallet": "ลบกระเป๋าสตางค์",
|
||||||
"details_display": "แสดงในรายการกระเป๋าสตางค์",
|
"details_display": "แสดงในรายการกระเป๋าสตางค์",
|
||||||
|
|
|
@ -14,10 +14,7 @@
|
||||||
"save": "Kaydet",
|
"save": "Kaydet",
|
||||||
"seed": "Seed",
|
"seed": "Seed",
|
||||||
"success": "Başarılı",
|
"success": "Başarılı",
|
||||||
"wallet_key": "Cüzdan anahtarı",
|
"wallet_key": "Cüzdan anahtarı"
|
||||||
"invalid_animated_qr_code_fragment": "Geçersiz QRCode fragmanı. Lütfen tekrar deneyiniz.",
|
|
||||||
"file_saved": "Dosya {filepath} kaydedildi {destination}",
|
|
||||||
"downloads_folder": "İndirilenler Dosyası"
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "Uyarı"
|
"default": "Uyarı"
|
||||||
|
@ -49,15 +46,12 @@
|
||||||
"claim_balance": "Talep balansı (balans)",
|
"claim_balance": "Talep balansı (balans)",
|
||||||
"close_channel": "Kanalı kapa",
|
"close_channel": "Kanalı kapa",
|
||||||
"new_channel": "Yeni kanal",
|
"new_channel": "Yeni kanal",
|
||||||
"errorInvoiceExpired": "Fatura zaman aşımına uğradı",
|
|
||||||
"force_close_channel": "Kanalı kapamaya zorla",
|
"force_close_channel": "Kanalı kapamaya zorla",
|
||||||
"expired": "Süresi doldu",
|
"expired": "Süresi doldu",
|
||||||
"node_alias": "Node mahlası",
|
"node_alias": "Node mahlası",
|
||||||
"expiresIn": "{time} dakika içerisinde sona erer",
|
"expiresIn": "{time} dakika içerisinde sona erer",
|
||||||
"payButton": "Öde",
|
"payButton": "Öde",
|
||||||
"placeholder": "Fatura",
|
|
||||||
"open_channel": "Kanal aç",
|
"open_channel": "Kanal aç",
|
||||||
"funding_amount_placeholder": "Fonlama miktarı, örnek 0.001",
|
|
||||||
"opening_channnel_for_from": "{fromWalletLabel} tarafından fonlanan kanal {forWalletLabel} için aılıyor",
|
"opening_channnel_for_from": "{fromWalletLabel} tarafından fonlanan kanal {forWalletLabel} için aılıyor",
|
||||||
"are_you_sure_open_channel": "Bu kanalı açmak istediğinizden emin misiniz?",
|
"are_you_sure_open_channel": "Bu kanalı açmak istediğinizden emin misiniz?",
|
||||||
"refill": "Yükle",
|
"refill": "Yükle",
|
||||||
|
@ -76,7 +70,6 @@
|
||||||
"open_direct_channel": "Bu noda direkt kanal aç: ",
|
"open_direct_channel": "Bu noda direkt kanal aç: ",
|
||||||
"please_pay_between_and": "{min} ve {max} arasında bir ödeme yapın",
|
"please_pay_between_and": "{min} ve {max} arasında bir ödeme yapın",
|
||||||
"please_pay": "Lütfen ödeyin",
|
"please_pay": "Lütfen ödeyin",
|
||||||
"preimage": "Preimage",
|
|
||||||
"sats": "sats.",
|
"sats": "sats.",
|
||||||
"wasnt_paid_and_expired": "Bu fatura ödenmeden zaman aşımına uğradı."
|
"wasnt_paid_and_expired": "Bu fatura ödenmeden zaman aşımına uğradı."
|
||||||
},
|
},
|
||||||
|
@ -92,10 +85,7 @@
|
||||||
"title": "Makul Ret"
|
"title": "Makul Ret"
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask_no": "Hayır, kaydetmedim.",
|
"ok_lnd": "Tamam, kaydettim.",
|
||||||
"ask_yes": "Evet, kaydettim.",
|
|
||||||
"ok": "Evet, deftere yazdım.",
|
|
||||||
"ok_lnd": "Evet, kaydettim.",
|
|
||||||
"text_lnd": "Lütfen kurtarma kodunuzu kaydedin. Cüzdanınızı kayıp etmeniz durumunda onu geri oluşturabilmenizi sağlar.",
|
"text_lnd": "Lütfen kurtarma kodunuzu kaydedin. Cüzdanınızı kayıp etmeniz durumunda onu geri oluşturabilmenizi sağlar.",
|
||||||
"title": "Cüzdanınız oluşturuldu."
|
"title": "Cüzdanınız oluşturuldu."
|
||||||
},
|
},
|
||||||
|
@ -163,7 +153,6 @@
|
||||||
"permission_camera_message": "Kamerayı kullanmak için izin vermelisiniz.",
|
"permission_camera_message": "Kamerayı kullanmak için izin vermelisiniz.",
|
||||||
"psbt_sign": "Bir işlemi imzalayın",
|
"psbt_sign": "Bir işlemi imzalayın",
|
||||||
"open_settings": "Ayarları aç",
|
"open_settings": "Ayarları aç",
|
||||||
"permission_storage_later": "Daha sonra hatırlat",
|
|
||||||
"psbt_clipboard": "Panoya kopyala",
|
"psbt_clipboard": "Panoya kopyala",
|
||||||
"success_done": "Tamam"
|
"success_done": "Tamam"
|
||||||
},
|
},
|
||||||
|
@ -194,10 +183,6 @@
|
||||||
"saved": "Kaydedildi",
|
"saved": "Kaydedildi",
|
||||||
"total_balance": "Bakiye"
|
"total_balance": "Bakiye"
|
||||||
},
|
},
|
||||||
"notifications": {
|
|
||||||
"no_and_dont_ask": "Hayır, bir daha sorma",
|
|
||||||
"ask_me_later": "Daha sonra hatırlat"
|
|
||||||
},
|
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cpfp_create": "Oluştur",
|
"cpfp_create": "Oluştur",
|
||||||
"details_copy": "Kopya",
|
"details_copy": "Kopya",
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
"seed": "Сід",
|
"seed": "Сід",
|
||||||
"success": "Успіх",
|
"success": "Успіх",
|
||||||
"wallet_key": "Ключ гаманця",
|
"wallet_key": "Ключ гаманця",
|
||||||
"file_saved": "Файл {filePath} було збережено у вашому {destination}.",
|
|
||||||
"downloads_folder": "Папка Завантажень",
|
|
||||||
"close": "Закрити",
|
"close": "Закрити",
|
||||||
"change_input_currency": "Змінити валюту введення",
|
"change_input_currency": "Змінити валюту введення",
|
||||||
"refresh": "Оновити",
|
"refresh": "Оновити",
|
||||||
|
|
|
@ -15,9 +15,6 @@
|
||||||
"seed": "Hạt giống",
|
"seed": "Hạt giống",
|
||||||
"success": "Thành công",
|
"success": "Thành công",
|
||||||
"wallet_key": "Khóa ví",
|
"wallet_key": "Khóa ví",
|
||||||
"invalid_animated_qr_code_fragment": "Phần mã hoạt hình QR không hợp lệ. Vui lòng thử lại.",
|
|
||||||
"file_saved": "Tập tin {filePath} đã được lưu vào {destination} của bạn.",
|
|
||||||
"downloads_folder": "Thư mục tải xuống",
|
|
||||||
"close": "Đóng",
|
"close": "Đóng",
|
||||||
"change_input_currency": "Thay tiền tệ đầu vào",
|
"change_input_currency": "Thay tiền tệ đầu vào",
|
||||||
"refresh": "Làm mới",
|
"refresh": "Làm mới",
|
||||||
|
@ -57,7 +54,6 @@
|
||||||
"claim_balance": "Yêu cầu số dư {balance}",
|
"claim_balance": "Yêu cầu số dư {balance}",
|
||||||
"close_channel": "Đóng kênh",
|
"close_channel": "Đóng kênh",
|
||||||
"new_channel": "Kênh mới",
|
"new_channel": "Kênh mới",
|
||||||
"errorInvoiceExpired": "Hóa đơn hết hạn",
|
|
||||||
"force_close_channel": "Buộc đóng kênh",
|
"force_close_channel": "Buộc đóng kênh",
|
||||||
"expired": "Hết hạn",
|
"expired": "Hết hạn",
|
||||||
"node_alias": "Bí danh node",
|
"node_alias": "Bí danh node",
|
||||||
|
@ -65,17 +61,14 @@
|
||||||
"payButton": "Thanh toán",
|
"payButton": "Thanh toán",
|
||||||
"placeholder": "Hóa đơn hoặc địa chỉ",
|
"placeholder": "Hóa đơn hoặc địa chỉ",
|
||||||
"open_channel": "Mở kênh",
|
"open_channel": "Mở kênh",
|
||||||
"funding_amount_placeholder": "Số tiền tài trợ, ví dụ 0.001",
|
|
||||||
"opening_channnel_for_from": "Đang mở kênh cho ví {forWalletLabel} bằng cách tài trợ từ {fromWalletLabel}",
|
"opening_channnel_for_from": "Đang mở kênh cho ví {forWalletLabel} bằng cách tài trợ từ {fromWalletLabel}",
|
||||||
"are_you_sure_open_channel": "Bạn có chắc muốn mở kênh này không?",
|
"are_you_sure_open_channel": "Bạn có chắc muốn mở kênh này không?",
|
||||||
"potentialFee": "Phí tiềm năng: {fee}",
|
|
||||||
"remote_host": "Máy chủ từ xa",
|
"remote_host": "Máy chủ từ xa",
|
||||||
"refill": "Đổ đầy",
|
"refill": "Đổ đầy",
|
||||||
"reconnect_peer": "Kết nối lại với peer",
|
"reconnect_peer": "Kết nối lại với peer",
|
||||||
"refill_create": "Để tiếp tục, vui lòng tạo một ví Bitcoin để nạp tiền. ",
|
"refill_create": "Để tiếp tục, vui lòng tạo một ví Bitcoin để nạp tiền. ",
|
||||||
"refill_external": "Nạp lại với ví bên ngoài",
|
"refill_external": "Nạp lại với ví bên ngoài",
|
||||||
"refill_lnd_balance": "Nạp lại số dư ví Lightning",
|
"refill_lnd_balance": "Nạp lại số dư ví Lightning",
|
||||||
"sameWalletAsInvoiceError": "Bạn không thể thanh toán hóa đơn với cùng một ví được sử dụng để tạo nó.",
|
|
||||||
"title": "Quản lý quỹ",
|
"title": "Quản lý quỹ",
|
||||||
"can_send": "Gửi được",
|
"can_send": "Gửi được",
|
||||||
"can_receive": "Nhận được",
|
"can_receive": "Nhận được",
|
||||||
|
@ -88,7 +81,6 @@
|
||||||
"open_direct_channel": "Mở kênh trực tiếp với node này:",
|
"open_direct_channel": "Mở kênh trực tiếp với node này:",
|
||||||
"please_pay_between_and": "Vui lòng thanh toán từ {min} đến {max}",
|
"please_pay_between_and": "Vui lòng thanh toán từ {min} đến {max}",
|
||||||
"please_pay": "Vui lòng thanh toán",
|
"please_pay": "Vui lòng thanh toán",
|
||||||
"preimage": "Nghịch ảnh",
|
|
||||||
"sats": "sats.",
|
"sats": "sats.",
|
||||||
"wasnt_paid_and_expired": "Hoá đơn này chưa được thanh toán và đã hết hạn. "
|
"wasnt_paid_and_expired": "Hoá đơn này chưa được thanh toán và đã hết hạn. "
|
||||||
},
|
},
|
||||||
|
@ -106,13 +98,8 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "Bán đã lưu cụm từ sao lưu của ví chưa? Cụm từ này sẽ được yêu cầu để truy cập tiền của bạn trong trường hợp mất thiết bị này. Nếu không có cụm từ sao lưu thì tiền của bạn sẽ bị mất vĩnh viễn.",
|
"ask": "Bán đã lưu cụm từ sao lưu của ví chưa? Cụm từ này sẽ được yêu cầu để truy cập tiền của bạn trong trường hợp mất thiết bị này. Nếu không có cụm từ sao lưu thì tiền của bạn sẽ bị mất vĩnh viễn.",
|
||||||
"ask_no": "Không, tôi chưa lưu",
|
|
||||||
"ask_yes": "Vâng, tôi lưu rồi",
|
|
||||||
"ok": "OK, tôi viết ra rồi.",
|
|
||||||
"ok_lnd": "OK, tôi lưu rồi",
|
|
||||||
"text": "Vui lòng dành một chút thời gian để viết ra cụm từ ghi nhớ này trên một tờ giấy.\nBản sao lưu này có thể sử dùng để khôi phục ví của bạn.",
|
"text": "Vui lòng dành một chút thời gian để viết ra cụm từ ghi nhớ này trên một tờ giấy.\nBản sao lưu này có thể sử dùng để khôi phục ví của bạn.",
|
||||||
"text_lnd": "Vui lòng lưu bản sao lưu ví này dể bạn khôi phục ví trong trường hợp mất.",
|
"text_lnd": "Vui lòng lưu bản sao lưu ví này dể bạn khôi phục ví trong trường hợp mất."
|
||||||
"title": "Ví của bạn đã được tạo"
|
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "Tạo ",
|
"details_create": "Tạo ",
|
||||||
|
@ -160,9 +147,7 @@
|
||||||
"details_create": "Tạo hoá đơn",
|
"details_create": "Tạo hoá đơn",
|
||||||
"details_error_decode": "Không thể giải mã địa chỉ Bitcoin",
|
"details_error_decode": "Không thể giải mã địa chỉ Bitcoin",
|
||||||
"details_fee_field_is_not_valid": "Phí này không hợp lệ.",
|
"details_fee_field_is_not_valid": "Phí này không hợp lệ.",
|
||||||
"details_frozen": "{amount} BTC được đong lạnh",
|
|
||||||
"details_next": "Tiếp",
|
"details_next": "Tiếp",
|
||||||
"details_no_signed_tx": "Tệp đã chọn không có giao dịch được nhập. ",
|
|
||||||
"details_note_placeholder": "Lưu ý đến bản thân",
|
"details_note_placeholder": "Lưu ý đến bản thân",
|
||||||
"details_scan": "Quét",
|
"details_scan": "Quét",
|
||||||
"details_scan_hint": "Chạm đúp để quét hoặc nhập một đích đến",
|
"details_scan_hint": "Chạm đúp để quét hoặc nhập một đích đến",
|
||||||
|
@ -192,7 +177,6 @@
|
||||||
"permission_camera_message": "Chúng tôi cần sự cho phép của bạn đẻ sử dụng máy ảnh.",
|
"permission_camera_message": "Chúng tôi cần sự cho phép của bạn đẻ sử dụng máy ảnh.",
|
||||||
"psbt_sign": "Ký giao dịch",
|
"psbt_sign": "Ký giao dịch",
|
||||||
"open_settings": "Mở Cài đặt",
|
"open_settings": "Mở Cài đặt",
|
||||||
"permission_storage_later": "Hỏi tôi sau",
|
|
||||||
"permission_storage_message": "BlueWallet cần sự cho phép của bạn để truy cập lưu trữ và lưu tệp này.",
|
"permission_storage_message": "BlueWallet cần sự cho phép của bạn để truy cập lưu trữ và lưu tệp này.",
|
||||||
"permission_storage_denied_message": "BlueWallet không thể lưu tệp này. Vui lòng mở cài đặt thiết bị của bạn và bật Quyền lưu trữ. ",
|
"permission_storage_denied_message": "BlueWallet không thể lưu tệp này. Vui lòng mở cài đặt thiết bị của bạn và bật Quyền lưu trữ. ",
|
||||||
"permission_storage_title": "Quyền truy cập lưu trữ",
|
"permission_storage_title": "Quyền truy cập lưu trữ",
|
||||||
|
@ -203,7 +187,6 @@
|
||||||
"outdated_rate": "Tỷ lệ được cập nhật lần cuối: {date}",
|
"outdated_rate": "Tỷ lệ được cập nhật lần cuối: {date}",
|
||||||
"psbt_tx_open": "Mở giao dịch đã ký",
|
"psbt_tx_open": "Mở giao dịch đã ký",
|
||||||
"psbt_tx_scan": "Quét giao dịch đã ký",
|
"psbt_tx_scan": "Quét giao dịch đã ký",
|
||||||
"qr_error_no_qrcode": "Chúng tôi không tìm được mã QR trong hình ảnh đã chọn. Hãy xác minh rằng hình chỉ chứa mã QR và không chứa nội dung khác như văn bản hoặc nút.",
|
|
||||||
"reset_amount": "Đặt lại số tiền",
|
"reset_amount": "Đặt lại số tiền",
|
||||||
"reset_amount_confirm": "Bạn có muốn đặt lại số tiền không?",
|
"reset_amount_confirm": "Bạn có muốn đặt lại số tiền không?",
|
||||||
"success_done": "Đã xong",
|
"success_done": "Đã xong",
|
||||||
|
@ -242,7 +225,6 @@
|
||||||
"default_wallets": "Xem các ví",
|
"default_wallets": "Xem các ví",
|
||||||
"electrum_connected": "Đã kết nối",
|
"electrum_connected": "Đã kết nối",
|
||||||
"electrum_connected_not": "Chưa kết nối",
|
"electrum_connected_not": "Chưa kết nối",
|
||||||
"electrum_error_connect": "Không được kết nối với máy chủ Electrum đã cung cấp ",
|
|
||||||
"lndhub_uri": "Ví dụ: {example}",
|
"lndhub_uri": "Ví dụ: {example}",
|
||||||
"electrum_host": "Ví dụ: {example}",
|
"electrum_host": "Ví dụ: {example}",
|
||||||
"electrum_offline_mode": "Chế độ ngoại tuyến",
|
"electrum_offline_mode": "Chế độ ngoại tuyến",
|
||||||
|
@ -300,7 +282,6 @@
|
||||||
"privacy_read_clipboard": "Đọc bảng tạm",
|
"privacy_read_clipboard": "Đọc bảng tạm",
|
||||||
"privacy_system_settings": "Cài đặt hệ thống",
|
"privacy_system_settings": "Cài đặt hệ thống",
|
||||||
"privacy_quickactions": "Các phím tắt ví",
|
"privacy_quickactions": "Các phím tắt ví",
|
||||||
"privacy_quickactions_explanation": "Chạm và giữ biểu tượng ứng dụng BlueWallet trên màn hình Home để xem nhanh số dư ví của bạn.",
|
|
||||||
"privacy_clipboard_explanation": "Cung cấp phím tắt trong trường hợp một địa chỉ hoặc hóa đơn được tìm thấy trong bảng tạm của bạn.",
|
"privacy_clipboard_explanation": "Cung cấp phím tắt trong trường hợp một địa chỉ hoặc hóa đơn được tìm thấy trong bảng tạm của bạn.",
|
||||||
"privacy_do_not_track": "Vô hiệu hoá phân tích ",
|
"privacy_do_not_track": "Vô hiệu hoá phân tích ",
|
||||||
"privacy_do_not_track_explanation": "Thông tin về hiệu suất và độ tin cậy không sẽ được gửi để phân tích.",
|
"privacy_do_not_track_explanation": "Thông tin về hiệu suất và độ tin cậy không sẽ được gửi để phân tích.",
|
||||||
|
@ -310,16 +291,13 @@
|
||||||
"selfTest": "Tự kiểm tra",
|
"selfTest": "Tự kiểm tra",
|
||||||
"save": "Lưu",
|
"save": "Lưu",
|
||||||
"saved": "Đã lưu",
|
"saved": "Đã lưu",
|
||||||
"success_transaction_broadcasted": "Thành công! Giao dịch của bạn đã được phát sóng!",
|
|
||||||
"total_balance": "Tổng số dư",
|
"total_balance": "Tổng số dư",
|
||||||
"total_balance_explanation": "Hiển thị tổng số dư của các ví của bạn trong widget màn hình Home. ",
|
"total_balance_explanation": "Hiển thị tổng số dư của các ví của bạn trong widget màn hình Home. ",
|
||||||
"widgets": "Các widgets",
|
"widgets": "Các widgets",
|
||||||
"tools": "Các tools"
|
"tools": "Các tools"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "Bạn có muốn được thông báo khi nào nhận thanh toán đến không?",
|
"would_you_like_to_receive_notifications": "Bạn có muốn được thông báo khi nào nhận thanh toán đến không?"
|
||||||
"no_and_dont_ask": "Không, và đừng hỏi tôi nữa",
|
|
||||||
"ask_me_later": "Hỏi tôi sau"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_explain": "Chúng tôi sẽ thay thế giao dịch này với một cái có thanh toán cho bạn và có phí lớn hơn. Điều này hiệu quả hủy bỏ giao dịch hiện tại. Đây là RBF: Replace By Fee - Thay thế bằng phí.",
|
"cancel_explain": "Chúng tôi sẽ thay thế giao dịch này với một cái có thanh toán cho bạn và có phí lớn hơn. Điều này hiệu quả hủy bỏ giao dịch hiện tại. Đây là RBF: Replace By Fee - Thay thế bằng phí.",
|
||||||
|
@ -392,7 +370,6 @@
|
||||||
"details_advanced": "Nâng cao",
|
"details_advanced": "Nâng cao",
|
||||||
"details_are_you_sure": "Bạn có chắc không?",
|
"details_are_you_sure": "Bạn có chắc không?",
|
||||||
"details_connected_to": "Nối đến",
|
"details_connected_to": "Nối đến",
|
||||||
"details_del_wb_err": "Số tiền cung cấp không khớp với số dư của ví này. Vui lòng thử lại. ",
|
|
||||||
"details_del_wb_q": "Ví này có số dư. Trước khi tiếp tục, hãy nhớ rằng bạn không thể thu hồi vốn nếu không có cụm từ hạt giống của ví này. Ðể nhằm ngăn chặn việc xoá nhầm, vui lòng nhập số dư ví của bạn có {balance} satoshis.",
|
"details_del_wb_q": "Ví này có số dư. Trước khi tiếp tục, hãy nhớ rằng bạn không thể thu hồi vốn nếu không có cụm từ hạt giống của ví này. Ðể nhằm ngăn chặn việc xoá nhầm, vui lòng nhập số dư ví của bạn có {balance} satoshis.",
|
||||||
"details_delete": "Xoá",
|
"details_delete": "Xoá",
|
||||||
"details_delete_wallet": "Xoa ví",
|
"details_delete_wallet": "Xoa ví",
|
||||||
|
@ -429,16 +406,9 @@
|
||||||
"import_discovery_subtitle": "Chọn một ví được phát hiện",
|
"import_discovery_subtitle": "Chọn một ví được phát hiện",
|
||||||
"import_discovery_derivation": "Sử dụng đường dẫn xuất tùy chỉnh",
|
"import_discovery_derivation": "Sử dụng đường dẫn xuất tùy chỉnh",
|
||||||
"import_discovery_no_wallets": "Không tìm thấy ví.",
|
"import_discovery_no_wallets": "Không tìm thấy ví.",
|
||||||
"import_derivation_found": "đã tìm thấy",
|
|
||||||
"import_derivation_found_not": "không được tìm thấy",
|
|
||||||
"import_derivation_loading": "đang tải...",
|
|
||||||
"import_derivation_subtitle": "Nhập đường dẫn xuất tùy chỉnh. Chúng tồi sẽ cố gắng khám phá ví của bạn",
|
|
||||||
"import_derivation_title": "Đường dẫn xuất",
|
"import_derivation_title": "Đường dẫn xuất",
|
||||||
"import_derivation_unknown": "không xác định",
|
|
||||||
"import_wrong_path": "đường dẫn xuất sai",
|
|
||||||
"list_create_a_button": "Thêm ngay",
|
"list_create_a_button": "Thêm ngay",
|
||||||
"list_create_a_wallet": "Thêm ví",
|
"list_create_a_wallet": "Thêm ví",
|
||||||
"list_create_a_wallet_text": "Nó miễn phí và bạn có thể\ntạo bao nhiêu tuỳ thích.",
|
|
||||||
"list_empty_txs1": "Các giao dịch của bạn sẽ xuất hiện ở đây.",
|
"list_empty_txs1": "Các giao dịch của bạn sẽ xuất hiện ở đây.",
|
||||||
"list_empty_txs1_lightning": "Ví Lightning nên được sử dụng cho giao dịch hàng ngày. Có phí giao dịch rất nhỏ với tốc độ nhanh.",
|
"list_empty_txs1_lightning": "Ví Lightning nên được sử dụng cho giao dịch hàng ngày. Có phí giao dịch rất nhỏ với tốc độ nhanh.",
|
||||||
"list_empty_txs2": "Bắt đầu với ví của bạn.",
|
"list_empty_txs2": "Bắt đầu với ví của bạn.",
|
||||||
|
@ -503,20 +473,14 @@
|
||||||
"quorum_header": "Nhóm túc số ",
|
"quorum_header": "Nhóm túc số ",
|
||||||
"of": "của",
|
"of": "của",
|
||||||
"wallet_type": "Loại ví",
|
"wallet_type": "Loại ví",
|
||||||
"invalid_mnemonics": "Cụm ghi nhớ này trông không hợp lệ.",
|
|
||||||
"invalid_cosigner": "Dữ liệu khoá đồng ký không hợp lệ",
|
|
||||||
"not_a_multisignature_xpub": "Cái nài không phải là XPUB từ ví Multisig!",
|
"not_a_multisignature_xpub": "Cái nài không phải là XPUB từ ví Multisig!",
|
||||||
"invalid_cosigner_format": "Khoá đồng ký không đúng: không thể đồng ký cho định dạng {format}.",
|
|
||||||
"create_new_key": "Tạo mới",
|
"create_new_key": "Tạo mới",
|
||||||
"scan_or_open_file": "Quét hoặc mở tệp",
|
"scan_or_open_file": "Quét hoặc mở tệp",
|
||||||
"i_have_mnemonics": "Tôi có hạt giống cho chìa khoá này.",
|
"i_have_mnemonics": "Tôi có hạt giống cho chìa khoá này.",
|
||||||
"type_your_mnemonics": "Chèn một hạt giống để nhập khoá Vault hiện tại của bạn.",
|
"type_your_mnemonics": "Chèn một hạt giống để nhập khoá Vault hiện tại của bạn.",
|
||||||
"this_is_cosigners_xpub": "Đây là XPUB của khoá đồng ký, sẵn sàng để được nhập vào ví khác. Có an toàn để chia sẻ nó.",
|
|
||||||
"wallet_key_created": "Khoá Vault của bạn đã được tạo. Hãy dành một chút thời gian để sao lưu an toàn hạt giống ghi nhớ của bạn.",
|
"wallet_key_created": "Khoá Vault của bạn đã được tạo. Hãy dành một chút thời gian để sao lưu an toàn hạt giống ghi nhớ của bạn.",
|
||||||
"are_you_sure_seed_will_be_lost": "Bạn có chắc không? Hạt giống ghi nhớ của bạn sẽ bị mất nếu bạn không có bản sao lưu.",
|
"are_you_sure_seed_will_be_lost": "Bạn có chắc không? Hạt giống ghi nhớ của bạn sẽ bị mất nếu bạn không có bản sao lưu.",
|
||||||
"forget_this_seed": "Bỏ qua hạt giống này và sử dụng XPUB thay thế.",
|
"forget_this_seed": "Bỏ qua hạt giống này và sử dụng XPUB thay thế.",
|
||||||
"view_edit_cosigners": "Xem/Chỉnh sửa các khoá đồng ký",
|
|
||||||
"this_cosigner_is_already_imported": "Khoá đồng ký này đã được nhập rồi.",
|
|
||||||
"export_signed_psbt": "Xuất PBST đã ký",
|
"export_signed_psbt": "Xuất PBST đã ký",
|
||||||
"input_fp": "Nhập vân tay",
|
"input_fp": "Nhập vân tay",
|
||||||
"input_fp_explain": "Bỏ qua để sử dụng mặc định (00000000)",
|
"input_fp_explain": "Bỏ qua để sử dụng mặc định (00000000)",
|
||||||
|
@ -541,14 +505,12 @@
|
||||||
"owns": "{label} sở hữu {address}",
|
"owns": "{label} sở hữu {address}",
|
||||||
"enter_address": "Nhập địa chỉ",
|
"enter_address": "Nhập địa chỉ",
|
||||||
"check_address": "Kiểm tra địa chỉ",
|
"check_address": "Kiểm tra địa chỉ",
|
||||||
"no_wallet_owns_address": "Không có ví nào có sẵn sở hữu địa chỉ được cung cấp.",
|
"no_wallet_owns_address": "Không có ví nào có sẵn sở hữu địa chỉ được cung cấp."
|
||||||
"view_qrcode": "Xem mã QR"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "Tiền thừa",
|
"change": "Tiền thừa",
|
||||||
"coins_selected": "Coin đã chọn ({number})",
|
"coins_selected": "Coin đã chọn ({number})",
|
||||||
"selected_summ": "{value} đã được chọn",
|
"selected_summ": "{value} đã được chọn",
|
||||||
"empty": "Ví này không có coin hiện này",
|
|
||||||
"freeze": "Đóng băng",
|
"freeze": "Đóng băng",
|
||||||
"freezeLabel": "Đóng băng",
|
"freezeLabel": "Đóng băng",
|
||||||
"freezeLabel_un": "Giải tỏa",
|
"freezeLabel_un": "Giải tỏa",
|
||||||
|
|
|
@ -14,9 +14,7 @@
|
||||||
"save": "Berg",
|
"save": "Berg",
|
||||||
"seed": "Saad",
|
"seed": "Saad",
|
||||||
"success": "Sukses",
|
"success": "Sukses",
|
||||||
"wallet_key": "Beursie sleutel",
|
"wallet_key": "Beursie sleutel"
|
||||||
"file_saved": "Leêr {filePath} was gestoor in jou {destination}.",
|
|
||||||
"downloads_folder": "Aflaai Lëer"
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "Aandag"
|
"default": "Aandag"
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
"expired": "Iphelewe lixesha",
|
"expired": "Iphelewe lixesha",
|
||||||
"refill": "Gcwalisa",
|
"refill": "Gcwalisa",
|
||||||
"refill_lnd_balance": "Gcwalisa ingxowa yakho yemali",
|
"refill_lnd_balance": "Gcwalisa ingxowa yakho yemali",
|
||||||
|
"sameWalletAsInvoiceError": ": Awukwazi ukuhlawula i-invoyisi kunye ngengxowa oyisebenzisile ukudala leyo invoyisi.",
|
||||||
"title": "lawula imali"
|
"title": "lawula imali"
|
||||||
},
|
},
|
||||||
"plausibledeniability": {
|
"plausibledeniability": {
|
||||||
|
|
|
@ -14,10 +14,7 @@
|
||||||
"save": "保存",
|
"save": "保存",
|
||||||
"seed": "种子",
|
"seed": "种子",
|
||||||
"success": "成功",
|
"success": "成功",
|
||||||
"wallet_key": "钱包密钥",
|
"wallet_key": "钱包密钥"
|
||||||
"invalid_animated_qr_code_fragment": "无效的动态二维码,请重试。",
|
|
||||||
"file_saved": "文件已保存",
|
|
||||||
"downloads_folder": "下载文件夹"
|
|
||||||
},
|
},
|
||||||
"alert": {
|
"alert": {
|
||||||
"default": "提示"
|
"default": "提示"
|
||||||
|
@ -44,16 +41,13 @@
|
||||||
"lnd": {
|
"lnd": {
|
||||||
"active": "激活",
|
"active": "激活",
|
||||||
"inactive": "无效",
|
"inactive": "无效",
|
||||||
"errorInvoiceExpired": "账单已过期",
|
|
||||||
"expired": "已过期",
|
"expired": "已过期",
|
||||||
"payButton": "支付",
|
"payButton": "支付",
|
||||||
"placeholder": "账单",
|
|
||||||
"potentialFee": "潜在费用:{fee}",
|
|
||||||
"refill": "充值",
|
"refill": "充值",
|
||||||
"refill_create": "为了继续进行,请创建一个要充值的比特币钱包。",
|
"refill_create": "为了继续进行,请创建一个要充值的比特币钱包。",
|
||||||
"refill_external": "用外部钱包充值",
|
"refill_external": "用外部钱包充值",
|
||||||
"refill_lnd_balance": "给闪电钱包充值余额",
|
"refill_lnd_balance": "给闪电钱包充值余额",
|
||||||
"sameWalletAsInvoiceError": "你不能用创建账单的钱包去支付此账单",
|
"sameWalletAsInvoiceError": "你不能用创建账单的钱包去支付该账单",
|
||||||
"title": "管理资金"
|
"title": "管理资金"
|
||||||
},
|
},
|
||||||
"lndViewInvoice": {
|
"lndViewInvoice": {
|
||||||
|
@ -62,7 +56,6 @@
|
||||||
"lightning_invoice": "闪电账单",
|
"lightning_invoice": "闪电账单",
|
||||||
"open_direct_channel": "使用此节点来开啟直接频道:",
|
"open_direct_channel": "使用此节点来开啟直接频道:",
|
||||||
"please_pay": "请支付",
|
"please_pay": "请支付",
|
||||||
"preimage": "原像",
|
|
||||||
"sats": "聪",
|
"sats": "聪",
|
||||||
"wasnt_paid_and_expired": "此账单尚未支付,已过期。"
|
"wasnt_paid_and_expired": "此账单尚未支付,已过期。"
|
||||||
},
|
},
|
||||||
|
@ -80,9 +73,10 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "您是否保存了钱包的备份短语? 如果您丢失了此设备,则需要此备份短语来访问您的资金。没有此备份短语,您的资金将永久丢失。",
|
"ask": "您是否保存了钱包的备份短语? 如果您丢失了此设备,则需要此备份短语来访问您的资金。没有此备份短语,您的资金将永久丢失。",
|
||||||
"ask_no": "不,我还没有",
|
"ok": "好,我把它写下来了。",
|
||||||
"ask_yes": "是的,我完成了",
|
"ok_lnd": "OK!我已保存好,",
|
||||||
"text_lnd": "请保存此钱包备份。这个备份可以在装置遗失时用来恢复此钱包。"
|
"text_lnd": "请保存此钱包备份。这个备份可以在装置遗失时用来恢复此钱包。",
|
||||||
|
"title": "你的钱包已创建。"
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "创建",
|
"details_create": "创建",
|
||||||
|
@ -123,7 +117,6 @@
|
||||||
"details_error_decode": "错误:无法解密比特币地址",
|
"details_error_decode": "错误:无法解密比特币地址",
|
||||||
"details_fee_field_is_not_valid": "费用无效",
|
"details_fee_field_is_not_valid": "费用无效",
|
||||||
"details_next": "下一步",
|
"details_next": "下一步",
|
||||||
"details_no_signed_tx": "所选文件不包含可以导入的交易。",
|
|
||||||
"details_note_placeholder": "给自己的备注",
|
"details_note_placeholder": "给自己的备注",
|
||||||
"details_scan": "扫描",
|
"details_scan": "扫描",
|
||||||
"details_total_exceeds_balance": "发送金额超过可用馀额",
|
"details_total_exceeds_balance": "发送金额超过可用馀额",
|
||||||
|
@ -149,7 +142,6 @@
|
||||||
"permission_camera_message": "我们需要您的授权许可才能使用您的相机。",
|
"permission_camera_message": "我们需要您的授权许可才能使用您的相机。",
|
||||||
"psbt_sign": "签署一笔交易",
|
"psbt_sign": "签署一笔交易",
|
||||||
"open_settings": "打开设置",
|
"open_settings": "打开设置",
|
||||||
"permission_storage_later": "等会问我",
|
|
||||||
"permission_storage_message": "BlueWallet需要您的授权许可才能访问您的存储空间以保存此文件。",
|
"permission_storage_message": "BlueWallet需要您的授权许可才能访问您的存储空间以保存此文件。",
|
||||||
"permission_storage_title": "存储访问权限",
|
"permission_storage_title": "存储访问权限",
|
||||||
"psbt_clipboard": "复制到剪贴板",
|
"psbt_clipboard": "复制到剪贴板",
|
||||||
|
@ -189,7 +181,6 @@
|
||||||
"default_wallets": "查看所有钱包",
|
"default_wallets": "查看所有钱包",
|
||||||
"electrum_connected": "已连接",
|
"electrum_connected": "已连接",
|
||||||
"electrum_connected_not": "未连接",
|
"electrum_connected_not": "未连接",
|
||||||
"electrum_error_connect": "无法连接到提供的Electrum服务器",
|
|
||||||
"lndhub_uri": "举例:{example}",
|
"lndhub_uri": "举例:{example}",
|
||||||
"electrum_host": "举例:{example}",
|
"electrum_host": "举例:{example}",
|
||||||
"electrum_offline_mode": "离线模式",
|
"electrum_offline_mode": "离线模式",
|
||||||
|
@ -237,7 +228,6 @@
|
||||||
"privacy_read_clipboard": "阅读剪贴板",
|
"privacy_read_clipboard": "阅读剪贴板",
|
||||||
"privacy_system_settings": "系统设置",
|
"privacy_system_settings": "系统设置",
|
||||||
"privacy_quickactions": "钱包捷径",
|
"privacy_quickactions": "钱包捷径",
|
||||||
"privacy_quickactions_explanation": "触碰并按住主屏幕上的BlueWallet应用图标,以快速查看您的钱包余额。",
|
|
||||||
"privacy_clipboard_explanation": "如果在剪贴板中找到地址或发票,请提供捷径。",
|
"privacy_clipboard_explanation": "如果在剪贴板中找到地址或发票,请提供捷径。",
|
||||||
"push_notifications": "推送通知",
|
"push_notifications": "推送通知",
|
||||||
"retype_password": "再次输入密码",
|
"retype_password": "再次输入密码",
|
||||||
|
@ -250,9 +240,7 @@
|
||||||
"tools": "工具"
|
"tools": "工具"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "您想在收到款项时得到通知吗?",
|
"would_you_like_to_receive_notifications": "您想在收到款项时得到通知吗?"
|
||||||
"no_and_dont_ask": "不,不要再问我",
|
|
||||||
"ask_me_later": "待会问我"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "此交易不可替换。",
|
"cancel_no": "此交易不可替换。",
|
||||||
|
@ -310,7 +298,6 @@
|
||||||
"details_advanced": "进阶的",
|
"details_advanced": "进阶的",
|
||||||
"details_are_you_sure": "你确认么?",
|
"details_are_you_sure": "你确认么?",
|
||||||
"details_connected_to": "连接到",
|
"details_connected_to": "连接到",
|
||||||
"details_del_wb_err": "提供的余额与此钱包的余额不匹配,请再试一遍。",
|
|
||||||
"details_delete": "删除",
|
"details_delete": "删除",
|
||||||
"details_delete_wallet": "删除钱包",
|
"details_delete_wallet": "删除钱包",
|
||||||
"details_derivation_path": "推导路径",
|
"details_derivation_path": "推导路径",
|
||||||
|
@ -338,10 +325,8 @@
|
||||||
"import_scan_qr": "扫描或导入一个档案",
|
"import_scan_qr": "扫描或导入一个档案",
|
||||||
"import_success": "你的钱包已成功导入。",
|
"import_success": "你的钱包已成功导入。",
|
||||||
"import_title": "导入",
|
"import_title": "导入",
|
||||||
"import_derivation_unknown": "未知",
|
|
||||||
"list_create_a_button": "现在添加",
|
"list_create_a_button": "现在添加",
|
||||||
"list_create_a_wallet": "添加钱包",
|
"list_create_a_wallet": "添加钱包",
|
||||||
"list_create_a_wallet_text": "这是免费的,您可以创建\n喜欢多少就多少。",
|
|
||||||
"list_empty_txs1": "你的交易将在这里展示",
|
"list_empty_txs1": "你的交易将在这里展示",
|
||||||
"list_empty_txs1_lightning": "应使用闪电钱包进行日常交易。费用超便宜而且速度飞快。",
|
"list_empty_txs1_lightning": "应使用闪电钱包进行日常交易。费用超便宜而且速度飞快。",
|
||||||
"list_empty_txs2": "从你的钱包开始。",
|
"list_empty_txs2": "从你的钱包开始。",
|
||||||
|
@ -405,19 +390,14 @@
|
||||||
"quorum_header": "法定人数",
|
"quorum_header": "法定人数",
|
||||||
"of": "的",
|
"of": "的",
|
||||||
"wallet_type": "钱包类型",
|
"wallet_type": "钱包类型",
|
||||||
"invalid_mnemonics": "这个助记短语似乎无效。",
|
|
||||||
"not_a_multisignature_xpub": "这不是来自多重签名钱包的公钥!",
|
"not_a_multisignature_xpub": "这不是来自多重签名钱包的公钥!",
|
||||||
"invalid_cosigner_format": "不正确的签名人:这不是{format}格式的签名人。",
|
|
||||||
"create_new_key": "创建新的",
|
"create_new_key": "创建新的",
|
||||||
"scan_or_open_file": "扫描或打开文件",
|
"scan_or_open_file": "扫描或打开文件",
|
||||||
"i_have_mnemonics": "我有这个密钥的种子。",
|
"i_have_mnemonics": "我有这个密钥的种子。",
|
||||||
"type_your_mnemonics": "插入种子以导入现有的保管库密钥。",
|
"type_your_mnemonics": "插入种子以导入现有的保管库密钥。",
|
||||||
"this_is_cosigners_xpub": "这是共同签名者的公钥,可以导入另一个钱包。 分享是安全的。",
|
|
||||||
"wallet_key_created": "您的保管库密钥已创建。花点时间安全地备份您的助记符种子。",
|
"wallet_key_created": "您的保管库密钥已创建。花点时间安全地备份您的助记符种子。",
|
||||||
"are_you_sure_seed_will_be_lost": "你确定吗? 如果没有备份,助记符种子将丢失。",
|
"are_you_sure_seed_will_be_lost": "你确定吗? 如果没有备份,助记符种子将丢失。",
|
||||||
"forget_this_seed": "忘记此种子,而是使用公钥。",
|
"forget_this_seed": "忘记此种子,而是使用公钥。",
|
||||||
"view_edit_cosigners": "查看/编辑共同签名者",
|
|
||||||
"this_cosigner_is_already_imported": "此共同签名者已经被导入。",
|
|
||||||
"export_signed_psbt": "导出已签名的PSBT",
|
"export_signed_psbt": "导出已签名的PSBT",
|
||||||
"input_fp": "输入指纹",
|
"input_fp": "输入指纹",
|
||||||
"input_fp_explain": "跳过以使用默认值(00000000)",
|
"input_fp_explain": "跳过以使用默认值(00000000)",
|
||||||
|
@ -440,13 +420,11 @@
|
||||||
"owns": "{label}拥有{address}",
|
"owns": "{label}拥有{address}",
|
||||||
"enter_address": "输入地址",
|
"enter_address": "输入地址",
|
||||||
"check_address": "检查地址",
|
"check_address": "检查地址",
|
||||||
"no_wallet_owns_address": "没有可用的钱包拥有提供的地址。",
|
"no_wallet_owns_address": "没有可用的钱包拥有提供的地址。"
|
||||||
"view_qrcode": "查看二维码"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "更变",
|
"change": "更变",
|
||||||
"coins_selected": "所选的币({number})",
|
"coins_selected": "所选的币({number})",
|
||||||
"empty": "此钱包目前没有币。",
|
|
||||||
"freeze": "冻结",
|
"freeze": "冻结",
|
||||||
"freezeLabel": "冻结",
|
"freezeLabel": "冻结",
|
||||||
"freezeLabel_un": "解冻",
|
"freezeLabel_un": "解冻",
|
||||||
|
|
|
@ -14,9 +14,7 @@
|
||||||
"save": "儲存",
|
"save": "儲存",
|
||||||
"seed": "種子",
|
"seed": "種子",
|
||||||
"success": "成功",
|
"success": "成功",
|
||||||
"wallet_key": "錢包密鑰",
|
"wallet_key": "錢包密鑰"
|
||||||
"invalid_animated_qr_code_fragment": "無效的動態二維碼,請重試。",
|
|
||||||
"downloads_folder": "下載資料夾"
|
|
||||||
},
|
},
|
||||||
"azteco": {
|
"azteco": {
|
||||||
"codeIs": "您的優惠碼爲",
|
"codeIs": "您的優惠碼爲",
|
||||||
|
@ -38,16 +36,13 @@
|
||||||
"network": "網路錯誤"
|
"network": "網路錯誤"
|
||||||
},
|
},
|
||||||
"lnd": {
|
"lnd": {
|
||||||
"errorInvoiceExpired": "賬單已過期",
|
|
||||||
"expired": "已過期",
|
"expired": "已過期",
|
||||||
"payButton": "支付",
|
"payButton": "支付",
|
||||||
"placeholder": "賬單",
|
|
||||||
"potentialFee": "潛在費用:{fee}",
|
|
||||||
"refill": "增值",
|
"refill": "增值",
|
||||||
"refill_create": "爲了繼續進行,請建立一個要增值的比特幣錢包。",
|
"refill_create": "爲了繼續進行,請建立一個要增值的比特幣錢包。",
|
||||||
"refill_external": "用外部錢包增值",
|
"refill_external": "用外部錢包增值",
|
||||||
"refill_lnd_balance": "給閃電錢包增值",
|
"refill_lnd_balance": "給閃電錢包增值",
|
||||||
"sameWalletAsInvoiceError": "你不能用建立賬單的錢包去支付該賬單。",
|
"sameWalletAsInvoiceError": "你不能用建立賬單的錢包去支付該賬單",
|
||||||
"title": "管理資金",
|
"title": "管理資金",
|
||||||
"can_send": "能傳送",
|
"can_send": "能傳送",
|
||||||
"can_receive": "能接收"
|
"can_receive": "能接收"
|
||||||
|
@ -58,7 +53,6 @@
|
||||||
"lightning_invoice": "閃電賬單",
|
"lightning_invoice": "閃電賬單",
|
||||||
"open_direct_channel": "使用此節點來開啟直接頻道:",
|
"open_direct_channel": "使用此節點來開啟直接頻道:",
|
||||||
"please_pay": "請付款",
|
"please_pay": "請付款",
|
||||||
"preimage": "原像",
|
|
||||||
"sats": "聰",
|
"sats": "聰",
|
||||||
"wasnt_paid_and_expired": "此賬單尚未付款,已過期。"
|
"wasnt_paid_and_expired": "此賬單尚未付款,已過期。"
|
||||||
},
|
},
|
||||||
|
@ -76,9 +70,10 @@
|
||||||
},
|
},
|
||||||
"pleasebackup": {
|
"pleasebackup": {
|
||||||
"ask": "您是否保存了錢包的備份短語? 如果您丟失了此設備,則需要此備份短語來訪問您的資金。沒有此備份短語,您的資金將永久丟失。",
|
"ask": "您是否保存了錢包的備份短語? 如果您丟失了此設備,則需要此備份短語來訪問您的資金。沒有此備份短語,您的資金將永久丟失。",
|
||||||
"ask_no": "不,我還沒有",
|
"ok": "好,我把它写下来了。",
|
||||||
"ask_yes": "是的,我完成了",
|
"ok_lnd": "好的,我已經儲存了",
|
||||||
"text_lnd": "請儲存此錢包備份。這個備份可以在裝置遺失時用來恢複此錢包。"
|
"text_lnd": "請儲存此錢包備份。這個備份可以在裝置遺失時用來恢複此錢包。",
|
||||||
|
"title": "你的錢包已被建立。"
|
||||||
},
|
},
|
||||||
"receive": {
|
"receive": {
|
||||||
"details_create": "建立",
|
"details_create": "建立",
|
||||||
|
@ -119,7 +114,6 @@
|
||||||
"details_error_decode": "錯誤:無法解密比特幣地址",
|
"details_error_decode": "錯誤:無法解密比特幣地址",
|
||||||
"details_fee_field_is_not_valid": "費用無效",
|
"details_fee_field_is_not_valid": "費用無效",
|
||||||
"details_next": "下一個",
|
"details_next": "下一個",
|
||||||
"details_no_signed_tx": "所選檔案不包含可以匯入的交易。",
|
|
||||||
"details_note_placeholder": "給自己的訊息",
|
"details_note_placeholder": "給自己的訊息",
|
||||||
"details_scan": "掃描",
|
"details_scan": "掃描",
|
||||||
"details_total_exceeds_balance": "發送金額超過可用結餘",
|
"details_total_exceeds_balance": "發送金額超過可用結餘",
|
||||||
|
@ -145,7 +139,6 @@
|
||||||
"permission_camera_message": "我們需要您的授權許可才能使用您的相機。",
|
"permission_camera_message": "我們需要您的授權許可才能使用您的相機。",
|
||||||
"psbt_sign": "簽署一單交易",
|
"psbt_sign": "簽署一單交易",
|
||||||
"open_settings": "開啟設定",
|
"open_settings": "開啟設定",
|
||||||
"permission_storage_later": "稍後問我",
|
|
||||||
"permission_storage_message": "BlueWallet需要您的授權許可才能訪問您的儲存空間以儲存此檔案。",
|
"permission_storage_message": "BlueWallet需要您的授權許可才能訪問您的儲存空間以儲存此檔案。",
|
||||||
"permission_storage_title": "儲存訪問權限",
|
"permission_storage_title": "儲存訪問權限",
|
||||||
"psbt_clipboard": "複製到剪貼簿",
|
"psbt_clipboard": "複製到剪貼簿",
|
||||||
|
@ -185,7 +178,6 @@
|
||||||
"default_wallets": "查看所有錢包",
|
"default_wallets": "查看所有錢包",
|
||||||
"electrum_connected": "已連接",
|
"electrum_connected": "已連接",
|
||||||
"electrum_connected_not": "未連接",
|
"electrum_connected_not": "未連接",
|
||||||
"electrum_error_connect": "無法連接到提供的Electrum伺服器",
|
|
||||||
"electrum_saved": "您的更變已成功儲存。要使更變生效,可能需要重新啟動BlueWallet。",
|
"electrum_saved": "您的更變已成功儲存。要使更變生效,可能需要重新啟動BlueWallet。",
|
||||||
"set_electrum_server_as_default": "將{server}設定為預設的Electrum伺服器?",
|
"set_electrum_server_as_default": "將{server}設定為預設的Electrum伺服器?",
|
||||||
"set_lndhub_as_default": "將{url}設定為預設的LNDHub伺服器?",
|
"set_lndhub_as_default": "將{url}設定為預設的LNDHub伺服器?",
|
||||||
|
@ -230,7 +222,6 @@
|
||||||
"privacy_read_clipboard": "讀取剪貼板",
|
"privacy_read_clipboard": "讀取剪貼板",
|
||||||
"privacy_system_settings": "系統設定",
|
"privacy_system_settings": "系統設定",
|
||||||
"privacy_quickactions": "錢包捷徑",
|
"privacy_quickactions": "錢包捷徑",
|
||||||
"privacy_quickactions_explanation": "觸碰並按住主屏幕上的BlueWallet應用圖標,以快速查看您的錢包結餘。",
|
|
||||||
"privacy_clipboard_explanation": "如果在剪貼簿中找到地址或賬單,請提供捷徑。",
|
"privacy_clipboard_explanation": "如果在剪貼簿中找到地址或賬單,請提供捷徑。",
|
||||||
"push_notifications": "推送通知",
|
"push_notifications": "推送通知",
|
||||||
"retype_password": "再次輸入密碼",
|
"retype_password": "再次輸入密碼",
|
||||||
|
@ -243,9 +234,7 @@
|
||||||
"tools": "工具"
|
"tools": "工具"
|
||||||
},
|
},
|
||||||
"notifications": {
|
"notifications": {
|
||||||
"would_you_like_to_receive_notifications": "您想在收到款項時得到通知嗎?",
|
"would_you_like_to_receive_notifications": "您想在收到款項時得到通知嗎?"
|
||||||
"no_and_dont_ask": "不,不要再問我",
|
|
||||||
"ask_me_later": "稍後問我"
|
|
||||||
},
|
},
|
||||||
"transactions": {
|
"transactions": {
|
||||||
"cancel_no": "此交易不可替換。",
|
"cancel_no": "此交易不可替換。",
|
||||||
|
@ -303,7 +292,6 @@
|
||||||
"details_advanced": "進階的",
|
"details_advanced": "進階的",
|
||||||
"details_are_you_sure": "你確定嗎?",
|
"details_are_you_sure": "你確定嗎?",
|
||||||
"details_connected_to": "連接到",
|
"details_connected_to": "連接到",
|
||||||
"details_del_wb_err": "提供的結餘與此錢包的結餘不匹配,請再試一遍。",
|
|
||||||
"details_delete": "移除",
|
"details_delete": "移除",
|
||||||
"details_delete_wallet": "移除錢包",
|
"details_delete_wallet": "移除錢包",
|
||||||
"details_derivation_path": "推導路徑",
|
"details_derivation_path": "推導路徑",
|
||||||
|
@ -330,11 +318,8 @@
|
||||||
"import_success": "成功",
|
"import_success": "成功",
|
||||||
"import_title": "匯入",
|
"import_title": "匯入",
|
||||||
"import_discovery_title": "探索",
|
"import_discovery_title": "探索",
|
||||||
"import_derivation_loading": "讀取中...",
|
|
||||||
"import_derivation_unknown": "未知",
|
|
||||||
"list_create_a_button": "立即添加",
|
"list_create_a_button": "立即添加",
|
||||||
"list_create_a_wallet": "建立一個錢包",
|
"list_create_a_wallet": "建立一個錢包",
|
||||||
"list_create_a_wallet_text": "這是免費的,您可以建立\n喜歡多少就多少。",
|
|
||||||
"list_empty_txs1": "你的交易將在這裡展示",
|
"list_empty_txs1": "你的交易將在這裡展示",
|
||||||
"list_empty_txs1_lightning": "應使用閃電錢包進行日常交易。費用超便宜而且速度飛快。",
|
"list_empty_txs1_lightning": "應使用閃電錢包進行日常交易。費用超便宜而且速度飛快。",
|
||||||
"list_empty_txs2": "從你的錢包開始。",
|
"list_empty_txs2": "從你的錢包開始。",
|
||||||
|
@ -398,19 +383,14 @@
|
||||||
"quorum_header": "法定人數",
|
"quorum_header": "法定人數",
|
||||||
"of": "的",
|
"of": "的",
|
||||||
"wallet_type": "錢包類型",
|
"wallet_type": "錢包類型",
|
||||||
"invalid_mnemonics": "這個助記短語似乎無效。",
|
|
||||||
"not_a_multisignature_xpub": "這不是來自多重簽署錢包的公鑰!",
|
"not_a_multisignature_xpub": "這不是來自多重簽署錢包的公鑰!",
|
||||||
"invalid_cosigner_format": "不正確的簽名人:這不是{format}格式的簽名人。",
|
|
||||||
"create_new_key": "建立新的",
|
"create_new_key": "建立新的",
|
||||||
"scan_or_open_file": "掃描或開啟檔案",
|
"scan_or_open_file": "掃描或開啟檔案",
|
||||||
"i_have_mnemonics": "我有這個密鑰的種子。",
|
"i_have_mnemonics": "我有這個密鑰的種子。",
|
||||||
"type_your_mnemonics": "插入種子以匯入現有的保管庫密鑰。",
|
"type_your_mnemonics": "插入種子以匯入現有的保管庫密鑰。",
|
||||||
"this_is_cosigners_xpub": "這是共同簽名者的公鑰,可以導入另一個錢包。 分享是安全的。",
|
|
||||||
"wallet_key_created": "您的保管庫密鑰已建立,花點時間安全地備份您的助記符種子。",
|
"wallet_key_created": "您的保管庫密鑰已建立,花點時間安全地備份您的助記符種子。",
|
||||||
"are_you_sure_seed_will_be_lost": "你確定嗎? 如果沒有備份,助記符種子將丟失。",
|
"are_you_sure_seed_will_be_lost": "你確定嗎? 如果沒有備份,助記符種子將丟失。",
|
||||||
"forget_this_seed": "忘記此種子,而是使用公鑰。",
|
"forget_this_seed": "忘記此種子,而是使用公鑰。",
|
||||||
"view_edit_cosigners": "查看/編輯共同簽名者",
|
|
||||||
"this_cosigner_is_already_imported": "此共同簽名者已經被匯入。",
|
|
||||||
"export_signed_psbt": "匯出已簽名的PSBT",
|
"export_signed_psbt": "匯出已簽名的PSBT",
|
||||||
"input_fp": "輸入指紋",
|
"input_fp": "輸入指紋",
|
||||||
"input_fp_explain": "跳過以使用默認值(00000000)",
|
"input_fp_explain": "跳過以使用默認值(00000000)",
|
||||||
|
@ -433,13 +413,11 @@
|
||||||
"owns": "{label}擁有{address}",
|
"owns": "{label}擁有{address}",
|
||||||
"enter_address": "輸入地址",
|
"enter_address": "輸入地址",
|
||||||
"check_address": "檢查地址",
|
"check_address": "檢查地址",
|
||||||
"no_wallet_owns_address": "沒有可用的錢包擁有提供的地址。",
|
"no_wallet_owns_address": "沒有可用的錢包擁有提供的地址。"
|
||||||
"view_qrcode": "檢視二維條碼"
|
|
||||||
},
|
},
|
||||||
"cc": {
|
"cc": {
|
||||||
"change": "更變。",
|
"change": "更變。",
|
||||||
"coins_selected": "所選的幣({number})",
|
"coins_selected": "所選的幣({number})",
|
||||||
"empty": "此錢包目前沒有幣。",
|
|
||||||
"freeze": "凍結",
|
"freeze": "凍結",
|
||||||
"freezeLabel": "凍結",
|
"freezeLabel": "凍結",
|
||||||
"freezeLabel_un": "解凍",
|
"freezeLabel_un": "解凍",
|
||||||
|
|
|
@ -80,21 +80,21 @@ const RateExtractors = {
|
||||||
const response = await fetch('https://www.bnr.ro/nbrfxrates.xml');
|
const response = await fetch('https://www.bnr.ro/nbrfxrates.xml');
|
||||||
const xmlData = await response.text();
|
const xmlData = await response.text();
|
||||||
|
|
||||||
const targetCurrency = 'USD';
|
// Fetching USD to RON rate
|
||||||
|
const pattern = /<Rate currency="USD">([\d.]+)<\/Rate>/;
|
||||||
const pattern = new RegExp(`<Rate currency="${targetCurrency}">([\\d.]+)<\\/Rate>`);
|
|
||||||
|
|
||||||
const matches = xmlData.match(pattern);
|
const matches = xmlData.match(pattern);
|
||||||
|
|
||||||
if (matches && matches[1]) {
|
if (matches && matches[1]) {
|
||||||
const ronExchangeRate = parseFloat(matches[1]);
|
const usdToRonRate = parseFloat(matches[1]);
|
||||||
|
if (!isNaN(usdToRonRate) && usdToRonRate > 0) {
|
||||||
|
// Fetch BTC to USD rate using CoinGecko extractor
|
||||||
|
const btcToUsdRate = await RateExtractors.CoinGecko('USD');
|
||||||
|
|
||||||
if (!isNaN(ronExchangeRate) && ronExchangeRate > 0) {
|
// Convert BTC to RON using the USD to RON exchange rate
|
||||||
return ronExchangeRate;
|
return btcToUsdRate * usdToRonRate;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
throw new Error('Could not find a valid exchange rate for USD to RON');
|
||||||
throw new Error(`Could not find a valid exchange rate for ${targetCurrency}`);
|
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
throw new Error(`Could not fetch RON exchange rate: ${error.message}`);
|
throw new Error(`Could not fetch RON exchange rate: ${error.message}`);
|
||||||
}
|
}
|
||||||
|
|
74
package-lock.json
generated
74
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "bluewallet",
|
"name": "bluewallet",
|
||||||
"version": "6.4.15",
|
"version": "6.4.17",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "bluewallet",
|
"name": "bluewallet",
|
||||||
"version": "6.4.15",
|
"version": "6.4.17",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
"@react-navigation/native-stack": "6.9.17",
|
"@react-navigation/native-stack": "6.9.17",
|
||||||
"@remobile/react-native-qrcode-local-image": "https://github.com/BlueWallet/react-native-qrcode-local-image",
|
"@remobile/react-native-qrcode-local-image": "https://github.com/BlueWallet/react-native-qrcode-local-image",
|
||||||
"@spsina/bip47": "github:BlueWallet/bip47#0a2f02c90350802f2ec93afa4e6c8843be2d687c",
|
"@spsina/bip47": "github:BlueWallet/bip47#0a2f02c90350802f2ec93afa4e6c8843be2d687c",
|
||||||
"aez": "1.0.1",
|
"aezeed": "0.0.5",
|
||||||
"assert": "2.1.0",
|
"assert": "2.1.0",
|
||||||
"base-x": "3.0.9",
|
"base-x": "3.0.9",
|
||||||
"bc-bech32": "file:blue_modules/bc-bech32",
|
"bc-bech32": "file:blue_modules/bc-bech32",
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
"coinselect": "3.1.13",
|
"coinselect": "3.1.13",
|
||||||
"crypto-js": "4.2.0",
|
"crypto-js": "4.2.0",
|
||||||
"dayjs": "1.11.10",
|
"dayjs": "1.11.10",
|
||||||
"detox": "20.16.0",
|
"detox": "20.17.0",
|
||||||
"ecpair": "2.0.1",
|
"ecpair": "2.0.1",
|
||||||
"ecurve": "1.0.6",
|
"ecurve": "1.0.6",
|
||||||
"electrum-client": "https://github.com/BlueWallet/rn-electrum-client#76c0ea35e1a50c47f3a7f818d529ebd100161496",
|
"electrum-client": "https://github.com/BlueWallet/rn-electrum-client#76c0ea35e1a50c47f3a7f818d529ebd100161496",
|
||||||
|
@ -77,7 +77,7 @@
|
||||||
"react-native-ios-context-menu": "github:BlueWallet/react-native-ios-context-menu#v1.15.3",
|
"react-native-ios-context-menu": "github:BlueWallet/react-native-ios-context-menu#v1.15.3",
|
||||||
"react-native-keychain": "8.1.2",
|
"react-native-keychain": "8.1.2",
|
||||||
"react-native-linear-gradient": "2.8.3",
|
"react-native-linear-gradient": "2.8.3",
|
||||||
"react-native-localize": "3.0.5",
|
"react-native-localize": "3.0.6",
|
||||||
"react-native-modal": "13.0.1",
|
"react-native-modal": "13.0.1",
|
||||||
"react-native-obscure": "https://github.com/BlueWallet/react-native-obscure.git#f4b83b4a261e39b1f5ed4a45ac5bcabc8a59eadb",
|
"react-native-obscure": "https://github.com/BlueWallet/react-native-obscure.git#f4b83b4a261e39b1f5ed4a45ac5bcabc8a59eadb",
|
||||||
"react-native-passcode-auth": "https://github.com/BlueWallet/react-native-passcode-auth#a2ff977ba92b36f8d0a5567f59c05cc608e8bd12",
|
"react-native-passcode-auth": "https://github.com/BlueWallet/react-native-passcode-auth#a2ff977ba92b36f8d0a5567f59c05cc608e8bd12",
|
||||||
|
@ -6481,6 +6481,17 @@
|
||||||
"node": ">=8.10.0"
|
"node": ">=8.10.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/aezeed": {
|
||||||
|
"version": "0.0.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/aezeed/-/aezeed-0.0.5.tgz",
|
||||||
|
"integrity": "sha512-Tq4hRVPLWVIemgr05WdnyMtkyx9GKGcElI3uvP0B9DZ7amjwrA46f5uEgkh87mZUB/GEoK9Q0INku49dVpC+IQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"aez": "^1.0.1",
|
||||||
|
"crc-32": "^1.2.1",
|
||||||
|
"randombytes": "^2.1.0",
|
||||||
|
"scryptsy": "^2.1.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/ajv": {
|
"node_modules/ajv": {
|
||||||
"version": "8.12.0",
|
"version": "8.12.0",
|
||||||
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
|
||||||
|
@ -8495,6 +8506,17 @@
|
||||||
"buffer": "^5.1.0"
|
"buffer": "^5.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/crc-32": {
|
||||||
|
"version": "1.2.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
|
||||||
|
"integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==",
|
||||||
|
"bin": {
|
||||||
|
"crc32": "bin/crc32.njs"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.8"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/crc/node_modules/buffer": {
|
"node_modules/crc/node_modules/buffer": {
|
||||||
"version": "5.7.1",
|
"version": "5.7.1",
|
||||||
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
|
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
|
||||||
|
@ -8981,9 +9003,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/detox": {
|
"node_modules/detox": {
|
||||||
"version": "20.16.0",
|
"version": "20.17.0",
|
||||||
"resolved": "https://registry.npmjs.org/detox/-/detox-20.16.0.tgz",
|
"resolved": "https://registry.npmjs.org/detox/-/detox-20.17.0.tgz",
|
||||||
"integrity": "sha512-3gxIHdXW7uBGvZgN6/A2WakJO0Ocbw1nmTDMP4AUNDs7LWntZi8oEJI5/drOqianGog8lftOTGpFN94PpRlY6g==",
|
"integrity": "sha512-IasYgexfkrCoZuJTaqqKHQ2yflK+tnqifzdLwrp4hdTWlXUlG9j/YcM1Dn3ThSs3b6VNMtbSe6xoPkKD0oNiIQ==",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ajv": "^8.6.3",
|
"ajv": "^8.6.3",
|
||||||
|
@ -9026,7 +9048,7 @@
|
||||||
"detox": "local-cli/cli.js"
|
"detox": "local-cli/cli.js"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=14.14.0"
|
"node": ">=16"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"jest": "29.x.x || 28.x.x || ^27.2.5"
|
"jest": "29.x.x || 28.x.x || ^27.2.5"
|
||||||
|
@ -19087,9 +19109,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/react-native-localize": {
|
"node_modules/react-native-localize": {
|
||||||
"version": "3.0.5",
|
"version": "3.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/react-native-localize/-/react-native-localize-3.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/react-native-localize/-/react-native-localize-3.0.6.tgz",
|
||||||
"integrity": "sha512-tg3OzBY2654lgTrP2YYU4jMwk0ecWIoWLWCP6IAiiOgLiojo+A3NtroX84G3TpVHuCJ3mJkaTunVet5HVGS3AA==",
|
"integrity": "sha512-pfwwNKRfXcxp0LZEzj5oW2/uo5oZOhiQ4PYlg8uLlsl9pDLcWg03yLCHohTWKX02vE/BFz9hkrHT/nQtlO/iFg==",
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"react": ">=18.1.0",
|
"react": ">=18.1.0",
|
||||||
"react-native": ">=0.70.0",
|
"react-native": ">=0.70.0",
|
||||||
|
@ -26761,6 +26783,17 @@
|
||||||
"safe-buffer": "^5.1.1"
|
"safe-buffer": "^5.1.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"aezeed": {
|
||||||
|
"version": "0.0.5",
|
||||||
|
"resolved": "https://registry.npmjs.org/aezeed/-/aezeed-0.0.5.tgz",
|
||||||
|
"integrity": "sha512-Tq4hRVPLWVIemgr05WdnyMtkyx9GKGcElI3uvP0B9DZ7amjwrA46f5uEgkh87mZUB/GEoK9Q0INku49dVpC+IQ==",
|
||||||
|
"requires": {
|
||||||
|
"aez": "^1.0.1",
|
||||||
|
"crc-32": "^1.2.1",
|
||||||
|
"randombytes": "^2.1.0",
|
||||||
|
"scryptsy": "^2.1.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"ajv": {
|
"ajv": {
|
||||||
"version": "8.12.0",
|
"version": "8.12.0",
|
||||||
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
|
"resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz",
|
||||||
|
@ -28359,6 +28392,11 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"crc-32": {
|
||||||
|
"version": "1.2.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz",
|
||||||
|
"integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ=="
|
||||||
|
},
|
||||||
"create-ecdh": {
|
"create-ecdh": {
|
||||||
"version": "4.0.4",
|
"version": "4.0.4",
|
||||||
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz",
|
||||||
|
@ -28710,9 +28748,9 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"detox": {
|
"detox": {
|
||||||
"version": "20.16.0",
|
"version": "20.17.0",
|
||||||
"resolved": "https://registry.npmjs.org/detox/-/detox-20.16.0.tgz",
|
"resolved": "https://registry.npmjs.org/detox/-/detox-20.17.0.tgz",
|
||||||
"integrity": "sha512-3gxIHdXW7uBGvZgN6/A2WakJO0Ocbw1nmTDMP4AUNDs7LWntZi8oEJI5/drOqianGog8lftOTGpFN94PpRlY6g==",
|
"integrity": "sha512-IasYgexfkrCoZuJTaqqKHQ2yflK+tnqifzdLwrp4hdTWlXUlG9j/YcM1Dn3ThSs3b6VNMtbSe6xoPkKD0oNiIQ==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"ajv": "^8.6.3",
|
"ajv": "^8.6.3",
|
||||||
"bunyan": "^1.8.12",
|
"bunyan": "^1.8.12",
|
||||||
|
@ -36334,9 +36372,9 @@
|
||||||
"integrity": "sha512-KflAXZcEg54PXkLyflaSZQ3PJp4uC4whM7nT/Uot9m0e/qxFV3p6uor1983D1YOBJbJN7rrWdqIjq0T42jOJyA=="
|
"integrity": "sha512-KflAXZcEg54PXkLyflaSZQ3PJp4uC4whM7nT/Uot9m0e/qxFV3p6uor1983D1YOBJbJN7rrWdqIjq0T42jOJyA=="
|
||||||
},
|
},
|
||||||
"react-native-localize": {
|
"react-native-localize": {
|
||||||
"version": "3.0.5",
|
"version": "3.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/react-native-localize/-/react-native-localize-3.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/react-native-localize/-/react-native-localize-3.0.6.tgz",
|
||||||
"integrity": "sha512-tg3OzBY2654lgTrP2YYU4jMwk0ecWIoWLWCP6IAiiOgLiojo+A3NtroX84G3TpVHuCJ3mJkaTunVet5HVGS3AA=="
|
"integrity": "sha512-pfwwNKRfXcxp0LZEzj5oW2/uo5oZOhiQ4PYlg8uLlsl9pDLcWg03yLCHohTWKX02vE/BFz9hkrHT/nQtlO/iFg=="
|
||||||
},
|
},
|
||||||
"react-native-modal": {
|
"react-native-modal": {
|
||||||
"version": "13.0.1",
|
"version": "13.0.1",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bluewallet",
|
"name": "bluewallet",
|
||||||
"version": "6.4.15",
|
"version": "6.4.17",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -57,7 +57,6 @@
|
||||||
"test": "npm run tslint && npm run lint && npm run unit && npm run jest",
|
"test": "npm run tslint && npm run lint && npm run unit && npm run jest",
|
||||||
"jest": "jest -b tests/integration/*",
|
"jest": "jest -b tests/integration/*",
|
||||||
"windowspatches": "./scripts/windows-patches.sh",
|
"windowspatches": "./scripts/windows-patches.sh",
|
||||||
"maccatalystpatches": "./scripts/maccatalystpatches/applypatchesformaccatalyst.sh",
|
|
||||||
"e2e:debug-build": "detox build -c android.debug",
|
"e2e:debug-build": "detox build -c android.debug",
|
||||||
"e2e:debug-test": "detox test -c android.debug -d 200000 -l info",
|
"e2e:debug-test": "detox test -c android.debug -d 200000 -l info",
|
||||||
"e2e:debug": "(test -f android/app/build/outputs/apk/debug/app-debug.apk && test -f android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk) || npm run e2e:debug-build; npm run e2e:debug-test",
|
"e2e:debug": "(test -f android/app/build/outputs/apk/debug/app-debug.apk && test -f android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk) || npm run e2e:debug-build; npm run e2e:debug-test",
|
||||||
|
@ -109,7 +108,7 @@
|
||||||
"@react-navigation/native-stack": "6.9.17",
|
"@react-navigation/native-stack": "6.9.17",
|
||||||
"@remobile/react-native-qrcode-local-image": "https://github.com/BlueWallet/react-native-qrcode-local-image",
|
"@remobile/react-native-qrcode-local-image": "https://github.com/BlueWallet/react-native-qrcode-local-image",
|
||||||
"@spsina/bip47": "github:BlueWallet/bip47#0a2f02c90350802f2ec93afa4e6c8843be2d687c",
|
"@spsina/bip47": "github:BlueWallet/bip47#0a2f02c90350802f2ec93afa4e6c8843be2d687c",
|
||||||
"aez": "1.0.1",
|
"aezeed": "0.0.5",
|
||||||
"assert": "2.1.0",
|
"assert": "2.1.0",
|
||||||
"base-x": "3.0.9",
|
"base-x": "3.0.9",
|
||||||
"bc-bech32": "file:blue_modules/bc-bech32",
|
"bc-bech32": "file:blue_modules/bc-bech32",
|
||||||
|
@ -127,7 +126,7 @@
|
||||||
"coinselect": "3.1.13",
|
"coinselect": "3.1.13",
|
||||||
"crypto-js": "4.2.0",
|
"crypto-js": "4.2.0",
|
||||||
"dayjs": "1.11.10",
|
"dayjs": "1.11.10",
|
||||||
"detox": "20.16.0",
|
"detox": "20.17.0",
|
||||||
"ecpair": "2.0.1",
|
"ecpair": "2.0.1",
|
||||||
"ecurve": "1.0.6",
|
"ecurve": "1.0.6",
|
||||||
"electrum-client": "https://github.com/BlueWallet/rn-electrum-client#76c0ea35e1a50c47f3a7f818d529ebd100161496",
|
"electrum-client": "https://github.com/BlueWallet/rn-electrum-client#76c0ea35e1a50c47f3a7f818d529ebd100161496",
|
||||||
|
@ -162,7 +161,7 @@
|
||||||
"react-native-ios-context-menu": "github:BlueWallet/react-native-ios-context-menu#v1.15.3",
|
"react-native-ios-context-menu": "github:BlueWallet/react-native-ios-context-menu#v1.15.3",
|
||||||
"react-native-keychain": "8.1.2",
|
"react-native-keychain": "8.1.2",
|
||||||
"react-native-linear-gradient": "2.8.3",
|
"react-native-linear-gradient": "2.8.3",
|
||||||
"react-native-localize": "3.0.5",
|
"react-native-localize": "3.0.6",
|
||||||
"react-native-modal": "13.0.1",
|
"react-native-modal": "13.0.1",
|
||||||
"react-native-obscure": "https://github.com/BlueWallet/react-native-obscure.git#f4b83b4a261e39b1f5ed4a45ac5bcabc8a59eadb",
|
"react-native-obscure": "https://github.com/BlueWallet/react-native-obscure.git#f4b83b4a261e39b1f5ed4a45ac5bcabc8a59eadb",
|
||||||
"react-native-passcode-auth": "https://github.com/BlueWallet/react-native-passcode-auth#a2ff977ba92b36f8d0a5567f59c05cc608e8bd12",
|
"react-native-passcode-auth": "https://github.com/BlueWallet/react-native-passcode-auth#a2ff977ba92b36f8d0a5567f59c05cc608e8bd12",
|
||||||
|
|
11
react-native.config.js
Normal file
11
react-native.config.js
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
// react-native.config.js
|
||||||
|
module.exports = {
|
||||||
|
dependencies: {
|
||||||
|
'rn-ldk': {
|
||||||
|
platforms: {
|
||||||
|
ios: null, // Disable autolinking for ios
|
||||||
|
// android: null, // Uncomment if you also want to disable autolinking for Android
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
|
@ -42,7 +42,7 @@ export default class Selftest extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
onPressSaveToStorage = () => {
|
onPressSaveToStorage = () => {
|
||||||
fs.writeFileAndExport('bluewallet-storagesave-test.txt', 'Success');
|
fs.writeFileAndExport('bluewallet-storagesave-test.txt', 'Success on ' + new Date().toUTCString());
|
||||||
};
|
};
|
||||||
|
|
||||||
onPressImportDocument = async () => {
|
onPressImportDocument = async () => {
|
||||||
|
@ -318,7 +318,7 @@ export default class Selftest extends Component {
|
||||||
<BlueSpacing20 />
|
<BlueSpacing20 />
|
||||||
<Button title="Test Save to Storage" onPress={this.onPressSaveToStorage} />
|
<Button title="Test Save to Storage" onPress={this.onPressSaveToStorage} />
|
||||||
<BlueSpacing20 />
|
<BlueSpacing20 />
|
||||||
<Button title="Test Save to File Import" onPress={this.onPressImportDocument} />
|
<Button title="Test File Import" onPress={this.onPressImportDocument} />
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
</BlueCard>
|
</BlueCard>
|
||||||
</SafeArea>
|
</SafeArea>
|
||||||
|
|
|
@ -47,7 +47,7 @@ const Currency = () => {
|
||||||
|
|
||||||
useLayoutEffect(() => {
|
useLayoutEffect(() => {
|
||||||
setOptions({
|
setOptions({
|
||||||
searchBar: {
|
headerSearchBarOptions: {
|
||||||
onChangeText: event => setSearch(event.nativeEvent.text),
|
onChangeText: event => setSearch(event.nativeEvent.text),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import React, { useEffect, useState, useCallback, useContext } from 'react';
|
import React, { useEffect, useState, useCallback, useContext } from 'react';
|
||||||
import { ScrollView, Alert, TouchableOpacity, TouchableWithoutFeedback, StyleSheet } from 'react-native';
|
import { View, ScrollView, Alert, TouchableOpacity, TouchableWithoutFeedback, Text, StyleSheet } from 'react-native';
|
||||||
import { useNavigation } from '@react-navigation/native';
|
import { useNavigation } from '@react-navigation/native';
|
||||||
import navigationStyle from '../../components/navigationStyle';
|
import navigationStyle from '../../components/navigationStyle';
|
||||||
import { BlueLoading, BlueSpacing20, BlueCard, BlueHeaderDefaultSub, BlueText } from '../../BlueComponents';
|
import { BlueLoading, BlueSpacing20, BlueCard, BlueText } from '../../BlueComponents';
|
||||||
import Biometric from '../../class/biometrics';
|
import Biometric from '../../class/biometrics';
|
||||||
import loc from '../../loc';
|
import loc from '../../loc';
|
||||||
import { BlueStorageContext } from '../../blue_modules/storage-context';
|
import { BlueStorageContext } from '../../blue_modules/storage-context';
|
||||||
|
@ -19,10 +19,13 @@ const EncryptStorage = () => {
|
||||||
const [storageIsEncryptedSwitchEnabled, setStorageIsEncryptedSwitchEnabled] = useState(false);
|
const [storageIsEncryptedSwitchEnabled, setStorageIsEncryptedSwitchEnabled] = useState(false);
|
||||||
const { navigate, popToTop } = useNavigation();
|
const { navigate, popToTop } = useNavigation();
|
||||||
const { colors } = useTheme();
|
const { colors } = useTheme();
|
||||||
const styles = StyleSheet.create({
|
const styleHooks = StyleSheet.create({
|
||||||
root: {
|
root: {
|
||||||
backgroundColor: colors.background,
|
backgroundColor: colors.background,
|
||||||
},
|
},
|
||||||
|
headerText: {
|
||||||
|
color: colors.foregroundColor,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const initialState = useCallback(async () => {
|
const initialState = useCallback(async () => {
|
||||||
|
@ -126,9 +129,12 @@ const EncryptStorage = () => {
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
) : (
|
) : (
|
||||||
<ScrollView contentContainerStyle={styles.root} automaticallyAdjustContentInsets contentInsetAdjustmentBehavior="automatic">
|
<ScrollView contentContainerStyle={styles.root} automaticallyAdjustContentInsets contentInsetAdjustmentBehavior="automatic">
|
||||||
|
<View style={styles.paddingTop} />
|
||||||
{biometrics.isDeviceBiometricCapable && (
|
{biometrics.isDeviceBiometricCapable && (
|
||||||
<>
|
<>
|
||||||
<BlueHeaderDefaultSub leftText={loc.settings.biometrics} rightComponent={null} />
|
<Text adjustsFontSizeToFit style={[styles.headerText, styleHooks.headerText]}>
|
||||||
|
{loc.settings.biometrics}
|
||||||
|
</Text>
|
||||||
<ListItem
|
<ListItem
|
||||||
title={loc.formatString(loc.settings.encrypt_use, { type: biometrics.biometricsType })}
|
title={loc.formatString(loc.settings.encrypt_use, { type: biometrics.biometricsType })}
|
||||||
Component={TouchableWithoutFeedback}
|
Component={TouchableWithoutFeedback}
|
||||||
|
@ -140,7 +146,9 @@ const EncryptStorage = () => {
|
||||||
<BlueSpacing20 />
|
<BlueSpacing20 />
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
<BlueHeaderDefaultSub leftText={loc.settings.encrypt_tstorage} rightComponent={null} />
|
<Text adjustsFontSizeToFit style={[styles.headerText, styleHooks.headerText]}>
|
||||||
|
{loc.settings.encrypt_tstorage}
|
||||||
|
</Text>
|
||||||
<ListItem
|
<ListItem
|
||||||
testID="EncyptedAndPasswordProtected"
|
testID="EncyptedAndPasswordProtected"
|
||||||
hideChevron
|
hideChevron
|
||||||
|
@ -161,5 +169,17 @@ const EncryptStorage = () => {
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const styles = StyleSheet.create({
|
||||||
|
root: {
|
||||||
|
flex: 1,
|
||||||
|
},
|
||||||
|
paddingTop: { paddingTop: 19 },
|
||||||
|
headerText: {
|
||||||
|
fontWeight: 'bold',
|
||||||
|
fontSize: 30,
|
||||||
|
marginLeft: 17,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
export default EncryptStorage;
|
export default EncryptStorage;
|
||||||
EncryptStorage.navigationOptions = navigationStyle({}, opts => ({ ...opts, headerTitle: loc.settings.encrypt_title }));
|
EncryptStorage.navigationOptions = navigationStyle({}, opts => ({ ...opts, headerTitle: loc.settings.encrypt_title }));
|
||||||
|
|
|
@ -19,7 +19,7 @@ const Licensing = () => {
|
||||||
<BlueCard>
|
<BlueCard>
|
||||||
<BlueText>MIT License</BlueText>
|
<BlueText>MIT License</BlueText>
|
||||||
<BlueSpacing20 />
|
<BlueSpacing20 />
|
||||||
<BlueText>Copyright (c) 2018-2023 BlueWallet developers</BlueText>
|
<BlueText>Copyright (c) 2018-2024 BlueWallet developers</BlueText>
|
||||||
<BlueSpacing20 />
|
<BlueSpacing20 />
|
||||||
<BlueText>
|
<BlueText>
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
|
||||||
|
|
|
@ -51,6 +51,13 @@ const WalletsList = () => {
|
||||||
const walletsCount = useRef(wallets.length);
|
const walletsCount = useRef(wallets.length);
|
||||||
const walletActionButtonsRef = useRef();
|
const walletActionButtonsRef = useRef();
|
||||||
|
|
||||||
|
// Header Search Bar for Wallets
|
||||||
|
const [searchTerm, setSearchTerm] = useState('');
|
||||||
|
const filteredWallets = wallets.filter(wallet => wallet.getLabel().toLowerCase().includes(searchTerm.trim().toLowerCase()));
|
||||||
|
//
|
||||||
|
|
||||||
|
const carouselData = searchTerm.trim().length > 0 ? filteredWallets : wallets.concat(false);
|
||||||
|
|
||||||
const stylesHook = StyleSheet.create({
|
const stylesHook = StyleSheet.create({
|
||||||
walletsListWrapper: {
|
walletsListWrapper: {
|
||||||
backgroundColor: colors.brandingColor,
|
backgroundColor: colors.brandingColor,
|
||||||
|
@ -88,10 +95,19 @@ const WalletsList = () => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const navigateToSettings = useCallback(() => {
|
||||||
|
navigate('Settings');
|
||||||
|
}, [navigate]);
|
||||||
|
|
||||||
useLayoutEffect(() => {
|
useLayoutEffect(() => {
|
||||||
|
const headerSearchBarOptions =
|
||||||
|
Platform.OS === 'android'
|
||||||
|
? null
|
||||||
|
: { placeholder: loc.wallets.search_wallets, onChangeText: event => setSearchTerm(event.nativeEvent.text) };
|
||||||
setOptions({
|
setOptions({
|
||||||
navigationBarColor: colors.navigationBarColor,
|
navigationBarColor: colors.navigationBarColor,
|
||||||
headerShown: !isDesktop,
|
headerShown: !isDesktop,
|
||||||
|
headerSearchBarOptions,
|
||||||
headerStyle: {
|
headerStyle: {
|
||||||
backgroundColor: colors.customHeader,
|
backgroundColor: colors.customHeader,
|
||||||
},
|
},
|
||||||
|
@ -122,12 +138,7 @@ const WalletsList = () => {
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
) : null,
|
) : null,
|
||||||
});
|
});
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
}, [colors, navigateToSettings, setOptions, searchTerm]);
|
||||||
}, [colors]);
|
|
||||||
|
|
||||||
const navigateToSettings = () => {
|
|
||||||
navigate('Settings');
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Forcefully fetches TXs and balance for ALL wallets.
|
* Forcefully fetches TXs and balance for ALL wallets.
|
||||||
|
@ -192,6 +203,11 @@ const WalletsList = () => {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onNewWalletPress = () => {
|
||||||
|
setSearchTerm('');
|
||||||
|
navigate('AddWalletRoot');
|
||||||
|
};
|
||||||
|
|
||||||
const renderTransactionListsRow = data => {
|
const renderTransactionListsRow = data => {
|
||||||
return (
|
return (
|
||||||
<View style={styles.transaction}>
|
<View style={styles.transaction}>
|
||||||
|
@ -203,8 +219,8 @@ const WalletsList = () => {
|
||||||
const renderWalletsCarousel = () => {
|
const renderWalletsCarousel = () => {
|
||||||
return (
|
return (
|
||||||
<WalletsCarousel
|
<WalletsCarousel
|
||||||
data={wallets.concat(false)}
|
data={carouselData}
|
||||||
extraData={[wallets]}
|
extraData={[carouselData]}
|
||||||
onPress={handleClick}
|
onPress={handleClick}
|
||||||
handleLongPress={handleLongPress}
|
handleLongPress={handleLongPress}
|
||||||
onMomentumScrollEnd={onSnapToItem}
|
onMomentumScrollEnd={onSnapToItem}
|
||||||
|
@ -230,9 +246,7 @@ const WalletsList = () => {
|
||||||
const renderSectionHeader = section => {
|
const renderSectionHeader = section => {
|
||||||
switch (section.section.key) {
|
switch (section.section.key) {
|
||||||
case WalletsListSections.CAROUSEL:
|
case WalletsListSections.CAROUSEL:
|
||||||
return isLargeScreen ? null : (
|
return isLargeScreen ? null : <BlueHeaderDefaultMain leftText={loc.wallets.list_title} onNewWalletPress={onNewWalletPress} />;
|
||||||
<BlueHeaderDefaultMain leftText={loc.wallets.list_title} onNewWalletPress={() => navigate('AddWalletRoot')} />
|
|
||||||
);
|
|
||||||
case WalletsListSections.TRANSACTIONS:
|
case WalletsListSections.TRANSACTIONS:
|
||||||
return renderListHeaderComponent();
|
return renderListHeaderComponent();
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
echo "Removing existing release notes"
|
|
||||||
rm release-notes.txt release-notes.json
|
|
||||||
echo "Applying patch for package.json"
|
|
||||||
sed -i '' '/rn-ldk/d' ./package.json
|
|
||||||
sed -i '' 's/"patches": "patch -p1 < scripts\/rn-ldk.patch",/"patches":/g' ./package.json
|
|
||||||
rm -fr node_modules
|
|
||||||
echo "Re-installing node_modules"
|
|
||||||
npm i
|
|
||||||
echo "Deleting lightning-ldk-wallet.ts content"
|
|
||||||
cp scripts/maccatalystpatches/lightning-ldk-wallet.ts class/wallets/lightning-ldk-wallet.ts
|
|
||||||
echo "Updating Podfile"
|
|
||||||
cd ios && pod update && cd ..
|
|
||||||
echo "Remove Settings.bundle from Xcode project as its only meant for iOS"
|
|
||||||
rm -rf /ios/Settings.bundle
|
|
||||||
sed -i '' '/Settings.bundle/d' ios/BlueWallet.xcodeproj/project.pbxproj
|
|
||||||
echo ""
|
|
||||||
echo "NOTE: rn-dlk is not currently compatible with Mac Catalyst."
|
|
Loading…
Add table
Reference in a new issue