aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LeftPanel.qml2
-rw-r--r--MiddlePanel.qml2
-rw-r--r--android/README.md53
-rw-r--r--android/docker/Dockerfile108
-rw-r--r--android/docker/android.mk.patch61
-rw-r--r--android/docker/androiddeployqt.patch62
-rw-r--r--components/HistoryTable.qml6
-rw-r--r--components/IconButton.qml30
-rw-r--r--components/TextBlock.qml7
-rwxr-xr-xget_libwallet_api.sh4
-rw-r--r--lang/flags/israel.pngbin0 -> 8925 bytes
-rw-r--r--lang/flags/south_korea.pngbin0 -> 39076 bytes
-rw-r--r--lang/languages.xml2
-rw-r--r--main.qml28
m---------monero0
-rw-r--r--monero-wallet-gui.pro2
-rw-r--r--pages/History.qml2
-rw-r--r--pages/Mining.qml13
-rw-r--r--pages/Settings.qml25
-rw-r--r--pages/Sign.qml2
-rw-r--r--pages/Transfer.qml11
-rw-r--r--qml.qrc3
-rw-r--r--src/libwalletqt/TransactionHistory.cpp5
-rw-r--r--src/libwalletqt/TransactionInfo.cpp5
-rw-r--r--src/libwalletqt/TransactionInfo.h2
-rw-r--r--src/libwalletqt/Wallet.cpp10
-rw-r--r--src/libwalletqt/Wallet.h7
-rw-r--r--src/libwalletqt/WalletManager.cpp18
-rw-r--r--src/libwalletqt/WalletManager.h2
-rw-r--r--src/model/TransactionHistoryModel.cpp4
-rw-r--r--src/model/TransactionHistoryModel.h1
-rw-r--r--translations/monero-core.ts231
-rw-r--r--translations/monero-core_ar.ts231
-rw-r--r--translations/monero-core_de.ts637
-rw-r--r--translations/monero-core_eo.ts235
-rw-r--r--translations/monero-core_es.ts259
-rw-r--r--translations/monero-core_fi.ts517
-rw-r--r--translations/monero-core_fr.ts696
-rw-r--r--translations/monero-core_he.ts2175
-rw-r--r--translations/monero-core_hi.ts508
-rw-r--r--translations/monero-core_hr.ts231
-rw-r--r--translations/monero-core_id.ts606
-rw-r--r--translations/monero-core_it.ts258
-rw-r--r--translations/monero-core_ja.ts730
-rw-r--r--translations/monero-core_ko.ts2155
-rw-r--r--translations/monero-core_nl.ts821
-rw-r--r--translations/monero-core_pl.ts502
-rw-r--r--translations/monero-core_pt-br.ts556
-rw-r--r--translations/monero-core_ru.ts746
-rw-r--r--translations/monero-core_sv.ts739
-rw-r--r--translations/monero-core_zh-cn.ts586
-rw-r--r--translations/monero-core_zh-tw.ts646
52 files changed, 7297 insertions, 7245 deletions
diff --git a/LeftPanel.qml b/LeftPanel.qml
index 4c47c897..cd83989f 100644
--- a/LeftPanel.qml
+++ b/LeftPanel.qml
@@ -132,7 +132,6 @@ Rectangle {
text: qsTr("Balance") + translationManager.emptyString
anchors.left: parent.left
anchors.leftMargin: 50
- tipText: qsTr("Test tip 1<br/><br/>line 2") + translationManager.emptyString
}
Row {
@@ -178,7 +177,6 @@ Rectangle {
text: qsTr("Unlocked balance") + translationManager.emptyString
anchors.left: parent.left
anchors.leftMargin: 50
- tipText: qsTr("Test tip 2<br/><br/>line 2") + translationManager.emptyString
}
Text {
diff --git a/MiddlePanel.qml b/MiddlePanel.qml
index b51b391d..404a9d40 100644
--- a/MiddlePanel.qml
+++ b/MiddlePanel.qml
@@ -47,7 +47,7 @@ Rectangle {
property string balanceText
property string unlockedBalanceLabelText: qsTr("Unlocked Balance") + translationManager.emptyString
property string unlockedBalanceText
- property int minHeight: 800
+ property int minHeight: (appWindow.height > 800) ? appWindow.height : 800
// property int headerHeight: header.height
property Transfer transferView: Transfer { }
diff --git a/android/README.md b/android/README.md
new file mode 100644
index 00000000..b05c260a
--- /dev/null
+++ b/android/README.md
@@ -0,0 +1,53 @@
+Copyright (c) 2014-2017, The Monero Project
+
+
+## Current status : ALPHA
+
+ - Minimum Android 5.0 (api level 21)
+ - Modal dialogs can appear in background giving the feeling that the application is frozen (Work around : turn screen off/on or switch to another app and back)
+
+## Build using Docker
+
+# Base environnement
+
+ cd monero/utils/build_scripts
+ docker build -f android32.Dockerfile -t monero-android .
+ cd ..
+
+# Build GUI
+
+ cd android/docker
+ docker build -t monero-gui-android .
+ docker create -it --name monero-gui-android monero-gui-android bash
+
+# Get the apk
+
+ docker cp monero-gui-android:/opt/android/monero-core/build/release/bin/bin/QtApp-debug.apk .
+
+## Deployment
+
+- Using ADB (Android debugger bridge) :
+
+ First, see section [Enable adb debugging on your device](https://developer.android.com/studio/command-line/adb.html#Enabling)
+ The only place where we are allowed to play is `/data/local/tmp`. So :
+
+ adb push /opt/android/monero-core/build/release/bin/bin/QtApp-debug.apk /data/local/tmp
+ adb shell pm install -r /data/local/tmp/QtApp-debug.apk
+
+ - Troubleshooting:
+
+ adb devices -l
+ adb logcat
+
+ if using adb inside docker, make sure you did "docker run -v /dev/bus/usb:/dev/bus/usb --privileged"
+
+- Using a web server
+
+ mkdir /usr/tmp
+ cp QtApp-debug.apk /usr/tmp
+ docker run -d -v /usr/tmp:/usr/share/nginx/html:ro -p 8080:80 nginx
+
+ Now it should be accessible through a web browser at
+
+ http://<your.local.ip>:8080/QtApp-debug.apk
+
diff --git a/android/docker/Dockerfile b/android/docker/Dockerfile
new file mode 100644
index 00000000..5f1b1e53
--- /dev/null
+++ b/android/docker/Dockerfile
@@ -0,0 +1,108 @@
+FROM monero-android
+
+#INSTALL JAVA
+RUN echo "deb http://ftp.fr.debian.org/debian/ jessie-backports main contrib non-free" >> /etc/apt/sources.list
+RUN dpkg --add-architecture i386 \
+ && apt-get update \
+ && apt-get install -y libc6:i386 libncurses5:i386 libstdc++6:i386 libz1:i386 \
+ && apt-get install -y -t jessie-backports ca-certificates-java openjdk-8-jdk-headless openjdk-8-jre-headless ant
+ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
+ENV PATH $JAVA_HOME/bin:$PATH
+
+#Get Qt
+ENV QT_VERSION 5.8
+
+RUN git clone git://code.qt.io/qt/qt5.git -b ${QT_VERSION} \
+ && cd qt5 \
+ && perl init-repository
+
+## Note: Need to use libc++ but Qt does not provide mkspec for libc++.
+## Their support of it is quite recent and they claim they don't use it by default
+## [only because it produces bigger binary objects](https://bugreports.qt.io/browse/QTBUG-50724).
+
+#Create new mkspec for clang + libc++
+RUN cp -r qt5/qtbase/mkspecs/android-clang qt5/qtbase/mkspecs/android-clang-libc \
+ && cd qt5/qtbase/mkspecs/android-clang-libc \
+ && sed -i '16i ANDROID_SOURCES_CXX_STL_LIBDIR = $$NDK_ROOT/sources/cxx-stl/llvm-libc++/libs/$$ANDROID_TARGET_ARCH' qmake.conf \
+ && sed -i '17i ANDROID_SOURCES_CXX_STL_INCDIR = $$NDK_ROOT/sources/cxx-stl/llvm-libc++/include' qmake.conf \
+ && echo "QMAKE_LIBS_PRIVATE = -lc++_shared -llog -lz -lm -ldl -lc -lgcc " >> qmake.conf \
+ && echo "QMAKE_CFLAGS -= -mfpu=vfp " >> qmake.conf \
+ && echo "QMAKE_CXXFLAGS -= -mfpu=vfp " >> qmake.conf \
+ && echo "QMAKE_CFLAGS += -mfpu=vfp4 " >> qmake.conf \
+ && echo "QMAKE_CXXFLAGS += -mfpu=vfp4 " >> qmake.conf
+
+ENV ANDROID_API android-21
+
+#ANDROID SDK TOOLS
+RUN echo y | $ANDROID_SDK_ROOT/tools/android update sdk --no-ui --all --filter platform-tools
+RUN echo y | $ANDROID_SDK_ROOT/tools/android update sdk --no-ui --all --filter ${ANDROID_API}
+RUN echo y | $ANDROID_SDK_ROOT/tools/android update sdk --no-ui --all --filter build-tools-25.0.1
+
+ENV CLEAN_PATH $JAVA_HOME/bin:/usr/cmake-3.6.3-Linux-x86_64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+
+#build Qt
+RUN cd qt5 && PATH=${CLEAN_PATH} ./configure -developer-build -release \
+ -xplatform android-clang-libc \
+ -android-ndk-platform ${ANDROID_API} \
+ -android-ndk $ANDROID_NDK_ROOT \
+ -android-sdk $ANDROID_SDK_ROOT \
+ -opensource -confirm-license \
+ -prefix ${WORKDIR}/Qt-${QT_VERSION} \
+ -nomake tests -nomake examples \
+ -skip qtserialport \
+ -skip qtconnectivity \
+ -skip qttranslations \
+ -skip qtgamepad -skip qtscript -skip qtdoc
+
+# build Qt tools : gnustl_shared.so is hard-coded in androiddeployqt
+# replace it with libc++_shared.so
+COPY androiddeployqt.patch qt5/qttools/androiddeployqt.patch
+RUN cd qt5/qttools \
+ && git apply androiddeployqt.patch \
+ && cd .. \
+ && PATH=${CLEAN_PATH} make -j4 \
+ && PATH=${CLEAN_PATH} make install
+
+# Get iconv and ZBar
+ENV ICONV_VERSION 1.14
+RUN git clone https://github.com/ZBar/ZBar.git \
+ && curl -s -O http://ftp.gnu.org/pub/gnu/libiconv/libiconv-${ICONV_VERSION}.tar.gz \
+ && tar -xzf libiconv-${ICONV_VERSION}.tar.gz \
+ && cd libiconv-${ICONV_VERSION} \
+ && CC=arm-linux-androideabi-clang CXX=arm-linux-androideabi-clang++ ./configure --build=x86_64-linux-gnu --host=arm-eabi --prefix=${WORKDIR}/libiconv --disable-rpath
+
+ENV PATH $ANDROID_SDK_ROOT/tools:$ANDROID_SDK_ROOT/platform-tools:${WORKDIR}/Qt-${QT_VERSION}/bin:$PATH
+
+#Build libiconv.a and libzbarjni.a
+COPY android.mk.patch ZBar/android.mk.patch
+RUN cd ZBar \
+ && git apply android.mk.patch \
+ && echo \
+"APP_ABI := armeabi-v7a \n\
+APP_STL := c++_shared \n\
+TARGET_PLATFORM := ${ANDROID_API} \n\
+TARGET_ARCH_ABI := armeabi-v7a \n\
+APP_CFLAGS += -target armv7-none-linux-androideabi -fexceptions -fstack-protector-strong -fno-limit-debug-info -mfloat-abi=softfp -mfpu=vfp -fno-builtin-memmove -fno-omit-frame-pointer -fno-stack-protector\n"\
+ >> android/jni/Application.mk \
+ && cd android \
+ && android update project --path . -t "${ANDROID_API}" \
+ && CC=arm-linux-androideabi-clang CXX=arm-linux-androideabi-clang++ ant -Dndk.dir=${ANDROID_NDK_ROOT} -Diconv.src=${WORKDIR}/libiconv-${ICONV_VERSION} zbar-clean zbar-ndk-build
+
+#Can't directly call build.sh because of env variables
+RUN git clone https://github.com/monero-project/monero-core.git \
+ && cd monero-core \
+ && git submodule update \
+ && CC=arm-linux-androideabi-clang CXX=arm-linux-androideabi-clang++ BOOST_ROOT=/opt/android/boost_1_62_0 BOOST_LIBRARYDIR=${WORKDIR}/boost_${BOOST_VERSION}/android32/lib/ OPENSSL_ROOT_DIR=${WORKDIR}/openssl/ ./get_libwallet_api.sh release-android
+
+RUN cp openssl/lib* ${ANDROID_NDK_ROOT}/platforms/${ANDROID_API}/arch-arm/usr/lib
+RUN cp boost_${BOOST_VERSION}/android32/lib/lib* ${ANDROID_NDK_ROOT}/platforms/${ANDROID_API}/arch-arm/usr/lib
+RUN cp ZBar/android/obj/local/armeabi-v7a/lib* ${ANDROID_NDK_ROOT}/platforms/${ANDROID_API}/arch-arm/usr/lib
+
+ENV PATH $ANDROID_SDK_ROOT/tools:$ANDROID_SDK_ROOT/platform-tools:${WORKDIR}/Qt-${QT_VERSION}/bin:$CLEAN_PATH
+
+# NB : zxcvbn-c needs to build a local binary and Qt don't care about these environnement variable
+RUN cd monero-core \
+ && CC="gcc" CXX="g++" ./build.sh release-android \
+ && cd build \
+ && make deploy
+
diff --git a/android/docker/android.mk.patch b/android/docker/android.mk.patch
new file mode 100644
index 00000000..9fd7f172
--- /dev/null
+++ b/android/docker/android.mk.patch
@@ -0,0 +1,61 @@
+diff --git a/android/jni/Android.mk b/android/jni/Android.mk
+index e442b07..158afd5 100644
+--- a/android/jni/Android.mk
++++ b/android/jni/Android.mk
+@@ -12,14 +12,18 @@ LOCAL_PATH := $(ICONV_SRC)
+
+ LOCAL_MODULE := libiconv
+
++LOCAL_ARM_MODE := arm
++LOCAL_CPP_FEATURES := exceptions rtti features
+ LOCAL_CFLAGS := \
+ -Wno-multichar \
+ -D_ANDROID \
+- -DLIBDIR="c" \
++ -DLIBDIR="\".\"" \
+ -DBUILDING_LIBICONV \
+ -DBUILDING_LIBCHARSET \
+ -DIN_LIBRARY
+
++LOCAL_CFLAGS += -fno-stack-protector
++
+ LOCAL_SRC_FILES := \
+ lib/iconv.c \
+ libcharset/lib/localcharset.c \
+@@ -30,13 +34,14 @@ LOCAL_C_INCLUDES := \
+ $(ICONV_SRC)/libcharset \
+ $(ICONV_SRC)/libcharset/include
+
+-include $(BUILD_SHARED_LIBRARY)
++include $(BUILD_STATIC_LIBRARY)
+
+ LOCAL_LDLIBS := -llog -lcharset
+
+ # libzbarjni
+ include $(CLEAR_VARS)
+
++
+ LOCAL_PATH := $(MY_LOCAL_PATH)
+ LOCAL_MODULE := zbarjni
+ LOCAL_SRC_FILES := ../../java/zbarjni.c \
+@@ -71,6 +76,17 @@ LOCAL_C_INCLUDES := ../include \
+ ../zbar \
+ $(ICONV_SRC)/include
+
+-LOCAL_SHARED_LIBRARIES := libiconv
++LOCAL_STATIC_LIBRARIES := libiconv
++LOCAL_ARM_MODE := arm
++LOCAL_CPP_FEATURES := exceptions rtti features
++
++LOCAL_CFLAGS := \
++ -Wno-multichar \
++ -D_ANDROID \
++ -DLIBDIR="\".\"" \
++ -DBUILDING_LIBICONV \
++ -DBUILDING_LIBCHARSET \
++ -DIN_LIBRARY
++
+
+-include $(BUILD_SHARED_LIBRARY)
+\ No newline at end of file
++include $(BUILD_STATIC_LIBRARY)
diff --git a/android/docker/androiddeployqt.patch b/android/docker/androiddeployqt.patch
new file mode 100644
index 00000000..b0657677
--- /dev/null
+++ b/android/docker/androiddeployqt.patch
@@ -0,0 +1,62 @@
+diff --git a/src/androiddeployqt/main.cpp b/src/androiddeployqt/main.cpp
+index 8a8e591..71d693e 100644
+--- a/src/androiddeployqt/main.cpp
++++ b/src/androiddeployqt/main.cpp
+@@ -1122,7 +1122,7 @@ bool updateLibsXml(const Options &options)
+
+ QString libsPath = QLatin1String("libs/") + options.architecture + QLatin1Char('/');
+
+- QString qtLibs = QLatin1String("<item>gnustl_shared</item>\n");
++ QString qtLibs = QLatin1String("<item>c++_shared</item>\n");
+ QString bundledInLibs;
+ QString bundledInAssets;
+ foreach (Options::BundledFile bundledFile, options.bundledFiles) {
+@@ -2519,6 +2519,39 @@ bool installApk(const Options &options)
+ return true;
+ }
+
++bool copyStl(Options *options)
++{
++ if (options->deploymentMechanism == Options::Debug && !options->installApk)
++ return true;
++
++ if (options->verbose)
++ fprintf(stdout, "Copying LIBC++ STL library\n");
++
++ QString filePath = options->ndkPath
++ + QLatin1String("/sources/cxx-stl/llvm-libc++")
++ + QLatin1String("/libs/")
++ + options->architecture
++ + QLatin1String("/libc++_shared.so");
++ if (!QFile::exists(filePath)) {
++ fprintf(stderr, "LIBC STL library does not exist at %s\n", qPrintable(filePath));
++ return false;
++ }
++
++ QString destinationDirectory =
++ options->deploymentMechanism == Options::Debug
++ ? options->temporaryDirectoryName + QLatin1String("/lib")
++ : options->outputDirectory + QLatin1String("/libs/") + options->architecture;
++
++ if (!copyFileIfNewer(filePath, destinationDirectory
++ + QLatin1String("/libc++_shared.so"), options->verbose)) {
++ return false;
++ }
++
++ if (options->deploymentMechanism == Options::Debug && !deployToLocalTmp(options, QLatin1String("/lib/libc++_shared.so")))
++ return false;
++
++ return true;
++}
+ bool copyGnuStl(Options *options)
+ {
+ if (options->deploymentMechanism == Options::Debug && !options->installApk)
+@@ -2870,7 +2903,7 @@ int main(int argc, char *argv[])
+ if (Q_UNLIKELY(options.timing))
+ fprintf(stdout, "[TIMING] %d ms: Read dependencies\n", options.timer.elapsed());
+
+- if (options.deploymentMechanism != Options::Ministro && !copyGnuStl(&options))
++ if (options.deploymentMechanism != Options::Ministro && !copyStl(&options))
+ return CannotCopyGnuStl;
+
+ if (Q_UNLIKELY(options.timing))
diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml
index 933c606c..082822d3 100644
--- a/components/HistoryTable.qml
+++ b/components/HistoryTable.qml
@@ -259,11 +259,11 @@ ListView {
//elide: Text.ElideRight
font.family: "Arial"
font.pixelSize: 13
- color: (confirmations < 10)? "#FF6C3C" : "#545454"
+ color: (confirmations < confirmationsRequired)? "#FF6C3C" : "#545454"
text: {
if (!isPending)
- if(confirmations < 10)
- return blockHeight + " " + qsTr("(%1/10 confirmations)").arg(confirmations)
+ if(confirmations < confirmationsRequired)
+ return blockHeight + " " + qsTr("(%1/%2 confirmations)").arg(confirmations).arg(confirmationsRequired)
else
return blockHeight
if (!isOut)
diff --git a/components/IconButton.qml b/components/IconButton.qml
index eeb80267..042439f1 100644
--- a/components/IconButton.qml
+++ b/components/IconButton.qml
@@ -50,23 +50,23 @@ Item {
z: 100
}
-// MouseArea {
-// id: buttonArea
-// anchors.fill: parent
+ MouseArea {
+ id: buttonArea
+ anchors.fill: parent
-// onPressed: {
-// buttonImage.x = buttonImage.x + 2
-// buttonImage.y = buttonImage.y + 2
-// }
-// onReleased: {
-// buttonImage.x = buttonImage.x - 2
-// buttonImage.y = buttonImage.y - 2
-// }
+ onPressed: {
+ buttonImage.x = buttonImage.x + 2
+ buttonImage.y = buttonImage.y + 2
+ }
+ onReleased: {
+ buttonImage.x = buttonImage.x - 2
+ buttonImage.y = buttonImage.y - 2
+ }
-// onClicked: {
-// parent.clicked(mouse)
-// }
-// }
+ onClicked: {
+ parent.clicked(mouse)
+ }
+ }
}
diff --git a/components/TextBlock.qml b/components/TextBlock.qml
new file mode 100644
index 00000000..7c36088a
--- /dev/null
+++ b/components/TextBlock.qml
@@ -0,0 +1,7 @@
+import QtQuick 2.0
+
+TextEdit {
+ wrapMode: Text.Wrap
+ readOnly: true
+ selectByMouse: true
+}
diff --git a/get_libwallet_api.sh b/get_libwallet_api.sh
index 7203838a..4f1e3992 100755
--- a/get_libwallet_api.sh
+++ b/get_libwallet_api.sh
@@ -16,8 +16,8 @@ if [ ! -d $MONERO_DIR/src ]; then
git submodule init monero
fi
git submodule update --remote
-# git -C $MONERO_DIR fetch --tags
-# git -C $MONERO_DIR checkout v0.10.3.1
+git -C $MONERO_DIR fetch
+git -C $MONERO_DIR checkout release-v0.11.0.0
# get monero core tag
get_tag
diff --git a/lang/flags/israel.png b/lang/flags/israel.png
new file mode 100644
index 00000000..1fe1eb79
--- /dev/null
+++ b/lang/flags/israel.png
Binary files differ
diff --git a/lang/flags/south_korea.png b/lang/flags/south_korea.png
new file mode 100644
index 00000000..0bf9c12c
--- /dev/null
+++ b/lang/flags/south_korea.png
Binary files differ
diff --git a/lang/languages.xml b/lang/languages.xml
index a2141c67..a0401e3a 100644
--- a/lang/languages.xml
+++ b/lang/languages.xml
@@ -35,4 +35,6 @@ List of available languages for your wallet's seed:
<language display_name="Русский язык" locale="ru_RU" wallet_language="русский язык" flag="/lang/flags/russia.png" qs="none"/>
<language display_name="简体中文 (中国)" locale="zh-cn_CN" wallet_language="简体中文 (中国)" flag="/lang/flags/china.png" qs="none"/>
<language display_name="繁體中文 (台灣)" locale="zh-tw_CN" wallet_language="English" flag="/lang/flags/taiwan.png" qs="none"/>
+ <language display_name="עברית" locale="he_HE" wallet_language="English" flag="/lang/flags/israel.png" qs="none"/>
+ <language display_name="한국어" locale="ko_KO" wallet_language="English" flag="/lang/flags/south_korea.png" qs="none"/>
</languages>
diff --git a/main.qml b/main.qml
index cd962ca8..e5d312d1 100644
--- a/main.qml
+++ b/main.qml
@@ -42,7 +42,7 @@ import "wizard"
ApplicationWindow {
id: appWindow
-
+ title: "Monero"
property var currentItem
property bool whatIsEnable: false
@@ -251,6 +251,12 @@ ApplicationWindow {
viewOnly = currentWallet.viewOnly;
+ // New wallets saves the testnet flag in keys file.
+ if(persistentSettings.testnet != currentWallet.testnet) {
+ console.log("Using testnet flag from keys file")
+ persistentSettings.testnet = currentWallet.testnet;
+ }
+
// connect handlers
currentWallet.refreshed.connect(onWalletRefresh)
currentWallet.updated.connect(onWalletUpdate)
@@ -296,7 +302,7 @@ ApplicationWindow {
middlePanel.transferView.updatePriorityDropdown();
// If wallet isnt connected and no daemon is running - Ask
- if(!walletInitialized && status === Wallet.ConnectionStatus_Disconnected && !daemonManager.running(persistentSettings.testnet)){
+ if(isDaemonLocal() && !walletInitialized && status === Wallet.ConnectionStatus_Disconnected && !daemonManager.running(persistentSettings.testnet)){
daemonManagerDialog.open();
}
// initialize transaction history once wallet is initialized first time;
@@ -821,6 +827,7 @@ ApplicationWindow {
//
walletManager.walletOpened.connect(onWalletOpened);
walletManager.walletClosed.connect(onWalletClosed);
+ walletManager.checkUpdatesComplete.connect(onWalletCheckUpdatesComplete);
if(typeof daemonManager != "undefined") {
daemonManager.daemonStarted.connect(onDaemonStarted);
@@ -1341,8 +1348,7 @@ ApplicationWindow {
Qt.quit();
}
- function checkUpdates() {
- var update = walletManager.checkUpdates("monero-gui", "gui")
+ function onWalletCheckUpdatesComplete(update) {
if (update === "")
return
print("Update found: " + update)
@@ -1360,10 +1366,24 @@ ApplicationWindow {
}
}
+ function checkUpdates() {
+ walletManager.checkUpdatesAsync("monero-gui", "gui")
+ }
+
Timer {
id: updatesTimer
interval: 3600*1000; running: true; repeat: true
onTriggered: checkUpdates()
}
+ function isDaemonLocal() {
+ var daemonAddress = appWindow.persistentSettings.daemon_address
+ if (daemonAddress === "")
+ return false
+ var daemonHost = daemonAddress.split(":")[0]
+ if (daemonHost === "127.0.0.1" || daemonHost === "localhost")
+ return true
+ return false
+ }
+
}
diff --git a/monero b/monero
-Subproject c9063c0b8f78a1fca4c2306d5b1df5f664c030c
+Subproject ab594cfee94dff87bb7039724563f6177a892b8
diff --git a/monero-wallet-gui.pro b/monero-wallet-gui.pro
index 3dfa0d5f..27c0477c 100644
--- a/monero-wallet-gui.pro
+++ b/monero-wallet-gui.pro
@@ -301,6 +301,8 @@ TRANSLATIONS = \ # English is default language, no explicit translation file
$$PWD/translations/monero-core_sv.ts \ # Swedish
$$PWD/translations/monero-core_zh-cn.ts \ # Chinese (Simplified-China)
$$PWD/translations/monero-core_zh-tw.ts \ # Chinese (Traditional-Taiwan)
+ $$PWD/translations/monero-core_he.ts \ # Hebrew
+ $$PWD/translations/monero-core_ko.ts \ # Korean
CONFIG(release, debug|release) {
DESTDIR = release/bin
diff --git a/pages/History.qml b/pages/History.qml
index 44027e6d..cd8b03d8 100644
--- a/pages/History.qml
+++ b/pages/History.qml
@@ -457,7 +457,7 @@ Rectangle {
Rectangle {
id: tableRect
- property int expandedHeight: parent.height - filterHeaderText.y - filterHeaderText.height - 17
+ property int expandedHeight: parent.height - filterHeaderText.y - filterHeaderText.height - 5
property int middleHeight: parent.height - fromDatePicker.y - fromDatePicker.height - 17
property int collapsedHeight: parent.height - transactionTypeDropdown.y - transactionTypeDropdown.height - 17
anchors.left: parent.left
diff --git a/pages/Mining.qml b/pages/Mining.qml
index 985c9cdc..2099a45e 100644
--- a/pages/Mining.qml
+++ b/pages/Mining.qml
@@ -37,22 +37,10 @@ Rectangle {
color: "#F0EEEE"
property var currentHashRate: 0
- function isDaemonLocal() {
- var daemonAddress = appWindow.persistentSettings.daemon_address
- if (daemonAddress === "")
- return false
- var daemonHost = daemonAddress.split(":")[0]
- if (daemonHost === "127.0.0.1" || daemonHost === "localhost")
- return true
- return false
- }
-
/* main layout */
ColumnLayout {
id: mainLayout
anchors.margins: 40
- anchors.bottomMargin: 10
-
anchors.left: parent.left
anchors.top: parent.top
anchors.right: parent.right
@@ -188,7 +176,6 @@ Rectangle {
Text {
id: statusText
- anchors.topMargin: 17
text: qsTr("Status: not mining")
textFormat: Text.RichText
wrapMode: Text.Wrap
diff --git a/pages/Settings.qml b/pages/Settings.qml
index 5a908c0c..8173aba5 100644
--- a/pages/Settings.qml
+++ b/pages/Settings.qml
@@ -473,7 +473,7 @@ Rectangle {
RowLayout {
Label {
color: "#4A4949"
- text: qsTr("Version") + translationManager.emptyString
+ text: qsTr("Debug info") + translationManager.emptyString
fontSize: 16
anchors.topMargin: 30
Layout.topMargin: 30
@@ -485,19 +485,28 @@ Rectangle {
color: "#DEDEDE"
}
- Label {
- id: guiVersion
+ TextBlock {
Layout.topMargin: 8
- color: "#4A4949"
+ Layout.fillWidth: true
text: qsTr("GUI version: ") + Version.GUI_VERSION + translationManager.emptyString
- fontSize: 16
}
- Label {
+ TextBlock {
id: guiMoneroVersion
- color: "#4A4949"
+ Layout.fillWidth: true
text: qsTr("Embedded Monero version: ") + Version.GUI_MONERO_VERSION + translationManager.emptyString
- fontSize: 16
+ }
+ TextBlock {
+ Layout.fillWidth: true
+ text: (typeof currentWallet == "undefined") ? "" : qsTr("Wallet creation height: ") + currentWallet.walletCreationHeight + translationManager.emptyString
+ }
+ TextBlock {
+ Layout.fillWidth: true
+ text: (typeof currentWallet == "undefined") ? "" : qsTr("Wallet log path: ") + currentWallet.walletLogPath + translationManager.emptyString
+ }
+ TextBlock {
+ Layout.fillWidth: true
+ text: (typeof currentWallet == "undefined") ? "" : qsTr("Daemon log path: ") + currentWallet.daemonLogPath + translationManager.emptyString
}
}
diff --git a/pages/Sign.qml b/pages/Sign.qml
index 8a452cea..b8900e7f 100644
--- a/pages/Sign.qml
+++ b/pages/Sign.qml
@@ -443,7 +443,6 @@ Rectangle {
id: verifySignatureLabel
fontSize: 14
text: qsTr("Signature") + translationManager.emptyString
- Layout.fillWidth: true
}
LineEdit {
@@ -451,7 +450,6 @@ Rectangle {
fontSize: mainLayout.lineEditFontSize
placeholderText: qsTr("Signature") + translationManager.emptyString;
Layout.fillWidth: true
- Layout.alignment: Qt.AlignLeft
IconButton {
imageSource: "../images/copyToClipboard.png"
diff --git a/pages/Transfer.qml b/pages/Transfer.qml
index 6dbe21f4..7ca97750 100644
--- a/pages/Transfer.qml
+++ b/pages/Transfer.qml
@@ -686,14 +686,9 @@ Rectangle {
}
function updatePriorityDropdown() {
- // Use new fee multipliers after v5 fork
- if (typeof currentWallet != "undefined" && currentWallet.useForkRules(5)) {
- priorityDropdown.dataModel = priorityModelV5;
- priorityDropdown.currentIndex = 1
- } else {
- priorityDropdown.dataModel = priorityModel;
- priorityDropdown.currentIndex = 0
- }
+ priorityDropdown.dataModel = priorityModelV5;
+ priorityDropdown.currentIndex = 1
+ priorityDropdown.update()
}
//TODO: Add daemon sync status
diff --git a/qml.qrc b/qml.qrc
index 991ce4b2..f3680259 100644
--- a/qml.qrc
+++ b/qml.qrc
@@ -119,6 +119,8 @@
<file>lang/flags/taiwan.png</file>
<file>lang/flags/uk.png</file>
<file>lang/flags/usa.png</file>
+ <file>lang/flags/israel.png</file>
+ <file>lang/flags/south_korea.png</file>
<file>wizard/WizardManageWalletUI.qml</file>
<file>wizard/WizardRecoveryWallet.qml</file>
<file>wizard/WizardMemoTextInput.qml</file>
@@ -139,5 +141,6 @@
<file>components/QRCodeScanner.qml</file>
<file>components/Notifier.qml</file>
<file>components/MobileHeader.qml</file>
+ <file>components/TextBlock.qml</file>
</qresource>
</RCC>
diff --git a/src/libwalletqt/TransactionHistory.cpp b/src/libwalletqt/TransactionHistory.cpp
index 9cd22bee..31e8952e 100644
--- a/src/libwalletqt/TransactionHistory.cpp
+++ b/src/libwalletqt/TransactionHistory.cpp
@@ -45,11 +45,12 @@ QList<TransactionInfo *> TransactionHistory::getAll() const
if (ti->timestamp() <= firstDateTime) {
firstDateTime = ti->timestamp();
}
+ quint64 requiredConfirmations = (ti->blockHeight() < ti->unlockTime()) ? ti->unlockTime() - ti->blockHeight() : 0;
// store last tx height
- if (ti->confirmations() < 10 && ti->blockHeight() >= lastTxHeight ){
+ if (ti->confirmations() < requiredConfirmations && ti->blockHeight() >= lastTxHeight) {
lastTxHeight = ti->blockHeight();
// TODO: Fetch block time and confirmations needed from wallet2?
- m_minutesToUnlock = (10 - ti->confirmations()) * 2;
+ m_minutesToUnlock = (requiredConfirmations - ti->confirmations()) * 2;
m_locked = true;
}
diff --git a/src/libwalletqt/TransactionInfo.cpp b/src/libwalletqt/TransactionInfo.cpp
index 71df2b02..5ad739bf 100644
--- a/src/libwalletqt/TransactionInfo.cpp
+++ b/src/libwalletqt/TransactionInfo.cpp
@@ -51,6 +51,11 @@ quint64 TransactionInfo::confirmations() const
return m_pimpl->confirmations();
}
+quint64 TransactionInfo::unlockTime() const
+{
+ return m_pimpl->unlockTime();
+}
+
QString TransactionInfo::hash() const
{
return QString::fromStdString(m_pimpl->hash());
diff --git a/src/libwalletqt/TransactionInfo.h b/src/libwalletqt/TransactionInfo.h
index 30418b88..fa13a3be 100644
--- a/src/libwalletqt/TransactionInfo.h
+++ b/src/libwalletqt/TransactionInfo.h
@@ -19,6 +19,7 @@ class TransactionInfo : public QObject
Q_PROPERTY(QString fee READ fee)
Q_PROPERTY(quint64 blockHeight READ blockHeight)
Q_PROPERTY(quint64 confirmations READ confirmations)
+ Q_PROPERTY(quint64 unlockTime READ unlockTime)
Q_PROPERTY(QString hash READ hash)
Q_PROPERTY(QDateTime timestamp READ timestamp)
Q_PROPERTY(QString date READ date)
@@ -44,6 +45,7 @@ public:
QString fee() const;
quint64 blockHeight() const;
quint64 confirmations() const;
+ quint64 unlockTime() const;
//! transaction_id
QString hash() const;
QDateTime timestamp() const;
diff --git a/src/libwalletqt/Wallet.cpp b/src/libwalletqt/Wallet.cpp
index b79d77e5..5a71debf 100644
--- a/src/libwalletqt/Wallet.cpp
+++ b/src/libwalletqt/Wallet.cpp
@@ -599,6 +599,16 @@ bool Wallet::useForkRules(quint8 required_version, quint64 earlyBlocks) const
}
}
+QString Wallet::getDaemonLogPath() const
+{
+ return QString::fromStdString(m_walletImpl->getDefaultDataDir()) + "/bitmonero.log";
+}
+
+QString Wallet::getWalletLogPath() const
+{
+ return QCoreApplication::applicationDirPath() + "/monero-wallet-gui.log";
+}
+
Wallet::Wallet(Monero::Wallet *w, QObject *parent)
: QObject(parent)
, m_walletImpl(w)
diff --git a/src/libwalletqt/Wallet.h b/src/libwalletqt/Wallet.h
index 1224b24d..3fcc057f 100644
--- a/src/libwalletqt/Wallet.h
+++ b/src/libwalletqt/Wallet.h
@@ -45,6 +45,9 @@ class Wallet : public QObject
Q_PROPERTY(QString publicViewKey READ getPublicViewKey)
Q_PROPERTY(QString secretSpendKey READ getSecretSpendKey)
Q_PROPERTY(QString publicSpendKey READ getPublicSpendKey)
+ Q_PROPERTY(QString daemonLogPath READ getDaemonLogPath CONSTANT)
+ Q_PROPERTY(QString walletLogPath READ getWalletLogPath CONSTANT)
+ Q_PROPERTY(quint64 walletCreationHeight READ getWalletCreationHeight CONSTANT)
public:
@@ -241,6 +244,10 @@ public:
QString getSecretSpendKey() const {return QString::fromStdString(m_walletImpl->secretSpendKey());}
QString getPublicSpendKey() const {return QString::fromStdString(m_walletImpl->publicSpendKey());}
+ quint64 getWalletCreationHeight() const {return m_walletImpl->getRefreshFromBlockHeight();}
+ QString getDaemonLogPath() const;
+ QString getWalletLogPath() const;
+
// TODO: setListenter() when it implemented in API
signals:
// emitted on every event happened with wallet
diff --git a/src/libwalletqt/WalletManager.cpp b/src/libwalletqt/WalletManager.cpp
index 300b3699..396274c6 100644
--- a/src/libwalletqt/WalletManager.cpp
+++ b/src/libwalletqt/WalletManager.cpp
@@ -331,8 +331,26 @@ bool WalletManager::saveQrCode(const QString &code, const QString &path) const
return QRCodeImageProvider::genQrImage(code, &size).scaled(size.expandedTo(QSize(240, 240)), Qt::KeepAspectRatio).save(path, "PNG", 100);
}
+void WalletManager::checkUpdatesAsync(const QString &software, const QString &subdir) const
+{
+ QFuture<QString> future = QtConcurrent::run(this, &WalletManager::checkUpdates,
+ software, subdir);
+ QFutureWatcher<QString> * watcher = new QFutureWatcher<QString>();
+ connect(watcher, &QFutureWatcher<Wallet*>::finished,
+ this, [this, watcher]() {
+ QFuture<QString> future = watcher->future();
+ watcher->deleteLater();
+ qDebug() << "Checking for updates - done";
+ emit checkUpdatesComplete(future.result());
+ });
+ watcher->setFuture(future);
+}
+
+
+
QString WalletManager::checkUpdates(const QString &software, const QString &subdir) const
{
+ qDebug() << "Checking for updates";
const std::tuple<bool, std::string, std::string, std::string, std::string> result = Monero::WalletManager::checkUpdates(software.toStdString(), subdir.toStdString());
if (!std::get<0>(result))
return QString("");
diff --git a/src/libwalletqt/WalletManager.h b/src/libwalletqt/WalletManager.h
index 6824d603..bf9bf19a 100644
--- a/src/libwalletqt/WalletManager.h
+++ b/src/libwalletqt/WalletManager.h
@@ -134,6 +134,7 @@ public:
Q_INVOKABLE QString resolveOpenAlias(const QString &address) const;
Q_INVOKABLE bool parse_uri(const QString &uri, QString &address, QString &payment_id, uint64_t &amount, QString &tx_description, QString &recipient_name, QVector<QString> &unknown_parameters, QString &error);
Q_INVOKABLE bool saveQrCode(const QString &, const QString &) const;
+ Q_INVOKABLE void checkUpdatesAsync(const QString &software, const QString &subdir) const;
Q_INVOKABLE QString checkUpdates(const QString &software, const QString &subdir) const;
// clear/rename wallet cache
@@ -143,6 +144,7 @@ signals:
void walletOpened(Wallet * wallet);
void walletClosed(const QString &walletAddress);
+ void checkUpdatesComplete(const QString &result) const;
public slots:
private:
diff --git a/src/model/TransactionHistoryModel.cpp b/src/model/TransactionHistoryModel.cpp
index 2e232259..c1f61fa1 100644
--- a/src/model/TransactionHistoryModel.cpp
+++ b/src/model/TransactionHistoryModel.cpp
@@ -85,6 +85,9 @@ QVariant TransactionHistoryModel::data(const QModelIndex &index, int role) const
case TransactionConfirmationsRole:
result = tInfo->confirmations();
break;
+ case TransactionConfirmationsRequiredRole:
+ result = (tInfo->blockHeight() < tInfo->unlockTime()) ? tInfo->unlockTime() - tInfo->blockHeight() : 0;
+ break;
case TransactionHashRole:
result = tInfo->hash();
break;
@@ -130,6 +133,7 @@ QHash<int, QByteArray> TransactionHistoryModel::roleNames() const
roleNames.insert(TransactionFeeRole, "fee");
roleNames.insert(TransactionBlockHeightRole, "blockHeight");
roleNames.insert(TransactionConfirmationsRole, "confirmations");
+ roleNames.insert(TransactionConfirmationsRequiredRole, "confirmationsRequired");
roleNames.insert(TransactionHashRole, "hash");
roleNames.insert(TransactionTimeStampRole, "timeStamp");
roleNames.insert(TransactionPaymentIdRole, "paymentId");
diff --git a/src/model/TransactionHistoryModel.h b/src/model/TransactionHistoryModel.h
index 449d8003..a2dbd967 100644
--- a/src/model/TransactionHistoryModel.h
+++ b/src/model/TransactionHistoryModel.h
@@ -26,6 +26,7 @@ public:
TransactionFeeRole,
TransactionBlockHeightRole,
TransactionConfirmationsRole,
+ TransactionConfirmationsRequiredRole,
TransactionHashRole,
TransactionTimeStampRole,
TransactionPaymentIdRole,
diff --git a/translations/monero-core.ts b/translations/monero-core.ts
index 321fb5b5..45b26ebf 100644
--- a/translations/monero-core.ts
+++ b/translations/monero-core.ts
@@ -14,70 +14,55 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation type="unfinished"></translation>
</message>
- <message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -200,52 +185,38 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation type="unfinished"></translation>
</message>
@@ -332,42 +303,32 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
@@ -377,67 +338,67 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
@@ -1175,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
- <source>All</source>
+ <source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="201"/>
- <source>Sent</source>
+ <source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
+ <source>All</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
+ <source>Sent</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation type="unfinished"></translation>
</message>
@@ -1286,194 +1267,194 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation type="unfinished"></translation>
</message>
@@ -1483,37 +1464,37 @@ Please upgrade or connect to another daemon</source>
<translation></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation type="unfinished"></translation>
</message>
diff --git a/translations/monero-core_ar.ts b/translations/monero-core_ar.ts
index 020b32d1..ec17e444 100644
--- a/translations/monero-core_ar.ts
+++ b/translations/monero-core_ar.ts
@@ -14,67 +14,52 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation type="unfinished"></translation>
</message>
@@ -200,52 +185,38 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation type="unfinished"></translation>
</message>
@@ -332,42 +303,32 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
@@ -377,67 +338,67 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
@@ -1175,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
- <source>All</source>
+ <source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="201"/>
- <source>Sent</source>
+ <source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
+ <source>All</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
+ <source>Sent</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation type="unfinished"></translation>
</message>
@@ -1276,164 +1257,164 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation type="unfinished"></translation>
</message>
@@ -1443,12 +1424,12 @@ Please upgrade or connect to another daemon</source>
<translation></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -1463,57 +1444,57 @@ Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation type="unfinished"></translation>
</message>
diff --git a/translations/monero-core_de.ts b/translations/monero-core_de.ts
index ce18984b..4a356d57 100644
--- a/translations/monero-core_de.ts
+++ b/translations/monero-core_de.ts
@@ -14,90 +14,55 @@
<translation>Adresse</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>QR-Code</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Zahlungs-ID &lt;font size=&apos;2&apos;&gt;(optional)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;Zahlungs-ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Ein eindeutiger Benutzername aus&lt;br/&gt;dem Adressbuch. Wird nicht zum&lt;br/&gt;Transfer von Informationen verwendet</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Füge 64 hexadezimale Zeichen ein</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Beschreibung &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>Einen Namen oder eine Beschreibung festlegen</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Hinzufügen</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Fehler</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Ungültige Adresse</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>Eintrag kann nicht erstellt werden</translation>
</message>
- <message>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during thevtransfer</source>
- <translation type="obsolete">&lt;b&gt;Zahlungs-ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Ein eindeutiger Benutzername aus&lt;br/&gt;dem Adressbuch. Wird nicht zum&lt;br/&gt;Transfer von Informationen verwendet</translation>
- </message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">Beschreibung &lt;font size=&apos;2&apos;&gt;(Lokale Datenbank)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">NEU</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">Zahlungs-ID</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">Beschreibung</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -151,18 +116,6 @@
<context>
<name>DaemonManagerDialog</name>
<message>
- <source>Daemon doesn&apos;t appear to be running</source>
- <translation type="vanished">Daemon scheint nicht aktiv zu sein</translation>
- </message>
- <message>
- <source>Start daemon</source>
- <translation type="vanished">Starte den Deamon</translation>
- </message>
- <message>
- <source>Cancel</source>
- <translation type="obsolete">Abbrechen</translation>
- </message>
- <message>
<location filename="../components/DaemonManagerDialog.qml" line="93"/>
<source>Starting Monero daemon in %1 seconds</source>
<translation>Starte Monero-Daemon in %1 Sekunden</translation>
@@ -179,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">Synchronisiere Block %1/%2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="vanished">Synchronisiere Blöcke</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -233,15 +175,6 @@
<context>
<name>History</name>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="../pages/History.qml" line="135"/>
<source>Filter transaction history</source>
<translation>Transaktionsverlauf filtern</translation>
@@ -252,63 +185,38 @@
<translation> ausgewählt: </translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Gesamtbetrag der ausgewählten Zahlungen&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Filter</translation>
</message>
<message>
- <source>Incremental search</source>
- <translation type="vanished">Inkrementelle Suche</translation>
- </message>
- <message>
- <source>Search transfers for a given string</source>
- <translation type="vanished">Überweisungen nach Text-Übereinstimmungen suchen</translation>
- </message>
- <message>
- <source>Type search string</source>
- <translation type="vanished">Suchtext eingeben</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Für Suchvervollständigung tippen...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Datum von</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>Bis</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">FILTER</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Erweiterter Filter</translation>
</message>
<message>
- <source>Advance filtering</source>
- <translation type="vanished">Erweiterter Filter</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Art der Transaktion</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Betrag ab</translation>
</message>
@@ -395,46 +303,32 @@
<translation>Guthaben</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Verfügbares Guthaben</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>Senden</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Empfangen</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="vanished">Zahlung verifizieren</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Transaktionen</translation>
</message>
@@ -444,67 +338,67 @@
<translation>Testnet</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>Adressbuch</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>Fortgeschritten</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>Mining</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>Zahlung überprüfen</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Signieren/Verifizieren</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Einstellungen</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation type="unfinished"></translation>
</message>
@@ -512,10 +406,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="vanished">Guthaben:</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>Guthaben</translation>
@@ -525,10 +415,6 @@
<source>Unlocked Balance</source>
<translation>Verfügbares Guthaben</translation>
</message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="vanished">Verfügbares Guthaben:</translation>
- </message>
</context>
<context>
<name>Mining</name>
@@ -685,18 +571,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">NIEDRIG</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MITTEL</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">HOCH</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation>Niedrig</translation>
@@ -715,10 +589,6 @@
<context>
<name>ProgressBar</name>
<message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="obsolete">Synchronisiere Block %1/%2</translation>
- </message>
- <message>
<location filename="../components/ProgressBar.qml" line="43"/>
<source>Establishing connection...</source>
<translation>Stelle Verbindung her...</translation>
@@ -817,10 +687,6 @@
<translation>Erstelle Zahlungs-ID für die integrierte Adresse</translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="obsolete">NurLesen Wallet integrierte Adresse wird hier angezeigt</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="388"/>
<source>Save QrCode</source>
<translation>QR-Code speichern</translation>
@@ -841,10 +707,6 @@
<translation>Zahlungs-ID</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="vanished">16 oder 64 Hexadezimal-Zeichen</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="309"/>
<source>Amount</source>
<translation>Betrag</translation>
@@ -914,10 +776,6 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="vanished">Schaltfläche drücken um die Wiederherstellungs-Wörter einzusehen</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -954,18 +812,6 @@
<translation>Falsches Passwort</translation>
</message>
<message>
- <source>Mnemonic seed: </source>
- <translation type="vanished">Wiederherstellungs-Wörter</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">Es ist wichtig, dass Sie sich die Wörter notieren, da Sie damit Ihr Wallet wiederherstellen können.</translation>
- </message>
- <message>
- <source>Show seed</source>
- <translation type="vanished">Wiederherstellungs-Wörter anzeigen</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="306"/>
<source>Daemon address</source>
<translation>Daemon-Adresse</translation>
@@ -976,10 +822,6 @@
<translation>Wallet verwalten</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="vanished">Diese Wallet schließen und Wizard öffnen</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>Wallet schließen</translation>
@@ -1005,10 +847,6 @@
<translation>Daemon stoppen</translation>
</message>
<message>
- <source>Show log</source>
- <translation type="obsolete">Zeige Bericht</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="286"/>
<source>Daemon startup flags</source>
<translation>Startparameter des Daemons</translation>
@@ -1145,10 +983,6 @@
<translation type="unfinished">Abbrechen</translation>
</message>
<message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">Mnemonischer Code des Wallets</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="322"/>
<source>Hostname / IP</source>
<translation>Hostname / IP</translation>
@@ -1163,10 +997,6 @@
<source>Port</source>
<translation>Port</translation>
</message>
- <message>
- <source>Save</source>
- <translation type="vanished">Speichern</translation>
- </message>
</context>
<context>
<name>Sign</name>
@@ -1235,20 +1065,12 @@
<translation>Bitte wähle eine zu verifizierende Datei aus</translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="vanished">SIGNIEREN</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>Oder Datei:</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="vanished">AUSWÄHLEN</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>Dateiname mit zu unterzeichnenden Inhalt</translation>
@@ -1272,10 +1094,6 @@
<translation>Zu verifizierende Nachricht</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="vanished">VERIFIZIEREN</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>Dateiname mit zu verifizierenden Inhalt</translation>
@@ -1318,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished">Standard (x4 Gebühr) {1 ?}</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>Alle</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Verschickt</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Erhalten</translation>
</message>
@@ -1340,10 +1178,6 @@
<translation>&lt;b&gt;Kopiere Adresse in die Zwischenablage&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;An denselben Empfänger verschicken&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
<translation type="unfinished"></translation>
@@ -1385,18 +1219,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">NIEDRIG</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MITTEL</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">HOCH</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation>Normal</translation>
@@ -1425,44 +1247,16 @@
<translation>Transaktionspriorität</translation>
</message>
<message>
- <source>LOW</source>
- <translation type="vanished">NIEDRIG</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MITTEL</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">HOCH</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="91"/>
<source></source>
<translation></translation>
</message>
<message>
- <source>or ALL</source>
- <translation type="vanished">oder ALLES</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="66"/>
<source>OpenAlias error</source>
<translation>OpenAlias Fehler</translation>
</message>
<message>
- <source>LOW (x1 fee)</source>
- <translation type="obsolete">Niedrig (x1 Gebühr)</translation>
- </message>
- <message>
- <source>MEDIUM (x20 fee)</source>
- <translation type="obsolete">Mittel (x20 Gebühr)</translation>
- </message>
- <message>
- <source>HIGH (x166 fee)</source>
- <translation type="obsolete">Hoch (x166 Gebühr)</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="44"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;Start daemon&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;Starte Daemon&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
@@ -1478,299 +1272,233 @@
<translation>Alle</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>Niedrig (x1 Gebühr)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>Mittel (x20 Gebühr)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>Hoch (x166 Gebühr)</translation>
</message>
<message>
- <source>Default (x4 fee)</source>
- <translation type="vanished">Standard (x4 Gebühr)</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished">Standard (x4 Gebühr) {1 ?}</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;Adresse &lt;font size=&apos;2&apos;&gt; ( Füge ein oder wähle aus dem &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adressbuch&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>QR-Code</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Auflösen</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>Keine gültige Adresse unter dieser OpenAlias Adresse gefunden</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>Adresse gefunden, aber die DNSSEC Signaturen konnten nicht verifiziert werden, sodass diese Adresse ggf. manipuliert wurde</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>Keine gültige Adresse unter dieser OpenAlias Adresse gefunden und die DNSSEC Signaturen konnten nicht verifiziert werden, sodass diese Adresse ggf. manipuliert wurde</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Interner Fehler</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Keine Adresse gefunden</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Beschreibung &lt;font size=&apos;2&apos;&gt;( optional )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Wird in die lokale Wallet Historie gespeichert</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>Senden</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Zeige fortgeschrittene Optionen</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>Unvermischbares zusammenfegen</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>Erstelle Tx-Datei</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Rescan spent</source>
- <translation type="vanished">Erneuter Scan der Ausgaben</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Fehler</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">Fehler: </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Information</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">Ausgaben erfolgreich erneut gescannt</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>Bitte wähle eine Datei aus</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>Nicht unterzeichnete Transaktion kann nicht geladen werden: </translation>
</message>
<message>
- <source>Number of transactions: </source>
- <translation type="vanished">Anzahl an Transaktionen: </translation>
- </message>
- <message>
- <source>Transaction #%1</source>
- <translation type="vanished">Transaktion #%1</translation>
- </message>
- <message>
- <source>Recipient: </source>
- <translation type="vanished">Empfänger: </translation>
- </message>
- <message>
- <source>payment ID: </source>
- <translation type="vanished">Zahlungs-ID: </translation>
- </message>
- <message>
- <source>Amount: </source>
- <translation type="vanished">Betrag: </translation>
- </message>
- <message>
- <source>Fee: </source>
- <translation type="vanished">Gebühr: </translation>
- </message>
- <message>
- <source>Ringsize: </source>
- <translation type="vanished">Ringgröße: </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Bestätigung</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>Transaktion kann nicht eingereicht werden</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>Geld erfolgreich versendet</translation>
</message>
<message>
- <source>Privacy level</source>
- <translation type="vanished">Privatsphärelevel</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Transaktionskosten</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>Tx-Datei unterzeichnen</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>Tx-Datei einreichen</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation type="unfinished">
Betrag: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>Wallet ist nicht mit dem Deamon verbunden.</translation>
</message>
<message>
- <source>Connected daemon is not compatible with GUI.
-Please upgrade or connect to another daemon</source>
- <translation type="vanished">Der verbundene Deamon ist nicht mit der GUI kompatibel.
- Bitte installiere die neuste Version oder verbinde dich zu einem anderen Deamon.</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Warte auf die vollständige Daemon Synchronisation</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adresse &lt;font size=&apos;2&apos;&gt; (Eintippen oder aus dem &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adressbuch&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; auswählen )&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Zahlungs-ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 oder 64 Hexadezimalzeichen</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">Beschreibung &lt;font size=&apos;2&apos;&gt;(Eine optionale Beschreibung die im lokalen Adressbuch gespeichert wird)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">SENDEN</translation>
- </message>
</context>
<context>
<name>TxKey</name>
@@ -1834,10 +1562,6 @@ Please upgrade or connect to another daemon</source>
<source>If a payment had several transactions then each must be checked and the results combined.</source>
<translation>Wenn eine Zahlung aus verschiedenen Transaktionen bestand, muss jede überprüft werden und die Ergebnisse kombiniert werden.</translation>
</message>
- <message>
- <source>CHECK</source>
- <translation type="obsolete">PRÜFE</translation>
- </message>
</context>
<context>
<name>WizardConfigure</name>
@@ -1852,10 +1576,6 @@ Please upgrade or connect to another daemon</source>
<translation>Die Blockchain ankurbeln?</translation>
</message>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">Es ist sehr wichtig, dass Du dir diesen Text aufschreibst, da es Deine einzige Wiederherstellungsmöglichkeit ist. Auf der nächsten Seite musst Du den Text erneut eingeben, um sicherzustellen, dass Dir kein Fehler unterlaufen ist.</translation>
- </message>
- <message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
<translation>Es ist wichtig, dass du dir die Wörter notierst, da du damit dein Wallet wiederherstellen kannst.</translation>
@@ -1892,14 +1612,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">Ein Wallet wurde für Dich erstellt</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">Das ist der Wiederherstellungscode bestehend aus 25 Wörtern für das Wallet</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>Erstelle ein neues Wallet</translation>
@@ -1960,14 +1672,6 @@ Please upgrade or connect to another daemon</source>
<translation>Sprache</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="vanished">Wallet Name</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="vanished">Wiederherstellungs-Wörter</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
<translation>Name des Wallets</translation>
@@ -2008,18 +1712,10 @@ Please upgrade or connect to another daemon</source>
<translation>Vergiss nicht, den mnemonischen Code aufzuschreiben. Du kannst ihn unter dem Menüpunkt Einstellungen einsehen.</translation>
</message>
<message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">Hier ist die Zusammenfassung deiner Konfiguration:</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="128"/>
<source>You’re all set up!</source>
<translation>Du bist fertig!</translation>
</message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">Du bist fertig!</translation>
- </message>
</context>
<context>
<name>WizardMain</name>
@@ -2055,11 +1751,6 @@ Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
-%1</source>
- <translation type="vanished">Das schreibgeschützte Wallet wurde erstellt. Du kannst es öffnen, indem du das aktuelle Wallet schließt, auf &quot;Öffne Wallet aus einer Datei&quot; klickst und das schreibgeschützte Wallet in: %1 auswählst</translation>
- </message>
- <message>
<location filename="../wizard/WizardMain.qml" line="402"/>
<source>Error</source>
<translation>Fehler</translation>
@@ -2073,18 +1764,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">Das ist der Name deines Wallets. Du kannst es auf einen anderen Namen ändern:</translation>
- </message>
- <message>
- <source>My account name</source>
- <translation type="vanished">Mein Wallet-Name:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="vanished">Wiederherstellungspunkt</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation>Wallet Name</translation>
@@ -2133,14 +1812,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">Es ist sehr wichtig, dass Du dir diese Wörter aufschreibst, da er die einzige Wiederherstellungsmöglichkeit ist. Auf der nächsten Seite musst Du die Wörter erneut eingeben, um sicherzustellen, dass Dir kein Fehler unterlaufen ist.</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="obsolete">Es ist wichtig, dass Sie sich die Wörter notieren, da Sie damit Ihr Wallet wiederherstellen können.</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation>Gib deinen aus 25 Wörtern bestehenden mnemonischen Code ein</translation>
@@ -2184,22 +1855,6 @@ Please upgrade or connect to another daemon</source>
<translation>Benutzerdefinierte Daemon Adresse (optional)</translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="vanished">Das ist das erste mal, ich möchte ein neues Wallet erstellen</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="vanished">Ich möchte ein Wallet wiederherstellen</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="vanished">Ich möchte ein Wallet von einer Datei öffen</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="vanished">Bitte Daemon-Adresse unten einstellen.</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>Testnet</translation>
@@ -2208,28 +1863,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">Jetzt wo Deine Wallet erstellt wurde, solltest Du es mit einem Passwort schützen</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">Jetzt wo Dein Wallet wiederhergestellt wurde, solltest Du es mit einem Passwort schützen</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">Merke: Das Passwort kann nicht wiederhergestellt werden und wenn du es vergisst, kannst Du nur Zugriff auf Deine Geldbörse (Wallet) bekommen indem du den&lt;br/&gt;&lt;br/&gt;
- aus 25 Wörtern bestehenden mnemonischen Code eingibst, der Dir bei der Einrichtung angezeigt wurde. Das Passwort schützt die Geldbörse (Wallet) und jede damit verbundene Aktion. Verwende also ein sicheres Passwort.</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="vanished">Passwort</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="vanished">Passwort bestätigen</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2259,14 +1892,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">Dein Wallet kann wiederhergestellt werden</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">Bitte gib die Wiederherstellungs-Wörter ein</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation>Wallet wiederherstellen</translation>
@@ -2275,10 +1900,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">Willkommen</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>Willkommen zu Monero!</translation>
@@ -2311,10 +1932,6 @@ Please upgrade or connect to another daemon</source>
<translation>Wallet konnte nicht geöffnet werden: </translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="vanished">Synchronisiere Blöcke %1 / %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="493"/>
<source>Can&apos;t create transaction: Wrong daemon version: </source>
<translation>Transaktion konnte nicht erstellt werden: Falsche Daemon-Version: </translation>
@@ -2326,26 +1943,6 @@ Please upgrade or connect to another daemon</source>
<translation>Keine unvermischbaren Ausgänge zum zusammenfegen</translation>
</message>
<message>
- <source>Please confirm transaction:</source>
- <translation type="vanished">Bitte bestätige die Transaktion:</translation>
- </message>
- <message>
- <source>Amount: </source>
- <translation type="vanished">Betrag: </translation>
- </message>
- <message>
- <source>Ringsize: </source>
- <translation type="vanished">Ringgröße: </translation>
- </message>
- <message>
- <source>Number of transactions: </source>
- <translation type="vanished">Anzahl an Transaktionen: </translation>
- </message>
- <message>
- <source>Description: </source>
- <translation type="vanished">Beschreibung: </translation>
- </message>
- <message>
<location filename="../main.qml" line="554"/>
<source>Amount is wrong: expected number from %1 to %2</source>
<translation>Betrag ist falsch: Erwartete Zahl liegt zwischen %1 und %2</translation>
@@ -2386,10 +1983,6 @@ Please upgrade or connect to another daemon</source>
<translation>Eine neue Version der monero-wallet-gui ist verfügbar: %1&lt;br&gt;%2</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="obsolete">Diese Adresse hat %1 Monero empfangen, mit %2 Bestätigungen</translation>
- </message>
- <message>
<location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>Die Adresse hat nichts empfangen.</translation>
@@ -2442,24 +2035,6 @@ Please upgrade or connect to another daemon</source>
<translation>Bestätigung</translation>
</message>
<message>
- <source>Address: </source>
- <translation type="vanished">Adresse: </translation>
- </message>
- <message>
- <source>Payment ID: </source>
- <translation type="vanished">Zahlungs-ID: </translation>
- </message>
- <message>
- <source>
-Amount: </source>
- <translation type="vanished">
-Betrag: </translation>
- </message>
- <message>
- <source>Fee: </source>
- <translation type="vanished">Gebühr: </translation>
- </message>
- <message>
<location filename="../main.qml" line="517"/>
<location filename="../main.qml" line="630"/>
<source>Please confirm transaction:
diff --git a/translations/monero-core_eo.ts b/translations/monero-core_eo.ts
index 9c441737..47c6c1d7 100644
--- a/translations/monero-core_eo.ts
+++ b/translations/monero-core_eo.ts
@@ -14,22 +14,17 @@
<translation>Adreso</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>QR kodo</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>paga-ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</translation>
</message>
@@ -39,42 +34,37 @@
<translation>&lt;b&gt;Paga-ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Unika uzantnomo uzita en&lt;br/&gt;via adresaro. Tiu informo ne sendiĝos a&lt;br/&gt;kun la transakcio</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Algluu 64 deksesumajn signojn</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Priskribo &lt;font size=&apos;2&apos;&gt;(Opcia)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>Donu nomon aŭ priskribon al ĉi tiu enigo</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Aldoni</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Eraro</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Nevalida adreso</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>Ne sukcesas krei enigon</translation>
</message>
@@ -193,15 +183,6 @@
<context>
<name>History</name>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="../pages/History.qml" line="135"/>
<source>Filter transaction history</source>
<translation>Filtri la transakcian historion</translation>
@@ -217,38 +198,38 @@
<translation>&lt;b&gt;Totala kvanto de selektitaj pagoj&lt;/b&gt;</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Filtri</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Tajpu por inkrementa serĉo...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Dato: de la...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>ĝis la...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Sperta filtrado</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Transakcia tipo</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Kvanto: de...</translation>
</message>
@@ -335,42 +316,32 @@
<translation>Saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Disponebla saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
- <translation>Sendi</translation>
+ <translation>Sendu</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Ricevi</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>R</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Historio</translation>
</message>
@@ -380,67 +351,67 @@
<translation>Testreto</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>Adresaro</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>Spertaĵoj</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>Minado</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>Kontrolu pagon</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Subskribi/kontroli</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Agordoj</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>A</translation>
</message>
@@ -1183,16 +1154,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>ĈIUJ</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Sendita</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Ricevita</translation>
</message>
@@ -1294,204 +1285,204 @@
<translation>Ĉiuj</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>Malalta (x1 kosto)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>Meza (x20 kosto)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>Alta (x166 kosto)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation>Malrapida (x0.25 kosto)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation>Antaŭsupoza (x1 kosto)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation>Rapida (x5 kosto)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation>Plej rapida (x41.5 fee)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation type="unfinished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adreso &lt;font size=&apos;2&apos;&gt; (Algluu ĉi tie aŭ selektu el la &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adresaro&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>QR kodo</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Solvi</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>Neniu valida Adreso troviĝis je ĉi tiu OpenAlias adreso</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>La adreso troviĝis, sed la DNSSEC-subskriboj ne povis esti kontrolitaj, do la adreso eble estas mistifikita</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>Neniu valida Adreso troviĝis je ĉi tiu OpenAlias adreso, sed la DNSSEC subskriboj ne povis esti kontrolitaj, do la adreso eble estas mistifikita</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Interna eraro</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Neniu adreso trovita</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Priskribo &lt;font size=&apos;2&apos;&gt;( Opcia )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Konservita en la loka monujhistorio</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>Sendi</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Montru spertajn agordojn</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Transakcia kosto</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>Balai Nemikseblaĵojn</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>Kreu=i tr dosieron</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>Subskribi tr dosieron</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>Sendi tr dosieron</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Eraro</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Informo</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>Bonvolu elekti dosieron</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>Ne eblas ŝargi nesubskribitan transakcion: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>Number of transactions: </source>
<translation>Kvanto de transakcioj: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>Transaction #%1</source>
<translation>Transakcio #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>Recipient: </source>
<translation>Ricevanto: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>Paga ID: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>Kvanto: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>Kosto: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>Ringgrandeco: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Konfirmo</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>Ne eblas sendi transakcion: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>Mono sukcese sendita</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>La konektita demono ne kongruas kun la GUI.
@@ -1503,23 +1494,23 @@ Bonvolu plibonigi aŭ konekti al alia demono</translation>
<translation></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>La monujo ne estas konektita kun la demono</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Atendante la finon de demonsinkroniĝado</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Paga-ID &lt;font size=&apos;2&apos;&gt;( Opcia )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 aŭ 64 deksesuma karaktroj</translation>
</message>
@@ -1788,14 +1779,6 @@ Bonvolu plibonigi aŭ konekti al alia demono</translation>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>My account name</source>
- <translation>Mia monujnomo</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation>Restaŭralteco</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation>Monujnomo</translation>
@@ -1887,10 +1870,6 @@ Bonvolu plibonigi aŭ konekti al alia demono</translation>
<translation>Propra demonadreso (opcia)</translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation>Estas mia unua fojo, mi volas krei novan monujon</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>Testreto</translation>
diff --git a/translations/monero-core_es.ts b/translations/monero-core_es.ts
index c9623047..e84e157b 100644
--- a/translations/monero-core_es.ts
+++ b/translations/monero-core_es.ts
@@ -14,67 +14,52 @@
<translation>Dirección</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation>&lt;b&gt;Tip tekst test&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>QRCODE</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>ID de Pago &lt;font size=&apos;2&apos;&gt;(Opcional)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;ID de pago&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Nombre de usuario único usado en&lt;br/&gt;la libreta de direcciones. No es una &lt;br/&gt;transferencia de información enviada&lt;br/&gt;durante la transacción</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Pegar 64 caracteres hexadecimales</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Descripción &lt;font size=&apos;2&apos;&gt;(Opcional)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Añadir</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Error</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Dirección inválida</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>No se puede crear la entrada</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>De a esta entrada un nombre o descripción</translation>
</message>
@@ -200,52 +185,38 @@
<translation>Filtrar historial de transacciones</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Cantidad total de los pagos seleccionados&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Escriba para búsqueda incremental...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Fecha desde</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation>&lt;b&gt;Tip tekst test&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>Hasta</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Filtrar</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Filtrado avanzado</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Tipo de transacción</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Cantidad desde</translation>
</message>
@@ -332,42 +303,32 @@
<translation>Balance</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Balance desbloqueado</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>Enviar</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Recibir</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>R</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Historial</translation>
</message>
@@ -377,67 +338,67 @@
<translation>Testnet</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>Libreta de direcciones</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>Avanzado</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>Minado</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>Comprobar pago</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Firmar/verificar</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>S</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Opciones</translation>
</message>
@@ -820,10 +781,6 @@
<translation>Crear un monedero de sólo lectura</translation>
</message>
<message>
- <source>Show seed</source>
- <translation type="vanished">Mostrar semilla</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="193"/>
<source>Manage daemon</source>
<translation>Administrar daemon</translation>
@@ -995,10 +952,6 @@
<translation type="unfinished">Cancelar</translation>
</message>
<message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">mnemónico de monedero</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -1183,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished">Por defecto (comisión x4) {1 ?}</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>Todas</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Enviadas</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Recibidas</translation>
</message>
@@ -1205,10 +1178,6 @@
<translation>&lt;b&gt;Copiar dirección al portapapeles&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;Enviar a la misma destinación&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
<translation type="unfinished"></translation>
@@ -1288,188 +1257,172 @@
<translation>Toda</translation>
</message>
<message>
- <source>Default (x4 fee)</source>
- <translation type="vanished">Por defecto (comisión x4)</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>No se ha encontrado una dirección OpenAlias válida</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>Dirección encontrada, pero las firmas DNSSEC no han podido ser verificadas, la dirección puede ser suplantada</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>Dirección no válida y las firmas DNSSEC no han podido ser verificadas, la dirección puede ser suplantada</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Error interno</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Dirección no encontrada</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Descripción &lt;font size=&apos;2&apos;&gt;( Opcional )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Guardado en el historial del monedero</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>Enviar</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Mostrar opciones avanzadas</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>Barrer no-mezclables</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>Crear fichero tx</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>Firmar fichero tx</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>Enviar fichero tx</translation>
</message>
<message>
- <source>Rescan spent</source>
- <translation type="vanished">Re-escanear gasto</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Error</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">Error: </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Información</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">Gastos re-escaneados correctamente</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>Escoja un fichero</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>No se puede cargar la transacción no firmada:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>
Número de transacciones: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>
Transacción #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>
Receptor: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>
ID de pago: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>
Cantidad: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>
Comisión:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>
Tamaño de ring: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Confirmación</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>No se puede enviar la transacción:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>Dinero enviado satisfactoriamente</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>El monedero no está conectado al daemon.</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>El daemon conectado no es compatible con la GUI.
Por favor, actualice o conéctese a otro daemon</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Esperando a la completa sincronización del daemon</translation>
</message>
@@ -1479,12 +1432,12 @@ Por favor, actualice o conéctese a otro daemon</translation>
<translation></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Coste de transacción</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>ID de pago&lt;font size=&apos;2&apos;&gt;( Opcional )&lt;/font&gt;</translation>
</message>
@@ -1499,57 +1452,57 @@ Por favor, actualice o conéctese a otro daemon</translation>
<translation>Nivel de privacidad (ringsize %1)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>Baja (comisión x1)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>Media (comisión x20)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>Alta (comisión x166)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished">Por defecto (comisión x4) {1 ?}</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Dirección &lt;font size=&apos;2&apos;&gt; ( Pegar o seleccionar de &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Libreta de direcciones&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>Código QR</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Resolver</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 o 64 caracteres hexadecimales</translation>
</message>
diff --git a/translations/monero-core_fi.ts b/translations/monero-core_fi.ts
index 04ede751..8b8f173a 100644
--- a/translations/monero-core_fi.ts
+++ b/translations/monero-core_fi.ts
@@ -14,86 +14,55 @@
<translation>Osoite</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Maksutunniste &lt;font size=&apos;2&apos;&gt;(Valinnainen)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;Maksutunniste&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Uniikki tunniste jota &lt;br/&gt;käytetään osoitekirjassa. Tunnistetta ei lähetetä&lt;br/&gt;siirron mukana</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation type="unfinished">Virhe</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation type="unfinished"></translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">Kuvaus &lt;font size=&apos;2&apos;&gt;(Paikallinen tietokanta)&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation></translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">LISÄÄ</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">Maksutunniste</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">Lisätiedot</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -163,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">Synkronisoidaan lohkoja %1/%2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="vanished">Synkronisoidaan lohkoja</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -227,69 +185,39 @@
<translation>Suodata tapahtumahistoriaa</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Valittujen maksujen summa&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Incremental search</source>
- <translation type="vanished">Etsi</translation>
- </message>
- <message>
- <source>Search transfers for a given string</source>
- <translation type="vanished">Etsi tiettyä merkkijonoa rahansiirroista </translation>
- </message>
- <message>
- <source>Type search string</source>
- <translation type="vanished">Kirjoita merkkijono</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Päiväys</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>Mihin</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">SUODATIN</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translatorcomment>?</translatorcomment>
<translation>Lisäsuodatus</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Rahansiirron tyyppi</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Määrä</translation>
</message>
@@ -376,46 +304,32 @@
<translation>Saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Lukitsematon saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>Lähetä</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Vastaannota</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation></translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="vanished">Varmenna siirto</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Historia</translation>
</message>
@@ -425,67 +339,67 @@
<translation type="unfinished">Testnet</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Allekirjoita/varmenna</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Asetukset</translation>
</message>
@@ -493,14 +407,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="vanished">Saldo:</translation>
- </message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="vanished">Lukitsematon saldo:</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation type="unfinished">Saldo</translation>
@@ -666,18 +572,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">MATALA</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">KESKIVERTO</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">KORKEA</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation type="unfinished"></translation>
@@ -794,10 +688,6 @@
<translation type="unfinished"></translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">ReadOnly lompakon integroitu osoite</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="338"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
<translation type="unfinished"></translation>
@@ -833,10 +723,6 @@
<translation>Maksutunniste</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="vanished">16 tai 64 heksamerkkiä</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="254"/>
<source>Generate</source>
<translation>Luo</translation>
@@ -891,27 +777,11 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="vanished">Paina nappia nähdäksesi lompakon avainlause (seed)</translation>
- </message>
- <message>
- <source>Mnemonic seed: </source>
- <translation type="vanished">Muistintuki (seed):</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">On tärkeää, että kirjoitat tämän talteen. Tarvitset vain sen palauttaaksesi lompakon.</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="103"/>
<source>Create view only wallet</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Show seed</source>
- <translation type="vanished">Näytä muistintuki (seed)</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="193"/>
<source>Manage daemon</source>
<translation type="unfinished"></translation>
@@ -1043,10 +913,6 @@
<translation type="unfinished">Peruuta</translation>
</message>
<message>
- <source>Save</source>
- <translation type="vanished">Tallenna</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="398"/>
<source>Layout settings</source>
<translation type="unfinished"></translation>
@@ -1128,10 +994,6 @@
<translation>Hallitse lompakkoa</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="vanished">Sulje nykyinen lompakko ja avaa asennusvelho</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>Sulje lompakko</translation>
@@ -1209,20 +1071,12 @@
<translation type="unfinished"></translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="vanished">ALLEKIRJOITA</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>Tai tiedosto:</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="vanished">VALITSE</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>Tiedostonimi viestillä jonka haluat allekirjoittaa</translation>
@@ -1246,18 +1100,10 @@
<translation>Viesti jonka allekirjoituksen haluat vahvistaa</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="vanished">VAHVISTA</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>Tiedostonimi viestillä jonka haluat vahvistaa</translation>
</message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Allekirjoita osoitteella &lt;font size=&apos;2&apos;&gt; ( Kirjoita tai valitse &lt;/font&gt; &lt;a href=&apos;Address&apos;&gt;Osoitekirjasta&lt;/a&gt;</translation>
- </message>
</context>
<context>
<name>StandardDialog</name>
@@ -1291,16 +1137,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
- <source>All</source>
+ <source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="201"/>
- <source>Sent</source>
+ <source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
+ <source>All</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
+ <source>Sent</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation type="unfinished"></translation>
</message>
@@ -1354,18 +1220,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">MATALA</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">KESKIVERTO</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">KORKEA</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation type="unfinished"></translation>
@@ -1409,196 +1263,196 @@
<translation>Rahansiirron prioriteetti</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation type="unfinished">Lähetä</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation type="unfinished">Virhe</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation type="unfinished">Tietoa</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation type="unfinished">
Rahansiirtojen lukumäärä:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation type="unfinished">
Siirtopalkkio:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation type="unfinished">Hyväksyntä</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation type="unfinished"></translation>
</message>
@@ -1608,32 +1462,12 @@ Please upgrade or connect to another daemon</source>
<translation></translation>
</message>
<message>
- <source>or ALL</source>
- <translation type="vanished">tai KAIKKI</translation>
- </message>
- <message>
- <source>LOW</source>
- <translation type="vanished">MATALA</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">KESKIVERTO</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">KORKEA</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">Yksityisyyden taso</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Rahansiirron hinta</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Maksutunniste &lt;font size=&apos;2&apos;&gt;( Valinnainen )&lt;/font&gt;</translation>
</message>
@@ -1643,63 +1477,34 @@ Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 tai 64 heksamerkkiä</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">Kuvaus &lt;font size=&apos;2&apos;&gt;( Vaihtoehtoinen kuvaus joka lisätään kyseiseen osoitteeseen osoitekirjassa )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">LÄHETÄ</translation>
- </message>
</context>
<context>
<name>TxKey</name>
<message>
- <source>You can verify that a third party made a payment by supplying:</source>
- <translation type="vanished">Voit tarkistaa toisen osapuolen suorittaman maksun syöttämällä seuraavat tiedot:</translation>
- </message>
- <message>
- <source> - the recipient address,</source>
- <translation type="vanished"> - vastaannottajan osoite,</translation>
- </message>
- <message>
- <source> - the transaction ID,</source>
- <translation type="vanished"> - rahansiirron tunniste,</translation>
- </message>
- <message>
- <source> - the tx secret key supplied by the sender</source>
- <translatorcomment>?</translatorcomment>
- <translation type="vanished"> - rahansiirron salainen avain lähettäjältä </translation>
- </message>
- <message>
- <source>If a payment was made up of several transactions, each transaction must be checked, and the results added</source>
- <translation type="vanished">Jos maksu koostui useista rahansiirroista, täytyy jokainen tarkistaa erikseen ja laskea yhteen</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="90"/>
<source>Verify that a third party made a payment by supplying:</source>
<translation type="unfinished"></translation>
@@ -1755,22 +1560,10 @@ Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Transaction ID here</source>
- <translation type="vanished">Rahansiirron tunniste tähän</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="185"/>
<source>Transaction key</source>
<translation>Rahansiirron avain</translation>
</message>
- <message>
- <source>Transaction key here</source>
- <translation type="vanished">Rahansiirron avain tähän</translation>
- </message>
- <message>
- <source>CHECK</source>
- <translation type="vanished">TARKISTA</translation>
- </message>
</context>
<context>
<name>WizardConfigure</name>
@@ -1785,10 +1578,6 @@ Please upgrade or connect to another daemon</source>
<translation></translation>
</message>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">On tärkeää, että kirjoitat kyseisen muistintuen (seed) talteen. Tarvitset vain sen palauttaaksesi lompakon. Sinulta kysytään sitä seuraavassa ruudussa sen varmistamiseksi, että kirjoitit sanat talteen oikein.</translation>
- </message>
- <message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
<translation type="unfinished">On tärkeää, että kirjoitat tämän talteen. Tarvitset vain sen palauttaaksesi lompakon.</translation>
@@ -1825,14 +1614,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">Uusi lompakko on luotu</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">Tämä on 25:n sanan pituinen muistintuki lompakkoosi</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation type="unfinished"></translation>
@@ -1893,14 +1674,6 @@ Please upgrade or connect to another daemon</source>
<translation>Kieli</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="vanished">Käyttäjänimi</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="vanished">Muistintuki (Seed)</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
<translation type="unfinished"></translation>
@@ -1945,14 +1718,6 @@ Please upgrade or connect to another daemon</source>
<source>You’re all set up!</source>
<translation type="unfinished"></translation>
</message>
- <message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">Alapuolella on katsaus valitsemiisi lompakon asetuksiin:</translation>
- </message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">Kaikki on valmista!</translation>
- </message>
</context>
<context>
<name>WizardMain</name>
@@ -2001,14 +1766,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">Tämä on lompakkosi nimi. Voit vaihtaa sen uuteen nimeen jos haluat:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="vanished">Palauta tietystä lohkoketjun pituudesta</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation type="unfinished"></translation>
@@ -2057,10 +1814,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">On tärkeää, että kirjoitat kyseisen muistintuen (seed) talteen. Tarvitset vain sen palauttaaksesi lompakon. Sinulta kysytään sitä seuraavassa ruudussa sen varmistamiseksi, että kirjoitit sanat talteen oikein.</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation type="unfinished"></translation>
@@ -2104,22 +1857,6 @@ Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="vanished">Tämä on ensimmäinen kertani, haluan luoda uuden käyttäjän</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="vanished">Haluan palauttaa lompakon 25:n sanan muistintuella (seed)</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="vanished">Haluan avata lompakon tiedostosta</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="vanished">Valitse palveluprosessin osoite alapuolella.</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation></translation>
@@ -2128,28 +1865,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">Nyt kun lompakkosi on luotu, aseta sille salasana</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">Nyt kun lompakkosi on palautettu, aseta sille salasana</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">Huomioi, että tätä salasanaa ei voida palauttaa sen kadottaessa. Jos unohdat salanasasi, joudut palauttamaan lompakon muistintuella (seed), joka sinulle on juuri annettu&lt;br/&gt;&lt;br/&gt;
- Salasanallasi turvataan lompakko ja vahvistetaan toimia, pidä huolta siitä että salasanasi on tarpeeksi vahva.</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="vanished">Salasana</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="vanished">Vahvista salasana</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2178,14 +1893,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">Valmiina palauttamaan käyttäjä</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">Kirjoita 25:n sanan muistintuki (seed)</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation type="unfinished"></translation>
@@ -2194,10 +1901,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">Tervetuloa</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation type="unfinished">Tervetuloa käyttämään Moneroa!</translation>
@@ -2230,10 +1933,6 @@ Please upgrade or connect to another daemon</source>
<translation>Lompakkoa ei voitu avata:</translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="vanished">Synkronisoidaan lohkoja %1 / %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="355"/>
<source>Unlocked balance (waiting for block)</source>
<translation type="unfinished"></translation>
@@ -2420,10 +2119,6 @@ Kuvaus:</translation>
<translation>Tähän osoitteeseen on saapunut %1 Moneroa, mutta rahansiirtoa ei ole vielä lisätty lohkoon</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="vanished">Tähän osoitteeseen on saapunut %1 Moneroa, vahvistuksien määrä: %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>Tähän osoitteeseen ei ole saapunut mitään</translation>
diff --git a/translations/monero-core_fr.ts b/translations/monero-core_fr.ts
index aac46de6..9b3d91d9 100644
--- a/translations/monero-core_fr.ts
+++ b/translations/monero-core_fr.ts
@@ -14,86 +14,55 @@
<translation>Adresse</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>CODE QR</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>ID de paiement &lt;font size=&apos;2&apos;&gt;(Facultatif)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;ID de paiement&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;un nom d&apos;utilisateur unique utilisé dans&lt;br/&gt;le carnet d&apos;adresses. Ce n&apos;est pas un&lt;br/&gt;transfert d&apos;information envoyé&lt;br/&gt;pendant le transfert</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Coller 64 caractères hexadécimaux</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Description &lt;font size=&apos;2&apos;&gt;(Facultatif)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Ajouter</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Erreur</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Adresse invalide</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>Impossible de créer l&apos;entrée</translation>
</message>
<message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">Description &lt;font size=&apos;2&apos;&gt;(base de données locale)&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>Donner un nom ou une description pour cette entrée</translation>
</message>
- <message>
- <source>ADD</source>
- <translation type="vanished">AJOUTER</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">ID de paiement</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">Description</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -147,26 +116,6 @@
<context>
<name>DaemonManagerDialog</name>
<message>
- <source>Daemon doesn&apos;t appear to be running</source>
- <translation type="vanished">Le démon semble ne pas être démarré</translation>
- </message>
- <message>
- <source>Start daemon</source>
- <translation type="vanished">Démarrer démon</translation>
- </message>
- <message>
- <source>Cancel</source>
- <translation type="vanished">Annuler</translation>
- </message>
- <message>
- <source>Daemon startup flags</source>
- <translation type="vanished">Options de démarrage</translation>
- </message>
- <message>
- <source>(optional)</source>
- <translation type="vanished">(facultatif)</translation>
- </message>
- <message>
<location filename="../components/DaemonManagerDialog.qml" line="93"/>
<source>Starting Monero daemon in %1 seconds</source>
<translation>Lancement du démon Monero dans %1 secondes</translation>
@@ -183,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">Synchronisation des blocs %1/%2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="vanished">Synchronisation des blocs</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -247,68 +185,38 @@
<translation>Filtrer l&apos;historique des transactions</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Montant total des paiements séléctionnés&lt;/b&gt;</translation>
- </message>
- <message>
- <source>Incremental search</source>
- <translation type="vanished">Recherche incrémentale</translation>
- </message>
- <message>
- <source>Search transfers for a given string</source>
- <translation type="vanished">Chercher une chaîne de caractères dans les transferts</translation>
- </message>
- <message>
- <source>Type search string</source>
- <translation type="vanished">Entrez la chaîne de caractères à chercher</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Entrez du texte pour la recherche incrémentale...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Date du</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>Au</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Filtrer</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">FILTRER</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Filtrage avancé</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Type de transaction</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Montant à partir de</translation>
</message>
@@ -395,50 +303,32 @@
<translation>Solde</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Solde débloqué</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>Envoyer</translation>
</message>
<message>
- <source>T</source>
- <translation type="vanished">T</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Recevoir</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>R</translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="vanished">Vérifier paiement</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Historique</translation>
</message>
@@ -448,67 +338,67 @@
<translation>Testnet</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>Carnet d&apos;adresses</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>Avancé</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>Mine</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>Vérifier paiement</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Signer/vérifier</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>S</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Réglages</translation>
</message>
@@ -516,10 +406,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="vanished">Solde :</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>Solde</translation>
@@ -529,10 +415,6 @@
<source>Unlocked Balance</source>
<translation>Solde Débloqué</translation>
</message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="vanished">Solde débloqué :</translation>
- </message>
</context>
<context>
<name>Mining</name>
@@ -547,26 +429,6 @@
<translation>(disponible uniquement pour les démons locaux)</translation>
</message>
<message>
- <source>Mining helps the Monero network build resilience.&lt;br&gt;</source>
- <translation type="vanished">L&apos;extraction minière aide le réseau Monero à augmenter sa robustesse.&lt;br&gt;</translation>
- </message>
- <message>
- <source>The more mining is done, the harder it is to attack the network.&lt;br&gt;</source>
- <translation type="vanished">Plus il y en a, plus il est difficile d&apos;attaquer le réseau.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Mining also gives you a small chance to earn some Monero.&lt;br&gt;</source>
- <translation type="vanished">La mine vous donne aussi une petite chance de gagner des Moneros.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Your computer will search for Monero block solutions.&lt;br&gt;</source>
- <translation type="vanished">Votre ordinateur va chercher des solutions de bloc Monero.&lt;br&gt;</translation>
- </message>
- <message>
- <source>If you find a block, you will get the associated reward.&lt;br&gt;</source>
- <translation type="vanished">Si vous trouvez un bloc, vous obtiendrez la récompense associée.&lt;br&gt;</translation>
- </message>
- <message>
<location filename="../pages/Mining.qml" line="86"/>
<source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
<translation>L&apos;extraction minière avec votre ordinateur renforce le réseau Monero. Plus il y en a, plus il est difficile d&apos;attaquer le réseau, donc chaque mineur est utile.&lt;br&gt; &lt;br&gt;La mine vous donne aussi une petite chance de gagner des Moneros. Votre ordinateur va calculer des empreintes pour essayer de créer un bloc valide. Si vous trouvez un bloc, vous obtiendrez la récompense associée. Bonne chance !</translation>
@@ -709,18 +571,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">BAS</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MOYEN</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">HAUT</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation>Bas</translation>
@@ -739,10 +589,6 @@
<context>
<name>ProgressBar</name>
<message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">Synchronisation des blocs %1/%2</translation>
- </message>
- <message>
<location filename="../components/ProgressBar.qml" line="43"/>
<source>Establishing connection...</source>
<translation>Établissement de la connexion...</translation>
@@ -841,10 +687,6 @@
<translation>Montant à recevoir</translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">Adresse intégrée du portefeuille LectureSeule affichée ici</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="338"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Suivi &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;aide&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
@@ -880,10 +722,6 @@
<translation>ID de paiement</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="vanished">16 ou 64 caractères hexadécimaux</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="254"/>
<source>Generate</source>
<translation>Générer</translation>
@@ -938,35 +776,11 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="vanished">Cliquez sur le bouton pour afficher la graine</translation>
- </message>
- <message>
- <source>Mnemonic seed: </source>
- <translation type="vanished">Graine mnémonique :</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">Il est très important de l&apos;écrire sur papier car c&apos;est la seule sauvegarde dont vous aurez besoin pour votre portefeuille.</translation>
- </message>
- <message>
- <source>View only wallets doesn&apos;t have a mnemonic seed</source>
- <translation type="vanished">Les portefeuilles en vue seule n&apos;ont pas de graine mnémonique</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="103"/>
<source>Create view only wallet</source>
<translation>Créer portefeuille d&apos;audit</translation>
</message>
<message>
- <source>This is very important to write down and keep secret. It is all you need to restore your wallet.</source>
- <translation type="vanished">Il est très important de l&apos;écrire sur papier et de le garder secret. C&apos;est tout ce dont vous aurez besoin pour restaurer votre portefeuille.</translation>
- </message>
- <message>
- <source>Show seed</source>
- <translation type="vanished">Montrer graine</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="193"/>
<source>Manage daemon</source>
<translation>Gérer le démon</translation>
@@ -982,14 +796,6 @@
<translation>Arrêter démon</translation>
</message>
<message>
- <source>Show log</source>
- <translation type="vanished">Montrer le journal</translation>
- </message>
- <message>
- <source>Status</source>
- <translation type="vanished">Statut</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="239"/>
<source>Show status</source>
<translation>Montrer statut</translation>
@@ -1101,10 +907,6 @@
<translation>Annuler</translation>
</message>
<message>
- <source>Save</source>
- <translation type="vanished">Sauvegarder</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="372"/>
<source>Connect</source>
<translation>Connecter</translation>
@@ -1150,10 +952,6 @@
<translation>Journal du démon</translation>
</message>
<message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">Graine mnémonique du portefeuille</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -1195,10 +993,6 @@
<translation>Gérer le portefeuille</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="vanished">Fermer le portefeuille courant et ouvrir l&apos;assistant</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>Fermer</translation>
@@ -1271,20 +1065,12 @@
<translation>Veuillez choisir un fichier à vérifier</translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="vanished">SIGNER</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>Ou un fichier :</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="vanished">SÉLECTIONNER</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>Nom du ficher avec le message à signer</translation>
@@ -1308,10 +1094,6 @@
<translation>Message à vérifier</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="vanished">VÉRIFIER</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>Nom du ficher avec le message à vérifier</translation>
@@ -1321,10 +1103,6 @@
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adresse du signataire &lt;font size=&apos;2&apos;&gt; ( Collez ou sélectionnez dans le &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Carnet d&apos;adresses&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adresse du signataire &lt;font size=&apos;2&apos;&gt; ( Entrez ou sélectionnez dans le &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Carnet d&apos;adresses&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
- </message>
</context>
<context>
<name>StandardDialog</name>
@@ -1358,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished">Lent (frais x0.25)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished">Par défaut (frais x1)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished">Rapide (frais x5)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished">Très rapide (frais x41.5)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>Tout</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Envoyé</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Reçu</translation>
</message>
@@ -1380,10 +1178,6 @@
<translation>&lt;b&gt;Copier l&apos;adresse dans le presse-papiers&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;Envoyer à cette destination&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
<translation>&lt;b&gt;Envoyer à cette adresse&lt;/b&gt;</translation>
@@ -1425,22 +1219,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">BAS</translation>
- </message>
- <message>
- <source>NORMAL</source>
- <translation type="vanished">NORMAL</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MOYEN</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">HAUT</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation>Normal</translation>
@@ -1464,10 +1242,6 @@
<translation>Erreur OpenAlias</translation>
</message>
<message>
- <source>Privacy level (ring size %1)</source>
- <translation type="vanished">Niveau de confidentialité (taille du cercle %1)</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="125"/>
<source>Amount</source>
<translation>Montant</translation>
@@ -1478,34 +1252,6 @@
<translation>Priorité de transaction</translation>
</message>
<message>
- <source>ALL</source>
- <translation type="vanished">TOUT</translation>
- </message>
- <message>
- <source>LOW (x1 fee)</source>
- <translation type="vanished">BAS (frais x1)</translation>
- </message>
- <message>
- <source>MEDIUM (x20 fee)</source>
- <translation type="vanished">MOYEN (frais x20)</translation>
- </message>
- <message>
- <source>HIGH (x166 fee)</source>
- <translation type="vanished">HAUT (frais x166)</translation>
- </message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adresse &lt;font size=&apos;2&apos;&gt; ( Collez ou sélectionnez dans le &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Carnet d&apos;adresses&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>QRCODE</source>
- <translation type="vanished">CODE QR</translation>
- </message>
- <message>
- <source>RESOLVE</source>
- <translation type="vanished">RÉSOUDRE</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="44"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;Start daemon&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;Lancer le démon&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
@@ -1516,257 +1262,227 @@
<translation>Niveau de confidentialité (taille du cercle %1)</translation>
</message>
<message>
- <source>all</source>
- <translation type="vanished">tout</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="175"/>
<source>All</source>
<translation>Tout</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>Bas (frais x1)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>Moyen (frais x20)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>Haut (frais x166)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation>Lent (frais x0.25)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation>Par défaut (frais x1)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation>Rapide (frais x5)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation>Très rapide (frais x41.5)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adresse &lt;font size=&apos;2&apos;&gt; ( Collez ou sélectionnez dans le &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Carnet d&apos;adresses&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>Code QR</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Résoudre</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>Pas d&apos;adresse valide trouvée à cette adresse OpenAlias</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>Adresse trouvée, mais les signatures DNSSEC n&apos;ont pas pu être vérifiées, donc cette adresse pourrait avoit été falsifiée</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>Pas d&apos;adresse valide trouvée à cette adresse OpenAlias, mais les signatures DNSSEC n&apos;ont pas pu être vérifiées, donc ceci pourrait être avoir été falsifié</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Erreur interne</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Pas d&apos;adresse trouvée</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Description &lt;font size=&apos;2&apos;&gt;( Facultatif )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Enregistré dans l&apos;historique du portefeuille local</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>Envoyer</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Options avancées</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>Non Mélangeables</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>Créer fichier tx</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>Signer fichier tx</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>Soumettre fichier tx</translation>
</message>
<message>
- <source>sign tx file</source>
- <translation type="vanished">signer fichier tx</translation>
- </message>
- <message>
- <source>submit tx file</source>
- <translation type="vanished">Soumettre fichier tx</translation>
- </message>
- <message>
- <source>Rescan spent</source>
- <translation type="vanished">Rescanner dépenses</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Erreur</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">Erreur : </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Information</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">Les sorties dépensées ont été rescannées avec succès</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>Veuillez choisir un fichier</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>Impossible de charger une transaction non signée : </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>
Nombre de transactions : </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>
Transaction #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>
Destinataire : </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>
identifiant de paiement : </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>
Montant : </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>
Frais : </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>
Taille du cercle : </translation>
</message>
<message>
- <source>
-Ring size: </source>
- <translation type="vanished">
-Taille du cercle : </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Confirmation</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>Impossible de soumettre la transaction : </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>Argent envoyé avec succès</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>Le portefeuille n&apos;est pas connecté au démon.</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>Le démon connecté n&apos;est pas compatible avec l&apos;interface graphique.
Veuillez mettre à jour ou vous connecter à un autre démon</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Attente de la fin de la synchronisation avec le démon</translation>
</message>
@@ -1776,84 +1492,24 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<translation></translation>
</message>
<message>
- <source>or ALL</source>
- <translation type="vanished">ou TOUT</translation>
- </message>
- <message>
- <source>LOW</source>
- <translation type="vanished">BAS</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MOYEN</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">HAUT</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">Niveau de confidentialité</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Coût de transaction</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adresse &lt;font size=&apos;2&apos;&gt; ( Entrez ou sélectionnez dans le &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Carnet d&apos;adresses&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>ID de paiement &lt;font size=&apos;2&apos;&gt;( Facultatif )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 ou 64 caractères hexadécimaux</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">Description &lt;font size=&apos;2&apos;&gt;( Une description facultative qui sera sauvegardée dans le carnet d&apos;adresses local )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">ENVOYER</translation>
- </message>
- <message>
- <source>Advanced</source>
- <translation type="vanished">Avancé</translation>
- </message>
- <message>
- <source>SWEEP UNMIXABLE</source>
- <translation type="vanished">NON MÉLANGEABLES</translation>
- </message>
</context>
<context>
<name>TxKey</name>
<message>
- <source>You can verify that a third party made a payment by supplying:</source>
- <translation type="vanished">Vous pouvez vérifier qu&apos;un tiers a effectué un paiement en fournissant :</translation>
- </message>
- <message>
- <source> - the recipient address,</source>
- <translation type="vanished"> - l&apos;adresse du destinataire,</translation>
- </message>
- <message>
- <source> - the transaction ID,</source>
- <translation type="vanished"> - l&apos;identifiant de la transaction,</translation>
- </message>
- <message>
- <source> - the tx secret key supplied by the sender</source>
- <translation type="vanished"> - la clé secrète de transaction fournie par le payeur</translation>
- </message>
- <message>
- <source>If a payment was made up of several transactions, each transaction must be checked, and the results added</source>
- <translation type="vanished">Si un paiement est constitué de plusieurs transactions, chaque transaction doit être vérifiée, et les résultats ajoutés</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="90"/>
<source>Verify that a third party made a payment by supplying:</source>
<translation>Vérifiez qu&apos;un tiers a effectué un paiement en fournissant :</translation>
@@ -1909,22 +1565,10 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<translation>Vérifier</translation>
</message>
<message>
- <source>Transaction ID here</source>
- <translation type="vanished">ID de transaction ici</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="185"/>
<source>Transaction key</source>
<translation>Clé de transaction</translation>
</message>
- <message>
- <source>Transaction key here</source>
- <translation type="vanished">Clé de transaction ici</translation>
- </message>
- <message>
- <source>CHECK</source>
- <translation type="vanished">VÉRIFIER</translation>
- </message>
</context>
<context>
<name>WizardConfigure</name>
@@ -1939,10 +1583,6 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<translation>Démarrer la chaîne de blocs Monero ?</translation>
</message>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">Il est très important de l&apos;écrire sur papier car c&apos;est la seule sauvegarde dont vous aurez besoin pour votre portefeuille. Il vous sera demandé de confirmer la graine dans l&apos;écran suivant afin de s&apos;assurer qu&apos;elle a été copiée correctement.</translation>
- </message>
- <message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
<translation>Il est très important de l&apos;écrire sur papier car c&apos;est la seule sauvegarde dont vous aurez besoin pour votre portefeuille.</translation>
@@ -1979,22 +1619,10 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">Un nouveau portefeuille a été créé pour vous</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">Voici le mnémonique de 25 mots pour votre portefeuille</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>Créer un nouveau portefeuille</translation>
</message>
- <message>
- <source>Here is your wallet&apos;s 25 word mnemonic seed</source>
- <translation type="vanished">Voici la graine mnémonique de 25 mots pour votre portefeuille</translation>
- </message>
</context>
<context>
<name>WizardDonation</name>
@@ -2051,14 +1679,6 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<translation>Langue</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="vanished">Nom du compte</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="vanished">Graine</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
<translation>Nom du portefeuille</translation>
@@ -2103,14 +1723,6 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<source>You’re all set up!</source>
<translation>Vous êtes paré !</translation>
</message>
- <message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">Un aperçu de votre configuration Monero se trouve ci-dessous :</translation>
- </message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">Vous êtes paré !</translation>
- </message>
</context>
<context>
<name>WizardMain</name>
@@ -2160,14 +1772,6 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">Ceci est le nom de votre portefeuille. Vous pouvez le changer si vous voulez :</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="vanished">Hauteur de restoration</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation>Nom du portefeuille</translation>
@@ -2216,10 +1820,6 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">Il est très important de l&apos;écrire sur papier car c&apos;est la seule sauvegarde dont vous aurez besoin pour votre portefeuille. Il vous sera demandé de confirmer la graine dans l&apos;écran suivant afin de s&apos;assurer qu&apos;elle a été copiée correctement.</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation>Entrez votre graine mnémonique de 25 mots</translation>
@@ -2263,22 +1863,6 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<translation>Adresse de démon personnalisée (facultatif)</translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="vanished">C&apos;est ma première fois, je veux créer un nouveau compte</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="vanished">Je veux récupérer mon compte à partir de la graine de 25 mots</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="vanished">Je veux ouvrir un fichier portefeuille</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="vanished">Veuillez configurer l&apos;adresse du démon ci-dessous.</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>Testnet</translation>
@@ -2287,28 +1871,6 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">Maintenant que votre portefeuille a été créé, veuillez choisir un mot de passe pour le portefeuille</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">Maintenant que votre portefeuille a été restauré, veuillez choisir un mot de passe pour le portefeuille</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">Notez que ce mot de passe ne pourra pas être restauré, et si vous l&apos;oubliez vous devrez restaurer votre portefeuille avec la graine mnémonique qui vous a juste été donnée&lt;br/&gt;&lt;br/&gt;
- Votre mot de passe sera utilisé pour protéger votre portefeuille et pour confirmer certaines actions, donc assurez-vous que votre mot de passe soit suffisamment sûr.</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="vanished">Mot de passe</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="vanished">Confirmer le mot de passe</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2321,12 +1883,6 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<translation> &lt;br&gt;Note : ce mot de passe ne pourra pas être recupéré. Si vous l&apos;oubliez vous devrez restaurer votre portefeuille avec sa graine mnémonique de 25 mots.&lt;br/&gt;&lt;br/&gt;
&lt;b&gt;Entez un mot de passe fort&lt;/b&gt; (utilisant des lettres, chiffres, et/ou symboles) :</translation>
</message>
- <message>
- <source>Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
- <translation type="vanished">Note : ce mot de passe ne pourra pas être recupéré. Si vous l&apos;oubliez vous devrez restaurer votre portefeuille avec sa graine mnémonique de 25 mots.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Entez un mot de passe fort&lt;/b&gt; (utilisant des lettres, chiffres, et/ou symbols) :</translation>
- </message>
</context>
<context>
<name>WizardPasswordUI</name>
@@ -2344,30 +1900,14 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">Nous sommes prêts à restorer votre compte</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">Veuillez entrer votre clé privée de 25 mots</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation>Restaurer un portefeuille</translation>
</message>
- <message>
- <source>Enter your 25 word mnemonic seed:</source>
- <translation type="vanished">Entrez votre graine mnémonique de 25 mots :</translation>
- </message>
</context>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">Bienvenue</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>Bienvenue dans Monero !</translation>
@@ -2400,10 +1940,6 @@ Veuillez mettre à jour ou vous connecter à un autre démon</translation>
<translation>Impossible d&apos;ouvrir le portefeuille : </translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="vanished">Synchronisation des blocs %1 / %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="355"/>
<source>Unlocked balance (~%1 min)</source>
<translation>Solde débloqué (~%1 min)</translation>
@@ -2531,27 +2067,11 @@ Taille du cercle : </translation>
<translation>Une nouvelle version de monero-wallet-gui est disponible : %1&lt;br&gt;%2</translation>
</message>
<message>
- <source>
-
-Ring size: </source>
- <translation type="vanished">
-
-Taille du cercle : </translation>
- </message>
- <message>
<location filename="../main.qml" line="728"/>
<source>This address received %1 monero, with %2 confirmation(s).</source>
<translation>Cette adresse a reçu %1 monero, avec %2 confirmation(s).</translation>
</message>
<message>
- <source>
-
-Mixin: </source>
- <translation type="vanished">
-
-Mixin : </translation>
- </message>
- <message>
<location filename="../main.qml" line="523"/>
<source>
Number of transactions: </source>
@@ -2608,10 +2128,6 @@ Description : </translation>
<translation>Cette adresse a reçu %1 monero, mais la transaction n&apos;a pas encore été incluse dans un bloc</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="vanished">Cette adresse a reçu %1 monero, avec %2 confirmations</translation>
- </message>
- <message>
<location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>Cette adresse n&apos;a rien reçu</translation>
diff --git a/translations/monero-core_he.ts b/translations/monero-core_he.ts
new file mode 100644
index 00000000..bc08d924
--- /dev/null
+++ b/translations/monero-core_he.ts
@@ -0,0 +1,2175 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+
+<TS version="2.1">
+<context>
+ <name>AddressBook</name>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="52"/>
+ <source>Add new entry</source>
+ <translation>הוסף רשומה חדשה</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="61"/>
+ <source>Address</source>
+ <translation>כתובת</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="63"/>
+ <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="72"/>
+ <source>QRCODE</source>
+ <translation>קוד QR</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="94"/>
+ <source>4...</source>
+ <translation>4...</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="103"/>
+ <source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
+ <translation>מזהה תשלום &lt;font size=&apos;2&apos;&gt;(אופציונלי)&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="105"/>
+ <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="117"/>
+ <source>Paste 64 hexadecimal characters</source>
+ <translation>הדבק 64 תווים הקסדצימלים</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="126"/>
+ <source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
+ <translation>תיאור &lt;font size=&apos;2&apos;&gt;(אופציונלי)&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="139"/>
+ <source>Give this entry a name or description</source>
+ <translation>תן לכתובת זו שם או תיאור</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="155"/>
+ <source>Add</source>
+ <translation>הוסף</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="160"/>
+ <source>Error</source>
+ <translation>שגיאה</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="163"/>
+ <source>Invalid address</source>
+ <translation>כתובת לא תקנית</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="167"/>
+ <source>Can&apos;t create entry</source>
+ <translation>לא ניתן ליצור רשומה</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="128"/>
+ <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>AddressBookTable</name>
+ <message>
+ <location filename="../components/AddressBookTable.qml" line="47"/>
+ <source>No more results</source>
+ <translation>אין תוצאות נוספות</translation>
+ </message>
+ <message>
+ <location filename="../components/AddressBookTable.qml" line="104"/>
+ <source>Payment ID:</source>
+ <translation>מזהה תשלום:</translation>
+ </message>
+</context>
+<context>
+ <name>BasicPanel</name>
+ <message>
+ <location filename="../BasicPanel.qml" line="97"/>
+ <source>Locked Balance:</source>
+ <translation>יתרה נעולה:</translation>
+ </message>
+ <message>
+ <location filename="../BasicPanel.qml" line="110"/>
+ <source>78.9239845</source>
+ <translation>78.9239845</translation>
+ </message>
+ <message>
+ <location filename="../BasicPanel.qml" line="133"/>
+ <source>Available Balance:</source>
+ <translation>יתרה זמינה:</translation>
+ </message>
+ <message>
+ <location filename="../BasicPanel.qml" line="146"/>
+ <source>2324.9239845</source>
+ <translation>2324.9239845</translation>
+ </message>
+</context>
+<context>
+ <name>DaemonConsole</name>
+ <message>
+ <location filename="../components/DaemonConsole.qml" line="117"/>
+ <source>Close</source>
+ <translation>סגור</translation>
+ </message>
+ <message>
+ <location filename="../components/DaemonConsole.qml" line="128"/>
+ <source>command + enter (e.g help)</source>
+ <translation>פקודה + אנטר (למשל help)</translation>
+ </message>
+</context>
+<context>
+ <name>DaemonManagerDialog</name>
+ <message>
+ <location filename="../components/DaemonManagerDialog.qml" line="93"/>
+ <source>Starting Monero daemon in %1 seconds</source>
+ <translation>מפעיל את מסנכרן הרשת עוד %1 שניות</translation>
+ </message>
+ <message>
+ <location filename="../components/DaemonManagerDialog.qml" line="115"/>
+ <source>Start daemon (%1)</source>
+ <translation>התחל סנכרון (%1)</translation>
+ </message>
+ <message>
+ <location filename="../components/DaemonManagerDialog.qml" line="132"/>
+ <source>Use custom settings</source>
+ <translation>השתמש בהגדרות מותאמות</translation>
+ </message>
+</context>
+<context>
+ <name>Dashboard</name>
+ <message>
+ <location filename="../pages/Dashboard.qml" line="57"/>
+ <source>Quick transfer</source>
+ <translation>העברה מהירה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Dashboard.qml" line="89"/>
+ <source>SEND</source>
+ <translation>שלח</translation>
+ </message>
+ <message>
+ <location filename="../pages/Dashboard.qml" line="102"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; looking for security level and address book? go to &lt;a href=&apos;#&apos;&gt;Transfer&lt;/a&gt; tab</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>DashboardTable</name>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="47"/>
+ <source>No more results</source>
+ <translation>אין עוד תוצאות</translation>
+ </message>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="137"/>
+ <source>Date</source>
+ <translation>תאריך</translation>
+ </message>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="170"/>
+ <source>Balance</source>
+ <translation>יתרה</translation>
+ </message>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="190"/>
+ <source>Amount</source>
+ <translation>סכום</translation>
+ </message>
+</context>
+<context>
+ <name>History</name>
+ <message>
+ <location filename="../pages/History.qml" line="70"/>
+ <source> selected: </source>
+ <translation> נבחרו: </translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="135"/>
+ <source>Filter transaction history</source>
+ <translation>סנן היסטוריית עסקאות</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="147"/>
+ <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
+ <translation>&lt;b&gt;סכום כולל של תשלומים מסומנים&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="185"/>
+ <source>Type for incremental search...</source>
+ <translation>הקלד לחיפוש...</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="281"/>
+ <source>Filter</source>
+ <translation>סנן</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="226"/>
+ <source>Date from</source>
+ <translation>החל מתאריך</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="228"/>
+ <location filename="../pages/History.qml" line="255"/>
+ <location filename="../pages/History.qml" line="341"/>
+ <location filename="../pages/History.qml" line="378"/>
+ <location filename="../pages/History.qml" line="412"/>
+ <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="253"/>
+ <location filename="../pages/History.qml" line="410"/>
+ <source>To</source>
+ <translation>עד</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="319"/>
+ <source>Advanced filtering</source>
+ <translation>סינון מתקדם</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="339"/>
+ <source>Type of transaction</source>
+ <translation>סוג העברה</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="376"/>
+ <source>Amount from</source>
+ <translation>החל מסכום</translation>
+ </message>
+</context>
+<context>
+ <name>HistoryTable</name>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="48"/>
+ <source>Tx ID:</source>
+ <translation>מזהה העברה (Tx ID):</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="49"/>
+ <location filename="../components/HistoryTable.qml" line="203"/>
+ <source>Payment ID:</source>
+ <translation>מזהה תשלום (Payment ID)</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="50"/>
+ <source>Tx key:</source>
+ <translation>מפתח העברה (Tx key):</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="51"/>
+ <source>Tx note:</source>
+ <translation>הערות העברה</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="52"/>
+ <source>Destinations:</source>
+ <translation>יעדים:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="78"/>
+ <source>No more results</source>
+ <translation>אין תוצאות נוספות</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="110"/>
+ <source>Details</source>
+ <translation>פרטים</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="251"/>
+ <source>BlockHeight:</source>
+ <translation>גובה בלוק:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="266"/>
+ <source>(%1/10 confirmations)</source>
+ <translation>(%1/10 אישורים)</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="270"/>
+ <source>UNCONFIRMED</source>
+ <translation>ממתין לאישור</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="271"/>
+ <source>PENDING</source>
+ <translation>ממתין להישלח</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="300"/>
+ <source>Date</source>
+ <translation>תאריך</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="357"/>
+ <source>Amount</source>
+ <translation>סכום</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="392"/>
+ <source>Fee</source>
+ <translation>עמלה</translation>
+ </message>
+</context>
+<context>
+ <name>LeftPanel</name>
+ <message>
+ <location filename="../LeftPanel.qml" line="132"/>
+ <source>Balance</source>
+ <translation>יתרה</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="135"/>
+ <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="178"/>
+ <source>Unlocked balance</source>
+ <translation>יתרה זמינה</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="181"/>
+ <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="281"/>
+ <source>Send</source>
+ <translation>שלח</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="331"/>
+ <source>Receive</source>
+ <translation>קבל</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="332"/>
+ <source>R</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="425"/>
+ <source>K</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="355"/>
+ <source>History</source>
+ <translation>היסטוריה</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="93"/>
+ <source>Testnet</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="306"/>
+ <source>Address book</source>
+ <translation>ספר כתובות</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="307"/>
+ <source>B</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="356"/>
+ <source>H</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="378"/>
+ <source>Advanced</source>
+ <translation>מתקדם</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="379"/>
+ <source>D</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="400"/>
+ <source>Mining</source>
+ <translation>כרייה</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="401"/>
+ <source>M</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="424"/>
+ <source>Check payment</source>
+ <translation>בדוק תשלום</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="448"/>
+ <source>Sign/verify</source>
+ <translation>חתום/וודא</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="472"/>
+ <source>E</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="282"/>
+ <source>S</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="449"/>
+ <source>I</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="471"/>
+ <source>Settings</source>
+ <translation>הגדרות</translation>
+ </message>
+</context>
+<context>
+ <name>MiddlePanel</name>
+ <message>
+ <location filename="../MiddlePanel.qml" line="46"/>
+ <source>Balance</source>
+ <translation>יתרה</translation>
+ </message>
+ <message>
+ <location filename="../MiddlePanel.qml" line="48"/>
+ <source>Unlocked Balance</source>
+ <translation>יתרה זמינה</translation>
+ </message>
+</context>
+<context>
+ <name>Mining</name>
+ <message>
+ <location filename="../pages/Mining.qml" line="73"/>
+ <source>Solo mining</source>
+ <translation>כרייה באופן עצמאי</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="80"/>
+ <source>(only available for local daemons)</source>
+ <translation>(אפשרי רק עבור מסנכרן רשת לוקאלי שנמצא על מחשב זה)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="86"/>
+ <source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
+ <translation>כרייה מאבטחת את רשת מונרו. ככל שיותר אנשים יכרו, הקושי לתקוף את הרשת גדל.&lt;br&gt; &lt;br&gt;בנוסף, כרייה נותנת סיכוי קטן לזכות במונרו. המחשב שלך ינסה ליצור את הבלוק הבא בשרשרת, ואם תצליח תזכה. בהצלחה!</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="96"/>
+ <source>CPU threads</source>
+ <translation>תהליכונים (ת'רדים)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="104"/>
+ <source>(optional)</source>
+ <translation>(אופציונלי)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="116"/>
+ <source>Background mining (experimental)</source>
+ <translation>כרייה ברקע (נסיוני)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="132"/>
+ <source>Enable mining when running on battery</source>
+ <translation>אפשר כרייה כאשר המחשב פועל על בטרייה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="142"/>
+ <source>Manage miner</source>
+ <translation>נהל את תהליך הכרייה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="151"/>
+ <source>Start mining</source>
+ <translation>התחל כרייה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="161"/>
+ <source>Error starting mining</source>
+ <translation>שגיאה בניסיון כרייה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="162"/>
+ <source>Couldn&apos;t start mining.&lt;br&gt;</source>
+ <translation>לא ניתן להתחיל תהליך כרייה.&lt;br&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="164"/>
+ <source>Mining is only available on local daemons. Run a local daemon to be able to mine.&lt;br&gt;</source>
+ <translation>כרייה אפשרית רק עם מסנכרן רשת לוקאלי. הרץ מסנכרן רשת על מחשב זה על מנת להתחיל כרייה.&lt;br&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="176"/>
+ <source>Stop mining</source>
+ <translation>הפסק כרייה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="192"/>
+ <source>Status: not mining</source>
+ <translation>סטטוס: לא כורה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="203"/>
+ <source>Mining at %1 H/s</source>
+ <translation>כורה בקצב %1 H/s</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="206"/>
+ <source>Not mining</source>
+ <translation>לא כורה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="208"/>
+ <source>Status: </source>
+ <translation>סטטוס: </translation>
+ </message>
+</context>
+<context>
+ <name>MobileHeader</name>
+ <message>
+ <location filename="../components/MobileHeader.qml" line="94"/>
+ <source>Unlocked Balance:</source>
+ <translation>יתרה ניתנת לשימוש:</translation>
+ </message>
+</context>
+<context>
+ <name>NetworkStatusItem</name>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="53"/>
+ <source>Synchronizing</source>
+ <translation>מסתנכרן</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="54"/>
+ <source>Connected</source>
+ <translation>מחובר</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="57"/>
+ <source>Wrong version</source>
+ <translation>גרסה שגויה</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="59"/>
+ <source>Disconnected</source>
+ <translation>מנותק</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="60"/>
+ <source>Invalid connection status</source>
+ <translation>סטטוס חיבור לא תקין</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="85"/>
+ <source>Network status</source>
+ <translation>סטטוס רשת</translation>
+ </message>
+</context>
+<context>
+ <name>PasswordDialog</name>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="79"/>
+ <source>Please enter wallet password</source>
+ <translation>אנא הכנס סיסמת ארנק</translation>
+ </message>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="79"/>
+ <source>Please enter wallet password for:&lt;br&gt;</source>
+ <translation>אנא הכנס סיסמת ארנק עבור:&lt;br&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="156"/>
+ <source>Cancel</source>
+ <translation>ביטול</translation>
+ </message>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="171"/>
+ <source>Ok</source>
+ <translation>אישור</translation>
+ </message>
+</context>
+<context>
+ <name>PrivacyLevelSmall</name>
+ <message>
+ <location filename="../components/PrivacyLevelSmall.qml" line="100"/>
+ <source>Low</source>
+ <translation>נמוך</translation>
+ </message>
+ <message>
+ <location filename="../components/PrivacyLevelSmall.qml" line="109"/>
+ <source>Medium</source>
+ <translation>בינוני</translation>
+ </message>
+ <message>
+ <location filename="../components/PrivacyLevelSmall.qml" line="118"/>
+ <source>High</source>
+ <translation>גבוה</translation>
+ </message>
+</context>
+<context>
+ <name>ProgressBar</name>
+ <message>
+ <location filename="../components/ProgressBar.qml" line="43"/>
+ <source>Establishing connection...</source>
+ <translation>יוצר חיבור...</translation>
+ </message>
+ <message>
+ <location filename="../components/ProgressBar.qml" line="57"/>
+ <source>Blocks remaining: %1</source>
+ <translation>בלוקים שנותרו: %1</translation>
+ </message>
+ <message>
+ <location filename="../components/ProgressBar.qml" line="100"/>
+ <source>Synchronizing blocks</source>
+ <translation>מסנכרן בלוקים</translation>
+ </message>
+</context>
+<context>
+ <name>Receive</name>
+ <message>
+ <location filename="../pages/Receive.qml" line="64"/>
+ <source>Invalid payment ID</source>
+ <translation>מזהה תשלום לא תקין</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="107"/>
+ <source>WARNING: no connection to daemon</source>
+ <translation>אזהרה: אין חיבור למסנכרן רשת</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="129"/>
+ <source>in the txpool: %1</source>
+ <translation>העברה נשלחה: %1</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="136"/>
+ <source>%2 confirmations: %3 (%1)</source>
+ <translation>%2 אישורים: %3 (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="138"/>
+ <source>1 confirmation: %2 (%1)</source>
+ <translation>אישור אחד: %2 (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="146"/>
+ <source>No transaction found yet...</source>
+ <translation>עוד לא נמצאה העברה...</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="150"/>
+ <source>Transaction found</source>
+ <translation>העברה נמצאה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="150"/>
+ <source>%1 transactions found</source>
+ <translation>%1 עסקאות נמצאו</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="156"/>
+ <source> with more money (%1)</source>
+ <translation>עם סכום גבוה יותר (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="158"/>
+ <source> with not enough money (%1)</source>
+ <translation>עם סכום נמוך יותר (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="190"/>
+ <source>Address</source>
+ <translation>כתובת</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="197"/>
+ <source>ReadOnly wallet address displayed here</source>
+ <translation>הכתובת המוצגת שייכת לארנק לקריאה בלבד</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="230"/>
+ <source>16 hexadecimal characters</source>
+ <translation>16 תווים הקסדצימלים</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="266"/>
+ <source>Clear</source>
+ <translation>נקה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="276"/>
+ <source>Integrated address</source>
+ <translation>כתובת משולבת (עם מזהה תשלום)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="317"/>
+ <source>Amount to receive</source>
+ <translation>סכום לקבלה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="338"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
+ <translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; מעקב &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="343"/>
+ <source>Tracking payments</source>
+ <translation>מעקב אחר תשלומים</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="344"/>
+ <source>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;This is a simple sales tracker:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Click Generate to create a random payment id for a new customer&lt;/p&gt; &lt;p&gt;Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).&lt;/p&gt;&lt;p&gt;This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.&lt;/p&gt;It&apos;s up to you whether to accept unconfirmed transactions or not. It is likely they&apos;ll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).&lt;/p&gt;</source>
+ <translation>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;זהו כלי פשוט למעקב אחר מכירות:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;לחץ על 'צור' על מנת ליצור מזהה תשלום אקראי עבור לקוח חדש&lt;/p&gt; &lt;p&gt;הצג קוד QR זה ללקוח על מנת שיסרוק אותו ויבצע תשלום (אם ללקוח יש תוכנה מתאימה לסריקת קוד QR)&lt;/p&gt;&lt;p&gt;דף זה סורק את הרשת עבור עסקאות המשויכות לקוד QR המוצג. אם בנוסף יוכנס סכום, הסריקה מוודאת שהעסקאות המתאימות אכן כוללות את מלוא הסכום.&lt;/p&gt;זו החלטתך האם לקבל עסקאות שעוד לא אושרו. סביר שהן יאושרו תוך זמן קצר, אך עדיין קיימת אפשרות שלא. לכן עבור סכומים גדולים מומלץ להמתין עד לקבלת אישור אחד או יותר.&lt;/p&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="388"/>
+ <source>Save QrCode</source>
+ <translation>שמור קוד QR</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="389"/>
+ <source>Failed to save QrCode to </source>
+ <translation>נכשל לשמור קוד QR אל</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="400"/>
+ <source>Save As</source>
+ <translation>שמור בשם</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="222"/>
+ <source>Payment ID</source>
+ <translation>מזהה תשלום</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="254"/>
+ <source>Generate</source>
+ <translation>צור</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="285"/>
+ <source>Generate payment ID for integrated address</source>
+ <translation>צור מזהה תשלום עבור כתובת משולבת</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="309"/>
+ <source>Amount</source>
+ <translation>סכום</translation>
+ </message>
+</context>
+<context>
+ <name>RightPanel</name>
+ <message>
+ <location filename="../RightPanel.qml" line="61"/>
+ <source>Twitter</source>
+ <translation>טוויטר</translation>
+ </message>
+ <message>
+ <location filename="../RightPanel.qml" line="62"/>
+ <source>News</source>
+ <translation>חדשות</translation>
+ </message>
+ <message>
+ <location filename="../RightPanel.qml" line="63"/>
+ <source>Help</source>
+ <translation>עזרה</translation>
+ </message>
+ <message>
+ <location filename="../RightPanel.qml" line="64"/>
+ <source>About</source>
+ <translation>אודות</translation>
+ </message>
+</context>
+<context>
+ <name>SearchInput</name>
+ <message>
+ <location filename="../components/SearchInput.qml" line="69"/>
+ <source>Search by...</source>
+ <translation>חפש לפי...</translation>
+ </message>
+ <message>
+ <location filename="../components/SearchInput.qml" line="228"/>
+ <source>SEARCH</source>
+ <translation>חפש</translation>
+ </message>
+</context>
+<context>
+ <name>Settings</name>
+ <message>
+ <location filename="../pages/Settings.qml" line="103"/>
+ <source>Create view only wallet</source>
+ <translation>צור ארנק לצפייה בלבד</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="193"/>
+ <source>Manage daemon</source>
+ <translation>נהל את מסנכרן הרשת</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="212"/>
+ <source>Start daemon</source>
+ <translation>התחל סנכרון</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="226"/>
+ <source>Stop daemon</source>
+ <translation>עצור סנכרון</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="239"/>
+ <source>Show status</source>
+ <translation>הצג סטטוס</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="286"/>
+ <source>Daemon startup flags</source>
+ <translation>פרמטרים להפעלה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="265"/>
+ <location filename="../pages/Settings.qml" line="294"/>
+ <source>(optional)</source>
+ <translation>(אופציונלי)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="120"/>
+ <source>Show seed &amp; keys</source>
+ <translation>הצג משפט סודי ומפתחות</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="163"/>
+ <source>Rescan wallet balance</source>
+ <translation>סרוק מחדש יתרת ארנק</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="172"/>
+ <source>Error: </source>
+ <translation>שגיאה: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="177"/>
+ <source>Information</source>
+ <translation>מידע</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="178"/>
+ <source>Sucessfully rescanned spent outputs</source>
+ <translation>סריקה מחדש של הוצאות הסתיימה בהצלחה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="257"/>
+ <source>Blockchain location</source>
+ <translation>מיקום בסיס נתונים</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="306"/>
+ <source>Daemon address</source>
+ <translation>כתובת מסנכרן</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="322"/>
+ <source>Hostname / IP</source>
+ <translation>שם מחשב / IP</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="331"/>
+ <source>Port</source>
+ <translation>פורט</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="342"/>
+ <source>Login (optional)</source>
+ <translation>התחברות (אופציונלי)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="355"/>
+ <source>Username</source>
+ <translation>שם משתמש</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="364"/>
+ <source>Password</source>
+ <translation>סיסמה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="372"/>
+ <source>Connect</source>
+ <translation>התחבר</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="398"/>
+ <source>Layout settings</source>
+ <translation>הגדרות מראה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="415"/>
+ <source>Custom decorations</source>
+ <translation>עיצובים מיוחדים</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="426"/>
+ <source>Log level</source>
+ <translation>רמת פירוט יומן סנכרון</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="460"/>
+ <source>(e.g. *:WARNING,net.p2p:DEBUG)</source>
+ <translation>(למשל *:WARNING,net.p2p:DEBUG)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="476"/>
+ <source>Version</source>
+ <translation>גרסה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="492"/>
+ <source>GUI version: </source>
+ <translation>גרסת ממשק גרפי: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="499"/>
+ <source>Embedded Monero version: </source>
+ <translation>גרסת מונרו: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="509"/>
+ <source>Daemon log</source>
+ <translation>יומן סנכרון</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="573"/>
+ <source>Please choose a folder</source>
+ <translation>אנא בחר תיקייה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="582"/>
+ <source>Warning</source>
+ <translation>אזהרה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="585"/>
+ <source>Error: Filesystem is read only</source>
+ <translation>שגיאה: מערכת הקבצים היא לקריאה בלבד</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="589"/>
+ <source>Warning: There&apos;s only %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation>אזהרה: נותרו רק %1 GB על ההתקן. בסיס הנתונים דורש ~%2 GB של מידע</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="591"/>
+ <source>Note: There&apos;s %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation>שים לב: נותרו רק %1 GB על ההתקן. בסיס הנתונים דורש ~%2 GB של מידע</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="595"/>
+ <source>Note: lmdb folder not found. A new folder will be created.</source>
+ <translation>שים לב: התיקייה lmdb לא נמצאה(בסיס הנתונים). יוצר תיקייה חדשה.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="600"/>
+ <source>Cancel</source>
+ <translation>בטל</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="171"/>
+ <location filename="../pages/Settings.qml" line="539"/>
+ <source>Error</source>
+ <translation>שגיאה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="525"/>
+ <source>Wallet seed &amp; keys</source>
+ <translation>משפט סודי ומפתחות</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="527"/>
+ <source>Secret view key</source>
+ <translation>מפתח צפייה סודי</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="528"/>
+ <source>Public view key</source>
+ <translation>מפתח צפייה ציבורי</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="529"/>
+ <source>Secret spend key</source>
+ <translation>מפתח שימוש סודי</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="530"/>
+ <source>Public spend key</source>
+ <translation>מפתח שימוש ציבורי</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="540"/>
+ <source>Wrong password</source>
+ <translation>סיסמה שגויה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="72"/>
+ <source>Manage wallet</source>
+ <translation>נהל ארנק</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="88"/>
+ <source>Close wallet</source>
+ <translation>סגור ארנק</translation>
+ </message>
+</context>
+<context>
+ <name>Sign</name>
+ <message>
+ <location filename="../pages/Sign.qml" line="68"/>
+ <source>Good signature</source>
+ <translation>חתימה נכונה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="69"/>
+ <source>This is a good signature</source>
+ <translation>זוהי חתימה נכונה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="73"/>
+ <source>Bad signature</source>
+ <translation>חתימה שגויה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="74"/>
+ <source>This signature did not verify</source>
+ <translation>חתימה זו לא עברה את תהליך הוידוא</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="111"/>
+ <source>Sign a message or file contents with your address:</source>
+ <translation>חתום על הודעה או קובץ עם הכתובת שלך</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="122"/>
+ <location filename="../pages/Sign.qml" line="294"/>
+ <source>Either message:</source>
+ <translation>הודעה:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="137"/>
+ <source>Message to sign</source>
+ <translation>ההודעה לחתום</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="156"/>
+ <location filename="../pages/Sign.qml" line="231"/>
+ <source>Sign</source>
+ <translation>חתום</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="184"/>
+ <source>Please choose a file to sign</source>
+ <translation>אנא בחר קובץ לחתום</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="197"/>
+ <location filename="../pages/Sign.qml" line="368"/>
+ <source>Select</source>
+ <translation>בחר</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="327"/>
+ <location filename="../pages/Sign.qml" line="401"/>
+ <source>Verify</source>
+ <translation>וודא</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="355"/>
+ <source>Please choose a file to verify</source>
+ <translation>אנא בחר קובץ לוודא</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="419"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
+ <translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; הכתובת החותמת &lt;font size=&apos;2&apos;&gt; ( הדבק או בחר מ &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;ספר כתובות&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="172"/>
+ <location filename="../pages/Sign.qml" line="343"/>
+ <source>Or file:</source>
+ <translation>או קובץ:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="212"/>
+ <source>Filename with message to sign</source>
+ <translation>שם קובץ עם הודעה לחתימה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="251"/>
+ <location filename="../pages/Sign.qml" line="257"/>
+ <location filename="../pages/Sign.qml" line="445"/>
+ <location filename="../pages/Sign.qml" line="452"/>
+ <source>Signature</source>
+ <translation>חתימה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="282"/>
+ <source>Verify a message or file signature from an address:</source>
+ <translation>וודא חתימת הודעה או קובץ ע"י כתובת:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="309"/>
+ <source>Message to verify</source>
+ <translation>הודעה לוידוא</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="383"/>
+ <source>Filename with message to verify</source>
+ <translation>שם קובץ עם הודעה לוידוא</translation>
+ </message>
+</context>
+<context>
+ <name>StandardDialog</name>
+ <message>
+ <location filename="../components/StandardDialog.qml" line="135"/>
+ <source>Ok</source>
+ <translation>אישור</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDialog.qml" line="120"/>
+ <source>Cancel</source>
+ <translation>ביטול</translation>
+ </message>
+</context>
+<context>
+ <name>StandardDropdown</name>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="197"/>
+ <source>Low (x1 fee)</source>
+ <translation>נמוך (עמלה x1)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="198"/>
+ <source>Medium (x20 fee)</source>
+ <translation>בינוני (עמלה x20)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="199"/>
+ <source>High (x166 fee)</source>
+ <translation>גבוה (עמלה x166)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>All</source>
+ <translation>הכל</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Sent</source>
+ <translation>נשלח</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Received</source>
+ <translation>התקבל</translation>
+ </message>
+</context>
+<context>
+ <name>TableDropdown</name>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="182"/>
+ <source>&lt;b&gt;Copy address to clipboard&lt;/b&gt;</source>
+ <translation>&lt;b&gt;העתק כתובת&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="183"/>
+ <source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
+ <translation>&lt;b&gt;שלח לכתובת זו&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="184"/>
+ <source>&lt;b&gt;Find similar transactions&lt;/b&gt;</source>
+ <translation>&lt;b&gt;מצא עסקאות דומות&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="185"/>
+ <source>&lt;b&gt;Remove from address book&lt;/b&gt;</source>
+ <translation>&lt;b&gt;הסר מרשימת הכתובות&lt;/b&gt;</translation>
+ </message>
+</context>
+<context>
+ <name>TableHeader</name>
+ <message>
+ <location filename="../components/TableHeader.qml" line="65"/>
+ <source>Payment ID</source>
+ <translation>מזהה תשלום</translation>
+ </message>
+ <message>
+ <location filename="../components/TableHeader.qml" line="66"/>
+ <source>Date</source>
+ <translation>תאריך</translation>
+ </message>
+ <message>
+ <location filename="../components/TableHeader.qml" line="67"/>
+ <source>Block height</source>
+ <translation>גובה בלוק</translation>
+ </message>
+ <message>
+ <location filename="../components/TableHeader.qml" line="68"/>
+ <source>Amount</source>
+ <translation>סכום</translation>
+ </message>
+</context>
+<context>
+ <name>TickDelegate</name>
+ <message>
+ <location filename="../components/TickDelegate.qml" line="55"/>
+ <source>Normal</source>
+ <translation>רגיל</translation>
+ </message>
+ <message>
+ <location filename="../components/TickDelegate.qml" line="56"/>
+ <source>Medium</source>
+ <translation>בינוני</translation>
+ </message>
+ <message>
+ <location filename="../components/TickDelegate.qml" line="57"/>
+ <source>High</source>
+ <translation>גבוה</translation>
+ </message>
+</context>
+<context>
+ <name>Transfer</name>
+ <message>
+ <location filename="../pages/Transfer.qml" line="44"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;Start daemon&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
+ <translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;התחל סנכרון&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="66"/>
+ <source>OpenAlias error</source>
+ <translation>שגיאה בתרגום שם</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="78"/>
+ <source>Privacy level (ringsize %1)</source>
+ <translation>רמת פרטיות (מספר שולחים פוטנציאלים %1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="125"/>
+ <source>Amount</source>
+ <translation>סכום</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="135"/>
+ <source>Transaction priority</source>
+ <translation>עדיפות העברה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="175"/>
+ <source>All</source>
+ <translation>הכל</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="193"/>
+ <source>Low (x1 fee)</source>
+ <translation>נמוכה (עמלה x1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="194"/>
+ <source>Medium (x20 fee)</source>
+ <translation>בינונית (עמלה x20)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="195"/>
+ <source>High (x166 fee)</source>
+ <translation>גבוהה (עמלה x166)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="233"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
+ <translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; כתובת &lt;font size=&apos;2&apos;&gt; ( הדבק או בחר מ &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;ספר כתובות&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="251"/>
+ <source>QR Code</source>
+ <translation>קוד QR</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="281"/>
+ <source>Resolve</source>
+ <translation>תרגם</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="299"/>
+ <source>No valid address found at this OpenAlias address</source>
+ <translation>לא נמצאה כתובת חוקית עבור שם זה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="304"/>
+ <source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
+ <translation>כתובת נמצאה, אך לא ניתן לוודא את החתימה. ייתכן שכתובת זו אינה נכונה/זדונית</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="306"/>
+ <source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
+ <translation>לא נמצאה כתובת חוקית עבור שם זה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="309"/>
+ <location filename="../pages/Transfer.qml" line="312"/>
+ <source>Internal error</source>
+ <translation>שגיאה פנימית</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="315"/>
+ <source>No address found</source>
+ <translation>לא נמצאה כתובת</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="355"/>
+ <source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
+ <translation>תיאור &lt;font size=&apos;2&apos;&gt;( אופציונלי )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="367"/>
+ <source>Saved to local wallet history</source>
+ <translation>נשמר בהיסטוריית הארנק</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="397"/>
+ <source>Send</source>
+ <translation>שלח</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="443"/>
+ <source>Show advanced options</source>
+ <translation>הצג הגדרות מתקדמות</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="495"/>
+ <source>Sweep Unmixable</source>
+ <translation>איחוד יתרות שאינן ניתנות לשימוש</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="509"/>
+ <source>Create tx file</source>
+ <translation>ייצא העברה אל קובץ</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="531"/>
+ <source>Sign tx file</source>
+ <translation>חתום על העברה מקובץ</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="545"/>
+ <source>Submit tx file</source>
+ <translation>בצע העברה מקובץ</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="578"/>
+ <location filename="../pages/Transfer.qml" line="634"/>
+ <source>Error</source>
+ <translation>שגיאה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="640"/>
+ <source>Information</source>
+ <translation>מידע</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="567"/>
+ <location filename="../pages/Transfer.qml" line="628"/>
+ <source>Please choose a file</source>
+ <translation>אנא בחר קובץ</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="579"/>
+ <source>Can&apos;t load unsigned transaction: </source>
+ <translation>לא ניתן לטעון עסקאות לא חתומות</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="586"/>
+ <source>
+Number of transactions: </source>
+ <translation>מספר עסקאות: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="588"/>
+ <source>
+Transaction #%1</source>
+ <translation>העברה #%1</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="589"/>
+ <source>
+Recipient: </source>
+ <translation>נמען (מקבל)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="590"/>
+ <source>
+payment ID: </source>
+ <translation>מזהה תשלום</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="591"/>
+ <source>
+Amount: </source>
+ <translation>סכום: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="592"/>
+ <source>
+Fee: </source>
+ <translation>
+עמלה: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="593"/>
+ <source>
+Ringsize: </source>
+ <translation>
+מספר שולחים פוטנציאלים (גודל חוג): </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="607"/>
+ <source>Confirmation</source>
+ <translation>אישור</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="635"/>
+ <source>Can&apos;t submit transaction: </source>
+ <translation>העברה נכשלה: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="641"/>
+ <source>Money sent successfully</source>
+ <translation>כסף נשלח בהצלחה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="700"/>
+ <location filename="../pages/Transfer.qml" line="712"/>
+ <source>Wallet is not connected to daemon.</source>
+ <translation>הארנק אינו מחובר למסנכרן רשת</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="715"/>
+ <source>Connected daemon is not compatible with GUI.
+Please upgrade or connect to another daemon</source>
+ <translation>מסנכרן הרשת המחובר אינו מתאים לגרסה של ממשק גרפי זה.
+אנא עדכן את המסנכרן או התחבר למסנכרן אחר</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="720"/>
+ <source>Waiting on daemon synchronization to finish</source>
+ <translation>ממתין לסנכרון הרשת להסתיים</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="91"/>
+ <source></source>
+ <translation></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="470"/>
+ <source>Transaction cost</source>
+ <translation>עלות העברה</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="330"/>
+ <source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
+ <translation>מזהה תשלום &lt;font size=&apos;2&apos;&gt;( אופציונלי )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="202"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation>איטי (עמלה x0.25)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="203"/>
+ <source>Default (x1 fee)</source>
+ <translation>ברירת מחדל (עמלה x1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="204"/>
+ <source>Fast (x5 fee)</source>
+ <translation>מהיר (עמלה x5)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="205"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation>הכי מהיר (עמלה x41.5)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="342"/>
+ <source>16 or 64 hexadecimal characters</source>
+ <translation>16 או 64 תווים הקסדצימלים</translation>
+ </message>
+</context>
+<context>
+ <name>TxKey</name>
+ <message>
+ <location filename="../pages/TxKey.qml" line="90"/>
+ <source>Verify that a third party made a payment by supplying:</source>
+ <translation>וודא שגורם כלשהו ביצע תשלום. יש לספק:</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="95"/>
+ <source> - the recipient address</source>
+ <translation> - כתובת הנמען (המקבל)</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="100"/>
+ <source> - the transaction ID</source>
+ <translation> - קוד זיהוי העברה</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="105"/>
+ <source> - the secret transaction key supplied by the sender</source>
+ <translation> - מפתח ההעברה הסודי שסופק ע"י השולח</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="110"/>
+ <source>If a payment had several transactions then each must be checked and the results combined.</source>
+ <translation>אם בתשלום היו מספר עסקאות, יש לוודא כל אחת מהעסקאות</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="123"/>
+ <source>Address</source>
+ <translation>כתובת</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="130"/>
+ <source>Recipient&apos;s wallet address</source>
+ <translation>כתובת הנמען (המקבל)</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="152"/>
+ <source>Transaction ID</source>
+ <translation>מזהה העברה</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="161"/>
+ <source>Paste tx ID</source>
+ <translation>הדבק מזהה העברה</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="193"/>
+ <source>Paste tx key</source>
+ <translation>הדבק מפתח העברה</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="216"/>
+ <source>Check</source>
+ <translation>בדוק</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="185"/>
+ <source>Transaction key</source>
+ <translation>מפתח העברה</translation>
+ </message>
+</context>
+<context>
+ <name>WizardConfigure</name>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="79"/>
+ <source>We’re almost there - let’s just configure some Monero preferences</source>
+ <translation>כמעט סיימנו - נותר להגדיר מספר דברים אחרונים</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="97"/>
+ <source>Kickstart the Monero blockchain?</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="115"/>
+ <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
+ <translation>חשוב מאוד לרשום זאת כי זהו הגיבוי היחיד שצריך בשביל הארנק</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="126"/>
+ <source>Enable disk conservation mode?</source>
+ <translation>הפעל מצב חסכון בשטח אחסון?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="144"/>
+ <source>Disk conservation mode uses substantially less disk-space, but the same amount of bandwidth as a regular Monero instance. However, storing the full blockchain is beneficial to the security of the Monero network. If you are on a device with limited disk space, then this option is appropriate for you.</source>
+ <translation>מצב חסכון בשטח אחסון משתמש בפחות מקום בשטח דיסק אך באותו נפח של תעבורת רשת. אולם, שמירת עותק של כל בסיס הנתונים תורם לבטיחות של הרשת כולה. אם אתה משתמש במכשיר עם שטח אחסון קטן, אפשרות זו מתאימה עבורך.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="157"/>
+ <source>Allow background mining?</source>
+ <translation>לאפשר כרייה ברקע?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="175"/>
+ <source>Mining secures the Monero network, and also pays a small reward for the work done. This option will let Monero mine when your computer is on mains power and is idle. It will stop mining when you continue working.</source>
+ <translation>כרייה מאבטחת את רשת מונרו ובנוסף מתגמלת בפרס קטן על העבודה. אופציה זו מאפשרת למונרו לכרות כאשר המחשב מחובר לחשמל ואינו פעיל. הכרייה מפסיקה כאשר המחשב חוזר לפעולה.</translation>
+ </message>
+</context>
+<context>
+ <name>WizardCreateViewOnlyWallet</name>
+ <message>
+ <location filename="../wizard/WizardCreateViewOnlyWallet.qml" line="68"/>
+ <source>Create view only wallet</source>
+ <translation>צור ארנק לצפייה בלבד</translation>
+ </message>
+</context>
+<context>
+ <name>WizardCreateWallet</name>
+ <message>
+ <location filename="../wizard/WizardCreateWallet.qml" line="100"/>
+ <source>Create a new wallet</source>
+ <translation>צור ארנק חדש</translation>
+ </message>
+</context>
+<context>
+ <name>WizardDonation</name>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="93"/>
+ <source>Monero development is solely supported by donations</source>
+ <translation>פיתוח מונרו מתאפשר רק בזכות תרומות</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="113"/>
+ <source>Enable auto-donations of?</source>
+ <translation>אפשר תרומות-אוטומטיות?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="153"/>
+ <source>% of my fee added to each transaction</source>
+ <translation>אחוז מהעמלה הנוסף לכל העברה</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="164"/>
+ <source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
+ <translation>לכל העברה קיימת עמלה. אופציה זו מאפשרת לך להוסיף, בנוסף לעמלה, אחוז מסוים מעמלה זו כדי לתמוך בפיתוח של מונרו. למשל, תרומה אוטומטית של 50% עבור עמלה בסך 0.005 XMR תוסיף עוד 0.0025 XMR שיישלחו לצוות הפיתוח של מונרו</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="176"/>
+ <source>Allow background mining?</source>
+ <translation>לאפשר כרייה ברקע?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="194"/>
+ <source>Mining secures the Monero network, and also pays a small reward for the work done. This option will let Monero mine when your computer is on mains power and is idle. It will stop mining when you continue working.</source>
+ <translation>כרייה מאבטחת את רשת מונרו ובנוסף מתגמלת בפרס קטן על העבודה. אופציה זו מאפשרת למונרו לכרות כאשר המחשב מחובר לחשמל ואינו פעיל. הכרייה מפסיקה כאשר המחשב חוזר לפעולה.</translation>
+ </message>
+</context>
+<context>
+ <name>WizardFinish</name>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="49"/>
+ <location filename="../wizard/WizardFinish.qml" line="52"/>
+ <location filename="../wizard/WizardFinish.qml" line="54"/>
+ <source>Enabled</source>
+ <translation>פעיל</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="49"/>
+ <location filename="../wizard/WizardFinish.qml" line="52"/>
+ <location filename="../wizard/WizardFinish.qml" line="54"/>
+ <source>Disabled</source>
+ <translation>מבוטל</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="58"/>
+ <source>Language</source>
+ <translation>שפה</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="59"/>
+ <source>Wallet name</source>
+ <translation>שם ארנק</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="60"/>
+ <source>Backup seed</source>
+ <translation>גיבוי משפט סודי</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="61"/>
+ <source>Wallet path</source>
+ <translation>מיקום ארנק</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="67"/>
+ <source>Daemon address</source>
+ <translation>כתובת המסנכרן</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="68"/>
+ <source>Testnet</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="70"/>
+ <source>Restore height</source>
+ <translation>שחזר גובה</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="78"/>
+ <source>New wallet details:</source>
+ <translation>פרטי ארנק חדש:</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="82"/>
+ <source>Don&apos;t forget to write down your seed. You can view your seed and change your settings on settings page.</source>
+ <translation>אל תשכח לרשום את המשפט הסודי. ניתן לצפות במשפט הסודי ולשנות הגדרות בדף ההגדרות</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="128"/>
+ <source>You’re all set up!</source>
+ <translation>הכל מוכן!</translation>
+ </message>
+</context>
+<context>
+ <name>WizardMain</name>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="176"/>
+ <source>A wallet with same name already exists. Please change wallet name</source>
+ <translation>ארנק עם שם כזה כבר קיים. אנא בחר שם אחר</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="184"/>
+ <source>Non-ASCII characters are not allowed in wallet path or account name</source>
+ <translation>תווים שאינם ASCII אינם מותרים בכתובת ארנק או שם חשבון</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="366"/>
+ <source>USE MONERO</source>
+ <translation>התחל עם מונרו!</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="383"/>
+ <source>Create wallet</source>
+ <translation>צור ארנק</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="393"/>
+ <source>Success</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="394"/>
+ <source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
+%1</source>
+ <translation>ארנק לצפייה בלבד נוצר. ניתן לפתוח אותו ע"י סגירת הארנק הנוכחי, לחיצה על &quot;פתח ארנק מקובץ&quot; ובחירת הארנק לצפייה ב:
+%1</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="402"/>
+ <source>Error</source>
+ <translation>שגיאה</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="415"/>
+ <source>Abort</source>
+ <translation>בטל</translation>
+ </message>
+</context>
+<context>
+ <name>WizardManageWalletUI</name>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
+ <source>Wallet name</source>
+ <translation>שם ארנק</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="152"/>
+ <source>Restore from seed</source>
+ <translation>שחזר ממשפט סודי</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="166"/>
+ <source>Restore from keys</source>
+ <translation>שחזר ממפתחות</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="203"/>
+ <source>Account address (public)</source>
+ <translation>כתובת חשבון (ציבורי)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="211"/>
+ <source>View key (private)</source>
+ <translation>מפתח צפייה (סודי)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="220"/>
+ <source>Spend key (private)</source>
+ <translation>מפתח שימוש (סודי)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="232"/>
+ <source>Restore height (optional)</source>
+ <translation>שחזר גובה (אופציונלי)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="245"/>
+ <source>Your wallet is stored in</source>
+ <translation>הארנק שלך מאוחסן ב</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="271"/>
+ <source>Please choose a directory</source>
+ <translation>אנא בחר תיקייה</translation>
+ </message>
+</context>
+<context>
+ <name>WizardMemoTextInput</name>
+ <message>
+ <location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
+ <source>Enter your 25 word mnemonic seed</source>
+ <translation>הכנס את המשפט הסודי בעל 25 המילים</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMemoTextInput.qml" line="88"/>
+ <source>This seed is &lt;b&gt;very&lt;/b&gt; important to write down and keep secret. It is all you need to backup and restore your wallet.</source>
+ <translation>חשוב &lt;b&gt;מאוד&lt;/b&gt; לכתוב ולשמור את המשפט הסודי. זה כל שתצטרך כדי לגבות ולשחזר את הארנק שלך</translation>
+ </message>
+</context>
+<context>
+ <name>WizardOptions</name>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="87"/>
+ <source>Welcome to Monero!</source>
+ <translation>ברוכים הבאים למונרו!</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="98"/>
+ <source>Please select one of the following options:</source>
+ <translation>אנא בחר אחת מהאפשרויות הבאות:</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="155"/>
+ <source>Create a new wallet</source>
+ <translation>צור ארנק חדש</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="197"/>
+ <source>Restore wallet from keys or mnemonic seed</source>
+ <translation>שחזר ארנק ממפתחות או ממשפט סודי</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="241"/>
+ <source>Open a wallet from file</source>
+ <translation>פתח ארנק מקובץ</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="262"/>
+ <source>Custom daemon address (optional)</source>
+ <translation>כתובת מסנכרן מותאמת אישית (אופציונלי)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="295"/>
+ <source>Testnet</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>WizardPassword</name>
+ <message>
+ <location filename="../wizard/WizardPassword.qml" line="57"/>
+ <location filename="../wizard/WizardPassword.qml" line="59"/>
+ <source>Give your wallet a password</source>
+ <translation>הכנס סיסמה לארנק</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardPassword.qml" line="127"/>
+ <source> &lt;br&gt;Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
+ &lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
+ <translation>&lt;br&gt;שים לב: לא ניתן לשחזר סיסמה זו. אם תשכח אותה תצטרך לשחזר את הארנק בעזרת המשפט הסודי בעל 25 המילים.&lt;br&gt;&lt;br&gt;&lt;br&gt;הכנס סיסמה חזקה&lt;br&gt;(אותיות, מספרים ו/או סמלים)</translation>
+ </message>
+</context>
+<context>
+ <name>WizardPasswordUI</name>
+ <message>
+ <location filename="../wizard/WizardPasswordUI.qml" line="70"/>
+ <source>Password</source>
+ <translation>סיסמה</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardPasswordUI.qml" line="82"/>
+ <source>Confirm password</source>
+ <translation>וודא סיסמה</translation>
+ </message>
+</context>
+<context>
+ <name>WizardRecoveryWallet</name>
+ <message>
+ <location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
+ <source>Restore wallet</source>
+ <translation>שחזר ארנק</translation>
+ </message>
+</context>
+<context>
+ <name>WizardWelcome</name>
+ <message>
+ <location filename="../wizard/WizardWelcome.qml" line="79"/>
+ <source>Welcome to Monero!</source>
+ <translation>ברוכים הבאים למונרו!</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardWelcome.qml" line="89"/>
+ <source>Please choose a language and regional format.</source>
+ <translation>אנא בחר שפה.</translation>
+ </message>
+</context>
+<context>
+ <name>main</name>
+ <message>
+ <location filename="../main.qml" line="323"/>
+ <location filename="../main.qml" line="491"/>
+ <location filename="../main.qml" line="503"/>
+ <location filename="../main.qml" line="553"/>
+ <location filename="../main.qml" line="565"/>
+ <location filename="../main.qml" line="607"/>
+ <location filename="../main.qml" line="616"/>
+ <location filename="../main.qml" line="668"/>
+ <location filename="../main.qml" line="706"/>
+ <location filename="../main.qml" line="736"/>
+ <source>Error</source>
+ <translation>שגיאה</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="324"/>
+ <source>Couldn&apos;t open wallet: </source>
+ <translation>לא ניתן לפתוח קובץ: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="355"/>
+ <source>Unlocked balance (waiting for block)</source>
+ <translation>יתרה נעולה (ממתין לבלוק)</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="355"/>
+ <source>Unlocked balance (~%1 min)</source>
+ <translation>יתרה נעולה (~%1 דקות)</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="355"/>
+ <source>Unlocked balance</source>
+ <translation>יתרה נעולה</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="407"/>
+ <source>Waiting for daemon to start...</source>
+ <translation>ממתין למסנכרן הרשת להתחיל...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="413"/>
+ <source>Waiting for daemon to stop...</source>
+ <translation>ממתין למסנכרן הרשת לעצור...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="438"/>
+ <source>Daemon failed to start</source>
+ <translation>מסנכרן הרשת נכשל מלהתחיל</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="439"/>
+ <source>Please check your wallet and daemon log for errors. You can also try to start %1 manually.</source>
+ <translation>אנא בדוק את הארנק שלך ואת יומן המסנכרן עבור שגיאות. באפשרותך גם להתחיל %1 באופן ידני.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="493"/>
+ <source>Can&apos;t create transaction: Wrong daemon version: </source>
+ <translation>לא ניתן לבצע העברה: גרסת מסנכרן שגויה: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="495"/>
+ <location filename="../main.qml" line="608"/>
+ <source>Can&apos;t create transaction: </source>
+ <translation>לא ניתן לבצע העברה: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="504"/>
+ <location filename="../main.qml" line="617"/>
+ <source>No unmixable outputs to sweep</source>
+ <translation>לא קיימות יתרות שאינן ניתנות לשימוש</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="516"/>
+ <location filename="../main.qml" line="629"/>
+ <source>Confirmation</source>
+ <translation>אישור העברה</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="517"/>
+ <location filename="../main.qml" line="630"/>
+ <source>Please confirm transaction:
+</source>
+ <translation>אנא אשר העברה:
+</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="518"/>
+ <source>
+Address: </source>
+ <translation>כתובת: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="519"/>
+ <source>
+Payment ID: </source>
+ <translation>מזהה תשלום: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="520"/>
+ <location filename="../main.qml" line="631"/>
+ <source>
+
+Amount: </source>
+ <translation>
+
+סכום: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="521"/>
+ <location filename="../main.qml" line="632"/>
+ <source>Fee: </source>
+ <translation>עמלה: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="522"/>
+ <source>
+
+Ringsize: </source>
+ <translation>
+
+מספר שולחים פוטנציאלים (גודל חוג):: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="728"/>
+ <source>This address received %1 monero, with %2 confirmation(s).</source>
+ <translation>כתובת זו קיבלה %1 מונרו, עם %2 אישורים.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1317"/>
+ <source>Daemon is running</source>
+ <translation>מסנכרן פועל</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1318"/>
+ <source>Daemon will still be running in background when GUI is closed.</source>
+ <translation>מסנכרן הרשת עדיין ירוץ ברקע כאשר התוכנה תיסגר.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1320"/>
+ <source>Stop daemon</source>
+ <translation>עצור סנכרון</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1355"/>
+ <source>New version of monero-wallet-gui is available: %1&lt;br&gt;%2</source>
+ <translation>גרסה חדשה של מונרו זמינה: %1&lt;br&gt;%2</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="523"/>
+ <source>
+Number of transactions: </source>
+ <translation>מספר עסקאות: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="524"/>
+ <source>
+
+Description: </source>
+ <translation>
+
+תיאור: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="554"/>
+ <source>Amount is wrong: expected number from %1 to %2</source>
+ <translation>סכום שגוי: טווח הערכים הוא %1 עד %2</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="566"/>
+ <source>Insufficient funds. Unlocked balance: %1</source>
+ <translation>יתרה אינה מספיקה. יתרה זמינה: %1</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="669"/>
+ <source>Couldn&apos;t send the money: </source>
+ <translation>שליחת הכסף נכשלה</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="672"/>
+ <source>Information</source>
+ <translation>מידע</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="678"/>
+ <source>Money sent successfully: %1 transaction(s) </source>
+ <translation>כסף נשלח בהצלחה: %1 עסקאות</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="678"/>
+ <source>Transaction saved to file: %1</source>
+ <translation>העברה נשמרה לקובץ: %1</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="718"/>
+ <source>Payment check</source>
+ <translation>בדוק תשלום</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="723"/>
+ <source>This address received %1 monero, but the transaction is not yet mined</source>
+ <translation>כתובת זו קיבלה %1 מונרו, אך ההעברה טרם אושרה ע"י הרשת</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="732"/>
+ <source>This address received nothing</source>
+ <translation>כתובת זו לא קיבלה כלום</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="744"/>
+ <source>Balance (syncing)</source>
+ <translation>יתרה (סנכרון מתבצע)</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="744"/>
+ <source>Balance</source>
+ <translation>יתרה</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="978"/>
+ <source>Please wait...</source>
+ <translation>אנא המתן...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1002"/>
+ <source>Program setup wizard</source>
+ <translation>אשף התקנה</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1017"/>
+ <source>Monero</source>
+ <translation>מונרו</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1065"/>
+ <source>send to the same destination</source>
+ <translation>שלח לאותו היעד</translation>
+ </message>
+</context>
+</TS>
diff --git a/translations/monero-core_hi.ts b/translations/monero-core_hi.ts
index a6e093f4..562a5e08 100644
--- a/translations/monero-core_hi.ts
+++ b/translations/monero-core_hi.ts
@@ -14,86 +14,55 @@
<translation>पता</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>भुगतान आईडी &lt;font size=&apos;2&apos;&gt;(वैकल्पिक)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation type="unfinished">त्रुटि</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation type="unfinished"></translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">विवरण &lt;font size=&apos;2&apos;&gt;(स्थानीय डेटाबेस)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">जोड़ें</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">भुगतान आईडी</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">विवरण</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -130,26 +99,6 @@
<source>2324.9239845</source>
<translation type="unfinished"></translation>
</message>
- <message>
- <source>amount...</source>
- <translation type="vanished">राशि...</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">भेजें</translation>
- </message>
- <message>
- <source>destination...</source>
- <translation type="vanished">गंतव्य...</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">गोपनीयता स्तर</translation>
- </message>
- <message>
- <source>payment ID (optional)...</source>
- <translation type="vanished">भुगतान आईडी (वैकल्पिक)...</translation>
- </message>
</context>
<context>
<name>DaemonConsole</name>
@@ -226,31 +175,6 @@
<context>
<name>History</name>
<message>
- <source>Filter trasactions history</source>
- <translation type="vanished">लेनदेन इतिहास फिल्टर करें</translation>
- </message>
- <message>
- <source>Address</source>
- <translation type="vanished">पता</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
- <translation type="vanished">भुगतान आईडी &lt;font size=&apos;2&apos;&gt;(वैकल्पिक)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">विवरण &lt;font size=&apos;2&apos;&gt;(स्थानीय डेटाबेस)&lt;/font&gt;</translation>
- </message>
- <message>
<location filename="../pages/History.qml" line="70"/>
<source> selected: </source>
<translation type="unfinished"></translation>
@@ -261,55 +185,38 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>तिथि से</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>तक</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">फिल्टर करें</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Advance filtering</source>
- <translation type="vanished">उन्नत फिल्टर</translation>
- </message>
- <message>
- <source>Type of transation</source>
- <translation type="vanished">लेनदेन के प्रकार</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>राशि</translation>
</message>
@@ -383,10 +290,6 @@
<translation type="unfinished"></translation>
</message>
<message>
- <source>Balance</source>
- <translation type="vanished">धनराशि</translation>
- </message>
- <message>
<location filename="../components/HistoryTable.qml" line="357"/>
<source>Amount</source>
<translation>राशि</translation>
@@ -405,111 +308,97 @@
<translation>धनराशि</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation>परीक्षण उपाय 1&lt;br/&gt;&lt;br/&gt;line 2</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>खुली धनराशि</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation>परीक्षण उपाय 2&lt;br/&gt;&lt;br/&gt;line 2</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Transfer</source>
- <translation type="vanished">स्थानांतरण</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>प्राप्त करें</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation type="unfinished"></translation>
</message>
@@ -682,18 +571,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">निम्न</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">मध्यम</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">उच्च</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation type="unfinished"></translation>
@@ -810,10 +687,6 @@
<translation type="unfinished"></translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">यहाँ केवल पठनीय वॉलेट एकीकृत पता प्रदर्शित है</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="309"/>
<source>Amount</source>
<translation type="unfinished">राशि</translation>
@@ -859,10 +732,6 @@
<translation>भुगतान आईडी</translation>
</message>
<message>
- <source>PaymentID here</source>
- <translation type="vanished">भुगतान आईडी यहाँ</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="254"/>
<source>Generate</source>
<translation>उत्पन्न करें</translation>
@@ -1267,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
- <source>All</source>
+ <source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="201"/>
- <source>Sent</source>
+ <source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
+ <source>All</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
+ <source>Sent</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation type="unfinished"></translation>
</message>
@@ -1330,18 +1219,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">निम्न</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">मध्यम</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">उच्च</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation type="unfinished"></translation>
@@ -1358,13 +1235,6 @@
</message>
</context>
<context>
- <name>TitleBar</name>
- <message>
- <source>Monero - Donations</source>
- <translation type="vanished">Monero - डोनेशन</translation>
- </message>
-</context>
-<context>
<name>Transfer</name>
<message>
<location filename="../pages/Transfer.qml" line="66"/>
@@ -1387,12 +1257,12 @@
<translation></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation type="unfinished"></translation>
</message>
@@ -1402,58 +1272,58 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation type="unfinished"></translation>
</message>
@@ -1468,202 +1338,166 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation type="unfinished">त्रुटि</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation type="unfinished">जानकारी</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation type="unfinished">पुष्टिकरण</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation type="unfinished">पैसे सफलतापूर्वक भेजे गए</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Amount...</source>
- <translation type="vanished">राशि....</translation>
- </message>
- <message>
- <source>LOW</source>
- <translation type="vanished">निम्न</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">मध्यम</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">उच्च</translation>
- </message>
- <message>
- <source>Privacy Level</source>
- <translation type="vanished">गोपनीयता स्तर</translation>
- </message>
- <message>
- <source>Cost</source>
- <translation type="vanished">मूल्य</translation>
- </message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="obsolete">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; पता &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;पता&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; पुस्तिका )&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>भुगतान आईडी &lt;font size=&apos;2&apos;&gt;( वैकल्पिक )&lt;/font&gt;</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">विवरण &lt;font size=&apos;2&apos;&gt;( एक वैकल्पिक विवरण जिसे दर्ज़ करने पर यह स्थानीय पता पुस्तिका में सहेजा जायेगा )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">भेजें</translation>
- </message>
</context>
<context>
<name>TxKey</name>
@@ -1741,10 +1575,6 @@ Please upgrade or connect to another daemon</source>
<translation>Kickstart the Monero ब्लॉकचेन?</translation>
</message>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">इसे लिखना बहुत आवश्यक है क्योंकि अपने वॉलेट के लिए आपको बस इस एकमात्र बैकअप की जरुरत पड़ेगी। यह सही से कॉपी किया गया है यह सुनिश्चित करने के लिए आपको अगली स्क्रीन पर सीड की पुष्टि करने के लिए कहा जायेगा।</translation>
- </message>
- <message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
<translation type="unfinished"></translation>
@@ -1781,14 +1611,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">आपके लिए एक नया वॉलेट बनाया गया है</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">यह आपके वॉलेट के लिए 25 शब्दों का स्मरक है</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation type="unfinished"></translation>
@@ -1830,42 +1652,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardFinish</name>
<message>
- <source>&lt;b&gt;Language:&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;भाषा:&lt;/b&gt;</translation>
- </message>
- <message>
- <source>&lt;b&gt;Account name:&lt;/b&gt; </source>
- <translation type="vanished">&lt;b&gt;खाता नाम:&lt;/b&gt; </translation>
- </message>
- <message>
- <source>&lt;b&gt;Words:&lt;/b&gt; </source>
- <translation type="vanished">&lt;b&gt;शब्द:&lt;/b&gt; </translation>
- </message>
- <message>
- <source>&lt;b&gt;Wallet Path: &lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;वॉलेट पाथ: &lt;/b&gt;</translation>
- </message>
- <message>
- <source>&lt;b&gt;Enable auto donation: &lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;ऑटो डोनेशन सक्षम करें: &lt;/b&gt;</translation>
- </message>
- <message>
- <source>&lt;b&gt;Auto donation amount: &lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;ऑटो डोनेशन राशि: &lt;/b&gt;</translation>
- </message>
- <message>
- <source>&lt;b&gt;Allow background mining: &lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;बैकग्राउंड माइनिंग की अनुमति दें: &lt;/b&gt;</translation>
- </message>
- <message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">आपके Monero कॉन्फ़िगरेशन की समीक्षा नीचे दी गयी है:</translation>
- </message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">आप बिल्कुल तैयार हैं!</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="49"/>
<location filename="../wizard/WizardFinish.qml" line="52"/>
<location filename="../wizard/WizardFinish.qml" line="54"/>
@@ -1977,14 +1763,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">यह आपके वॉलेट का नाम है। यदि आप चाहें तो इसे दूसरे नाम में बदल सकते हैं:</translation>
- </message>
- <message>
- <source>My account name</source>
- <translation type="vanished">मेरा खाता नाम</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation type="unfinished"></translation>
@@ -2033,10 +1811,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">इसे लिखना बहुत आवश्यक है क्योंकि अपने वॉलेट के लिए आपको बस इस एकमात्र बैकअप की जरुरत पड़ेगी। यह सही से कॉपी किया गया है यह सुनिश्चित करने के लिए आपको अगली स्क्रीन पर सीड की पुष्टि करने के लिए कहा जायेगा।</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation type="unfinished"></translation>
@@ -2084,32 +1858,10 @@ Please upgrade or connect to another daemon</source>
<source>Testnet</source>
<translation type="unfinished"></translation>
</message>
- <message>
- <source>This is my first time, I want to&lt;br/&gt;create a new account</source>
- <translation type="vanished">यह मेरे लिए पहली बार है, मैं एक नया&lt;br/&gt;खाता बनाना चाहता हूँ</translation>
- </message>
- <message>
- <source>I want to recover my account&lt;br/&gt;from my 24 work seed</source>
- <translation type="vanished">मैं अपने 24 वर्क सीड से अपना खाता&lt;br/&gt;रिकवर करना चाहता हूँ </translation>
- </message>
</context>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">अब जबकि आपका वॉलेट बन गया है, कृपया वॉलेट के लिए पासवर्ड निर्धारित करें</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">अब जबकि आपका वॉलेट पुनर्स्थापित हो गया है, कृपया वॉलेट के लिए पासवर्ड निर्धारित करें</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">ध्यान रखें, यह पासवर्ड दोबारा प्राप्त नहीं किया जा सकता है, और यदि आप इसे भूल जाते हैं तो आपको दिए गए स्मरक सीड से अपना वॉलेट पुनर्स्थापित करने की जरुरत पड़ेगी &lt;br/&gt;&lt;br/&gt;
- आपका पासवर्ड वॉलेट सुरक्षित रखने के लिए और गतिविधियों की पुष्टि करने के लिए प्रयोग किया जायेगा, तो इस बात का ध्यान रखें कि आपका पासवर्ड पर्याप्त रूप से सुरक्षित रहे।</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2138,18 +1890,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>My account name</source>
- <translation type="vanished">मेरा खाता नाम</translation>
- </message>
- <message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">हम आपका खाता रिकवर करने के लिए तैयार हैं</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">कृपया अपनी 25 शब्दों की गोपनीय कुंजी डालें</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation type="unfinished"></translation>
@@ -2158,10 +1898,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">आपका स्वागत है</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation type="unfinished">Monero में आपका स्वागत है!</translation>
@@ -2386,26 +2122,6 @@ Description: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>Please confirm transaction:</source>
- <translation type="vanished">कृपया लेनदेन की पुष्टि करें:</translation>
- </message>
- <message>
- <source>Address: </source>
- <translation type="vanished">पता:</translation>
- </message>
- <message>
- <source>Payment ID: </source>
- <translation type="vanished">भुगतान आईडी:</translation>
- </message>
- <message>
- <source>Amount: </source>
- <translation type="vanished">राशि:</translation>
- </message>
- <message>
- <source>Fee: </source>
- <translation type="vanished">शुल्क:</translation>
- </message>
- <message>
<location filename="../main.qml" line="669"/>
<source>Couldn&apos;t send the money: </source>
<translation>पैसेनहीं भेज पाया: </translation>
@@ -2416,23 +2132,11 @@ Description: </source>
<translation>जानकारी</translation>
</message>
<message>
- <source>Money sent successfully</source>
- <translation type="vanished">पैसे सफलतापूर्वक भेजे गए</translation>
- </message>
- <message>
- <source>Initializing Wallet...</source>
- <translation type="vanished">वॉलेट प्रारंभ हो रहा है...</translation>
- </message>
- <message>
<location filename="../main.qml" line="1002"/>
<source>Program setup wizard</source>
<translation>प्रोग्राम सेटअप विज़ार्ड</translation>
</message>
<message>
- <source>Monero - Donations</source>
- <translation type="vanished">Monero - डोनेशन</translation>
- </message>
- <message>
<location filename="../main.qml" line="1065"/>
<source>send to the same destination</source>
<translation>समान गंतव्य पर भेजें</translation>
diff --git a/translations/monero-core_hr.ts b/translations/monero-core_hr.ts
index ed7e9a53..ffe579c7 100644
--- a/translations/monero-core_hr.ts
+++ b/translations/monero-core_hr.ts
@@ -14,67 +14,52 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation type="unfinished"></translation>
</message>
@@ -200,52 +185,38 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation type="unfinished"></translation>
</message>
@@ -332,42 +303,32 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation type="unfinished"></translation>
</message>
@@ -377,67 +338,67 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
@@ -1175,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
- <source>All</source>
+ <source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="201"/>
- <source>Sent</source>
+ <source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
+ <source>All</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
+ <source>Sent</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation type="unfinished"></translation>
</message>
@@ -1276,164 +1257,164 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation type="unfinished"></translation>
</message>
@@ -1443,12 +1424,12 @@ Please upgrade or connect to another daemon</source>
<translation></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
@@ -1463,57 +1444,57 @@ Please upgrade or connect to another daemon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation type="unfinished"></translation>
</message>
diff --git a/translations/monero-core_id.ts b/translations/monero-core_id.ts
index ce326090..54953816 100644
--- a/translations/monero-core_id.ts
+++ b/translations/monero-core_id.ts
@@ -14,86 +14,55 @@
<translation>Alamat</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>Kode QR</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Menandai Pembayaran&lt;font size=&apos;2&apos;&gt;(opsional)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;Menandai Pembayaran&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Pengenal unik degunakan dalam&lt;br/&gt;buku alamal. Tidak pernah dikirim ke orang-orang lain</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Merekatkan 64 simbol heksadesimal</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Catatan &lt;font size=&apos;2&apos;&gt;(Ikhtiari)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>Pililah nama atau menuliskan catatan untuk alamat ini</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Tambah</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Kesalahan</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Macam alamat salah</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>Tidak dapat membuat catatan</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">Catatan &lt;font size=&apos;2&apos;&gt;(Disimpan secara lokal)&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation></translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">TAMBAH</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">Menandai Pembayaran</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">Catatan</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -163,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">Menerima dan memeriksa blok %1/%2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="vanished">Menerima dan memeriksa blok</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -227,68 +185,38 @@
<translation>Menyaring riwayat transaksi</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Jumlah total untuk pembayaran yang dipilih&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Mengetik untuk pencarian tambahan...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Menyaring</translation>
</message>
<message>
- <source>Incremental search</source>
- <translation type="vanished">Pencarian aktif</translation>
- </message>
- <message>
- <source>Search transfers for a given string</source>
- <translation type="vanished">Cari pembayaran dengan catatan khusus</translation>
- </message>
- <message>
- <source>Type search string</source>
- <translation type="vanished">Masukan catatan yang ingin dicari</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Dari tanggal</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>Ke</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">MENYARING</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Penyaringan terperinci</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Golongan transaksi</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Jumlah dari</translation>
</message>
@@ -375,50 +303,32 @@
<translation>Saldo Rekening</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Saldo rekening yang tidak terkunci</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>KIRIM</translation>
</message>
<message>
- <source>T</source>
- <translation type="vanished">T</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Menerima</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>R</translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="vanished">Mengesahkan pembayaran</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Riwayat</translation>
</message>
@@ -428,67 +338,67 @@
<translation>Testnet (jaringan pelatihan)</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>Buku alamat</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>Terperinci</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>Pertambangan</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>Mengesahkan pembayaran</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Menandatangani/mengesahkan</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>S</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Pengaturan</translation>
</message>
@@ -496,14 +406,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="vanished">Saldo rekening:</translation>
- </message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="vanished">Saldo rekening yang tidak terkunci:</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>Saldo Rekening</translation>
@@ -527,26 +429,6 @@
<translation>(Hanya untuk jurik lokal)</translation>
</message>
<message>
- <source>Mining helps the Monero network build resilience.&lt;br&gt;</source>
- <translation type="vanished">Pertambangan menjaminkan sekuritas jaringan Monero.&lt;br&gt;</translation>
- </message>
- <message>
- <source>The more mining is done, the harder it is to attack the network.&lt;br&gt;</source>
- <translation type="vanished">Makin banyak pertambangan, makin jaringan lebih mempertahankan</translation>
- </message>
- <message>
- <source>Mining also gives you a small chance to earn some Monero.&lt;br&gt;</source>
- <translation type="vanished">Pertambangan juga memberikan Anda sebuah kesempatan supaya memenangkan sedikit Monero.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Your computer will search for Monero block solutions.&lt;br&gt;</source>
- <translation type="vanished">Komputer Anda akan menebak untuk kunci blok Monero.&lt;br&gt;</translation>
- </message>
- <message>
- <source>If you find a block, you will get the associated reward.&lt;br&gt;</source>
- <translation type="vanished">Jika Anda menemukan kunci yang pas, Anda akan menang sedikit Monero</translation>
- </message>
- <message>
<location filename="../pages/Mining.qml" line="86"/>
<source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
<translation>Pertambangan dengan komputer Anda menolong mempertahankan jaringan Monero. Makin banyak orang-orang pertambangan, makin sulit menyerangkan jaringan, dan setiap komputer membantu, memang yang kecil.&lt;br&gt; &lt;br&gt;Pertambangan juga memberikan Anda sebuah kesempatan supaya memenangkan sedikit Monero. Komputer Anda akan menebak untuk kunci blok Monero. Jika Anda menemukan kunci yang pas, Anda akan menang sedikit Monero. Semoga sukses!</translation>
@@ -689,18 +571,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">RENDAH</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">SEDANG</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">TINGGI</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation>Rendah</translation>
@@ -817,10 +687,6 @@
<translation>Jumlah untuk terima</translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">Alamat tergabung dompet BacaSaja ditampilkan disini</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="338"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Pelacakan &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
@@ -856,10 +722,6 @@
<translation>Menandai pembayaran</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="vanished">16 atau 64 simbol heksadesimal</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="254"/>
<source>Generate</source>
<translation>Membuat</translation>
@@ -914,27 +776,11 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="vanished">Pekan tombol untuk menunjukkan biji acak Anda</translation>
- </message>
- <message>
- <source>Mnemonic seed: </source>
- <translation type="vanished">Kata-kata biji acak Anda:</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="103"/>
<source>Create view only wallet</source>
<translation>Membuat dompet hanya untuk menonton</translation>
</message>
<message>
- <source>Show seed</source>
- <translation type="vanished">Menunjukkan biji acak</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="193"/>
<source>Manage daemon</source>
<translation>Mengelola jurik</translation>
@@ -1066,10 +912,6 @@
<translation type="unfinished">Membatalkan</translation>
</message>
<message>
- <source>Save</source>
- <translation type="vanished">Menyimpan</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="398"/>
<source>Layout settings</source>
<translation>Pengaturan tata letak</translation>
@@ -1110,10 +952,6 @@
<translation>Log jurik</translation>
</message>
<message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">Kata-kata biji acak untuk dompet Anda</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -1155,10 +993,6 @@
<translation>Mengelola dompet Anda</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="vanished">Menutup dompet saat ini dan membuka wizard</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>Menutup dompet</translation>
@@ -1236,20 +1070,12 @@
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Alamat menandatangani &lt;font size=&apos;2&apos;&gt; ( Merekatkan atau pilih dari &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Buku alamat&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="vanished">MENANDATANGANI</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>Atau arsip:</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="vanished">MEMILIH</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>Nama arsip dengan pesan untuk ditandatangani</translation>
@@ -1273,18 +1099,10 @@
<translation>Pesan untuk disahkan</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="vanished">MENGESAHKAN</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>Nama arsip dengan pesan untuk disahkan</translation>
</message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Alamat penandatanganan &lt;font size=&apos;2&apos;&gt; ( Mengetikkan atau memilih dari &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Buku alamat&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
- </message>
</context>
<context>
<name>StandardDialog</name>
@@ -1318,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>Semua</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Terkirim</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Diterima</translation>
</message>
@@ -1340,10 +1178,6 @@
<translation>&lt;b&gt;Menyalin alamat ke clipboard&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;Mengirim ke tujuan yang sama&lt;b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
<translation type="unfinished"></translation>
@@ -1385,18 +1219,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">RENDAH</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">SEDANG</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">TINGGI</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation>Biasa</translation>
@@ -1440,108 +1262,108 @@
<translation>Kepentingan transaksi</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>Rendah (biaya x1)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>Sedang (biaya x20)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>Tinggi (biaya x166)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Alamat &lt;font size=&apos;2&apos;&gt; ( Merekatkan atau memilih dari &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Buku alamat&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>Kode QR</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Menyelesaikan</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>Tidak menerima alamat yang sah dari alamat OpenAddress ini</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>Alamat ditemukan, tetapi tanda tangan DNSSEC tidak dapat disahkan, jadi adalah kemungkinan alamat ini telah dipalsukan</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>Tidak menerima alamat yang sah dari alamat OpenAddress ini, dan juga tanda tangan DNSSEC tidak dapat disahkan, jadi adalah kemungkinan ini telah dipalsukan</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Kesalahan internal</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Tidak dapat menemukan alamat</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Catatan &lt;font size=&apos;2&apos;&gt;( Opsional )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Sedia dalam riwayat dompet lokal</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>MENGIRIM</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Menunjukkan opsi terperinci</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>Menggabungkan transaksi yang tak dapat dicampurkan</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>Membuat arsip transaksi</translation>
</message>
@@ -1551,120 +1373,108 @@
<translation>Semua</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>Menandatangani arsip transaksi</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>Menyerahkan arsip transaksi</translation>
</message>
<message>
- <source>Rescan spent</source>
- <translation type="vanished">Periksakan lagi yang terhabiskan</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Kesalahan</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">Kesalahan: </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Informasi</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">Keperiksaan yang terkeluar dengan sukses</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>&gt;Mohon memilih arsip</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>Tidak bisa membuka transaksi yang tidak ditandatangani: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>Jumlah transaksi: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>Transaksi #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>Penerima: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>Menandai Pembayaran: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>Jumlah: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>Biaya: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>Ukuran cincin: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Konfirmasi</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>Tidak bisa mengirim transaksi: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>Uang terkirim dengan sukses</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>Dompet tidak dapat menghubung ke jurik</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>Jurik yang terhubung tidak cocok dengan GUI. Silahkan meningkatkan jurik atau menghubungkan jurik yang lain</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Menunggu jurik untuk selesai menerima dan memeriksa blok</translation>
</message>
@@ -1674,80 +1484,24 @@ Please upgrade or connect to another daemon</source>
<translation></translation>
</message>
<message>
- <source>or ALL</source>
- <translation type="vanished">atau SEMUA</translation>
- </message>
- <message>
- <source>LOW</source>
- <translation type="vanished">RENDAH</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">SEDANG</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">TINGGI</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">Tingkatan privasi</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Biaya transaksi</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Alamat &lt;font size=&apos;2&apos;&gt; ( Mengetikkan atau memilih dari &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Buku alamat&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Menandai pembayaran &lt;font size=&apos;2&apos;&gt;( Ikhtiari )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 atau 64 simbol heksadesimal</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">Catatan &lt;font size=&apos;2&apos;&gt;(Catatan ikhtiari yang akan disimpan dalam buku alamat lokal)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">KIRIM</translation>
- </message>
- <message>
- <source>SWEEP UNMIXABLE</source>
- <translation type="vanished">MENGUMPULKAN KELUARAN YANG TIDAK DAPAT DICAMPUR</translation>
- </message>
</context>
<context>
<name>TxKey</name>
<message>
- <source>You can verify that a third party made a payment by supplying:</source>
- <translation type="vanished">Anda bisa periksa pembayaran oleh pihak ketiga dengan:</translation>
- </message>
- <message>
- <source> - the recipient address,</source>
- <translation type="vanished"> - alamat penerima,</translation>
- </message>
- <message>
- <source> - the transaction ID,</source>
- <translation type="vanished"> - menandai transaksi</translation>
- </message>
- <message>
- <source> - the tx secret key supplied by the sender</source>
- <translation type="vanished"> - rahasia transaksi dari pengirim</translation>
- </message>
- <message>
- <source>If a payment was made up of several transactions, each transaction must be checked, and the results added</source>
- <translation type="vanished">Jika pembayaran termasuk beberapa transaksi, setiapnya harus diperiksa dan hasil ditambah</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="90"/>
<source>Verify that a third party made a payment by supplying:</source>
<translation>Anda bisa periksa pembayaran oleh pihak ketiga dengan:</translation>
@@ -1803,22 +1557,10 @@ Please upgrade or connect to another daemon</source>
<translation>Periksa</translation>
</message>
<message>
- <source>Transaction ID here</source>
- <translation type="vanished">Menandai transaksi disini</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="185"/>
<source>Transaction key</source>
<translation>Kunci transaksi</translation>
</message>
- <message>
- <source>Transaction key here</source>
- <translation type="vanished">Kunci transaksi disini</translation>
- </message>
- <message>
- <source>CHECK</source>
- <translation type="vanished">MEMERIKSA</translation>
- </message>
</context>
<context>
<name>WizardConfigure</name>
@@ -1833,10 +1575,6 @@ Please upgrade or connect to another daemon</source>
<translation>Mulailah rantaiblok Monero?</translation>
</message>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan. Langsung, Anda akan diminta memastikan biji acak supaya dicatat dengan benar</translation>
- </message>
- <message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
<translation>Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan</translation>
@@ -1873,14 +1611,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">Dompet baru telah dibuat untuk Anda</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">Ini adalah 25 kata-kata biji acak untuk dompet Anda</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>Membuat dompet baru</translation>
@@ -1941,14 +1671,6 @@ Please upgrade or connect to another daemon</source>
<translation>Bahasa</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="vanished">Nama saldo rekening</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="vanished">Biji acak</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
<translation>Nama dompet</translation>
@@ -1993,14 +1715,6 @@ Please upgrade or connect to another daemon</source>
<source>You’re all set up!</source>
<translation>Semua siap!</translation>
</message>
- <message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">Gambaran konfigurasi Monero Anda diberikan di bawah ini:</translation>
- </message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">Semua siap!</translation>
- </message>
</context>
<context>
<name>WizardMain</name>
@@ -2049,14 +1763,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">Ini nama dompet Anda. Bisa digantikan untuk nama lain kalau Anda ingin:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="vanished">Mengembalikan dari nomor blok</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation>Nama dompet</translation>
@@ -2105,10 +1811,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">Sangat penting ini dicatat karena cuma oleh sebagai ini dompet Anda dapat dipulihkan. Langsung, Anda akan diminta memastikan biji acak supaya dicatat dengan benar</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation>Memasukkan 25 kata-kata biji acak Anda</translation>
@@ -2152,22 +1854,6 @@ Please upgrade or connect to another daemon</source>
<translation>Alamat jurik yang dipilih oleh Anda (opsional)</translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="vanished">Ini saat pertama saya, dan saya ingin membuat rekening yang baru</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="vanished">Saya ingin mengembalikan rekening dari 25 kata-kata biji acak saya</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="vanished">Saya ingin membuka dompet dari arsip</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="vanished">Mohon mendirikan alamat jurik di bawah ini.</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>Testnet (jaringan pelatihan)</translation>
@@ -2176,28 +1862,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">Mohon memilih kata sandi untuk dompet anda yang baru dibuat</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">Mohon memilih kata sandi untuk dompet anda yang baru dikembalikan</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">Ingatlah kata sandi ini tidak dapat dikembalikan, dan kalau lupa, dompet Anda harus dikembalikan dari biji acak yang baru dicatat&lt;br/&gt;&lt;br/&gt;
- Kata sandi anda akan digunakan supaya melindungi dompet Anda dan juga mengizinkan setiap tindakan, jadi memastikan kata sandi Anda cukup sulit</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="vanished">Kata sandi</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="vanished">Memastikan kata sandi</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2210,12 +1874,6 @@ Please upgrade or connect to another daemon</source>
<translation> &lt;br&gt;Peringatan: kata sandi ini tidak pernah dapat diperoleh kembali. Jika Anda lupa kata sandi, dompet Anda harus dikembalikan dari kata biji acak.&lt;br/&gt;&lt;br/&gt;
&lt;b&gt;Mohon memilih kata sandi yang sulit&lt;/b&gt; (dengan huruf, nomor dan/atau simbol):</translation>
</message>
- <message>
- <source>Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
- <translation type="vanished">Peringatan: kata sandi ini tidak pernah dapat diperoleh kembali. Jika Anda lupa kata sandi, dompet Anda harus dikembalikan dari kata biji acak.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Mohon memilih kata sandi yang sulit&lt;/b&gt; (dengan huruf, nomor dan/atau simbol):</translation>
- </message>
</context>
<context>
<name>WizardPasswordUI</name>
@@ -2233,14 +1891,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">Siap mengembalikan rekening Anda</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">Silahkan memasuk 25 kata-kata biji acak Anda</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation>Mengembalikan dompet</translation>
@@ -2249,10 +1899,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">Selamat Datang</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>Selamat datang di dunia Monero!</translation>
@@ -2285,10 +1931,6 @@ Please upgrade or connect to another daemon</source>
<translation>Tidak bisa membuka dompet: </translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="vanished">Menerima dan memeriksa blok %1 / %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="493"/>
<source>Can&apos;t create transaction: Wrong daemon version: </source>
<translation>Tidak bisa membuat transaksi: Versi jurik yang salah: </translation>
@@ -2312,38 +1954,6 @@ Please upgrade or connect to another daemon</source>
<translation>Konfirmasi</translation>
</message>
<message>
- <source>Please confirm transaction:</source>
- <translation type="vanished">Silahkan mengkonfirmasi transaksi:</translation>
- </message>
- <message>
- <source>Address: </source>
- <translation type="vanished">Alamat: </translation>
- </message>
- <message>
- <source>Payment ID: </source>
- <translation type="vanished">Menandai pembayaran : </translation>
- </message>
- <message>
- <source>Amount: </source>
- <translation type="vanished">Jumlah: </translation>
- </message>
- <message>
- <source>Fee: </source>
- <translation type="vanished">Biaya: </translation>
- </message>
- <message>
- <source>Mixin: </source>
- <translation type="vanished">Campuran: </translation>
- </message>
- <message>
- <source>Number of transactions: </source>
- <translation type="vanished">Nomor transaksi: </translation>
- </message>
- <message>
- <source>Description: </source>
- <translation type="vanished">Catatan: </translation>
- </message>
- <message>
<location filename="../main.qml" line="355"/>
<source>Unlocked balance (waiting for block)</source>
<translation>Saldo rekening yang tidak terkunci (sedang menunggu blok)</translation>
@@ -2498,10 +2108,6 @@ Description: </source>
<translation>Versi baru untuk monero-wallet-gui tersedia: %1&lt;br&gt;%2</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="vanished">Alamat ini menerima %1 monero, dengan %2 konfirmasi</translation>
- </message>
- <message>
<location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>Alamat ini tidak menerima apa-apa</translation>
diff --git a/translations/monero-core_it.ts b/translations/monero-core_it.ts
index cd13c22e..40906cc9 100644
--- a/translations/monero-core_it.ts
+++ b/translations/monero-core_it.ts
@@ -14,67 +14,52 @@
<translation>Indirizzo</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>Codice QR</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>ID Pagamento &lt;font size=&apos;2&apos;&gt;(Opzionale)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Inserisci 64 caratteri esadecimali</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Descrizione &lt;font size=&apos;2&apos;&gt;(Opzionale)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>Inserisci nome o descrizione</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Aggiungi</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Errore</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Indirizzo invalido</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>Impossibile creare questa voce</translation>
</message>
@@ -147,9 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -193,15 +175,6 @@
<context>
<name>History</name>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="../pages/History.qml" line="135"/>
<source>Filter transaction history</source>
<translation>Filtra lo storico transazioni</translation>
@@ -212,43 +185,38 @@
<translation>selezionato:</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Totale pagamenti selezionati&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Inserisci per ricerca incrementale...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Data da</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>A</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Filtra</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Filtri avanzati</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Tipo di transazione</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Quantità da</translation>
</message>
@@ -335,42 +303,32 @@
<translation>Totale</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Totale sbloccato</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>Invia</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Ricevi</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>R</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Storico</translation>
</message>
@@ -380,67 +338,67 @@
<translation>Testnet</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>Rubrica</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>Avanzate</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>Mining</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>Verifica pagamento</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Firma/verifica</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Impostazioni</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>S</translation>
</message>
@@ -473,7 +431,7 @@
<message>
<location filename="../pages/Mining.qml" line="86"/>
<source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
- <translation>Minare con il tuo computer incrementa la resistenza del network. Più persone minano, più è difficile attaccare monero, e anche un singolo bit è importante.&lt;br&gt; &lt;br&gt;Minare ti da anche una piccola chance di guadagnare qualche Monero. Il tuo computer creerà "hashes" cercando di risolvere un blocco. Se ne trovi uno, riceverai la ricompensa associata al blocco. Buona fortuna!</translation>
+ <translation>Minare con il tuo computer incrementa la resistenza del network. Più persone minano, più è difficile attaccare monero, e anche un singolo bit è importante.&lt;br&gt; &lt;br&gt;Minare ti da anche una piccola chance di guadagnare qualche Monero. Il tuo computer creerà &quot;hashes&quot; cercando di risolvere un blocco. Se ne trovi uno, riceverai la ricompensa associata al blocco. Buona fortuna!</translation>
</message>
<message>
<location filename="../pages/Mining.qml" line="96"/>
@@ -746,7 +704,7 @@
<message>
<location filename="../pages/Receive.qml" line="285"/>
<source>Generate payment ID for integrated address</source>
- <translation>Genera ID Pagamento per l'indirizzo integrato</translation>
+ <translation>Genera ID Pagamento per l&apos;indirizzo integrato</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="309"/>
@@ -771,7 +729,7 @@
<message>
<location filename="../pages/Receive.qml" line="344"/>
<source>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;This is a simple sales tracker:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Click Generate to create a random payment id for a new customer&lt;/p&gt; &lt;p&gt;Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).&lt;/p&gt;&lt;p&gt;This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.&lt;/p&gt;It&apos;s up to you whether to accept unconfirmed transactions or not. It is likely they&apos;ll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).&lt;/p&gt;</source>
- <translation type="unfinished">&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;Questo è un semplice tracker per le vendite:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Clicca "Genera" per creare un ID Pagamento casuale per un nuovo cliente&lt;/p&gt; &lt;p&gt;Fai scannerizzare al cliente il codice QR per effettuare un pagamento (Se il cliente possiede un QR scanner).&lt;/p&gt;&lt;p&gt;Questa pagina scannerizzerà automaticamente la blockchain e il txpool in cerca di transazioni in entrata usando il codice QR. Se inserisci una qauntità controllerà anche se ci sono transazioni in entrata per l'ammontare specificato.&lt;/p&gt;It&apos;Sta a te decidere se accettare transazioni non confermate.</translation>
+ <translation type="unfinished">&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;Questo è un semplice tracker per le vendite:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Clicca &quot;Genera&quot; per creare un ID Pagamento casuale per un nuovo cliente&lt;/p&gt; &lt;p&gt;Fai scannerizzare al cliente il codice QR per effettuare un pagamento (Se il cliente possiede un QR scanner).&lt;/p&gt;&lt;p&gt;Questa pagina scannerizzerà automaticamente la blockchain e il txpool in cerca di transazioni in entrata usando il codice QR. Se inserisci una qauntità controllerà anche se ci sono transazioni in entrata per l&apos;ammontare specificato.&lt;/p&gt;It&apos;Sta a te decidere se accettare transazioni non confermate.</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="254"/>
@@ -1178,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished">Lento (x0.25 tassa)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished">Default (x1 tassa)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished">Veloce (x5 tassa)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished">Velocissimo (x41.5 tassa)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>Tutte</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Inviato</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Ricevuto</translation>
</message>
@@ -1274,39 +1252,39 @@
<translation></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Costo della transazione</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>Firma file tx</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>Invia file tx</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>Portafoglio non connesso al daemon</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>Il daemon connesso non è compatibile con l&apos;interfaccia grafica. Aggiorna o connetti a un altro daemon</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>In attesa di completamento sincronizzazione</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>ID Pagamento &lt;font size=&apos;2&apos;&gt;( Opzionale )&lt;/font&gt;</translation>
</message>
@@ -1331,206 +1309,192 @@ Please upgrade or connect to another daemon</source>
<translation>Tutto</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>Basso (x1 commissione)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>Medio (x20 commissione)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>Alto (x166 commissione)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation>Lento (x0.25 tassa)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation>Default (x1 tassa)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation>Veloce (x5 tassa)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation>Velocissimo (x41.5 tassa)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>Codice QR</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Risolvere</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>Nessun indirizzo valido trovato in questo indirizzo OpenAlias</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>Indirizzo trovato ma le firme DNSSEC non hanno potuto essere verificate. L&apos;indirizzo potrebbe essere alterato</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>Nessun indirizzo valido trovato in questo indirizzo OpenAlias ma le firme DNSSEC non hanno potuto essere verificate. L&apos;indirizzo potrebbe essere alterato</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Errore interno</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Nessun indirizzo trovato</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 o 64 caratteri esadecimali</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Descrizione &lt;font size=&apos;2&apos;&gt;( Opzionale )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Salva in storico portafoglio locale</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>Invia</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Mostra opzioni avanzate</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>Crea file tx</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Errore</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="576"/>
- <source>Error: </source>
- <translation>Errore:</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="581"/>
- <location filename="../pages/Transfer.qml" line="672"/>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Informazioni</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="582"/>
- <source>Sucessfully rescanned spent outputs</source>
- <translation>Riscannerizzati con successo gli output spesi</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="599"/>
- <location filename="../pages/Transfer.qml" line="660"/>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>Seleziona un file</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>Impossibile caricare transazione non firmata</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>Numero di transazioni</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>Transazione #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>Destinatario:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>ID pagamento:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>Totale: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>Commissione: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>Ringsize: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Conferma</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>Impossibile inviare transazione: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>Denaro inviato correttamente</translation>
</message>
@@ -1783,7 +1747,7 @@ Ringsize: </source>
<location filename="../wizard/WizardMain.qml" line="394"/>
<source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
%1</source>
- <translation type="unfinished">Il portafoglio solo-vista è stato creato. Puoi aprirlo chiudendo il portafoglio corrente, cliccando su &quot;Apri portafoglio dall'opzione file&quot; e selezionando il portafoglio solo-vista in:
+ <translation type="unfinished">Il portafoglio solo-vista è stato creato. Puoi aprirlo chiudendo il portafoglio corrente, cliccando su &quot;Apri portafoglio dall&apos;opzione file&quot; e selezionando il portafoglio solo-vista in:
%1</translation>
</message>
<message>
@@ -2087,7 +2051,7 @@ Ringsize: </source>
<message>
<location filename="../main.qml" line="1355"/>
<source>New version of monero-wallet-gui is available: %1&lt;br&gt;%2</source>
- <translation>Una nuova versione dell'interfaccia grafica è disponibile: %1&lt;br&gt;%2</translation>
+ <translation>Una nuova versione dell&apos;interfaccia grafica è disponibile: %1&lt;br&gt;%2</translation>
</message>
<message>
<location filename="../main.qml" line="518"/>
diff --git a/translations/monero-core_ja.ts b/translations/monero-core_ja.ts
index 10fabaa0..7d548ca5 100644
--- a/translations/monero-core_ja.ts
+++ b/translations/monero-core_ja.ts
@@ -14,90 +14,55 @@
<translation>アドレス</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>QRコード</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
- <translation type="unfinished"></translation>
+ <translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>ペイメントID &lt;font size=&apos;2&apos;&gt;(オプショナル)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;ペイメントID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;アドレス帳で使われる一意なユーザ名です。&lt;br/&gt;送金の際の取引データには含まれません。</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>16文字または64文字の16進数の文字列を入力してください</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>説明 &lt;font size=&apos;2&apos;&gt;(オプショナル)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>この宛先の名前や説明を入力してください</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>追加</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>エラー</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>不正なアドレス</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>項目を作成できません</translation>
</message>
- <message>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during thevtransfer</source>
- <translation type="obsolete">&lt;b&gt;ペイメントID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;アドレス帳で使われる一意なユーザ名です。&lt;br/&gt;送金の際の取引データには含まれません。</translation>
- </message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">説明 &lt;font size=&apos;2&apos;&gt;(ローカルなデータベース)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">新規</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">ペイメントID</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">説明</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -122,7 +87,7 @@
<message>
<location filename="../BasicPanel.qml" line="110"/>
<source>78.9239845</source>
- <translation type="unfinished"></translation>
+ <translation>78.9239845</translation>
</message>
<message>
<location filename="../BasicPanel.qml" line="133"/>
@@ -132,27 +97,7 @@
<message>
<location filename="../BasicPanel.qml" line="146"/>
<source>2324.9239845</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>amount...</source>
- <translation type="vanished">金額...</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">送金</translation>
- </message>
- <message>
- <source>destination...</source>
- <translation type="vanished">宛先...</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">プライバシーレベル</translation>
- </message>
- <message>
- <source>payment ID (optional)...</source>
- <translation type="vanished">ペイメントID (オプショナル)...</translation>
+ <translation>2324.9239845</translation>
</message>
</context>
<context>
@@ -187,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="obsolete">ブロックの同期中 %1/%2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="obsolete">ブロックの同期中</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -241,94 +175,48 @@
<context>
<name>History</name>
<message>
- <source>Filter transactions history</source>
- <translation type="vanished">取引履歴にフィルタを適用する</translation>
- </message>
- <message>
- <source>Address</source>
- <translation type="vanished">アドレス</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
- <translation type="vanished">ペイメントID &lt;font size=&apos;2&apos;&gt;(オプショナル)&lt;/font&gt;</translation>
- </message>
- <message>
<location filename="../pages/History.qml" line="135"/>
<source>Filter transaction history</source>
<translation>取引履歴に対するフィルタ</translation>
</message>
<message>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during thevtransfer</source>
- <translation type="vanished">&lt;b&gt;ペイメントID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;アドレス帳で使われる一意なユーザ名です。&lt;br/&gt;送金の際の取引データには含まれません。</translation>
- </message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">説明 &lt;font size=&apos;2&apos;&gt;(ローカルなデータベース)&lt;/font&gt;</translation>
- </message>
- <message>
<location filename="../pages/History.qml" line="70"/>
<source> selected: </source>
<translation> 件: </translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;選択された支払いの総額&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>タイプしてインクリメンタル検索</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>日付の下限</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>上限</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>適用</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">フィルタ</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>高度なフィルタ</translation>
</message>
<message>
- <source>Advance filtering</source>
- <translation type="vanished">高度なフィルタ</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>取引の種類</translation>
</message>
<message>
- <source>Type of transation</source>
- <translation type="vanished">取引のタイプ</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>金額の下限</translation>
</message>
@@ -402,10 +290,6 @@
<translation>手数料</translation>
</message>
<message>
- <source>Balance</source>
- <translation type="vanished">残高</translation>
- </message>
- <message>
<location filename="../components/HistoryTable.qml" line="357"/>
<source>Amount</source>
<translation>金額</translation>
@@ -419,127 +303,109 @@
<translation>残高</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>ロック解除された残高</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>Transfer</source>
- <translation type="vanished">送金する</translation>
- </message>
- <message>
<location filename="../LeftPanel.qml" line="93"/>
<source>Testnet</source>
<translation>テストネット</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>送金する</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>アドレス帳</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
- <translation type="unfinished"></translation>
+ <translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>受け取る</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
- <translation type="unfinished"></translation>
+ <translation>R</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>履歴</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
- <translation type="unfinished"></translation>
+ <translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>高度な機能</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
- <translation type="unfinished"></translation>
+ <translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>マイニング</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
- <translation type="unfinished"></translation>
+ <translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>支払い証明</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
- <translation type="unfinished"></translation>
+ <translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>電子署名</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
- <translation type="unfinished"></translation>
+ <translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>設定</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
- <translation type="unfinished"></translation>
+ <translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
- <translation type="unfinished"></translation>
+ <translation>S</translation>
</message>
</context>
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="obsolete">残高</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>残高</translation>
@@ -549,10 +415,6 @@
<source>Unlocked Balance</source>
<translation>ロック解除された残高</translation>
</message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="obsolete">ロック解除された残高</translation>
- </message>
</context>
<context>
<name>Mining</name>
@@ -567,26 +429,6 @@
<translation>(ローカル上のデーモンでのみ可能)</translation>
</message>
<message>
- <source>Mining helps the Monero network build resilience.&lt;br&gt;</source>
- <translation type="vanished">マイニングによってモネロのネットワークを強固にすることができます。&lt;br&gt;</translation>
- </message>
- <message>
- <source>The more mining is done, the harder it is to attack the network.&lt;br&gt;</source>
- <translation type="vanished">マイニングをする人が増えるほど、ネットワークへの攻撃が難しくなります。&lt;br&gt;</translation>
- </message>
- <message>
- <source>Mining also gives you a small chance to earn some Monero.&lt;br&gt;</source>
- <translation type="vanished">低確率ではありますが、マイニングによってモネロを獲得することもできます。&lt;br&gt;</translation>
- </message>
- <message>
- <source>Your computer will search for Monero block solutions.&lt;br&gt;</source>
- <translation type="vanished">あなたのコンピュータは、モネロのブロックに関する計算問題を解く処理を行います。&lt;br&gt;</translation>
- </message>
- <message>
- <source>If you find a block, you will get the associated reward.&lt;br&gt;</source>
- <translation type="vanished">計算問題の解が見つかると、あなたはそれに伴う報酬を得ます。&lt;br&gt;</translation>
- </message>
- <message>
<location filename="../pages/Mining.qml" line="86"/>
<source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
<translation>あなたのコンピュータでマイニングを行うことで、モネロのネットワークをより強固にすることができます。マイニングをする人が増えるほど、ネットワークへの攻撃が難しくなります。一人一人の協力が大切です。&lt;br&gt; &lt;br&gt;マイニングをすると、低確率ですがモネロを獲得できる可能性があります。あなたのコンピュータは、ある計算問題の解となるブロックとそのハッシュ値を計算します。正解のブロックが見つかると、あなたはそれに伴う報酬を得ます。グッドラック!</translation>
@@ -667,7 +509,7 @@
<message>
<location filename="../components/MobileHeader.qml" line="94"/>
<source>Unlocked Balance:</source>
- <translation type="unfinished">ロック解除された残高</translation>
+ <translation>ロック解除された残高:</translation>
</message>
</context>
<context>
@@ -723,24 +565,12 @@
<message>
<location filename="../components/PasswordDialog.qml" line="171"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>Ok</translation>
</message>
</context>
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">低</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">中</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">高</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation>低</translation>
@@ -759,10 +589,6 @@
<context>
<name>ProgressBar</name>
<message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="obsolete">ブロックの同期中 %1/%2</translation>
- </message>
- <message>
<location filename="../components/ProgressBar.qml" line="43"/>
<source>Establishing connection...</source>
<translation>接続を確立中...</translation>
@@ -848,7 +674,7 @@
<message>
<location filename="../pages/Receive.qml" line="266"/>
<source>Clear</source>
- <translation type="unfinished"></translation>
+ <translation>クリア</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="276"/>
@@ -858,11 +684,7 @@
<message>
<location filename="../pages/Receive.qml" line="285"/>
<source>Generate payment ID for integrated address</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">読み取り専用ウォレットの統合アドレスがここに表示されます</translation>
+ <translation>統合アドレス使うためにペイメントID作る</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="309"/>
@@ -872,7 +694,7 @@
<message>
<location filename="../pages/Receive.qml" line="317"/>
<source>Amount to receive</source>
- <translation type="unfinished"></translation>
+ <translation>受ける金額</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="338"/>
@@ -910,10 +732,6 @@
<translation>ペイメントID</translation>
</message>
<message>
- <source>PaymentID here</source>
- <translation type="vanished">ここにペイメントIDを入力</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="254"/>
<source>Generate</source>
<translation>生成</translation>
@@ -958,22 +776,6 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="obsolete">シードを表示するにはボタンをクリック</translation>
- </message>
- <message>
- <source>Mnemonic seed: </source>
- <translation type="obsolete">ニーモニックシード: </translation>
- </message>
- <message>
- <source>Show seed</source>
- <translation type="vanished">シード表示</translation>
- </message>
- <message>
- <source>Daemon adress</source>
- <translation type="obsolete">デーモンのアドレス</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="72"/>
<source>Manage wallet</source>
<translation>ウォレットの管理</translation>
@@ -991,27 +793,27 @@
<message>
<location filename="../pages/Settings.qml" line="120"/>
<source>Show seed &amp; keys</source>
- <translation type="unfinished"></translation>
+ <translation>シードと鍵を見せて</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="163"/>
<source>Rescan wallet balance</source>
- <translation type="unfinished"></translation>
+ <translation>残高を再スキャンする</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="172"/>
<source>Error: </source>
- <translation type="unfinished">エラー: </translation>
+ <translation>エラー: </translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="177"/>
<source>Information</source>
- <translation type="unfinished">情報</translation>
+ <translation>情報</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="178"/>
<source>Sucessfully rescanned spent outputs</source>
- <translation type="unfinished">使用済みアウトプットの再スキャンを完了しました</translation>
+ <translation>使用済みアウトプットの再スキャンを完了しました</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="193"/>
@@ -1036,7 +838,7 @@
<message>
<location filename="../pages/Settings.qml" line="257"/>
<source>Blockchain location</source>
- <translation type="unfinished"></translation>
+ <translation>ブロックチェーンの場所</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="286"/>
@@ -1046,37 +848,37 @@
<message>
<location filename="../pages/Settings.qml" line="573"/>
<source>Please choose a folder</source>
- <translation type="unfinished"></translation>
+ <translation>フォルダを選んでください</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="582"/>
<source>Warning</source>
- <translation type="unfinished"></translation>
+ <translation>警告</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="585"/>
<source>Error: Filesystem is read only</source>
- <translation type="unfinished"></translation>
+ <translation>エラー: ファイルシステムは読み取り専用です</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="589"/>
<source>Warning: There&apos;s only %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
- <translation type="unfinished"></translation>
+ <translation>警告: デバイスに使用できるギガバイトはわずか1%です。ブロックチェーンには2%以上が必要です。</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="591"/>
<source>Note: There&apos;s %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
- <translation type="unfinished"></translation>
+ <translation>備考: デバイスに使用できるギガバイトはわずか1%です。ブロックチェーンには2%以上が必要です。</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="595"/>
<source>Note: lmdb folder not found. A new folder will be created.</source>
- <translation type="unfinished"></translation>
+ <translation>lmdbのフォルダ見つかりませんでした。新しいの作ります。</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="600"/>
<source>Cancel</source>
- <translation type="unfinished">キャンセル</translation>
+ <translation>キャンセル</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="265"/>
@@ -1117,11 +919,7 @@
<message>
<location filename="../pages/Settings.qml" line="372"/>
<source>Connect</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>Save</source>
- <translation type="vanished">保存</translation>
+ <translation>コネクトする</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="398"/>
@@ -1141,7 +939,7 @@
<message>
<location filename="../pages/Settings.qml" line="460"/>
<source>(e.g. *:WARNING,net.p2p:DEBUG)</source>
- <translation type="unfinished"></translation>
+ <translation>(例えば *:WARNING,net.p2p:DEBUG)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="476"/>
@@ -1164,10 +962,6 @@
<translation>デーモンのログ</translation>
</message>
<message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">ウォレットのニーモニックシード</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -1176,27 +970,27 @@
<message>
<location filename="../pages/Settings.qml" line="525"/>
<source>Wallet seed &amp; keys</source>
- <translation type="unfinished"></translation>
+ <translation>ウォレットのシードとキー</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="527"/>
<source>Secret view key</source>
- <translation type="unfinished"></translation>
+ <translation>ビューキー (秘密)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="528"/>
<source>Public view key</source>
- <translation type="unfinished"></translation>
+ <translation>ビューキー (公開)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="529"/>
<source>Secret spend key</source>
- <translation type="unfinished"></translation>
+ <translation>スペンドキー (秘密)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="530"/>
<source>Public spend key</source>
- <translation type="unfinished"></translation>
+ <translation>スペンドキー (公開)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="540"/>
@@ -1315,7 +1109,7 @@
<message>
<location filename="../components/StandardDialog.qml" line="135"/>
<source>Ok</source>
- <translation type="unfinished"></translation>
+ <translation>Ok</translation>
</message>
<message>
<location filename="../components/StandardDialog.qml" line="120"/>
@@ -1342,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation>遅い (.25倍の手数料)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation>既定 (標準の手数料)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation>早い (5倍の手数料)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation>最速 (41.5倍の手数料)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>すべて</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>出金</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>入金</translation>
</message>
@@ -1364,13 +1178,9 @@
<translation>&lt;b&gt;アドレスをクリップボードへコピー&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;このアドレスに送金&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>このアドレスに送る</translation>
</message>
<message>
<location filename="../components/TableDropdown.qml" line="184"/>
@@ -1409,18 +1219,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">低</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">中</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">高</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation>通常</translation>
@@ -1437,13 +1235,6 @@
</message>
</context>
<context>
- <name>TitleBar</name>
- <message>
- <source>Monero - Donations</source>
- <translation type="vanished">モネロ - 寄付</translation>
- </message>
-</context>
-<context>
<name>Transfer</name>
<message>
<location filename="../pages/Transfer.qml" line="66"/>
@@ -1466,73 +1257,73 @@
<translation></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>取引のコスト</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>このOpenAliasアドレスに結びつけられた有効なアドレスが見つかりません</translation>
</message>
<message>
<location filename="../pages/Transfer.qml" line="175"/>
<source>All</source>
- <translation type="unfinished">すべて</translation>
+ <translation>すべて</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>遅い (.25倍の手数料)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>既定 (標準の手数料)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>早い (5倍の手数料)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>最速 (41.5倍の手数料)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>アドレスは見つかりましたが、DNSSEC署名が検証できませんでした。このアドレスは改ざんされている可能性があります。</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>このOpenAliasアドレスに結びつけられた有効なアドレスが見つかりませんでしたが、DNSSEC署名が検証できませんでした。このアドレスは改ざんされている可能性があります。</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>内部エラー</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>アドレスが見つかりません</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16文字または64文字の16進数の文字列</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>説明 &lt;font size=&apos;2&apos;&gt;( オプショナル )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>ローカル上の履歴に保存されます</translation>
</message>
@@ -1547,222 +1338,174 @@
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;デーモンの開始&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
</message>
<message>
- <source>all</source>
- <translation type="vanished">全額</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>低 (標準の手数料)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>中 (20倍の手数料)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>高 (166倍の手数料)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; アドレス &lt;font size=&apos;2&apos;&gt; ( 貼り付けるか、&lt;/font&gt; &lt;a href=&apos;#&apos;&gt;アドレス帳&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;から選択 )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>QRコード</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>名前解決</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>送金</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>高度な設定を表示</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
- <translation type="unfinished"></translation>
+ <translation>ミックス不能なアウトプットをスイープする</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>取引ファイルを生成</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>取引ファイルに署名</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>取引ファイルを送信</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>エラー</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">エラー: </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>情報</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">使用済みアウトプットの再スキャンを完了しました</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>ファイルを選択してください</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>未署名の取引を読み込めませんでした</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>
取引の数: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>
取引 #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>
受取人: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>
ペイメントID: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>
金額: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>
手数料: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>
リングサイズ: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>確認</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>取引を送信できません</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>送金に成功しました</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>ウォレットがデーモンに接続していません</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
- <source>Connected daemon is not compatible with GUI.
+ <location filename="../pages/Transfer.qml" line="719"/>
+ <source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>接続しているデーモンにGUIとの互換性がありません。
デーモンを更新するか、他のデーモンに接続してください。</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>同期が終了するのを待っています</translation>
</message>
<message>
- <source>Amount...</source>
- <translation type="vanished">金額...</translation>
- </message>
- <message>
- <source>LOW</source>
- <translation type="vanished">低</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MITTEL</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">高</translation>
- </message>
- <message>
- <source>Privacy Level</source>
- <translation type="vanished">プライバシーレベル</translation>
- </message>
- <message>
- <source>Cost</source>
- <translation type="vanished">コスト</translation>
- </message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; アドレス &lt;font size=&apos;2&apos;&gt; (タイプするか、&lt;/font&gt; &lt;a href=&apos;#&apos;&gt;アドレス帳&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; から選択してください )&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>ペイメントID &lt;font size=&apos;2&apos;&gt;( オプショナル )&lt;/font&gt;</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">説明 &lt;font size=&apos;2&apos;&gt;( オプショナル: 何か記述するとアドレス帳に保存されます )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">送金</translation>
- </message>
</context>
<context>
<name>TxKey</name>
@@ -1837,11 +1580,7 @@ Please upgrade or connect to another daemon</source>
<message>
<location filename="../wizard/WizardConfigure.qml" line="97"/>
<source>Kickstart the Monero blockchain?</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">ウォレットを復元する際に必要となる唯一の情報ですので、必ず書き写してください。正しく書き写したことを確認するために、次の画面でシードの入力を求められます。</translation>
+ <translation>モネロのブロックチェーンを初期化しますか?</translation>
</message>
<message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
@@ -1880,14 +1619,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">あなたの新しいウォレットが作成されました</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">これがあなたのウォレットを復元するための25個のニーモニック単語です</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>新しいウォレットの作成</translation>
@@ -1929,54 +1660,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardFinish</name>
<message>
- <source>&lt;b&gt;Language:&lt;/b&gt; </source>
- <translation type="vanished">&lt;b&gt;言語:&lt;/b&gt; </translation>
- </message>
- <message>
- <source>&lt;b&gt;Account name:&lt;/b&gt; </source>
- <translation type="vanished">&lt;b&gt;アカウント名:&lt;/b&gt; </translation>
- </message>
- <message>
- <source>&lt;b&gt;Words:&lt;/b&gt; </source>
- <translation type="vanished">&lt;b&gt;ワード:&lt;/b&gt; </translation>
- </message>
- <message>
- <source>&lt;b&gt;Wallet Path: &lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;ウォレットのパス: &lt;/b&gt;</translation>
- </message>
- <message>
- <source>&lt;b&gt;Enable auto donation: &lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;自動での寄付を有効化: &lt;/b&gt;</translation>
- </message>
- <message>
- <source>&lt;b&gt;Auto donation amount: &lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;自動で寄付する金額: &lt;/b&gt;</translation>
- </message>
- <message>
- <source>&lt;b&gt;Allow background mining: &lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;バックグラウンドでの採掘を許可する: &lt;/b&gt;</translation>
- </message>
- <message>
- <source>&lt;b&gt;Daemon address: &lt;/b&gt;</source>
- <translation type="obsolete">デーモンのアドレス: </translation>
- </message>
- <message>
- <source>&lt;b&gt;testnet: &lt;/b&gt;</source>
- <translation type="obsolete">テストネット: </translation>
- </message>
- <message>
- <source>&lt;b&gt;Restore height: &lt;/b&gt;</source>
- <translation type="obsolete">復元するブロックの高さ: </translation>
- </message>
- <message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">モネロの設定情報は以下の通りです:</translation>
- </message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">準備が完了しました!</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="49"/>
<location filename="../wizard/WizardFinish.qml" line="52"/>
<location filename="../wizard/WizardFinish.qml" line="54"/>
@@ -2070,7 +1753,7 @@ Please upgrade or connect to another daemon</source>
</message>
<message>
<location filename="../wizard/WizardMain.qml" line="394"/>
- <source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
+ <source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
%1</source>
<translation>ViewOnlyウォレットが作成されました。これを開くには現在のウォレットを閉じて、&quot;ファイルからウォレットを開く&quot; オプションから、このViewOnlyウォレットを選択してください:
%1</translation>
@@ -2089,18 +1772,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">以下がウォレットの名前になります。必要に応じて変更してください。</translation>
- </message>
- <message>
- <source>My account name</source>
- <translation type="vanished">アカウント名:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="obsolete">復元するブロックの高さ</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation>ウォレット名</translation>
@@ -2149,10 +1820,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">ウォレットを復元する際に必要となる唯一の情報ですので、必ず書き写してください。正しく書き写したことを確認するために、次の画面でシードの入力を求められます。</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation>25個のニーモニックシードを入力してください</translation>
@@ -2196,18 +1863,6 @@ Please upgrade or connect to another daemon</source>
<translation>カスタムデーモンアドレス (オプショナル)</translation>
</message>
<message>
- <source>This is my first time, I want to&lt;br/&gt;create a new account</source>
- <translation type="vanished">初めて使うので、新しく&lt;br/&gt;アカウントを作成します</translation>
- </message>
- <message>
- <source>I want to recover my account&lt;br/&gt;from my 25 word seed</source>
- <translation type="vanished">25個のニーモニックシードから&lt;br/&gt;アカウントを復元します</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="obsolete">デーモンのアドレスを下記に指定してください</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>テストネット</translation>
@@ -2216,28 +1871,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">ウォレットが作成されましたので、パスワードを設定してください</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">ウォレットが復元されましたので、パスワードを設定してください</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">注意: このパスワードを忘れてしまった場合、先ほど表示された25個のニーモニックシードを使ってウォレットを復元する以外に、ウォレットにアクセスする方法はありません。&lt;br/&gt;&lt;br/&gt;
- このパスワードはあなたのウォレットを保護し、また重要な操作の際に確認をするために使われますので、十分に安全性の高いパスワードを設定してください。</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="obsolete">パスワード</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="obsolete">パスワードの確認</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2247,13 +1880,8 @@ Please upgrade or connect to another daemon</source>
<location filename="../wizard/WizardPassword.qml" line="127"/>
<source> &lt;br&gt;Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
&lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
- <translation type="vanished">このパスワードは復元できません。もしパスワードを忘れてしまった場合は、25個のニーモニックシードからウォレットを復元する必要があります。&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;パスワードを入力してください&lt;/b&gt; (半角英数字と記号を使用できます):</translation>
+ <translation> &lt;br&gt;備考: 作る後でこのパスワードは復元できませんよ。 パスワードを忘れてしまった場合、ウォレットはウォレットの25語ニーモニックシードで復元する必要があります。&lt;br/&gt;&lt;br/&gt;
+ &lt;b&gt;強力なパスワードを入力してください。&lt;/b&gt; (文字、番号、記号を使えます):</translation>
</message>
</context>
<context>
@@ -2272,18 +1900,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>My account name</source>
- <translation type="vanished">アカウント名</translation>
- </message>
- <message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">アカウントを復元する準備ができました</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">25個の秘密のキーワードを入力してください</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation>ウォレットの復元</translation>
@@ -2292,10 +1908,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">ようこそ</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>モネロへようこそ!</translation>
@@ -2328,10 +1940,6 @@ Please upgrade or connect to another daemon</source>
<translation>ウォレットを開けませんでした: </translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="obsolete">ブロックを同期中 %1 / %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="554"/>
<source>Amount is wrong: expected number from %1 to %2</source>
<translation>金額が不正です: %1から%2の範囲内としてください</translation>
@@ -2481,14 +2089,6 @@ Ringsize: </source>
<translation>新しいバージョンのmonero-wallet-guiを入手できます: %1&lt;br&gt;%2</translation>
</message>
<message>
- <source>Please confirm transaction:
-
-</source>
- <translation type="vanished">取引内容を確認してください:
-
-</translation>
- </message>
- <message>
<location filename="../main.qml" line="518"/>
<source>
Address: </source>
@@ -2503,12 +2103,6 @@ Payment ID: </source>
ペイメントID: </translation>
</message>
<message>
- <source>
-Amount: </source>
- <translation type="vanished">
-金額: </translation>
- </message>
- <message>
<location filename="../main.qml" line="521"/>
<location filename="../main.qml" line="632"/>
<source>
@@ -2548,10 +2142,6 @@ Description: </source>
<translation>情報</translation>
</message>
<message>
- <source>Money sent successfully</source>
- <translation type="vanished">送金に成功しました</translation>
- </message>
- <message>
<location filename="../main.qml" line="978"/>
<source>Please wait...</source>
<translation>お待ちください...</translation>
@@ -2562,19 +2152,11 @@ Description: </source>
<translation>モネロ</translation>
</message>
<message>
- <source>Initializing Wallet...</source>
- <translation type="vanished">ウォレットを初期化しています...</translation>
- </message>
- <message>
<location filename="../main.qml" line="1002"/>
<source>Program setup wizard</source>
<translation>プログラムセットアップウィザード</translation>
</message>
<message>
- <source>Monero - Donations</source>
- <translation type="vanished">モネロ - 寄付</translation>
- </message>
- <message>
<location filename="../main.qml" line="1065"/>
<source>send to the same destination</source>
<translation>同じ宛先に送金する</translation>
diff --git a/translations/monero-core_ko.ts b/translations/monero-core_ko.ts
new file mode 100644
index 00000000..6d7c43ed
--- /dev/null
+++ b/translations/monero-core_ko.ts
@@ -0,0 +1,2155 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="ko" sourcelanguage="en">
+<context>
+ <name>AddressBook</name>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="52"/>
+ <source>Add new entry</source>
+ <translation>새 항목 추가</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="61"/>
+ <source>Address</source>
+ <translation>주소</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="71"/>
+ <source>QRCODE</source>
+ <translation>QR코드</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="93"/>
+ <source>4...</source>
+ <translation></translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="102"/>
+ <source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
+ <translation>결제 신분증 &lt;font size=&apos;2&apos;&gt;(선택 항목)&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="114"/>
+ <source>Paste 64 hexadecimal characters</source>
+ <translation>64 자리 16 진수 문자 붙여 넣기</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="123"/>
+ <source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
+ <translation>설명 &lt;font size=&apos;2&apos;&gt;(선택 항목)&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="135"/>
+ <source>Give this entry a name or description</source>
+ <translation>이 항목에 이름 또는 설명 제공</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="151"/>
+ <source>Add</source>
+ <translation>추가</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="156"/>
+ <source>Error</source>
+ <translation>오류</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="159"/>
+ <source>Invalid address</source>
+ <translation>잘못된 주소</translation>
+ </message>
+ <message>
+ <location filename="../pages/AddressBook.qml" line="163"/>
+ <source>Can&apos;t create entry</source>
+ <translation>항목을 만들 수 없습니다</translation>
+ </message>
+</context>
+<context>
+ <name>AddressBookTable</name>
+ <message>
+ <location filename="../components/AddressBookTable.qml" line="47"/>
+ <source>No more results</source>
+ <translation>결과가 더 이상 없음</translation>
+ </message>
+ <message>
+ <location filename="../components/AddressBookTable.qml" line="104"/>
+ <source>Payment ID:</source>
+ <translation>결제 신분증:</translation>
+ </message>
+</context>
+<context>
+ <name>BasicPanel</name>
+ <message>
+ <location filename="../BasicPanel.qml" line="97"/>
+ <source>Locked Balance:</source>
+ <translation>잠김 된 잔액:</translation>
+ </message>
+ <message>
+ <location filename="../BasicPanel.qml" line="110"/>
+ <source>78.9239845</source>
+ <translation>78.9239845</translation>
+ </message>
+ <message>
+ <location filename="../BasicPanel.qml" line="133"/>
+ <source>Available Balance:</source>
+ <translation>사용 가능한 잔액:</translation>
+ </message>
+ <message>
+ <location filename="../BasicPanel.qml" line="146"/>
+ <source>2324.9239845</source>
+ <translation>2324.9239845</translation>
+ </message>
+</context>
+<context>
+ <name>DaemonConsole</name>
+ <message>
+ <location filename="../components/DaemonConsole.qml" line="117"/>
+ <source>Close</source>
+ <translation>닫기</translation>
+ </message>
+ <message>
+ <location filename="../components/DaemonConsole.qml" line="128"/>
+ <source>command + enter (e.g help)</source>
+ <translation>명령 + 들어가다 (예: 도움)</translation>
+ </message>
+</context>
+<context>
+ <name>DaemonManagerDialog</name>
+ <message>
+ <location filename="../components/DaemonManagerDialog.qml" line="93"/>
+ <source>Starting Monero daemon in %1 seconds</source>
+ <translation>%1 초 내에 모네로 데몬 시작하기</translation>
+ </message>
+ <message>
+ <location filename="../components/DaemonManagerDialog.qml" line="115"/>
+ <source>Start daemon (%1)</source>
+ <translation>데몬 시작 (%1)</translation>
+ </message>
+ <message>
+ <location filename="../components/DaemonManagerDialog.qml" line="132"/>
+ <source>Use custom settings</source>
+ <translation>사용자 정의 설정 사용</translation>
+ </message>
+</context>
+<context>
+ <name>Dashboard</name>
+ <message>
+ <location filename="../pages/Dashboard.qml" line="57"/>
+ <source>Quick transfer</source>
+ <translation>빠른 전송</translation>
+ </message>
+ <message>
+ <location filename="../pages/Dashboard.qml" line="89"/>
+ <source>SEND</source>
+ <translation>전송하기</translation>
+ </message>
+ <message>
+ <location filename="../pages/Dashboard.qml" line="102"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; looking for security level and address book? go to &lt;a href=&apos;#&apos;&gt;Transfer&lt;/a&gt; tab</source>
+ <translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; looking for security level and address book? go to &lt;a href=&apos;#&apos;&gt;Transfer&lt;/a&gt; tab</translation>
+ </message>
+</context>
+<context>
+ <name>DashboardTable</name>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="47"/>
+ <source>No more results</source>
+ <translation>결과가 더 이상 없음</translation>
+ </message>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="137"/>
+ <source>Date</source>
+ <translation>날짜</translation>
+ </message>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="170"/>
+ <source>Balance</source>
+ <translation>잔액</translation>
+ </message>
+ <message>
+ <location filename="../components/DashboardTable.qml" line="190"/>
+ <source>Amount</source>
+ <translation>금액</translation>
+ </message>
+</context>
+<context>
+ <name>History</name>
+ <message>
+ <location filename="../pages/History.qml" line="70"/>
+ <source> selected: </source>
+ <translation> 선택된: </translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="135"/>
+ <source>Filter transaction history</source>
+ <translation>거래 내역 정렬</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="183"/>
+ <source>Type for incremental search...</source>
+ <translation>증분 검색 유형...</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="276"/>
+ <source>Filter</source>
+ <translation>정렬</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="223"/>
+ <source>Date from</source>
+ <translation>에서 날짜</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
+ <source>To</source>
+ <translation>에게</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="314"/>
+ <source>Advanced filtering</source>
+ <translation>고급 정렬</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="334"/>
+ <source>Type of transaction</source>
+ <translation>거래 유형</translation>
+ </message>
+ <message>
+ <location filename="../pages/History.qml" line="370"/>
+ <source>Amount from</source>
+ <translation>부터금액</translation>
+ </message>
+</context>
+<context>
+ <name>HistoryTable</name>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="48"/>
+ <source>Tx ID:</source>
+ <translation>거래 신분증:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="49"/>
+ <location filename="../components/HistoryTable.qml" line="203"/>
+ <source>Payment ID:</source>
+ <translation>결제 신분증:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="50"/>
+ <source>Tx key:</source>
+ <translation>거래 건:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="51"/>
+ <source>Tx note:</source>
+ <translation>거래 참고</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="52"/>
+ <source>Destinations:</source>
+ <translation>목적지:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="78"/>
+ <source>No more results</source>
+ <translation>결과가 더 이상 없음</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="110"/>
+ <source>Details</source>
+ <translation>명세</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="251"/>
+ <source>BlockHeight:</source>
+ <translation>블록헤이트:</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="266"/>
+ <source>(%1/%2 confirmations)</source>
+ <translation type="unfinished">(%1/10 확인) {1/%2 ?}</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="270"/>
+ <source>UNCONFIRMED</source>
+ <translation>확인되지 않음</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="271"/>
+ <source>PENDING</source>
+ <translation>보류 중</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="300"/>
+ <source>Date</source>
+ <translation>날짜</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="357"/>
+ <source>Amount</source>
+ <translation>금액</translation>
+ </message>
+ <message>
+ <location filename="../components/HistoryTable.qml" line="392"/>
+ <source>Fee</source>
+ <translation>수수료</translation>
+ </message>
+</context>
+<context>
+ <name>LeftPanel</name>
+ <message>
+ <location filename="../LeftPanel.qml" line="132"/>
+ <source>Balance</source>
+ <translation>잔액</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="177"/>
+ <source>Unlocked balance</source>
+ <translation>잠겨 있지 않은 잔액</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="279"/>
+ <source>Send</source>
+ <translation>전송</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="329"/>
+ <source>Receive</source>
+ <translation>받다</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="353"/>
+ <source>History</source>
+ <translation>연대기</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="93"/>
+ <source>Testnet</source>
+ <translation>테스트 넷</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="280"/>
+ <source>S</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="304"/>
+ <source>Address book</source>
+ <translation>주소록</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="305"/>
+ <source>B</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="330"/>
+ <source>R</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="354"/>
+ <source>H</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="376"/>
+ <source>Advanced</source>
+ <translation>고급</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="377"/>
+ <source>D</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="398"/>
+ <source>Mining</source>
+ <translation>마이닝</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="399"/>
+ <source>M</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="422"/>
+ <source>Check payment</source>
+ <translation>결제 확인</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="423"/>
+ <source>K</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="446"/>
+ <source>Sign/verify</source>
+ <translation>서명/확인</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="447"/>
+ <source>I</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="469"/>
+ <source>Settings</source>
+ <translation>조정</translation>
+ </message>
+ <message>
+ <location filename="../LeftPanel.qml" line="470"/>
+ <source>E</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>MiddlePanel</name>
+ <message>
+ <location filename="../MiddlePanel.qml" line="46"/>
+ <source>Balance</source>
+ <translation>잔액</translation>
+ </message>
+ <message>
+ <location filename="../MiddlePanel.qml" line="48"/>
+ <source>Unlocked Balance</source>
+ <translation>잠겨 있지 않은 잔액</translation>
+ </message>
+</context>
+<context>
+ <name>Mining</name>
+ <message>
+ <location filename="../pages/Mining.qml" line="73"/>
+ <source>Solo mining</source>
+ <translation>혼자 마이닝</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="80"/>
+ <source>(only available for local daemons)</source>
+ <translation>(로컬 데몬에서만 사용 가능)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="86"/>
+ <source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
+ <translation>컴퓨터 마이닝은 모네로 네트워크를 강화합니다. 마이닝은 네트워크 공격을 더욱 어렵게 만들고 네트워크를 강화합니다. 마이닝은 약간의 모네로를 벌 수있는 작은 기회를 제공합니다. 컴퓨터가 블록 솔루션을 찾는 해시를 만듭니다. 블록을 찾으면 관련 보상을 받게됩니다. 행운을 빕니다!</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="96"/>
+ <source>CPU threads</source>
+ <translation>CPU 쓰레드</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="104"/>
+ <source>(optional)</source>
+ <translation>(선택 항목)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="116"/>
+ <source>Background mining (experimental)</source>
+ <translation>배경 마이닝 (실험적)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="132"/>
+ <source>Enable mining when running on battery</source>
+ <translation>배터리로 실행할 때 마이닝 사용</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="142"/>
+ <source>Manage miner</source>
+ <translation>마이닝 관리</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="151"/>
+ <source>Start mining</source>
+ <translation>마이닝 시작</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="161"/>
+ <source>Error starting mining</source>
+ <translation>마이닝 시작 중 오류 발생</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="162"/>
+ <source>Couldn&apos;t start mining.&lt;br&gt;</source>
+ <translation>마이닝을 시작할 수 없습니다.&lt;br&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="164"/>
+ <source>Mining is only available on local daemons. Run a local daemon to be able to mine.&lt;br&gt;</source>
+ <translation>마이닝은 로컬 데몬에서만 사용할 수 있습니다. 로컬 데몬을 실행하여 마이닝을 활성화합니다.&lt;br&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="176"/>
+ <source>Stop mining</source>
+ <translation>마이닝 중지</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="192"/>
+ <source>Status: not mining</source>
+ <translation>상태: 마이닝중이 아님</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="203"/>
+ <source>Mining at %1 H/s</source>
+ <translation>마이닝 %1 H/s</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="206"/>
+ <source>Not mining</source>
+ <translation>마이닝중이 아님</translation>
+ </message>
+ <message>
+ <location filename="../pages/Mining.qml" line="208"/>
+ <source>Status: </source>
+ <translation>상태: </translation>
+ </message>
+</context>
+<context>
+ <name>MobileHeader</name>
+ <message>
+ <location filename="../components/MobileHeader.qml" line="94"/>
+ <source>Unlocked Balance:</source>
+ <translation>잠겨 있지 않은 잔액</translation>
+ </message>
+</context>
+<context>
+ <name>NetworkStatusItem</name>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="53"/>
+ <source>Synchronizing</source>
+ <translation>동기화 중</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="54"/>
+ <source>Connected</source>
+ <translation>연결됨</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="57"/>
+ <source>Wrong version</source>
+ <translation>잘못된 버전</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="59"/>
+ <source>Disconnected</source>
+ <translation>연결이 끊어짐</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="60"/>
+ <source>Invalid connection status</source>
+ <translation>잘못된 연결 상태</translation>
+ </message>
+ <message>
+ <location filename="../components/NetworkStatusItem.qml" line="85"/>
+ <source>Network status</source>
+ <translation>네트워크 상태</translation>
+ </message>
+</context>
+<context>
+ <name>PasswordDialog</name>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="79"/>
+ <source>Please enter wallet password</source>
+ <translation>지갑 비밀번호를 입력하세요</translation>
+ </message>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="79"/>
+ <source>Please enter wallet password for:&lt;br&gt;</source>
+ <translation>다음을 위해 지갑 비밀번호를 입력하세요 :&lt;br&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="156"/>
+ <source>Cancel</source>
+ <translation>취소</translation>
+ </message>
+ <message>
+ <location filename="../components/PasswordDialog.qml" line="171"/>
+ <source>Ok</source>
+ <translation>승인</translation>
+ </message>
+</context>
+<context>
+ <name>PrivacyLevelSmall</name>
+ <message>
+ <location filename="../components/PrivacyLevelSmall.qml" line="100"/>
+ <source>Low</source>
+ <translation>낮은</translation>
+ </message>
+ <message>
+ <location filename="../components/PrivacyLevelSmall.qml" line="109"/>
+ <source>Medium</source>
+ <translation>중간</translation>
+ </message>
+ <message>
+ <location filename="../components/PrivacyLevelSmall.qml" line="118"/>
+ <source>High</source>
+ <translation>높은</translation>
+ </message>
+</context>
+<context>
+ <name>ProgressBar</name>
+ <message>
+ <location filename="../components/ProgressBar.qml" line="43"/>
+ <source>Establishing connection...</source>
+ <translation>연결 중...</translation>
+ </message>
+ <message>
+ <location filename="../components/ProgressBar.qml" line="57"/>
+ <source>Blocks remaining: %1</source>
+ <translation>남아있는 블록: % 1</translation>
+ </message>
+ <message>
+ <location filename="../components/ProgressBar.qml" line="100"/>
+ <source>Synchronizing blocks</source>
+ <translation>블록 동기화</translation>
+ </message>
+</context>
+<context>
+ <name>Receive</name>
+ <message>
+ <location filename="../pages/Receive.qml" line="64"/>
+ <source>Invalid payment ID</source>
+ <translation>잘못된 결제 신분증</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="107"/>
+ <source>WARNING: no connection to daemon</source>
+ <translation>경고: 데몬에 연결되지 않았습니다.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="129"/>
+ <source>in the txpool: %1</source>
+ <translation>트랜잭션 풀에서: %1</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="136"/>
+ <source>%2 confirmations: %3 (%1)</source>
+ <translation>%2 확인: %3 (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="138"/>
+ <source>1 confirmation: %2 (%1)</source>
+ <translation>1 확인: %2 (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="146"/>
+ <source>No transaction found yet...</source>
+ <translation>발견된 거래 없음...</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="150"/>
+ <source>Transaction found</source>
+ <translation>거래 발견</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="150"/>
+ <source>%1 transactions found</source>
+ <translation>%1 거래 발견</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="156"/>
+ <source> with more money (%1)</source>
+ <translation> 더 많은 돈으로 (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="158"/>
+ <source> with not enough money (%1)</source>
+ <translation> 충분하지 않은 돈으로 (%1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="190"/>
+ <source>Address</source>
+ <translation>주소</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="197"/>
+ <source>ReadOnly wallet address displayed here</source>
+ <translation>표시된 읽기 전용 월렛 주소</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="230"/>
+ <source>16 hexadecimal characters</source>
+ <translation>16 자리 16 진수</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="266"/>
+ <source>Clear</source>
+ <translation>명확한</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="276"/>
+ <source>Integrated address</source>
+ <translation>통합 주소</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="317"/>
+ <source>Amount to receive</source>
+ <translation>받을 금액</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="338"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
+ <translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="343"/>
+ <source>Tracking payments</source>
+ <translation>결제 추적</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="344"/>
+ <source>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;This is a simple sales tracker:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Click Generate to create a random payment id for a new customer&lt;/p&gt; &lt;p&gt;Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).&lt;/p&gt;&lt;p&gt;This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.&lt;/p&gt;It&apos;s up to you whether to accept unconfirmed transactions or not. It is likely they&apos;ll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).&lt;/p&gt;</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="388"/>
+ <source>Save QrCode</source>
+ <translation>Qr코드 저장</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="389"/>
+ <source>Failed to save QrCode to </source>
+ <translation>Qr코드를 저장하지 못했습니다 </translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="400"/>
+ <source>Save As</source>
+ <translation>다른 이름으로 저장</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="222"/>
+ <source>Payment ID</source>
+ <translation>결제 신분증</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="254"/>
+ <source>Generate</source>
+ <translation>생성</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="285"/>
+ <source>Generate payment ID for integrated address</source>
+ <translation>통합 주소에 대한 결제 신분증 생성</translation>
+ </message>
+ <message>
+ <location filename="../pages/Receive.qml" line="309"/>
+ <source>Amount</source>
+ <translation>금액</translation>
+ </message>
+</context>
+<context>
+ <name>RightPanel</name>
+ <message>
+ <location filename="../RightPanel.qml" line="61"/>
+ <source>Twitter</source>
+ <translation>트위터</translation>
+ </message>
+ <message>
+ <location filename="../RightPanel.qml" line="62"/>
+ <source>News</source>
+ <translation>뉴스</translation>
+ </message>
+ <message>
+ <location filename="../RightPanel.qml" line="63"/>
+ <source>Help</source>
+ <translation>도움</translation>
+ </message>
+ <message>
+ <location filename="../RightPanel.qml" line="64"/>
+ <source>About</source>
+ <translation>통지</translation>
+ </message>
+</context>
+<context>
+ <name>SearchInput</name>
+ <message>
+ <location filename="../components/SearchInput.qml" line="69"/>
+ <source>Search by...</source>
+ <translation>로 검색...</translation>
+ </message>
+ <message>
+ <location filename="../components/SearchInput.qml" line="228"/>
+ <source>SEARCH</source>
+ <translation>찾다</translation>
+ </message>
+</context>
+<context>
+ <name>Settings</name>
+ <message>
+ <location filename="../pages/Settings.qml" line="103"/>
+ <source>Create view only wallet</source>
+ <translation>보기 전용 지갑 만들기</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="193"/>
+ <source>Manage daemon</source>
+ <translation>데몬 관리</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="212"/>
+ <source>Start daemon</source>
+ <translation>데몬 시작</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="226"/>
+ <source>Stop daemon</source>
+ <translation>데몬 중지</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="239"/>
+ <source>Show status</source>
+ <translation>상태 표시</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="286"/>
+ <source>Daemon startup flags</source>
+ <translation>데몬 시작 플래그</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="265"/>
+ <location filename="../pages/Settings.qml" line="294"/>
+ <source>(optional)</source>
+ <translation>(선택 항목)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="120"/>
+ <source>Show seed &amp; keys</source>
+ <translation>시드 키 표시</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="163"/>
+ <source>Rescan wallet balance</source>
+ <translation>지갑 금액 다시 스캔하기</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="172"/>
+ <source>Error: </source>
+ <translation>오류: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="177"/>
+ <source>Information</source>
+ <translation>정보</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="178"/>
+ <source>Sucessfully rescanned spent outputs</source>
+ <translation>소비 된 출력물이 성공적으로 다시 스캔되었습니다.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="257"/>
+ <source>Blockchain location</source>
+ <translation>블록체인 위치</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="306"/>
+ <source>Daemon address</source>
+ <translation>데몬 주소</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="322"/>
+ <source>Hostname / IP</source>
+ <translation>호스트 이름 / IP</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="331"/>
+ <source>Port</source>
+ <translation>포트</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="342"/>
+ <source>Login (optional)</source>
+ <translation>로그인 (선택 항목)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="355"/>
+ <source>Username</source>
+ <translation>사용자 이름</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="364"/>
+ <source>Password</source>
+ <translation>암호</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="372"/>
+ <source>Connect</source>
+ <translation>연결</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="398"/>
+ <source>Layout settings</source>
+ <translation>레이아웃 설정</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="415"/>
+ <source>Custom decorations</source>
+ <translation>맞춤 장식</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="426"/>
+ <source>Log level</source>
+ <translation>로그 레벨</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="460"/>
+ <source>(e.g. *:WARNING,net.p2p:DEBUG)</source>
+ <translation>(예: *:WARNING,net.p2p:DEBUG)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="476"/>
+ <source>Version</source>
+ <translation>버전</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="492"/>
+ <source>GUI version: </source>
+ <translation>GUI 버전:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="499"/>
+ <source>Embedded Monero version: </source>
+ <translation>임베디드 모네로 버전:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="509"/>
+ <source>Daemon log</source>
+ <translation>데몬 로그</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="573"/>
+ <source>Please choose a folder</source>
+ <translation>폴더를 선택하세요</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="582"/>
+ <source>Warning</source>
+ <translation>경고</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="585"/>
+ <source>Error: Filesystem is read only</source>
+ <translation>오류: 파일 시스템은 읽기 전용 임</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="589"/>
+ <source>Warning: There&apos;s only %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation>경고 : 장치에 사용 가능한 공간은 %1 GB뿐입니다. 블록체인에는 ~ %2 GB의 데이터가 필요합니다.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="591"/>
+ <source>Note: There&apos;s %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation>참고: %1 GB의 장치를 사용할 수 있습니다. 블록체인에는 ~ %2 GB의 데이터가 필요합니다.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="595"/>
+ <source>Note: lmdb folder not found. A new folder will be created.</source>
+ <translation>참고: lmdb 폴더를 찾을 수 없습니다. 새 폴더가 생성됩니다.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="600"/>
+ <source>Cancel</source>
+ <translation>취소</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="171"/>
+ <location filename="../pages/Settings.qml" line="539"/>
+ <source>Error</source>
+ <translation>오류</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="525"/>
+ <source>Wallet seed &amp; keys</source>
+ <translation>지갑 시드 키</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="527"/>
+ <source>Secret view key</source>
+ <translation>비밀보기 키</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="528"/>
+ <source>Public view key</source>
+ <translation>공개보기 키</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="529"/>
+ <source>Secret spend key</source>
+ <translation>비밀 지급 키</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="530"/>
+ <source>Public spend key</source>
+ <translation>공개 지급 키</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="540"/>
+ <source>Wrong password</source>
+ <translation>잘못된 암호</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="72"/>
+ <source>Manage wallet</source>
+ <translation>지갑 관리</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="88"/>
+ <source>Close wallet</source>
+ <translation>지갑 닫기</translation>
+ </message>
+</context>
+<context>
+ <name>Sign</name>
+ <message>
+ <location filename="../pages/Sign.qml" line="68"/>
+ <source>Good signature</source>
+ <translation>좋은 서명</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="69"/>
+ <source>This is a good signature</source>
+ <translation>좋은 서명입니다</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="73"/>
+ <source>Bad signature</source>
+ <translation>나쁜 서명</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="74"/>
+ <source>This signature did not verify</source>
+ <translation>이 서명은 확인 되지 않았습니다.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="111"/>
+ <source>Sign a message or file contents with your address:</source>
+ <translation>귀하의 주소로 메시지 또는 파일 내용와 함께 서명하십시오:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="122"/>
+ <location filename="../pages/Sign.qml" line="294"/>
+ <source>Either message:</source>
+ <translation>어느 쪽이든 메시지:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="137"/>
+ <source>Message to sign</source>
+ <translation>서명 할 메시지</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="156"/>
+ <location filename="../pages/Sign.qml" line="231"/>
+ <source>Sign</source>
+ <translation>서명</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="184"/>
+ <source>Please choose a file to sign</source>
+ <translation>서명 할 파일을 선택하세요</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="197"/>
+ <location filename="../pages/Sign.qml" line="368"/>
+ <source>Select</source>
+ <translation>선택</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="327"/>
+ <location filename="../pages/Sign.qml" line="401"/>
+ <source>Verify</source>
+ <translation>확인</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="355"/>
+ <source>Please choose a file to verify</source>
+ <translation>확인할 파일을 선택하세요</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="419"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
+ <translation type="unfinished">서명할 주소 &lt;font size=&apos;2&apos;&gt; (선택 또는 붙여 넣기 &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;주소록&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="172"/>
+ <location filename="../pages/Sign.qml" line="343"/>
+ <source>Or file:</source>
+ <translation>또는 파일 :</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="212"/>
+ <source>Filename with message to sign</source>
+ <translation>서명 할 메시지가있는 파일 이름</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="251"/>
+ <location filename="../pages/Sign.qml" line="257"/>
+ <location filename="../pages/Sign.qml" line="445"/>
+ <location filename="../pages/Sign.qml" line="452"/>
+ <source>Signature</source>
+ <translation>서명</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="282"/>
+ <source>Verify a message or file signature from an address:</source>
+ <translation>메시지 나 파일의 서명을 주소로부터 확인합니다</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="309"/>
+ <source>Message to verify</source>
+ <translation>확인을 위한 메시지</translation>
+ </message>
+ <message>
+ <location filename="../pages/Sign.qml" line="383"/>
+ <source>Filename with message to verify</source>
+ <translation>확인할 메시지가있는 파일 이름</translation>
+ </message>
+</context>
+<context>
+ <name>StandardDialog</name>
+ <message>
+ <location filename="../components/StandardDialog.qml" line="135"/>
+ <source>Ok</source>
+ <translation>승인</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDialog.qml" line="120"/>
+ <source>Cancel</source>
+ <translation>취소</translation>
+ </message>
+</context>
+<context>
+ <name>StandardDropdown</name>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="197"/>
+ <source>Low (x1 fee)</source>
+ <translation>낮은 (x1 보상)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="198"/>
+ <source>Medium (x20 fee)</source>
+ <translation>중간 (x20 보상)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="199"/>
+ <source>High (x166 fee)</source>
+ <translation>높은 (x166 보상)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation>느린 (x0.25 보상)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation>체납 (x1 보상)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation>빠른 (x5 보상)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation>가장 빠른 (x41.5 보상)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
+ <source>All</source>
+ <translation>전부</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
+ <source>Sent</source>
+ <translation>전송됨</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
+ <source>Received</source>
+ <translation>받음</translation>
+ </message>
+</context>
+<context>
+ <name>TableDropdown</name>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="182"/>
+ <source>&lt;b&gt;Copy address to clipboard&lt;/b&gt;</source>
+ <translation>&lt;b&gt;주소를 클립 보드에 복사&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="183"/>
+ <source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
+ <translation>&lt;b&gt;주소로 보내기&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="184"/>
+ <source>&lt;b&gt;Find similar transactions&lt;/b&gt;</source>
+ <translation>&lt;b&gt;비슷한 거래 찾기&lt;/b&gt;</translation>
+ </message>
+ <message>
+ <location filename="../components/TableDropdown.qml" line="185"/>
+ <source>&lt;b&gt;Remove from address book&lt;/b&gt;</source>
+ <translation>&lt;b&gt;주소록에서 제거&lt;/b&gt;</translation>
+ </message>
+</context>
+<context>
+ <name>TableHeader</name>
+ <message>
+ <location filename="../components/TableHeader.qml" line="65"/>
+ <source>Payment ID</source>
+ <translation>결제 신분증</translation>
+ </message>
+ <message>
+ <location filename="../components/TableHeader.qml" line="66"/>
+ <source>Date</source>
+ <translation>날짜</translation>
+ </message>
+ <message>
+ <location filename="../components/TableHeader.qml" line="67"/>
+ <source>Block height</source>
+ <translation>블록헤이트</translation>
+ </message>
+ <message>
+ <location filename="../components/TableHeader.qml" line="68"/>
+ <source>Amount</source>
+ <translation>금액</translation>
+ </message>
+</context>
+<context>
+ <name>TickDelegate</name>
+ <message>
+ <location filename="../components/TickDelegate.qml" line="55"/>
+ <source>Normal</source>
+ <translation>표준</translation>
+ </message>
+ <message>
+ <location filename="../components/TickDelegate.qml" line="56"/>
+ <source>Medium</source>
+ <translation>중간</translation>
+ </message>
+ <message>
+ <location filename="../components/TickDelegate.qml" line="57"/>
+ <source>High</source>
+ <translation>높은</translation>
+ </message>
+</context>
+<context>
+ <name>Transfer</name>
+ <message>
+ <location filename="../pages/Transfer.qml" line="44"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;Start daemon&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
+ <translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt; 데몬 시작&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="66"/>
+ <source>OpenAlias error</source>
+ <translation>Open Alias 오류</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="78"/>
+ <source>Privacy level (ringsize %1)</source>
+ <translation>개인 정보 보호 수준 (링 사이즈 %1)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="125"/>
+ <source>Amount</source>
+ <translation>금액</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="135"/>
+ <source>Transaction priority</source>
+ <translation>거래 우선 순위</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="175"/>
+ <source>All</source>
+ <translation>전부</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="197"/>
+ <source>Low (x1 fee)</source>
+ <translation>낮은 (x1 보상)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="198"/>
+ <source>Medium (x20 fee)</source>
+ <translation>중간 (x20 보상)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="199"/>
+ <source>High (x166 fee)</source>
+ <translation>높은 (x166 보상)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="237"/>
+ <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
+ <translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 주소 &lt;font size=&apos;2&apos;&gt; (에 붙여 넣기 또는에서 선택 &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;주소록&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="255"/>
+ <source>QR Code</source>
+ <translation>QR 코드</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="285"/>
+ <source>Resolve</source>
+ <translation>해결</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="303"/>
+ <source>No valid address found at this OpenAlias address</source>
+ <translation>이 Open Alias 주소에 유효한 주소가 없습니다</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="308"/>
+ <source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
+ <translation>주소가 발견되었으나 DNSSEC 서명이 확인되지 않습니다. 이 주소는 스푸핑(spoof)되었을 수 있습니다</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="310"/>
+ <source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
+ <translation>이 Open Alias 주소에서 유효한 주소 또는 DNSSEC 서명을 확인할 수 없습니다. 이 주소는 스푸핑(spoof)되었을 수 있습니다</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
+ <source>Internal error</source>
+ <translation>내부 오류</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="319"/>
+ <source>No address found</source>
+ <translation>주소를 찾을 수 없음</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="359"/>
+ <source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
+ <translation>설명 &lt;font size=&apos;2&apos;&gt;( 선택 사항 )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="371"/>
+ <source>Saved to local wallet history</source>
+ <translation>로컬 지갑 기록에 저장됨</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="401"/>
+ <source>Send</source>
+ <translation>전송</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="447"/>
+ <source>Show advanced options</source>
+ <translation>고급 옵션 표시</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="499"/>
+ <source>Sweep Unmixable</source>
+ <translation>혼합 할 수없는 쓸기</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="513"/>
+ <source>Create tx file</source>
+ <translation>거래 서류철 만들기</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="535"/>
+ <source>Sign tx file</source>
+ <translation>거래 서류철 제출 서명해</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="549"/>
+ <source>Submit tx file</source>
+ <translation>거래 서류철 제출</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
+ <source>Error</source>
+ <translation>오류</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="590"/>
+ <source>
+Number of transactions: </source>
+ <translation>거래 수: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="592"/>
+ <source>
+Transaction #%1</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="593"/>
+ <source>
+Recipient: </source>
+ <translation>수신자: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="594"/>
+ <source>
+payment ID: </source>
+ <translation>결제 신분증: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="595"/>
+ <source>
+Amount: </source>
+ <translation>금액: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="597"/>
+ <source>
+Ringsize: </source>
+ <translation>반지 사이즈:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="644"/>
+ <source>Information</source>
+ <translation>정보</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
+ <source>Please choose a file</source>
+ <translation>파일을 선택하세요</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="583"/>
+ <source>Can&apos;t load unsigned transaction: </source>
+ <translation>서명되지 않은 거래를 불러올 수 없습니다: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="596"/>
+ <source>
+Fee: </source>
+ <translation>수수료:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="611"/>
+ <source>Confirmation</source>
+ <translation>확인</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="639"/>
+ <source>Can&apos;t submit transaction: </source>
+ <translation>거래를 전송할 수 없습니다:</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="645"/>
+ <source>Money sent successfully</source>
+ <translation>송금 완료</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="699"/>
+ <location filename="../pages/Transfer.qml" line="711"/>
+ <source>Wallet is not connected to daemon.</source>
+ <translation>지갑이 데몬에 연결되어있지 않습니다.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="714"/>
+ <source>Connected daemon is not compatible with GUI.
+Please upgrade or connect to another daemon</source>
+ <translation>연결된 데몬은 GUI와 호환되지 않습니다. 다른 데몬으로 업그레이드하거나 연결하세요.</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="719"/>
+ <source>Waiting on daemon synchronization to finish</source>
+ <translation>데몬 동기화가 완료 될 때까지 기다림</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="91"/>
+ <source></source>
+ <translation></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="474"/>
+ <source>Transaction cost</source>
+ <translation>거래 비용</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="334"/>
+ <source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
+ <translation>결제 신분증 &lt;font size=&apos;2&apos;&gt;( 선택 사항 )&lt;/font&gt;</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="206"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation>느린 (x0.25 수수료)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="207"/>
+ <source>Default (x1 fee)</source>
+ <translation>디폴트 (x1 수수료)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="208"/>
+ <source>Fast (x5 fee)</source>
+ <translation>빠른 (x5 수수료)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="209"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation>가장 빠른 (x41.5 수수료)</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="346"/>
+ <source>16 or 64 hexadecimal characters</source>
+ <translation>16 또는 64 자의 16 진수</translation>
+ </message>
+</context>
+<context>
+ <name>TxKey</name>
+ <message>
+ <location filename="../pages/TxKey.qml" line="90"/>
+ <source>Verify that a third party made a payment by supplying:</source>
+ <translation>타사 결제를 한 것으로 확인 공급함으로써 :</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="95"/>
+ <source> - the recipient address</source>
+ <translation> - 수신자 주소</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="100"/>
+ <source> - the transaction ID</source>
+ <translation> - 거래 신분증</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="105"/>
+ <source> - the secret transaction key supplied by the sender</source>
+ <translation> - 송신자가 제공 한 비밀 거래 키</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="110"/>
+ <source>If a payment had several transactions then each must be checked and the results combined.</source>
+ <translation>결제에 여러 거래가있는 경우 각각을 점검하고 결과를 결합해야합니다.</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="123"/>
+ <source>Address</source>
+ <translation>주소</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="130"/>
+ <source>Recipient&apos;s wallet address</source>
+ <translation>수취인의 지갑 주소</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="152"/>
+ <source>Transaction ID</source>
+ <translation>거래 신분증</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="161"/>
+ <source>Paste tx ID</source>
+ <translation>붙여 넣기 거래 신분증</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="193"/>
+ <source>Paste tx key</source>
+ <translation>거래 키 붙여 넣기</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="216"/>
+ <source>Check</source>
+ <translation>검사</translation>
+ </message>
+ <message>
+ <location filename="../pages/TxKey.qml" line="185"/>
+ <source>Transaction key</source>
+ <translation>거래 키</translation>
+ </message>
+</context>
+<context>
+ <name>WalletManager</name>
+ <message>
+ <location filename="../src/libwalletqt/WalletManager.cpp" line="153"/>
+ <source>Unknown error</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
+ <name>WizardConfigure</name>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="79"/>
+ <source>We’re almost there - let’s just configure some Monero preferences</source>
+ <translation> 거의 다 왔습니다 - 선호하는 모네로 환경 설정을 구성 해 보세요.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="97"/>
+ <source>Kickstart the Monero blockchain?</source>
+ <translation>모네로 블록 체인을 시작하세요?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="115"/>
+ <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
+ <translation>이것이 귀하의 지갑에 필요한 유일한 백업이기 때문에 적어 두는 것이 매우 중요합니다.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="126"/>
+ <source>Enable disk conservation mode?</source>
+ <translation>디스크 절약 모드 사용?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="144"/>
+ <source>Disk conservation mode uses substantially less disk-space, but the same amount of bandwidth as a regular Monero instance. However, storing the full blockchain is beneficial to the security of the Monero network. If you are on a device with limited disk space, then this option is appropriate for you.</source>
+ <translation>디스크 절약 모드는 매우 적은 디스크 공간을 사용하지만 일반 모네로 인스턴스와 같은 양의 대역폭을 사용합니다. 그러나 전체 블록 체인을 저장하면 모네로 네트워크를 보호하는 데 도움이됩니다. 이 옵션은 디스크 공간이 제한적인 장치에 적합합니다.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="157"/>
+ <source>Allow background mining?</source>
+ <translation>백그라운드에서 마이닝을 허용 하시겠습니까?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardConfigure.qml" line="175"/>
+ <source>Mining secures the Monero network, and also pays a small reward for the work done. This option will let Monero mine when your computer is on mains power and is idle. It will stop mining when you continue working.</source>
+ <translation>마이닝은 모네로 네트워크를 보호하고 수행 한 작업에 대해 작은 보상을 지불합니다. 이 옵션은 당신의 컴퓨터가 전원에 연결되어 있고 게다가 유휴 상태 일 때 자동으로 모네로의 채굴을 할 수 있도록합니다. 당신이 작업을 다시 시작하면 채굴은 중지됩니다.</translation>
+ </message>
+</context>
+<context>
+ <name>WizardCreateViewOnlyWallet</name>
+ <message>
+ <location filename="../wizard/WizardCreateViewOnlyWallet.qml" line="68"/>
+ <source>Create view only wallet</source>
+ <translation>보기 전용 지갑 만들기</translation>
+ </message>
+</context>
+<context>
+ <name>WizardCreateWallet</name>
+ <message>
+ <location filename="../wizard/WizardCreateWallet.qml" line="100"/>
+ <source>Create a new wallet</source>
+ <translation>새 지갑 만들기</translation>
+ </message>
+</context>
+<context>
+ <name>WizardDonation</name>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="93"/>
+ <source>Monero development is solely supported by donations</source>
+ <translation>모네로 개발은 전적으로 기부금으로 지원됩니다</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="113"/>
+ <source>Enable auto-donations of?</source>
+ <translation>자동으로 기부를 활성화 하시겠습니까?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="153"/>
+ <source>% of my fee added to each transaction</source>
+ <translation>각 거래에 추가 된 수수료의 비율</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="164"/>
+ <source>For every transaction, a small transaction fee is charged. This option lets you add an additional amount, as a percentage of that fee, to your transaction to support Monero development. For instance, a 50% autodonation take a transaction fee of 0.005 XMR and add a 0.0025 XMR to support Monero development.</source>
+ <translation>모든 거래에 대해 작은 수수료가 부과됩니다. 이 옵션은 수수료 이외에 수수료의 몇 퍼센트를 모네로의 개발 팀에 기부금으로 결제하는 것을 허용합니다. 예를 들어, 자동 기부율이 50 %이고 거래 수수료가 0.005 XMR이면 0.0025 XMR이 개발 팀에 대한 기부로 거래에 추가됩니다.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="176"/>
+ <source>Allow background mining?</source>
+ <translation>백그라운드에서 마이닝을 허용 하시겠습니까?</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardDonation.qml" line="194"/>
+ <source>Mining secures the Monero network, and also pays a small reward for the work done. This option will let Monero mine when your computer is on mains power and is idle. It will stop mining when you continue working.</source>
+ <translation>마이닝은 모네로 네트워크를 보호하고 수행 한 작업에 대해 작은 보상을 지불합니다. 이 옵션은 당신의 컴퓨터가 전원에 연결되어 있고 게다가 유휴 상태 일 때 자동으로 모네로의 채굴을 할 수 있도록합니다. 당신이 작업을 다시 시작하면 채굴은 중지됩니다.</translation>
+ </message>
+</context>
+<context>
+ <name>WizardFinish</name>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="49"/>
+ <location filename="../wizard/WizardFinish.qml" line="52"/>
+ <location filename="../wizard/WizardFinish.qml" line="54"/>
+ <source>Enabled</source>
+ <translation>활성화됨</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="49"/>
+ <location filename="../wizard/WizardFinish.qml" line="52"/>
+ <location filename="../wizard/WizardFinish.qml" line="54"/>
+ <source>Disabled</source>
+ <translation>비활성화됨</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="58"/>
+ <source>Language</source>
+ <translation>언어</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="59"/>
+ <source>Wallet name</source>
+ <translation>지갑 이름</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="60"/>
+ <source>Backup seed</source>
+ <translation>백업 시드</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="61"/>
+ <source>Wallet path</source>
+ <translation>지갑 경로</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="67"/>
+ <source>Daemon address</source>
+ <translation>데몬 주소</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="68"/>
+ <source>Testnet</source>
+ <translation>테스트 넷</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="70"/>
+ <source>Restore height</source>
+ <translation>높이 복원</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="78"/>
+ <source>New wallet details:</source>
+ <translation>새 지갑 세부 정보:</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="82"/>
+ <source>Don&apos;t forget to write down your seed. You can view your seed and change your settings on settings page.</source>
+ <translation>당신의 시드(seed)을 적어 두는 것을 잊지 마십시오. 시드를보고 설정 페이지에서 설정을 변경할 수 있습니다.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardFinish.qml" line="128"/>
+ <source>You’re all set up!</source>
+ <translation>모든 준비가되었습니다!</translation>
+ </message>
+</context>
+<context>
+ <name>WizardMain</name>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="176"/>
+ <source>A wallet with same name already exists. Please change wallet name</source>
+ <translation>동명의 지갑이 이미 존재합니다. 지갑 이름을 변경하세요.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="184"/>
+ <source>Non-ASCII characters are not allowed in wallet path or account name</source>
+ <translation> ASCII(미국 문자 표준코드체계)가 아닌 문자는 지갑 경로 이름 또는 파일 이름으로 허용되지 않습니다.</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="366"/>
+ <source>USE MONERO</source>
+ <translation>모네로를 사용</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="383"/>
+ <source>Create wallet</source>
+ <translation>지갑 만들기</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="393"/>
+ <source>Success</source>
+ <translation>성공</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="394"/>
+ <source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
+%1</source>
+ <translation>보기 전용 지갑이 생성되었습니다. 이것을 열려면 현재의 지갑을 닫고 &quot;파일 옵션에서 지갑을 열고&quot; 보기 전용 지갑을 선택하세요:
+%1</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="402"/>
+ <source>Error</source>
+ <translation>오류</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMain.qml" line="415"/>
+ <source>Abort</source>
+ <translation>중단</translation>
+ </message>
+</context>
+<context>
+ <name>WizardManageWalletUI</name>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
+ <source>Wallet name</source>
+ <translation>지갑 이름</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="152"/>
+ <source>Restore from seed</source>
+ <translation>시드(seed)에서 복원</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="166"/>
+ <source>Restore from keys</source>
+ <translation>키에서 복원</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="203"/>
+ <source>Account address (public)</source>
+ <translation>계정 주소 (공개)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="211"/>
+ <source>View key (private)</source>
+ <translation>보기 키 (비공개)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="220"/>
+ <source>Spend key (private)</source>
+ <translation>지급 키 (비공개)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="232"/>
+ <source>Restore height (optional)</source>
+ <translation>블록 높이 복원 (선택 항목)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="245"/>
+ <source>Your wallet is stored in</source>
+ <translation>지갑이에 저장되어 위치</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="271"/>
+ <source>Please choose a directory</source>
+ <translation>디렉토리를 선택하세요</translation>
+ </message>
+</context>
+<context>
+ <name>WizardMemoTextInput</name>
+ <message>
+ <location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
+ <source>Enter your 25 word mnemonic seed</source>
+ <translation>귀하의 25 단어 니모닉 시드을 입력하세요</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardMemoTextInput.qml" line="88"/>
+ <source>This seed is &lt;b&gt;very&lt;/b&gt; important to write down and keep secret. It is all you need to backup and restore your wallet.</source>
+ <translation> 지갑의 백업 및 복원에 필요한 유일한 정보인 이 시드를 받아 적어, 보안이 되는 안전한 장소에 보관 하는것은 &lt;b&gt;매우 &lt;/b&gt; 중요합니다.</translation>
+ </message>
+</context>
+<context>
+ <name>WizardOptions</name>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="87"/>
+ <source>Welcome to Monero!</source>
+ <translation>모네로에 오신 것을 환영합니다!</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="98"/>
+ <source>Please select one of the following options:</source>
+ <translation>다음 옵션 중 하나를 선택하세요:</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="155"/>
+ <source>Create a new wallet</source>
+ <translation>새 지갑 만들기</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="197"/>
+ <source>Restore wallet from keys or mnemonic seed</source>
+ <translation>니모닉 시드 또는 개인 키에서 지갑을 복원</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="241"/>
+ <source>Open a wallet from file</source>
+ <translation>파일에서 지갑 열기</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="262"/>
+ <source>Custom daemon address (optional)</source>
+ <translation>사용자 지정 데몬 주소 (선택 항목)</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardOptions.qml" line="295"/>
+ <source>Testnet</source>
+ <translation>테스트 넷</translation>
+ </message>
+</context>
+<context>
+ <name>WizardPassword</name>
+ <message>
+ <location filename="../wizard/WizardPassword.qml" line="57"/>
+ <location filename="../wizard/WizardPassword.qml" line="59"/>
+ <source>Give your wallet a password</source>
+ <translation>지갑의 비밀번호를 설정하세요</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardPassword.qml" line="127"/>
+ <source> &lt;br&gt;Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
+ &lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
+ <translation> &lt;br&gt;참고: 이 암호는 복구 될 수 없으며, 지갑분실시 25 단어 니모닉 시드에서 지갑을 복원해야합니다.&lt;br/&gt;&lt;br/&gt;
+ &lt;b&gt;강력한 비밀번호를 입력하세요&lt;/b&gt; (문자, 숫자 및/또는 기호 사용):</translation>
+ </message>
+</context>
+<context>
+ <name>WizardPasswordUI</name>
+ <message>
+ <location filename="../wizard/WizardPasswordUI.qml" line="70"/>
+ <source>Password</source>
+ <translation>비밀번호</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardPasswordUI.qml" line="82"/>
+ <source>Confirm password</source>
+ <translation>비밀번호 확인</translation>
+ </message>
+</context>
+<context>
+ <name>WizardRecoveryWallet</name>
+ <message>
+ <location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
+ <source>Restore wallet</source>
+ <translation>지갑 복원</translation>
+ </message>
+</context>
+<context>
+ <name>WizardWelcome</name>
+ <message>
+ <location filename="../wizard/WizardWelcome.qml" line="79"/>
+ <source>Welcome to Monero!</source>
+ <translation>모네로에 오신 것을 환영합니다!</translation>
+ </message>
+ <message>
+ <location filename="../wizard/WizardWelcome.qml" line="89"/>
+ <source>Please choose a language and regional format.</source>
+ <translation>언어와 지역 포맷을 선택하세요.</translation>
+ </message>
+</context>
+<context>
+ <name>main</name>
+ <message>
+ <location filename="../main.qml" line="329"/>
+ <location filename="../main.qml" line="497"/>
+ <location filename="../main.qml" line="509"/>
+ <location filename="../main.qml" line="559"/>
+ <location filename="../main.qml" line="571"/>
+ <location filename="../main.qml" line="613"/>
+ <location filename="../main.qml" line="622"/>
+ <location filename="../main.qml" line="674"/>
+ <location filename="../main.qml" line="712"/>
+ <location filename="../main.qml" line="742"/>
+ <source>Error</source>
+ <translation>오류</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="330"/>
+ <source>Couldn&apos;t open wallet: </source>
+ <translation>지갑을 열 수 없습니다:</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="361"/>
+ <source>Unlocked balance (waiting for block)</source>
+ <translation>잠금 해제 된 잔액 (블록 대기 중)</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="361"/>
+ <source>Unlocked balance (~%1 min)</source>
+ <translation>잠금 해제 된 잔액 (~%1 분)</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="361"/>
+ <source>Unlocked balance</source>
+ <translation>잠겨 있지 않은 잔액</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="413"/>
+ <source>Waiting for daemon to start...</source>
+ <translation>데몬이 시작될 때까지 기다리는 중...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="419"/>
+ <source>Waiting for daemon to stop...</source>
+ <translation>데몬이 멈출 때까지 기다리는 중...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="444"/>
+ <source>Daemon failed to start</source>
+ <translation>데몬 시작에 실패했습니다</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="445"/>
+ <source>Please check your wallet and daemon log for errors. You can also try to start %1 manually.</source>
+ <translation>지갑과 데몬 로그에서 오류를 확인하십시오. 수동으로 %1을 시작할 수도 있습니다.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="499"/>
+ <source>Can&apos;t create transaction: Wrong daemon version: </source>
+ <translation>잘못된 데몬 버전으로 거래를 만들 수 없습니다: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="501"/>
+ <location filename="../main.qml" line="614"/>
+ <source>Can&apos;t create transaction: </source>
+ <translation>거래를 만들 수 없습니다:</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="510"/>
+ <location filename="../main.qml" line="623"/>
+ <source>No unmixable outputs to sweep</source>
+ <translation>스윕 할 비혼합 가능한 출력이 없습니다</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="522"/>
+ <location filename="../main.qml" line="635"/>
+ <source>Confirmation</source>
+ <translation>확인</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="523"/>
+ <location filename="../main.qml" line="636"/>
+ <source>Please confirm transaction:
+</source>
+ <translation>거래 내용을 확인하세요:</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="524"/>
+ <source>
+Address: </source>
+ <translation>주소:</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="525"/>
+ <source>
+Payment ID: </source>
+ <translation>결제 신분증: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="526"/>
+ <location filename="../main.qml" line="637"/>
+ <source>
+
+Amount: </source>
+ <translation>금액: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="527"/>
+ <location filename="../main.qml" line="638"/>
+ <source>
+Fee: </source>
+ <translation>수수료: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="528"/>
+ <source>
+
+Ringsize: </source>
+ <translation>링사이즈: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="734"/>
+ <source>This address received %1 monero, with %2 confirmation(s).</source>
+ <translation>이 주소로 % 1XMR을 받아, % 2 로 승인되었습니다.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1324"/>
+ <source>Daemon is running</source>
+ <translation>데몬이 실행 중입니다</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1325"/>
+ <source>Daemon will still be running in background when GUI is closed.</source>
+ <translation>GUI가 닫혀도 데몬은 백그라운드에서 계속 실행됩니다.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1327"/>
+ <source>Stop daemon</source>
+ <translation>데몬 중지</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1361"/>
+ <source>New version of monero-wallet-gui is available: %1&lt;br&gt;%2</source>
+ <translation>monero-wallet-gui의 새 버전을 사용할 수 있습니다: %1&lt;br&gt;%2</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="529"/>
+ <source>
+Number of transactions: </source>
+ <translation>거래 수: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="530"/>
+ <source>
+
+Description: </source>
+ <translation>설명: </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="560"/>
+ <source>Amount is wrong: expected number from %1 to %2</source>
+ <translation>금액이 잘못되었습니다 : % 1에서 % 2까지의 예상 숫자</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="572"/>
+ <source>Insufficient funds. Unlocked balance: %1</source>
+ <translation>불충분 한 자금. 잠금 해제 된 잔액: %1</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="675"/>
+ <source>Couldn&apos;t send the money: </source>
+ <translation>돈을 전송하지 못했습니다.</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="678"/>
+ <source>Information</source>
+ <translation>정보</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="684"/>
+ <source>Money sent successfully: %1 transaction(s) </source>
+ <translation>송금 완료: %1 거래(들) </translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="684"/>
+ <source>Transaction saved to file: %1</source>
+ <translation>거래 데이터를 파일에 저장되었습니다: %1</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="724"/>
+ <source>Payment check</source>
+ <translation>결제 확인</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="729"/>
+ <source>This address received %1 monero, but the transaction is not yet mined</source>
+ <translation>이 주소는 % 1XMR을 받았지만, 거래는 아직 채굴되지 않습니다</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="738"/>
+ <source>This address received nothing</source>
+ <translation>이 주소는 아무것도받지 못했습니다</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="750"/>
+ <source>Balance (syncing)</source>
+ <translation>잔액 (동기화)</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="750"/>
+ <source>Balance</source>
+ <translation>잔액</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="985"/>
+ <source>Please wait...</source>
+ <translation>기다려주십시오...</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1009"/>
+ <source>Program setup wizard</source>
+ <translation>프로그램 설치 마법사</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1024"/>
+ <source>Monero</source>
+ <translation>모네로</translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="1072"/>
+ <source>send to the same destination</source>
+ <translation>동일한 대상에 송금하기</translation>
+ </message>
+</context>
+</TS>
diff --git a/translations/monero-core_nl.ts b/translations/monero-core_nl.ts
index 081d0b9d..11247375 100644
--- a/translations/monero-core_nl.ts
+++ b/translations/monero-core_nl.ts
@@ -14,93 +14,62 @@
<translation>Adres</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>QRCODE</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Betaal-ID &lt;font size=&apos;2&apos;&gt;(Optioneel)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;Betaal-ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Een unieke gebruikersnaam die gebruikt wordt in&lt;br/&gt;het adresboek. Deze wordt niet gebruikt voor&lt;br/&gt;het verzenden van informatie;br/&gt;tijdens de transfer</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Plak 64 hexadecimale karakters</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Omschrijving &lt;font size=&apos;2&apos;&gt;(Optioneel)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>Geef deze vermelding een naam of omschrijving</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Toevoegen</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Fout</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Ongeldig adres</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>Kan vermelding niet opslaan</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">Beschrijving &lt;font size=&apos;2&apos;&gt;(Lokale database)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">NIEUW</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">Betaal-ID</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">Beschrijving</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
<message>
<location filename="../components/AddressBookTable.qml" line="47"/>
<source>No more results</source>
- <translation>Geen verdere resultaten</translation>
+ <translation>Verder geen resultaten</translation>
</message>
<message>
<location filename="../components/AddressBookTable.qml" line="104"/>
@@ -113,12 +82,12 @@
<message>
<location filename="../BasicPanel.qml" line="97"/>
<source>Locked Balance:</source>
- <translation>Onbeschikbaar saldo:</translation>
+ <translation>Vergrendeld saldo:</translation>
</message>
<message>
<location filename="../BasicPanel.qml" line="110"/>
<source>78.9239845</source>
- <translation type="unfinished"></translation>
+ <translation>78,9239845</translation>
</message>
<message>
<location filename="../BasicPanel.qml" line="133"/>
@@ -128,7 +97,7 @@
<message>
<location filename="../BasicPanel.qml" line="146"/>
<source>2324.9239845</source>
- <translation type="unfinished"></translation>
+ <translation>2324,9239845</translation>
</message>
</context>
<context>
@@ -141,24 +110,12 @@
<message>
<location filename="../components/DaemonConsole.qml" line="128"/>
<source>command + enter (e.g help)</source>
- <translation>commando + enter (b.v. help)</translation>
+ <translation>opdracht + enter (b.v. help)</translation>
</message>
</context>
<context>
<name>DaemonManagerDialog</name>
<message>
- <source>Daemon doesn&apos;t appear to be running</source>
- <translation type="vanished">Node lijkt niet actief te zijn</translation>
- </message>
- <message>
- <source>Start daemon</source>
- <translation type="vanished">Node starten</translation>
- </message>
- <message>
- <source>Cancel</source>
- <translation type="vanished">Annuleren</translation>
- </message>
- <message>
<location filename="../components/DaemonManagerDialog.qml" line="93"/>
<source>Starting Monero daemon in %1 seconds</source>
<translation>Monero node wordt gestart in %1 seconde(n)</translation>
@@ -175,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">Blokken synchroniseren %1/%2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="vanished">Blokken synchroniseren</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -208,7 +154,7 @@
<message>
<location filename="../components/DashboardTable.qml" line="47"/>
<source>No more results</source>
- <translation>Geen verdere resultaten</translation>
+ <translation>Verder geen resultaten</translation>
</message>
<message>
<location filename="../components/DashboardTable.qml" line="137"/>
@@ -229,15 +175,6 @@
<context>
<name>History</name>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation></translation>
- </message>
- <message>
<location filename="../pages/History.qml" line="135"/>
<source>Filter transaction history</source>
<translation>Filter transactiegeschiedenis</translation>
@@ -248,63 +185,38 @@
<translation> geselecteerd: </translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Totaalbedrag van geselecteerde betalingen&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Filteren</translation>
</message>
<message>
- <source>Incremental search</source>
- <translation type="vanished">Incrementeel zoeken</translation>
- </message>
- <message>
- <source>Search transfers for a given string</source>
- <translation type="vanished">Betalingen zoeken met een bepaalde term</translation>
- </message>
- <message>
- <source>Type search string</source>
- <translation type="vanished">Zoekterm ingeven</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Begin te typen voor incrementeel zoeken...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
- <translation>Startdatum</translation>
+ <translation>Datum van</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>Tot</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">FILTEREN</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Geavanceerd filteren</translation>
</message>
<message>
- <source>Advance filtering</source>
- <translation type="vanished">Geavanceerd filteren</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Soort transactie</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Bedrag van</translation>
</message>
@@ -314,7 +226,7 @@
<message>
<location filename="../components/HistoryTable.qml" line="78"/>
<source>No more results</source>
- <translation>Geen verdere resultaten</translation>
+ <translation>Verder geen resultaten</translation>
</message>
<message>
<location filename="../components/HistoryTable.qml" line="49"/>
@@ -391,21 +303,11 @@
<translation>Saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="../LeftPanel.qml" line="178"/>
<source>Unlocked balance</source>
<translation>Beschikbaar saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
<location filename="../LeftPanel.qml" line="281"/>
<source>Send</source>
<translation>Verzenden</translation>
@@ -421,10 +323,6 @@
<translation>R</translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="vanished">Betaling controleren</translation>
- </message>
- <message>
<location filename="../LeftPanel.qml" line="425"/>
<source>K</source>
<translation>K</translation>
@@ -483,7 +381,7 @@
<message>
<location filename="../LeftPanel.qml" line="448"/>
<source>Sign/verify</source>
- <translation>Signeren/verifiëren</translation>
+ <translation>Ondertekenen/verifiëren</translation>
</message>
<message>
<location filename="../LeftPanel.qml" line="449"/>
@@ -509,14 +407,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="vanished">Saldo:</translation>
- </message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="vanished">Beschikbaar Saldo:</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>Saldo</translation>
@@ -524,7 +414,7 @@
<message>
<location filename="../MiddlePanel.qml" line="48"/>
<source>Unlocked Balance</source>
- <translation>Beschikbaar Saldo</translation>
+ <translation>Beschikbaar saldo</translation>
</message>
</context>
<context>
@@ -540,33 +430,9 @@
<translation>(alleen beschikbaar voor lokale nodes)</translation>
</message>
<message>
- <source>Mining helps the Monero network build resilience.&lt;br&gt;</source>
- <translation type="vanished">Minen help het Monero-netwerk weerstand op te bouwen.&lt;br&gt;</translation>
- </message>
- <message>
- <source>The more mining is done, the harder it is to attack the network.&lt;br&gt;</source>
- <translation type="vanished">Hoe meer er gemined wordt, des te moeilijker het is om het Monero-netwerk aan te vallen.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Mining also gives you a small chance to earn some Monero.&lt;br&gt;</source>
- <translation type="vanished">Minen geeft je een kleine kans om Monero te verdienen.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Your computer will search for Monero block solutions.&lt;br&gt;</source>
- <translation type="vanished">Uw computer zal zoeken naar Monero blok-oplossingen.&lt;br&gt;</translation>
- </message>
- <message>
- <source>If you find a block, you will get the associated reward.&lt;br&gt;</source>
- <translation type="vanished">Als u een blok vindt, zult u de bijbehorende beloning ontvangen.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Mining helps the Monero network build resilience. The more mining is done, the harder it is to attack the network. Mining also gives you a small chance to earn some Monero. Your computer will search for Monero block solutions. If you find a block, you will get the associated reward.</source>
- <translation type="vanished">Minen help het Monero-netwerk weerstand op te bouwen. Hoe meer er gemined wordt, des te moeilijker het is om het Monero-netwerk aan te vallen. Minen geeft je een kleine kans om Monero te verdienen. Uw computer zal zoeken naar Monero blok-oplossingen. Als u een blok vindt, zult u de bijbehorende beloning ontvangen.</translation>
- </message>
- <message>
<location filename="../pages/Mining.qml" line="86"/>
<source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
- <translation>Minen met uw computer helpt het Monero-netwerk sterker te worden. Hoe meer individuen er minen, des te moeilijker het is om het Monero-netwerk aan te vallen. Ieder beetje helpt dus.&lt;br&gt; &lt;br&gt; Minen geeft je ook een kleine kans om Monero te verdienen. Uw computer zal namelijk specifieke tekenreeksen berekenen en zodoende op zoek gaan naar Monero blok-oplossingen. Als u een blok vindt, zult u de bijbehorende beloning ontvangen. Veel success!</translation>
+ <translation>Minen met uw computer helpt het Monero-netwerk sterker te worden. Hoe meer individuen er minen, des te moeilijker het is om het Monero-netwerk aan te vallen. Ieder beetje helpt dus.&lt;br&gt; &lt;br&gt; Minen geeft u ook een kleine kans om Monero te verdienen. Uw computer zal namelijk specifieke tekenreeksen berekenen en zodoende op zoek gaan naar Monero blok-oplossingen. Als u een blok vindt, ontvangt u de bijbehorende beloning. Veel success!</translation>
</message>
<message>
<location filename="../pages/Mining.qml" line="96"/>
@@ -636,7 +502,7 @@
<message>
<location filename="../pages/Mining.qml" line="208"/>
<source>Status: </source>
- <translation>Status:</translation>
+ <translation>Status: </translation>
</message>
</context>
<context>
@@ -644,7 +510,7 @@
<message>
<location filename="../components/MobileHeader.qml" line="94"/>
<source>Unlocked Balance:</source>
- <translation type="unfinished">Beschikbaar Saldo:</translation>
+ <translation>Beschikbaar saldo:</translation>
</message>
</context>
<context>
@@ -685,12 +551,12 @@
<message>
<location filename="../components/PasswordDialog.qml" line="79"/>
<source>Please enter wallet password</source>
- <translation>Portemonnee wachtwoord invullen alstublieft</translation>
+ <translation>Vul het wachtwoord voor de portemonnee in</translation>
</message>
<message>
<location filename="../components/PasswordDialog.qml" line="79"/>
<source>Please enter wallet password for:&lt;br&gt;</source>
- <translation>Vul aub portemonnee wachtwoord in voor:&lt;br&gt;</translation>
+ <translation>Vul het wachtwoord van de portemonnee in voor:&lt;br&gt;</translation>
</message>
<message>
<location filename="../components/PasswordDialog.qml" line="156"/>
@@ -700,24 +566,12 @@
<message>
<location filename="../components/PasswordDialog.qml" line="171"/>
<source>Ok</source>
- <translation>Ok</translation>
+ <translation>OK</translation>
</message>
</context>
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">LAAG</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">GEMIDDELD</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">HOOG</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation>Laag</translation>
@@ -736,10 +590,6 @@
<context>
<name>ProgressBar</name>
<message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">Blokken synchroniseren %1/%2</translation>
- </message>
- <message>
<location filename="../components/ProgressBar.qml" line="43"/>
<source>Establishing connection...</source>
<translation>Bezig met verbinding te maken...</translation>
@@ -838,10 +688,6 @@
<translation>Genereer Betaal-ID voor geïntegreerd adres</translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">Geïntegreerd adres alleen-lezen portemonnee wordt hier weergegeven</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="388"/>
<source>Save QrCode</source>
<translation>QR-Code opslaan</translation>
@@ -849,7 +695,7 @@
<message>
<location filename="../pages/Receive.qml" line="389"/>
<source>Failed to save QrCode to </source>
- <translation>Opslaan van QR-Code is mislukt</translation>
+ <translation>QR-code niet opgeslagen in </translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="400"/>
@@ -862,10 +708,6 @@
<translation>Betaal-ID</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="vanished">16 of 64 hexadecimale tekens</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="309"/>
<source>Amount</source>
<translation>Bedrag</translation>
@@ -888,7 +730,7 @@
<message>
<location filename="../pages/Receive.qml" line="344"/>
<source>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;This is a simple sales tracker:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Click Generate to create a random payment id for a new customer&lt;/p&gt; &lt;p&gt;Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).&lt;/p&gt;&lt;p&gt;This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.&lt;/p&gt;It&apos;s up to you whether to accept unconfirmed transactions or not. It is likely they&apos;ll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).&lt;/p&gt;</source>
- <translation>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;Dit is een eenvoudige verkoop tracker:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Klik hier om een willekeurige betaal-ID te maken voor een nieuwe klant&lt;/p&gt; &lt;p&gt;Laat je klant deze QR code scannen om een betaling uit te voeren (als die klant over software beschikt die QR codes kan scannen).&lt;/p&gt;&lt;p&gt;Deze pagina zal automatisch de blockchain en transactiepoel scannen op inkomende transacties met behulp van deze QR code. Als je een bedrag invult, zal er ook gecontroleerd worden of het complete bedrag ontvangen is.&lt;/p&gt;Het is aan jou om eventuele onbevestigde transacties te accepteren of niet. Het is zeer waarschijnlijk dat deze op korte termijn bevestigd zullen worden, maar er is nog steeds een mogelijkheid dat dit niet gebeurt. Bij grote bedragen is het dus aan te raden te wachten op één of meer bevestigingen.&lt;/p&gt;</translation>
+ <translation>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;Dit is een eenvoudige verkooptracker:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Klik hier om een willekeurige betaal-ID te maken voor een nieuwe klant&lt;/p&gt; &lt;p&gt;Laat uw klant deze QR-code scannen om een betaling uit te voeren (als die klant over software beschikt die QR-codes kan scannen).&lt;/p&gt;&lt;p&gt;Deze pagina zal automatisch de blockchain en transactiepoel doorzoeken op inkomende transacties met behulp van deze QR-code. Als u een bedrag invult, wordt er ook gecontroleerd of het complete bedrag ontvangen is.&lt;/p&gt;Het is aan u om eventuele onbevestigde transacties te accepteren of niet. Het is zeer waarschijnlijk dat deze op korte termijn bevestigd zullen worden, maar er is nog steeds een mogelijkheid dat dit niet gebeurt. Bij grote bedragen is het dus aan te raden om te wachten op een of meer bevestigingen.&lt;/p&gt;</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="254"/>
@@ -924,7 +766,7 @@
<message>
<location filename="../components/SearchInput.qml" line="69"/>
<source>Search by...</source>
- <translation>Zoeken op…</translation>
+ <translation>Zoeken op...</translation>
</message>
<message>
<location filename="../components/SearchInput.qml" line="228"/>
@@ -935,10 +777,6 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="vanished">Klik op de knop om de hersteltekst te tonen</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -947,27 +785,27 @@
<message>
<location filename="../pages/Settings.qml" line="525"/>
<source>Wallet seed &amp; keys</source>
- <translation type="unfinished"></translation>
+ <translation>Hersteltekst en sleutels van portemonnee</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="527"/>
<source>Secret view key</source>
- <translation type="unfinished"></translation>
+ <translation>Geheime alleen-lezen sleutel</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="528"/>
<source>Public view key</source>
- <translation type="unfinished"></translation>
+ <translation>Openbare alleen-lezen sleutel</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="529"/>
<source>Secret spend key</source>
- <translation type="unfinished"></translation>
+ <translation>Geheime bestedingssleutel</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="530"/>
<source>Public spend key</source>
- <translation type="unfinished"></translation>
+ <translation>Openbare bestedingssleutel</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="540"/>
@@ -975,18 +813,6 @@
<translation>Verkeerd wachtwoord</translation>
</message>
<message>
- <source>Mnemonic seed: </source>
- <translation type="vanished">Hersteltekst:</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">Het is erg belangrijk om dit op te schrijven, omdat dit de enige back-up is die u heeft voor uw portemonnee.</translation>
- </message>
- <message>
- <source>Show seed</source>
- <translation type="vanished">Toon hersteltekst</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="306"/>
<source>Daemon address</source>
<translation>Node-adres</translation>
@@ -997,10 +823,6 @@
<translation>Portemonnee beheren</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="vanished">Sluit huidige portemonnee en open de configuratie-assistent</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>Portemonnee sluiten</translation>
@@ -1026,18 +848,14 @@
<translation>Stop lokale node</translation>
</message>
<message>
- <source>Show log</source>
- <translation type="vanished">Bekijk log</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="509"/>
<source>Daemon log</source>
- <translation>Node log</translation>
+ <translation>Node-log</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="322"/>
<source>Hostname / IP</source>
- <translation>Hostnaam / IP</translation>
+ <translation>Hostnaam/IP-adres</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="239"/>
@@ -1047,7 +865,7 @@
<message>
<location filename="../pages/Settings.qml" line="286"/>
<source>Daemon startup flags</source>
- <translation>Node start argumenten</translation>
+ <translation>Startargumenten voor node</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="265"/>
@@ -1058,32 +876,32 @@
<message>
<location filename="../pages/Settings.qml" line="120"/>
<source>Show seed &amp; keys</source>
- <translation type="unfinished"></translation>
+ <translation>Toon hersteltekst en sleutels</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="163"/>
<source>Rescan wallet balance</source>
- <translation type="unfinished"></translation>
+ <translation>Saldo van portemonnee opzoeken</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="172"/>
<source>Error: </source>
- <translation type="unfinished">Fout:</translation>
+ <translation>Fout: </translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="177"/>
<source>Information</source>
- <translation type="unfinished">Informatie</translation>
+ <translation>Informatie</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="178"/>
<source>Sucessfully rescanned spent outputs</source>
- <translation type="unfinished">Met succes de uitgaven doorzocht</translation>
+ <translation>De uitgaven zijn doorzocht</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="257"/>
<source>Blockchain location</source>
- <translation type="unfinished"></translation>
+ <translation>Locatie van blockchain</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="331"/>
@@ -1093,7 +911,7 @@
<message>
<location filename="../pages/Settings.qml" line="342"/>
<source>Login (optional)</source>
- <translation>Loginnaam (optioneel)</translation>
+ <translation>Inlognaam (optioneel)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="355"/>
@@ -1113,46 +931,42 @@
<message>
<location filename="../pages/Settings.qml" line="573"/>
<source>Please choose a folder</source>
- <translation type="unfinished"></translation>
+ <translation>Kies een map</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="582"/>
<source>Warning</source>
- <translation type="unfinished"></translation>
+ <translation>Waarschuwing</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="585"/>
<source>Error: Filesystem is read only</source>
- <translation type="unfinished"></translation>
+ <translation>Fout: het bestandssysteem is alleen-lezen</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="589"/>
<source>Warning: There&apos;s only %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
- <translation type="unfinished"></translation>
+ <translation>Waarschuwing: er is slechts %1 GB beschikbaar op dit apparaat. Voor de blockchain is ~%2 GB opslagruimte nodig.</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="591"/>
<source>Note: There&apos;s %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
- <translation type="unfinished"></translation>
+ <translation>Let op: er is slechts %1 GB beschikbaar op dit apparaat. Voor de blockchain is ~%2 GB opslagruimte nodig.</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="595"/>
<source>Note: lmdb folder not found. A new folder will be created.</source>
- <translation type="unfinished"></translation>
+ <translation>LMDB-map niet gevonden. Er wordt een nieuwe map gemaakt.</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="600"/>
<source>Cancel</source>
- <translation type="unfinished">Annuleren</translation>
- </message>
- <message>
- <source>Save</source>
- <translation type="vanished">Opslaan</translation>
+ <translation>Annuleren</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="398"/>
<source>Layout settings</source>
- <translation>Opmaak instellingen</translation>
+ <translation>Opmaakinstellingen</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="415"/>
@@ -1162,7 +976,7 @@
<message>
<location filename="../pages/Settings.qml" line="426"/>
<source>Log level</source>
- <translation>Log niveau</translation>
+ <translation>Logniveau</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="460"/>
@@ -1177,16 +991,12 @@
<message>
<location filename="../pages/Settings.qml" line="492"/>
<source>GUI version: </source>
- <translation>GUI versie:</translation>
+ <translation>GUI-versie: </translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="499"/>
<source>Embedded Monero version: </source>
- <translation>Ingebouwde Monero versie:</translation>
- </message>
- <message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">Portemonnee hersteltekst</translation>
+ <translation>Ingebouwde Monero-versie: </translation>
</message>
</context>
<context>
@@ -1214,7 +1024,7 @@
<message>
<location filename="../pages/Sign.qml" line="111"/>
<source>Sign a message or file contents with your address:</source>
- <translation>Signeer een bericht of bestandsinhoud met uw adres:</translation>
+ <translation>Onderteken een bericht of bestandsinhoud met uw adres:</translation>
</message>
<message>
<location filename="../pages/Sign.qml" line="122"/>
@@ -1231,7 +1041,7 @@
<location filename="../pages/Sign.qml" line="156"/>
<location filename="../pages/Sign.qml" line="231"/>
<source>Sign</source>
- <translation>Signeer</translation>
+ <translation>Ondertekenen</translation>
</message>
<message>
<location filename="../pages/Sign.qml" line="184"/>
@@ -1242,13 +1052,13 @@
<location filename="../pages/Sign.qml" line="197"/>
<location filename="../pages/Sign.qml" line="368"/>
<source>Select</source>
- <translation>Selecteer</translation>
+ <translation>Selecteren</translation>
</message>
<message>
<location filename="../pages/Sign.qml" line="327"/>
<location filename="../pages/Sign.qml" line="401"/>
<source>Verify</source>
- <translation>Verifiëer</translation>
+ <translation>Verifiëren</translation>
</message>
<message>
<location filename="../pages/Sign.qml" line="355"/>
@@ -1261,20 +1071,12 @@
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adres voor ondertekenen &lt;font size=&apos;2&apos;&gt; (Vul in of slecteer uit het &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Addresboek&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="vanished">ONDERTEKENEN</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>Of bestand:</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="vanished">SELECTEER</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>Bestand met bericht om te ondertekenen</translation>
@@ -1298,18 +1100,10 @@
<translation>Het te verifiëren bericht</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="vanished">VERIFIËREN</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>Bestandsnaam met bericht om te verifiëren</translation>
</message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Handtekening adres &lt;font size=&apos;2&apos;&gt; ( Vul in of selecteer uit het &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adres&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;boek )&lt;/font&gt;</translation>
- </message>
</context>
<context>
<name>StandardDialog</name>
@@ -1329,30 +1123,50 @@
<message>
<location filename="../components/StandardDropdown.qml" line="197"/>
<source>Low (x1 fee)</source>
- <translation>Laag (×1 vergoeding)</translation>
+ <translation>Laag (vergoeding × 1)</translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="198"/>
<source>Medium (x20 fee)</source>
- <translation>Gemiddeld (×20 vergoeding)</translation>
+ <translation>Gemiddeld (vergoeding × 20)</translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="199"/>
<source>High (x166 fee)</source>
- <translation>Hoog (×166 vergoeding)</translation>
+ <translation>Hoog (vergoeding × 166)</translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation>Langzaam (vergoeding × 0,25)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation>Normaal (vergoeding × 1)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation>Snel (vergoeding × 5)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation>Razendsnel (vergoeding × 41,5)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>Alles</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Verzonden</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Ontvangen</translation>
</message>
@@ -1365,13 +1179,9 @@
<translation>&lt;b&gt;Kopieer adres naar klembord&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;Verstuur naar hetzelfde adres&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;b&gt;Verstuur naar dit adres&lt;/b&gt;</translation>
</message>
<message>
<location filename="../components/TableDropdown.qml" line="184"/>
@@ -1410,18 +1220,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">LAAG</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">GEMIDDELD</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">HOOG</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation>Normaal</translation>
@@ -1450,59 +1248,19 @@
<translation>Prioriteit transactie</translation>
</message>
<message>
- <source>LOW</source>
- <translation type="vanished">LAAG</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">GEMIDDELD</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">HOOG</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="91"/>
<source></source>
<translation></translation>
</message>
<message>
- <source>or ALL</source>
- <translation type="vanished">of ALLES</translation>
- </message>
- <message>
- <source>LOW (x1 fee)</source>
- <translation type="vanished">LAAG (×1 vergoeding)</translation>
- </message>
- <message>
- <source>MEDIUM (x20 fee)</source>
- <translation type="vanished">GEMIDDELD (×20 vergoeding)</translation>
- </message>
- <message>
- <source>HIGH (x166 fee)</source>
- <translation type="vanished">HOOG (×166 vergoeding)</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">Privacyniveau</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Transactiekosten</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adres &lt;font size=&apos;2&apos;&gt; (Vul in of selecteer uit het &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adresboek&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( Optional - saved to local wallet history )&lt;/font&gt;</source>
- <translation type="vanished">Beschrijving &lt;font size=&apos;2&apos;&gt;( Optioneel - opgeslagen in de lokale portemonnee-geschiedenis )&lt;/font&gt;</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="66"/>
<source>OpenAlias error</source>
- <translation>OpenAlias fout</translation>
+ <translation>Fout in OpenAlias</translation>
</message>
<message>
<location filename="../pages/Transfer.qml" line="78"/>
@@ -1516,133 +1274,117 @@
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;Start lokale node&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
</message>
<message>
- <source>all</source>
- <translation type="vanished">alles</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
- <translation>Laag (×1 vergoeding)</translation>
+ <translation>Laag (vergoeding × 1)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
- <translation>Gemiddeld (×20 vergoeding)</translation>
+ <translation>Gemiddeld (vergoeding × 20)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
- <translation>Hoog (×166 vergoeding)</translation>
+ <translation>Hoog (vergoeding × 166)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>Langzaam (vergoeding × 0,25)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
- <translation type="unfinished">Normaal (×4 vergoeding) {1 ?}</translation>
+ <translation>Normaal (vergoeding × 1)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>Snel (vergoeding × 5)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>Razendsnel (vergoeding × 41,5)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adres &lt;font size=&apos;2&apos;&gt; (Vul in of selecteer uit het &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Addresboek&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>QR-Code</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Oplossen</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
- <translation>Geen geldig adres gevonden onder dit OpenAlias adres</translation>
+ <translation>Geen geldig adres gevonden voor dit OpenAlias-adres</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
- <translation>Adres gevonden, maar DNSSEC handtekeningen konden niet geverifiëerd worden, dus het adres kan mogelijk gespoofed en dus ongeldig zijn</translation>
+ <translation>Adres gevonden, maar de DNSSEC-handtekeningen kunnen niet geverifiëerd worden, dus het adres kan gespoofed en dus ongeldig zijn</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
- <translation>Geen geldig adres gevonden onder het opgegeven OpenAlias adres, en de DNSSEC handtekeningen konden niet geverifiëerd worden, dus het adres kan mogelijk gespoofed en dus ongeldig zijn</translation>
+ <translation>Geen geldig adres gevonden onder het opgegeven OpenAlias-adres, en de DNSSEC-handtekeningen kunnen niet geverifiëerd worden, dus het adres kan gespoofed en dus ongeldig zijn</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Interne fout</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Geen adres gevonden</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Omschrijving &lt;font size=&apos;2&apos;&gt;(Optioneel)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Wordt opgeslagen in de lokale portemonnee-geschiedenis</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>Verzenden</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Laat geavanceerde opties zien</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
- <translation type="unfinished"></translation>
+ <translation>Verbonden node is niet compatibel met de GUI.
+Upgrade of maak verbinding met een andere node</translation>
</message>
<message>
- <source>Privacy level (ringsize 5)</source>
- <translation type="vanished">Privacy niveau (ringgrootte 5)</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
- <translatorcomment>Lastig te vertalen deze. Misschien heeft iemand anders een beter idee dan, &quot;Schoonvegen van niet-te-mengen posten&quot;</translatorcomment>
- <translation type="unfinished"></translation>
+ <translation>Onmengbare bedragen samenvoegen</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
- <translation>Maak TX bestand</translation>
- </message>
- <message>
- <source>sign tx file</source>
- <translation type="vanished">Signeer TX bestand</translation>
- </message>
- <message>
- <source>submit tx file</source>
- <translation type="vanished">Verzend TX bestand</translation>
+ <translation>Maak TX-bestand</translation>
</message>
<message>
<location filename="../pages/Transfer.qml" line="175"/>
@@ -1650,160 +1392,122 @@ Please upgrade or connect to another daemon</source>
<translation>Alles</translation>
</message>
<message>
- <source>Default (x4 fee)</source>
- <translation type="vanished">Normaal (×4 vergoeding)</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
- <translation>Signeer TX bestand</translation>
+ <translation>Onderteken TX-bestand</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
- <translation>Verzend TX bestand</translation>
- </message>
- <message>
- <source>Rescan spent</source>
- <translation type="vanished">Doorzoek uitgaven</translation>
+ <translation>Verzend TX-bestand</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Fout</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">Fout:</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Informatie</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">Met succes de uitgaven doorzocht</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>Kies een bestand</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>Het laden van de niet-ondertekende transactie is mislukt: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>
-Aantal transacties:</translation>
+Aantal transacties: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>
Transactie #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>
-Ontvanger:</translation>
+Ontvanger: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>
-Betaal-ID:</translation>
+Betaal-ID: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>
Bedrag: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>
Vergoeding: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>
Ringgrootte: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Bevestiging</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>Kan transactie niet insturen: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
- <translation>Geld is succesvol verstuurd</translation>
+ <translation>Het geld is verstuurd</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>Portemonnee is niet verbonden met de node.</translation>
</message>
<message>
- <source>Connected daemon is not compatible with GUI.
-Please upgrade or connect to another daemon</source>
- <translation type="vanished">Verbonden node is niet compatibel met de GUI.
-Graag upgraden of verbinden met een andere node</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Wachten totdat de synchronisatie met de node compleet is</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adres &lt;font size=&apos;2&apos;&gt; (Vul in of selecteer uit het &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adres&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; boek)&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Betaal-ID &lt;font size=&apos;2&apos;&gt;(Optioneel)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 of 64 hexadecimale tekens</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">Beschrijving &lt;font size=&apos;2&apos;&gt;(Een optionele beschrijving die opgeslagen wordt in het lokale adresboek)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">VERZENDEN</translation>
- </message>
- <message>
- <source>SWEEP UNMIXABLE</source>
- <translation type="obsolete">SAMENVOEGEN VAN NIET TE MENGEN BEDRAGEN</translation>
- </message>
</context>
<context>
<name>TxKey</name>
@@ -1828,10 +1532,6 @@ Graag upgraden of verbinden met een andere node</translation>
<translation> - de geheime transactiesleutel verstrekt door de verzender</translation>
</message>
<message>
- <source>If a payment had several transactions then each must must be checked and the results combined.</source>
- <translation type="vanished">Als een betaling meerdere transacties had, dan moet elk afzonderlijk gecontroleerd worden en het resultaat opgeteld worden.</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="110"/>
<source>If a payment had several transactions then each must be checked and the results combined.</source>
<translation>Als een betaling meerdere transacties had, dan moet elk afzonderlijk gecontroleerd worden en het resultaat opgeteld worden.</translation>
@@ -1869,11 +1569,7 @@ Graag upgraden of verbinden met een andere node</translation>
<message>
<location filename="../pages/TxKey.qml" line="185"/>
<source>Transaction key</source>
- <translation>Transactie sleutel</translation>
- </message>
- <message>
- <source>CHECK</source>
- <translation type="vanished">CONTROLE</translation>
+ <translation>Transactiesleutel</translation>
</message>
</context>
<context>
@@ -1886,16 +1582,12 @@ Graag upgraden of verbinden met een andere node</translation>
<message>
<location filename="../wizard/WizardConfigure.qml" line="97"/>
<source>Kickstart the Monero blockchain?</source>
- <translation>De Monero blockchain starten?</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">Het is erg belangrijk om dit op te schrijven omdat dit de enige back-up is die u nodig heeft voor uw portemonnee. Op de volgende pagina wordt gevraagd om de hersteltekst te bevestigen om ervoor te zorgen dat de tekst op de juiste manier is overgenomen.</translation>
+ <translation>De Monero-blockchain starten?</translation>
</message>
<message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation>Het is erg belangrijk om dit op te schrijven omdat dit de enige back-up is die u nodig heeft voor uw portemonnee.</translation>
+ <translation>Het is erg belangrijk om dit op te schrijven, want dit is de enige back-up die u nodig heeft voor uw portemonnee.</translation>
</message>
<message>
<location filename="../wizard/WizardConfigure.qml" line="126"/>
@@ -1905,12 +1597,12 @@ Graag upgraden of verbinden met een andere node</translation>
<message>
<location filename="../wizard/WizardConfigure.qml" line="144"/>
<source>Disk conservation mode uses substantially less disk-space, but the same amount of bandwidth as a regular Monero instance. However, storing the full blockchain is beneficial to the security of the Monero network. If you are on a device with limited disk space, then this option is appropriate for you.</source>
- <translation>De modus voor schijfbehoud gebruikt substantieel minder schijfruimte, maar dezelfde hoeveelheid bandbreedte als een gewone Monero-installatie. Echter, het volledig opslaan van de Monero-blockchain is bevorderlijk voor de beveiliging van het Monero netwerk. Als u een apparaat gebruikt met beperkte schuifruimte is deze optie geschikt.</translation>
+ <translation>De modus voor schijfbehoud gebruikt substantieel minder schijfruimte, maar dezelfde hoeveelheid bandbreedte als een gewone Monero-installatie. Het volledig opslaan van de Monero-blockchain is echter beter voor de beveiliging van het Monero-netwerk. Deze optie is geschikt als u een apparaat gebruikt met beperkte schijfruimte.</translation>
</message>
<message>
<location filename="../wizard/WizardConfigure.qml" line="157"/>
<source>Allow background mining?</source>
- <translation>Minen in de achtergrond toestaan?</translation>
+ <translation>Minen op de achtergrond toestaan?</translation>
</message>
<message>
<location filename="../wizard/WizardConfigure.qml" line="175"/>
@@ -1929,14 +1621,6 @@ Graag upgraden of verbinden met een andere node</translation>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">Een nieuwe portemonnee is voor u aangemaakt</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">Dit is de hersteltekst voor uw portemonnee, bestaande uit 25 woorden</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>Maak een nieuwe portemonnee aan</translation>
@@ -1997,17 +1681,9 @@ Graag upgraden of verbinden met een andere node</translation>
<translation>Taal</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="vanished">Portemonnee naam</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="vanished">Hersteltekst</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
- <translation>Portemonnee naam</translation>
+ <translation>Naam van portemonnee</translation>
</message>
<message>
<location filename="../wizard/WizardFinish.qml" line="60"/>
@@ -2017,12 +1693,12 @@ Graag upgraden of verbinden met een andere node</translation>
<message>
<location filename="../wizard/WizardFinish.qml" line="61"/>
<source>Wallet path</source>
- <translation>Portemonnee locatie</translation>
+ <translation>Locatie van portemonnee</translation>
</message>
<message>
<location filename="../wizard/WizardFinish.qml" line="67"/>
<source>Daemon address</source>
- <translation>Node adres</translation>
+ <translation>Node-adres</translation>
</message>
<message>
<location filename="../wizard/WizardFinish.qml" line="68"/>
@@ -2045,25 +1721,17 @@ Graag upgraden of verbinden met een andere node</translation>
<translation>Vergeet u hersteltekst niet op te schrijven. U kunt u hersteltekst bekijken en instellingen aanpassen op de instellingen pagina.</translation>
</message>
<message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">Een overzicht van uw Monero-configuratie staat hieronder:</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="128"/>
<source>You’re all set up!</source>
<translation>U bent klaar met configureren!</translation>
</message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">U bent klaar!</translation>
- </message>
</context>
<context>
<name>WizardMain</name>
<message>
<location filename="../wizard/WizardMain.qml" line="176"/>
<source>A wallet with same name already exists. Please change wallet name</source>
- <translation>Een portemonnee met dezelfde naam bestaat reeds. Verander alstublieft de naam van uw portemonnee</translation>
+ <translation>Er bestaat al een portemonnee met dezelfde naam. Verander de naam van uw portemonnee</translation>
</message>
<message>
<location filename="../wizard/WizardMain.qml" line="184"/>
@@ -2089,12 +1757,8 @@ Graag upgraden of verbinden met een andere node</translation>
<location filename="../wizard/WizardMain.qml" line="394"/>
<source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
%1</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
-%1</source>
- <translation type="vanished">De alleen-lezen portemonnee is aangemaakt. U kunt deze openen door de huidige portemonnee te sluiten, klik vervolgens op &quot;Open een portemonnee vanaf een bestand&quot;, en selecteer de alleen-lezen portemonnee in:
+ <translatorcomment>The exact option text is: Open a wallet from file</translatorcomment>
+ <translation>De alleen-lezen portemonnee is aangemaakt. U opent deze als volgt: sluit de huidige portemonnee, klik vervolgens op &quot;Open een portemonnee vanuit een bestand&quot; en selecteer de alleen-lezen portemonnee in:
%1</translation>
</message>
<message>
@@ -2111,36 +1775,24 @@ Graag upgraden of verbinden met een andere node</translation>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">Dit is de naam van uw portemonnee. U kunt de naam veranderen mocht u dat willen:</translation>
- </message>
- <message>
- <source>My account name</source>
- <translation type="vanished">Mijn portemonnee-naam:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="vanished">Herstelpunt (blokhoogte)</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
- <translation>Portemonnee naam</translation>
+ <translation>Naam van portemonnee</translation>
</message>
<message>
<location filename="../wizard/WizardManageWalletUI.qml" line="152"/>
<source>Restore from seed</source>
- <translation>Herstel met behulp van hersteltekst</translation>
+ <translation>Herstel met hersteltekst</translation>
</message>
<message>
<location filename="../wizard/WizardManageWalletUI.qml" line="166"/>
<source>Restore from keys</source>
- <translation>Herstel met behulp van sleutels</translation>
+ <translation>Herstel met sleutels</translation>
</message>
<message>
<location filename="../wizard/WizardManageWalletUI.qml" line="203"/>
<source>Account address (public)</source>
- <translation>Portemonnee adres (openbaar)</translation>
+ <translation>Adres van portemonnee (openbaar)</translation>
</message>
<message>
<location filename="../wizard/WizardManageWalletUI.qml" line="211"/>
@@ -2150,7 +1802,7 @@ Graag upgraden of verbinden met een andere node</translation>
<message>
<location filename="../wizard/WizardManageWalletUI.qml" line="220"/>
<source>Spend key (private)</source>
- <translation>Bestedings-sleutel (privé)</translation>
+ <translation>Bestedingssleutel (privé)</translation>
</message>
<message>
<location filename="../wizard/WizardManageWalletUI.qml" line="232"/>
@@ -2171,14 +1823,6 @@ Graag upgraden of verbinden met een andere node</translation>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">Het is erg belangrijk om dit op te schrijven omdat dit de enige back-up is die u nodig heeft voor uw portemonnee. Op de volgende pagina wordt gevraagd om de hersteltekst te bevestigen om ervoor te zorgen dat de tekst op de juiste manier is overgenomen.</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">Het is erg belangrijk om dit op te schrijven omdat dit de enige back-up is die u nodig heeft voor uw portemonnee..</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation>Vul u hersteltekst van 25 woorden in</translation>
@@ -2186,7 +1830,7 @@ Graag upgraden of verbinden met een andere node</translation>
<message>
<location filename="../wizard/WizardMemoTextInput.qml" line="88"/>
<source>This seed is &lt;b&gt;very&lt;/b&gt; important to write down and keep secret. It is all you need to backup and restore your wallet.</source>
- <translation>Deze hersteltekst is &lt;b&gt;zeer&lt;/b&gt; belangerijk om veilig op te slaag en privé te houden. Het is het enigste wat u (nodig) heeft om uw portemonnee te backuppen of te herstellen.</translation>
+ <translation>Deze hersteltekst is &lt;b&gt;zeer&lt;/b&gt; belangrijk om veilig op te slaan en privé te houden. Het is het enige dat u nodig heeft om een back-up van uw portemonnee te maken of uw portemonnee te herstellen.</translation>
</message>
</context>
<context>
@@ -2199,7 +1843,7 @@ Graag upgraden of verbinden met een andere node</translation>
<message>
<location filename="../wizard/WizardOptions.qml" line="98"/>
<source>Please select one of the following options:</source>
- <translation>Selecteer alstublieft een van de volgende opties:</translation>
+ <translation>Selecteer een van de volgende opties:</translation>
</message>
<message>
<location filename="../wizard/WizardOptions.qml" line="155"/>
@@ -2222,22 +1866,6 @@ Graag upgraden of verbinden met een andere node</translation>
<translation>Aangepast node-adres (optioneel)</translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="vanished">Dit is mijn eerste keer, ik wil een nieuwe portemonnee aanmaken</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="vanished">Ik wil mijn portemonnee herstellen met de hersteltekst van 25 woorden</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="vanished">Ik wil een portemonnee openen vanuit een bestand</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="vanished">Stel hieronder alstublieft het node-adres in.</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>Testnet</translation>
@@ -2246,28 +1874,6 @@ Graag upgraden of verbinden met een andere node</translation>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">Nu dat uw portemonnee is aangemaakt, moet u deze beveiligen met een wachtwoord</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">Nu dat uw portemonnee is aangemaakt, moet u deze beveiligen met een wachtwoord</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">Het wachtwoord kan niet hersteld worden, mocht u het wachtwoord vergeten dan moet u uw portemonnee herstellen via de hersteltekst van 25 woorden die u zojuist heeft gekregen&lt;br/&gt;&lt;br/&gt;
- Uw wachtwoord wordt gebruikt om uw portemonnee te beveiligen en acties te bevestigen, dus zorg ervoor dat uw wachtwoord voldoende veilig is.</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="vanished">Wachtwoord</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="vanished">Wachtwoord bevestigen</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2280,12 +1886,6 @@ Graag upgraden of verbinden met een andere node</translation>
<translation> &lt;br&gt;Let op: dit wachtwoord kan niet hersteld worden. Als u het wachtwoord vergeet, kan de portemonnee alleen hersteld worden worden met u hersteltekst van 25 woorden.&lt;br/&gt;&lt;br/&gt;
&lt;b&gt;Vul een sterk wachtwoord in&lt;/b&gt; (gebruik letters, cijfers, en/of symbolen):</translation>
</message>
- <message>
- <source>Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
- <translation type="vanished">Let op: dit wachtwoord kan niet hersteld worden. Als u het wachtwoord vergeet, kan de portemonnee alleen hersteld worden worden met u hersteltekst van 25 woorden.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Vul een sterk wachtwoord in&lt;/b&gt; (gebruik letters, cijfers, en/of symbolen):</translation>
- </message>
</context>
<context>
<name>WizardPasswordUI</name>
@@ -2303,14 +1903,6 @@ Graag upgraden of verbinden met een andere node</translation>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">Uw portemonnee kan hersteld worden</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">Vul alstublieft de 25 woorden van de hersteltekst in</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation>Portemonnee herstellen</translation>
@@ -2319,10 +1911,6 @@ Graag upgraden of verbinden met een andere node</translation>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">Welkom</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>Welkom bij Monero!</translation>
@@ -2330,7 +1918,7 @@ Graag upgraden of verbinden met een andere node</translation>
<message>
<location filename="../wizard/WizardWelcome.qml" line="89"/>
<source>Please choose a language and regional format.</source>
- <translation>Selecteer alstublieft een taal en regio.</translation>
+ <translation>Selecteer een taal en regio.</translation>
</message>
</context>
<context>
@@ -2355,10 +1943,6 @@ Graag upgraden of verbinden met een andere node</translation>
<translation>Portemonnee kan niet geopend worden: </translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="vanished">Blokken synchroniseren %1 / %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="493"/>
<source>Can&apos;t create transaction: Wrong daemon version: </source>
<translation>Transactie kan niet worden aangemaakt: Verkeerde node-versie: </translation>
@@ -2367,15 +1951,14 @@ Graag upgraden of verbinden met een andere node</translation>
<location filename="../main.qml" line="504"/>
<location filename="../main.qml" line="617"/>
<source>No unmixable outputs to sweep</source>
- <translatorcomment>Lastig te vertalen, iemand een beter idéé?</translatorcomment>
- <translation type="unfinished">Er zijn geen niet te mengen bedragen gevonden die opgeschoond kunnen worden</translation>
+ <translation>Geen onmengbare bedragen gevonden om samen te voegen</translation>
</message>
<message>
<location filename="../main.qml" line="517"/>
<location filename="../main.qml" line="630"/>
<source>Please confirm transaction:
</source>
- <translation>Gelieve de transactie te bevestigen:
+ <translation>Bevestig de transactie:
</translation>
</message>
<message>
@@ -2386,22 +1969,14 @@ Graag upgraden of verbinden met een andere node</translation>
Amount: </source>
<translation>
-Bedrag:</translation>
- </message>
- <message>
- <source>
-
-Mixin: </source>
- <translation type="obsolete">
-
-Menging:</translation>
+Bedrag: </translation>
</message>
<message>
<location filename="../main.qml" line="523"/>
<source>
Number of transactions: </source>
<translation>
-Aantal transacties:</translation>
+Aantal transacties: </translation>
</message>
<message>
<location filename="../main.qml" line="524"/>
@@ -2410,7 +1985,7 @@ Aantal transacties:</translation>
Description: </source>
<translation>
-Omschrijving:</translation>
+Omschrijving: </translation>
</message>
<message>
<location filename="../main.qml" line="554"/>
@@ -2420,7 +1995,7 @@ Omschrijving:</translation>
<message>
<location filename="../main.qml" line="678"/>
<source>Money sent successfully: %1 transaction(s) </source>
- <translation>Geld succesvol verzonden: %1 transactie(s)</translation>
+ <translation>Het geld is verzonden: %1 transactie(s) </translation>
</message>
<message>
<location filename="../main.qml" line="718"/>
@@ -2433,10 +2008,6 @@ Omschrijving:</translation>
<translation>Dit adres heeft %1 monero ontvangen, maar de transactie is nog niet verwerkt</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="vanished">Dit adres heeft %1 monero ontvangen, met %2 bevestigingen</translation>
- </message>
- <message>
<location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>Dit adres heeft niets ontvangen</translation>
@@ -2480,7 +2051,7 @@ Omschrijving:</translation>
<message>
<location filename="../main.qml" line="439"/>
<source>Please check your wallet and daemon log for errors. You can also try to start %1 manually.</source>
- <translation>Graag u portemonnee en node log controleren op fouten. U kunt ook proberen %1 handmatig te starten.</translation>
+ <translation>Controleer de logs van uw portemonnee en node op fouten. Of probeer %1 handmatig te starten.</translation>
</message>
<message>
<location filename="../main.qml" line="516"/>
@@ -2493,7 +2064,7 @@ Omschrijving:</translation>
<source>
Address: </source>
<translation>
-Adres:</translation>
+Adres: </translation>
</message>
<message>
<location filename="../main.qml" line="519"/>
@@ -2503,12 +2074,6 @@ Payment ID: </source>
Betaal-ID: </translation>
</message>
<message>
- <source>
-Amount: </source>
- <translation type="vanished">
-Bedrag: </translation>
- </message>
- <message>
<location filename="../main.qml" line="521"/>
<location filename="../main.qml" line="632"/>
<source>
@@ -2528,12 +2093,12 @@ Ringgrootte: </translation>
<message>
<location filename="../main.qml" line="566"/>
<source>Insufficient funds. Unlocked balance: %1</source>
- <translation>onvoldoende fondsen. Beschikbaar saldo: %1</translation>
+ <translation>Onvoldoende geld. Beschikbaar saldo: %1</translation>
</message>
<message>
<location filename="../main.qml" line="669"/>
<source>Couldn&apos;t send the money: </source>
- <translation>Geld kon niet worden verstuurd:</translation>
+ <translation>Het geld kan niet worden verstuurd: </translation>
</message>
<message>
<location filename="../main.qml" line="672"/>
@@ -2543,12 +2108,12 @@ Ringgrootte: </translation>
<message>
<location filename="../main.qml" line="678"/>
<source>Transaction saved to file: %1</source>
- <translation>Transactie opgeslagen naar bestand: %1</translation>
+ <translation>Transactie opgeslagen in bestand: %1</translation>
</message>
<message>
<location filename="../main.qml" line="728"/>
<source>This address received %1 monero, with %2 confirmation(s).</source>
- <translation>Did adres heeft %1 monero ontvangen, met %2 bevestiging(en).</translation>
+ <translation>Dit adres heeft %1 monero ontvangen, met %2 bevestiging(en).</translation>
</message>
<message>
<location filename="../main.qml" line="744"/>
@@ -2588,7 +2153,7 @@ Ringgrootte: </translation>
<message>
<location filename="../main.qml" line="1318"/>
<source>Daemon will still be running in background when GUI is closed.</source>
- <translation>Node zal nog steeds in de achtergrond blijven lopen als de GUI gesloten is.</translation>
+ <translation>Node wordt nog steeds op de achtergrond uitgevoerd nadat de GUI gesloten wordt.</translation>
</message>
<message>
<location filename="../main.qml" line="1320"/>
diff --git a/translations/monero-core_pl.ts b/translations/monero-core_pl.ts
index b9306485..d330e2a3 100644
--- a/translations/monero-core_pl.ts
+++ b/translations/monero-core_pl.ts
@@ -14,86 +14,55 @@
<translation>Adres</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation>&lt;b&gt;Tip tekst test&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation type="unfinished">QR Kod</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation type="unfinished">4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Identyfikator płatności &lt;font size=&apos;2&apos;&gt;(Opcjonalny)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;Identyfikator płatności&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Unikalna nazwa użytkownika użyta&lt;br/&gt;w książce adresowej. Nie jest&lt;br/&gt;przekazywana podczas transakcji</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
- <translation type="unfinished">Wklej 64 znaki w postaci heksadecymalnej (dodaj na początku adresu '0x'))</translation>
+ <translation type="unfinished">Wklej 64 znaki w postaci heksadecymalnej (dodaj na początku adresu &apos;0x&apos;))</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation type="unfinished">Opis &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation>&lt;b&gt;Test test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test linia 2</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation type="unfinished">Dodaj nazwę lub opis dla tego wpisu</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation type="unfinished">Dodaj</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation type="unfinished">Błąd</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation type="unfinished">Niepoprawny adres</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation type="unfinished">Nie można utworzyć wpisu</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">Opis &lt;font size=&apos;2&apos;&gt;(Lokalna baza danych)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">DODAJ</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">Identyfikator płatności</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">Opis</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -147,18 +116,6 @@
<context>
<name>DaemonManagerDialog</name>
<message>
- <source>Daemon doesn&apos;t appear to be running</source>
- <translation type="vanished">Proces nie został uruchomiony</translation>
- </message>
- <message>
- <source>Start daemon</source>
- <translation type="vanished">Uruchom proces</translation>
- </message>
- <message>
- <source>Cancel</source>
- <translation type="vanished">Anuluj</translation>
- </message>
- <message>
<location filename="../components/DaemonManagerDialog.qml" line="93"/>
<source>Starting Monero daemon in %1 seconds</source>
<translation type="unfinished">Uruchomienie procesu Monero za %1 sekund</translation>
@@ -218,15 +175,6 @@
<context>
<name>History</name>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation>&lt;b&gt;Tekst test test&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../pages/History.qml" line="135"/>
<source>Filter transaction history</source>
<translation>Filtruj historię transakcji</translation>
@@ -237,47 +185,38 @@
<translation> wybrano: </translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Suma wybranych transakcji&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Wpisz aby wyszukać...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Data od</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>Do</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation type="unfinished">Filtruj</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">FILTRUJ</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Zaawansowane filtrowanie</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Typ transakcji</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Wartość od</translation>
</message>
@@ -364,50 +303,32 @@
<translation>Saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation>Test tekst 1&lt;br/&gt;&lt;br/&gt;linia 2</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Dostępne saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation>Test tekst 2&lt;br/&gt;&lt;br/&gt;linia 2</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>Wyślij</translation>
</message>
<message>
- <source>T</source>
- <translation type="vanished">W</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Otrzymaj</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>O</translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="vanished">Potwierdź płatność</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>P</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Historia</translation>
</message>
@@ -417,67 +338,67 @@
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation type="unfinished">Zaawansowane</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation type="unfinished">D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation type="unfinished">Sprawdź płatność</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Podpisz/weryfikuj</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation type="unfinished">I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Ustawienia</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>P</translation>
</message>
@@ -485,11 +406,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translatorcomment>Dostępne saldo:</translatorcomment>
- <translation type="vanished">Saldo:</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation type="unfinished">Saldo</translation>
@@ -499,10 +415,6 @@
<source>Unlocked Balance</source>
<translation type="unfinished">Dostępne saldo</translation>
</message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="vanished">Dostępne saldo:</translation>
- </message>
</context>
<context>
<name>Mining</name>
@@ -659,18 +571,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">Niski</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">Średni</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">Wysoki</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation type="unfinished"></translation>
@@ -689,10 +589,6 @@
<context>
<name>ProgressBar</name>
<message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">Synchronizowanie bloków %1/%2</translation>
- </message>
- <message>
<location filename="../components/ProgressBar.qml" line="43"/>
<source>Establishing connection...</source>
<translation type="unfinished"></translation>
@@ -791,10 +687,6 @@
<translation type="unfinished"></translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">Adres portfela tylko do odczytu.wyświetlony.tutaj</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="388"/>
<source>Save QrCode</source>
<translation type="unfinished"></translation>
@@ -815,10 +707,6 @@
<translation>Identyfikator płatności</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="vanished">16 lub 64 znaków szesnastkowych</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="309"/>
<source>Amount</source>
<translation>Wartość</translation>
@@ -888,10 +776,6 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="vanished">Kliknij przycisk by zobaczyć klucz</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -928,18 +812,6 @@
<translation>Nieprawidłowe hasło</translation>
</message>
<message>
- <source>Mnemonic seed: </source>
- <translation type="vanished">Klucz 25 słowny: </translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">Te słowa są niezwykle istotne. Zapisz je. To jedyne co potrzebujesz, by odzyskać portfel.</translation>
- </message>
- <message>
- <source>Show seed</source>
- <translation type="vanished">Pokaż klucz 25 słowny</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="306"/>
<source>Daemon address</source>
<translation>Adres procesu</translation>
@@ -950,10 +822,6 @@
<translation>Zarządzaj portfelem</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="vanished">Zamknij ten portfel i otwórz kreator</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>Zamknij portfel</translation>
@@ -979,10 +847,6 @@
<translation>Zatrzymaj proces</translation>
</message>
<message>
- <source>Show log</source>
- <translation type="vanished">Pokaż log</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="286"/>
<source>Daemon startup flags</source>
<translation type="unfinished"></translation>
@@ -991,7 +855,7 @@
<location filename="../pages/Settings.qml" line="265"/>
<location filename="../pages/Settings.qml" line="294"/>
<source>(optional)</source>
- <translation type="unfinished"></translation>
+ <translation type="unfinished">(opcjonalnie)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="120"/>
@@ -1133,10 +997,6 @@
<source>Port</source>
<translation>Port</translation>
</message>
- <message>
- <source>Save</source>
- <translation type="vanished">Zapisz</translation>
- </message>
</context>
<context>
<name>Sign</name>
@@ -1205,20 +1065,12 @@
<translation type="unfinished"></translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="vanished">PODPISZ</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>Lub plik:</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="vanished">WYBIERZ</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>Nazwa pliku z wiadomością do podpisania</translation>
@@ -1242,10 +1094,6 @@
<translation>Wiadomość do potwierdzenia</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="vanished">POTWIERDŹ</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>Nazwa pliku z wiadomością do potwierdzenia</translation>
@@ -1255,10 +1103,6 @@
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adres do podpisu &lt;font size=&apos;2&apos;&gt; ( Wpisz lub wybierz z &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Ksiązki adresowej&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
- </message>
</context>
<context>
<name>StandardDialog</name>
@@ -1292,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
- <source>All</source>
+ <source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="201"/>
- <source>Sent</source>
+ <source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
+ <source>All</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
+ <source>Sent</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation type="unfinished"></translation>
</message>
@@ -1355,18 +1219,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">NISKI</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">ŚREDNI</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">WYSOKI</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation type="unfinished"></translation>
@@ -1400,58 +1252,30 @@
<translation></translation>
</message>
<message>
- <source>or ALL</source>
- <translation type="vanished">WSZYSTKO</translation>
- </message>
- <message>
- <source>LOW (x1 fee)</source>
- <translation type="vanished">NISKI (prowizja x1)</translation>
- </message>
- <message>
- <source>MEDIUM (x20 fee)</source>
- <translation type="vanished">ŚREDNI (prowizja x20)</translation>
- </message>
- <message>
- <source>HIGH (x166 fee)</source>
- <translation type="vanished">WYSOKI (prowizja x166)</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">Poziom prywatności</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Koszt transakcji</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adres &lt;font size=&apos;2&apos;&gt; (Wklej lub wybierz z &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Ksiązki adresowej&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( Optional - saved to local wallet history )&lt;/font&gt;</source>
- <translation type="vanished">Opis &lt;font size=&apos;2&apos;&gt;(Opcjonalny - przechowywany lokalnie w historii portfela)&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>Potrfel nie jest podłączony do procesu.</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>Połączony proces nie jest kompatybilny z interfejsem graficznym.
Uaktualnij go lub podłącz się do innego procesu</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Poczekaj na zakończenie synchronizacji procesu</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Identyfikator płatności &lt;font size=&apos;2&apos;&gt;(Opcjonalny)&lt;/font&gt;</translation>
</message>
@@ -1471,216 +1295,208 @@ Uaktualnij go lub podłącz się do innego procesu</translation>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 lub 64 znaków szesnastkowych</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>SEND</source>
- <translation type="vanished">WYŚLIJ</translation>
- </message>
- <message>
- <source>SWEEP UNMIXABLE</source>
- <translation type="vanished">MIESZAJ</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="78"/>
<source>Privacy level (ringsize %1)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation type="unfinished">Wyślij</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation type="unfinished">Błąd</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation type="unfinished">Informacja</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation type="unfinished">Liczba transakcji: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation type="unfinished">
Opłata: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation type="unfinished">Potwierdzenie</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation type="unfinished"></translation>
</message>
@@ -1708,10 +1524,6 @@ Ringsize: </source>
<translation> - sekretny klucz transakcji podany przez nadawcę</translation>
</message>
<message>
- <source>If a payment had several transactions then each must must be checked and the results combined.</source>
- <translation type="vanished">Jeśli płatność zawiera wiele transakcji, każda musi być sprawdzona a rezultat połączony.</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="123"/>
<source>Address</source>
<translation>Adres</translation>
@@ -1751,10 +1563,6 @@ Ringsize: </source>
<source>If a payment had several transactions then each must be checked and the results combined.</source>
<translation type="unfinished"></translation>
</message>
- <message>
- <source>CHECK</source>
- <translation type="vanished">SPRAWDŹ</translation>
- </message>
</context>
<context>
<name>WizardConfigure</name>
@@ -1805,14 +1613,6 @@ Ringsize: </source>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">Nowy portfel został dla ciebie utworzony</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">To 25 słowny klucz do twojego portfela</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation type="unfinished"></translation>
@@ -1873,14 +1673,6 @@ Ringsize: </source>
<translation>Język</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="vanished">Wybierz nazwę</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="vanished">Źródło</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
<translation type="unfinished"></translation>
@@ -1921,10 +1713,6 @@ Ringsize: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">Podsumowanie twoich ustawień Monero poniżej:</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="128"/>
<source>You’re all set up!</source>
<translation>Wszystko gotowe!</translation>
@@ -1977,14 +1765,6 @@ Ringsize: </source>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">To jest nazwa twojego portfela. Możesz ją zmienić na dowolną inną nazwę:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="vanished">Odzyskaj wysokość</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation type="unfinished"></translation>
@@ -2033,10 +1813,6 @@ Ringsize: </source>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">Te słowa są niezwykle istotne. Zapisz je. To jedyne co potrzebujesz, by odzyskać portfel.</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation type="unfinished"></translation>
@@ -2080,22 +1856,6 @@ Ringsize: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="vanished">To mój pierwszy raz, chcę stworzyć nowe konto</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="vanished">Odzyskaj konto z klucza 25 słów</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="vanished">Otwórz portfel z pliku</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="vanished">Proszę podaj adres procesu.</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>Śieć testowa</translation>
@@ -2104,28 +1864,6 @@ Ringsize: </source>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">Twój portfel został utworzony, wprowadź hasło zabezpieczające</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">Twój portfel został odzyskany, wprowadź hasło zabezpieczające</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">Uwaga! To hasło nie może być odzyskane - jeśli je zapomnisz, odzyskanie będzie możliwe tylko za pomocą tego klucza z 25 słów&lt;br/&gt;&lt;br/&gt;
- Twoje hasło będzie użyte do zabezpieczenia portfela i potwierdzania czynności, dopilnuj by było wystarczająco bezpieczne.</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="vanished">Hasło</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="vanished">Potwierdź hasło</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2154,14 +1892,6 @@ Ringsize: </source>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">Jesteśmy gotowi odzyskać twój portfel</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">Wprowadź swój 25 słowny klucz prywatny</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation type="unfinished"></translation>
@@ -2170,10 +1900,6 @@ Ringsize: </source>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">Witaj</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation type="unfinished">Witaj w świecie Monero!</translation>
@@ -2235,14 +1961,6 @@ Amount: </source>
Wartość: </translation>
</message>
<message>
- <source>
-
-Mixin: </source>
- <translation type="vanished">
-
-Domieszka: </translation>
- </message>
- <message>
<location filename="../main.qml" line="523"/>
<source>
Number of transactions: </source>
@@ -2414,10 +2132,6 @@ Ringsize: </source>
<translation>Ten adres otrzymał %1 monero, ale transakcja nie została jeszcze wykopana</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="vanished">Adres otrzymal %1 monero, liczba potwierdzeń: %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>Ten adres nic nie otrzymał</translation>
diff --git a/translations/monero-core_pt-br.ts b/translations/monero-core_pt-br.ts
index 525e79e7..c594f6f5 100644
--- a/translations/monero-core_pt-br.ts
+++ b/translations/monero-core_pt-br.ts
@@ -14,86 +14,55 @@
<translation>Endereço</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation>&lt;b&gt;Tip tekst test&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>QRCODE</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>ID do Pagamento &lt;font size=&apos;2&apos;&gt;(Opcional)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;ID do Pagamento&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Um nome único utilizado na&lt;br/&gt;caderneta de endereços. Não é uma&lt;br/&gt;transferência de informação enviada&lt;br/&gt;durante a transferência</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Cole os 64 caracteres hexadecimais</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Descrição &lt;font size=&apos;2&apos;&gt;(Opcional)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>Forneça um nome ou descrição a esta entrada</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Adicionar</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Erros</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Endereço inválido</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>Não foi possível criar entrada</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">Descrição &lt;font size=&apos;2&apos;&gt;(Banco de dados local)&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">ADICIONAR</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">ID do Pagamento</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">Descrição</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -163,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">Sincronizando blocos %1/%2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="vanished">Sincronizando blocos</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -227,68 +185,38 @@
<translation>Filtrar histórico de transação</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Quantidade total de pagamentos selecionados&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Digite para realizar busca...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Filtrar</translation>
</message>
<message>
- <source>Incremental search</source>
- <translation type="vanished">Busca incremental</translation>
- </message>
- <message>
- <source>Search transfers for a given string</source>
- <translation type="vanished">Procurar por caracteres especificos nas transferências</translation>
- </message>
- <message>
- <source>Type search string</source>
- <translation type="vanished">Digite os caracteres especificos a serem procurados</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Data a partir de</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation>&lt;b&gt;Tip tekst test&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>Para</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">FILTRAR</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Filtragem avançada</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Tipo de transação</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Quantidade a partir de</translation>
</message>
@@ -375,50 +303,32 @@
<translation>Saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Saldo desbloqueado</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>Enviar</translation>
</message>
<message>
- <source>T</source>
- <translation type="vanished">T</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Receber</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>R</translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="vanished">Verificar pagamento</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Histórico</translation>
</message>
@@ -428,67 +338,67 @@
<translation>Testnet</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>Caderneta de endereços</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>Avançado</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>Mineração</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>Checar pagamento</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Assinar/Verificar</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>S</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Preferências</translation>
</message>
@@ -496,14 +406,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="vanished">Saldo:</translation>
- </message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="vanished">Saldo desbloqueado:</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>Saldo</translation>
@@ -669,18 +571,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">BAIXA</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MÉDIA</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">ALTA</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation>Baixa</translation>
@@ -797,10 +687,6 @@
<translation>Quantidade a receber</translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">Endereço Integrado da carteira de somente leitura mostrado aqui</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="338"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Rastreando &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
@@ -836,10 +722,6 @@
<translation>ID do Pagamento</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="vanished">16 ou 64 caracteres hexadecimal</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="254"/>
<source>Generate</source>
<translation>Gerar</translation>
@@ -894,27 +776,11 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="vanished">Clique no botão para mostra a semente</translation>
- </message>
- <message>
- <source>Mnemonic seed: </source>
- <translation type="vanished">Palavras da semente:</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira.</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="103"/>
<source>Create view only wallet</source>
<translation>Criar carteira de somente vizualização</translation>
</message>
<message>
- <source>Show seed</source>
- <translation type="vanished">Mostrar semente</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="193"/>
<source>Manage daemon</source>
<translation>Gerenciar o daemon</translation>
@@ -1046,10 +912,6 @@
<translation>Cancelar</translation>
</message>
<message>
- <source>Save</source>
- <translation type="vanished">Salvar</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="398"/>
<source>Layout settings</source>
<translation>Preferências de layout</translation>
@@ -1090,10 +952,6 @@
<translation>Log do daemon</translation>
</message>
<message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">Semente da carteira</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -1135,10 +993,6 @@
<translation>Configurar carteira</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="vanished">Fechar a carteira atual e abrir o assistente inicial</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>Fechar carteira</translation>
@@ -1216,20 +1070,12 @@
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Endereço do assinante &lt;font size=&apos;2&apos;&gt; ( Cole ou selecione através do &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="vanished">ASSINAR</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>Ou arquivo:</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="vanished">SELECIONAR</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>Nome do arquivo com mensagem a ser assinada</translation>
@@ -1253,18 +1099,10 @@
<translation>Mensagem a ser verificada</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="vanished">VERIFICAR</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>Nome do arquivo com mensagem a ser verificada</translation>
</message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Endereço que assina &lt;font size=&apos;2&apos;&gt; ( Digite ou selecione da &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;caderneta&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; de endereços )&lt;/font&gt;</translation>
- </message>
</context>
<context>
<name>StandardDialog</name>
@@ -1298,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished">Lenta (taxa x0.25)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished">Padrão (taxa x1)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished">Rápida (taxa x5)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished">Mais rápida (taxa x41.5)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>Todos</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Enviado</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Recebido</translation>
</message>
@@ -1320,10 +1178,6 @@
<translation>&lt;b&gt;Copiar endereço para área de transferência&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;Enviar ao mesmo destino&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
<translation>&lt;b&gt;Enviar a este endereço&lt;/b&gt;</translation>
@@ -1365,18 +1219,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">BAIXA</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MÉDIA</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">ALTA</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation>Normal</translation>
@@ -1420,108 +1262,108 @@
<translation>Prioridade da transação</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>Baixa (taxa x1)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>Média (taxa x20)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>Alta (taxa x166)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation>Lenta (taxa x0.25)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation>Padrão (taxa x1)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation>Rápida (taxa x5)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation>Mais rápida (taxa x41.5)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Endereço &lt;font size=&apos;2&apos;&gt; ( Cole ou selecione da &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Caderneta de endereços&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>Código QR</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Resolver</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>Nenhum endereço válido encontrado neste endereço OpenAlias</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>Endereço encontrado, porém as assinaturas do DNSSEC não puderam ser verificas, este endereço pode ser falsificado</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>Nenhum endereço válido encontrado neste endereço OpenAlias, porém as assinaturas do DNSSEC não puderam ser verificas, então este pode ter sido falsificado</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Erro interno</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Nenhum endereço encontrado</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Descrição &lt;font size=&apos;2&apos;&gt;( Opcional )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Salvo no histórico de carteira local</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>Enviar</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Mostrar opçoes avançadas</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>Limpar não misturavel</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>Criar arquivo da tx</translation>
</message>
@@ -1531,128 +1373,116 @@
<translation>Todos</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>Assinar arquivo da tx</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>Enviar arquivo da tx</translation>
</message>
<message>
- <source>Rescan spent</source>
- <translation type="vanished">Escanear novamente o gasto</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Erros</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">Erro: </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Informação</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">Saidas gastas escaneadas novamente</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>Por favor escolha um arquivo</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>Não foi possível carregar transação não assinada: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>
Número de transações: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>
Transação #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>
Destinatário: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>
ID do pagamento:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>
Quantidade: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>
Taxa: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>
Ringsize: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Confirmação</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>Não foi possível enviar transação: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>Dinheiro enviado com sucesso</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>A carteira não está conectada ao daemon.</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>O daemon conectado não é compatível com a GUI.
Por favor atualize ou conecte outro daemon</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Aguardando a sincronização no daemon terminar</translation>
</message>
@@ -1662,80 +1492,24 @@ Por favor atualize ou conecte outro daemon</translation>
<translation></translation>
</message>
<message>
- <source>or ALL</source>
- <translation type="vanished">ou TODAS</translation>
- </message>
- <message>
- <source>LOW</source>
- <translation type="vanished">BAIXA</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">MÉDIA</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">ALTA</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">Nível de privacidade</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Custo da transação</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Endereço &lt;font size=&apos;2&apos;&gt; ( Digite ou selecione um da &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;caderneta&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; de endereços )&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>ID do Pagamento &lt;font size=&apos;2&apos;&gt;( Opcional )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 ou 64 caracteres hexadecimal</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">Descrição &lt;font size=&apos;2&apos;&gt;( Uma descrição opcional que será salva junto a caderneta de endereços local )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">ENVIAR</translation>
- </message>
- <message>
- <source>SWEEP UNMIXABLE</source>
- <translation type="vanished">LIMPAR NÃO MISTURÁVEL</translation>
- </message>
</context>
<context>
<name>TxKey</name>
<message>
- <source>You can verify that a third party made a payment by supplying:</source>
- <translation type="vanished">Você pode verificar que um terceiro realizou um pagamento informando:</translation>
- </message>
- <message>
- <source> - the recipient address,</source>
- <translation type="vanished"> - o endereço do destinatário</translation>
- </message>
- <message>
- <source> - the transaction ID,</source>
- <translation type="vanished"> - a ID da transação</translation>
- </message>
- <message>
- <source> - the tx secret key supplied by the sender</source>
- <translation type="vanished"> - a chave secreta da transação informada pelo remetente</translation>
- </message>
- <message>
- <source>If a payment was made up of several transactions, each transaction must be checked, and the results added</source>
- <translation type="vanished">Se um pagamento foi realizado através de várias transações, cada transação deve ser checada e os resultados agregados</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="90"/>
<source>Verify that a third party made a payment by supplying:</source>
<translation>Verifique que um pagamento foi realizado informando:</translation>
@@ -1791,22 +1565,10 @@ Por favor atualize ou conecte outro daemon</translation>
<translation>Checar</translation>
</message>
<message>
- <source>Transaction ID here</source>
- <translation type="vanished">ID da Transação aqui</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="185"/>
<source>Transaction key</source>
<translation>Chave da Transação</translation>
</message>
- <message>
- <source>Transaction key here</source>
- <translation type="vanished">Chave da Transação aqui</translation>
- </message>
- <message>
- <source>CHECK</source>
- <translation type="vanished">VERIFICAR</translation>
- </message>
</context>
<context>
<name>WizardConfigure</name>
@@ -1821,10 +1583,6 @@ Por favor atualize ou conecte outro daemon</translation>
<translation>Iniciar a blockchain do Monero?</translation>
</message>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira. Você terá que confirmar a semente na próxima tela.</translation>
- </message>
- <message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
<translation>É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira.</translation>
@@ -1861,14 +1619,6 @@ Por favor atualize ou conecte outro daemon</translation>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">Uma nova carteira foi criada para você</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">Essas são as suas 25 palavras da semente para sua carteira</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>Criar uma nova carteira</translation>
@@ -1929,14 +1679,6 @@ Por favor atualize ou conecte outro daemon</translation>
<translation>Idioma</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="vanished">Nome da conta</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="vanished">Semente</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
<translation>Nome da carteira</translation>
@@ -1981,14 +1723,6 @@ Por favor atualize ou conecte outro daemon</translation>
<source>You’re all set up!</source>
<translation>Tudo pronto!</translation>
</message>
- <message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">Segue abaixo uma visão-geral das configurações do seu Monero:</translation>
- </message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">Tudo pronto!</translation>
- </message>
</context>
<context>
<name>WizardMain</name>
@@ -2038,14 +1772,6 @@ Por favor atualize ou conecte outro daemon</translation>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">Este é o nome da sua carteira. Você pode mudar para outro se preferir:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="vanished">Altura de restauração</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation>Nome da carteira</translation>
@@ -2094,10 +1820,6 @@ Por favor atualize ou conecte outro daemon</translation>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">É extremamente importante guardar a semente em um lugar seguro pois ela é a única informação necessária para recuperar sua carteira. Você terá que confirmar a semente na próxima tela.</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation>Digite as 25 palavras da semente</translation>
@@ -2141,22 +1863,6 @@ Por favor atualize ou conecte outro daemon</translation>
<translation>Endereço customizado do daemon (opcional)</translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="vanished">Esta é minha primeira execução do programa, quero criar uma nova carteira</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="vanished">Quero recuperar minha carteira através das 25 palavras da semente</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="vanished">Quero abrir uma carteira de um arquivo</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="vanished">Por favor configure o endereço do daemon abaixo</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>Testnet</translation>
@@ -2165,28 +1871,6 @@ Por favor atualize ou conecte outro daemon</translation>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">Agora que sua carteira foi criada, por favor entre com uma senha para a carteira</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">Agora que sua carteira foi restaurada, por favor entre com uma senha para a carteira</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">Atenção: esta senha não pode ser recuperada e se você esquecê-la terá que restaurar sua carteira através da semente&lt;br/&gt;&lt;br/&gt;
- Sua senha será utilizada para proteger sua carteira e confirmar ações, tenha certeza que ela é segura o suficiente.</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="vanished">Senha</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="vanished">Confirme a senha</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2216,14 +1900,6 @@ Por favor atualize ou conecte outro daemon</translation>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">Estamos prontos para recuperar sua conta</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">Por favor entre com as 25 palavras da semente</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation>Restaurar carteira</translation>
@@ -2232,10 +1908,6 @@ Por favor atualize ou conecte outro daemon</translation>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">Bem-vindo</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>Bem-vindo ao Monero!</translation>
@@ -2268,10 +1940,6 @@ Por favor atualize ou conecte outro daemon</translation>
<translation>Não foi possível abrir a carteira: </translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="vanished">Sincronizando blocos %1 / %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="355"/>
<source>Unlocked balance (waiting for block)</source>
<translation>Saldo desbloqueado (aguardando bloco)</translation>
@@ -2403,14 +2071,6 @@ Ringsize: </translation>
<translation>Nova versão da GUI do Monero disponível: %1&lt;br&gt;</translation>
</message>
<message>
- <source>
-
-Mixin: </source>
- <translation type="vanished">
-
-Mixin: </translation>
- </message>
- <message>
<location filename="../main.qml" line="523"/>
<source>
Number of transactions: </source>
@@ -2467,10 +2127,6 @@ Descrição: </translation>
<translation>Este endereço recebeu %1 monero, porém a transação ainda não foi minerada</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="vanished">Este endereço recebeu %1 monero, com %2 confirmações</translation>
- </message>
- <message>
<location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>Este endereço não recebeu moedas</translation>
diff --git a/translations/monero-core_ru.ts b/translations/monero-core_ru.ts
index 77c9ae83..6b77f348 100644
--- a/translations/monero-core_ru.ts
+++ b/translations/monero-core_ru.ts
@@ -14,67 +14,52 @@
<translation>Адрес</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>QR-код</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>ID платежа &lt;font size=&apos;2&apos;&gt;(Опционально)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;ID платежа&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Уникальное имя пользователя использовано в&lt;br/&gt;адресной книге. Это не&lt;br/&gt;передача информации об отправке&lt;br/&gt;во время отправки</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Вставьте 64 шестнадцатеричных символа</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Описание &lt;font size=&apos;2&apos;&gt;(Опционально)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>Введите имя или описание</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Добавить</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Неправильный адрес</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>Нельзя создать запись</translation>
</message>
@@ -118,12 +103,12 @@
<context>
<name>DaemonConsole</name>
<message>
- <location filename="../components/DaemonConsole.qml" line="108"/>
+ <location filename="../components/DaemonConsole.qml" line="117"/>
<source>Close</source>
<translation>Закрыть</translation>
</message>
<message>
- <location filename="../components/DaemonConsole.qml" line="119"/>
+ <location filename="../components/DaemonConsole.qml" line="128"/>
<source>command + enter (e.g help)</source>
<translation type="unfinished"></translation>
</message>
@@ -131,17 +116,17 @@
<context>
<name>DaemonManagerDialog</name>
<message>
- <location filename="../components/DaemonManagerDialog.qml" line="84"/>
+ <location filename="../components/DaemonManagerDialog.qml" line="93"/>
<source>Starting Monero daemon in %1 seconds</source>
<translation>Запуск демона Monero через %1 секунд</translation>
</message>
<message>
- <location filename="../components/DaemonManagerDialog.qml" line="106"/>
+ <location filename="../components/DaemonManagerDialog.qml" line="115"/>
<source>Start daemon (%1)</source>
<translation>Запуск демона</translation>
</message>
<message>
- <location filename="../components/DaemonManagerDialog.qml" line="123"/>
+ <location filename="../components/DaemonManagerDialog.qml" line="132"/>
<source>Use custom settings</source>
<translation>Использовать свои настройки</translation>
</message>
@@ -190,16 +175,7 @@
<context>
<name>History</name>
<message>
- <location filename="../pages/History.qml" line="224"/>
- <location filename="../pages/History.qml" line="249"/>
- <location filename="../pages/History.qml" line="331"/>
- <location filename="../pages/History.qml" line="366"/>
- <location filename="../pages/History.qml" line="398"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="134"/>
+ <location filename="../pages/History.qml" line="135"/>
<source>Filter transaction history</source>
<translation>Фильтр истории транзакций</translation>
</message>
@@ -209,43 +185,38 @@
<translation> выбрано: </translation>
</message>
<message>
- <location filename="../pages/History.qml" line="145"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Общая сумма выбранных платежей&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="182"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Введите для пошагового поиска...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="222"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Дата с</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="247"/>
- <location filename="../pages/History.qml" line="396"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>До</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="273"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Фильтр</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="310"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Дополнительные фильтры</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="329"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Тип транзакции</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="364"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Количество от</translation>
</message>
@@ -316,11 +287,7 @@
<message>
<location filename="../components/HistoryTable.qml" line="392"/>
<source>Fee</source>
- <translation >Комиссия</translation>
- </message>
- <message>
- <source>Balance</source>
- <translation>Баланс</translation>
+ <translation>Комиссия</translation>
</message>
<message>
<location filename="../components/HistoryTable.qml" line="357"/>
@@ -331,117 +298,107 @@
<context>
<name>LeftPanel</name>
<message>
- <location filename="../LeftPanel.qml" line="128"/>
+ <location filename="../LeftPanel.qml" line="132"/>
<source>Balance</source>
<translation>Баланс</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="131"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="172"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Доступный баланс</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="175"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="264"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>Отправить</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="314"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Получить</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="315"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="408"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="338"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>История</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="92"/>
+ <location filename="../LeftPanel.qml" line="93"/>
<source>Testnet</source>
<translation>Тестовая сеть</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="289"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>Адресная книга</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="290"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="339"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="361"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>Дополнительно</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="362"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="383"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>Майнинг</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="384"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="407"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>Проверить платеж</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="431"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Войти/проверить</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="432"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="454"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Настройки</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="455"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="265"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation type="unfinished"></translation>
</message>
@@ -449,12 +406,12 @@
<context>
<name>MiddlePanel</name>
<message>
- <location filename="../MiddlePanel.qml" line="45"/>
+ <location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>Баланс</translation>
</message>
<message>
- <location filename="../MiddlePanel.qml" line="47"/>
+ <location filename="../MiddlePanel.qml" line="48"/>
<source>Unlocked Balance</source>
<translation>Доступный баланс</translation>
</message>
@@ -487,67 +444,75 @@
<translation>(необязательно)</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="118"/>
+ <location filename="../pages/Mining.qml" line="116"/>
<source>Background mining (experimental)</source>
<translation>Фоновый майнинг (эксперементально)</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="134"/>
+ <location filename="../pages/Mining.qml" line="132"/>
<source>Enable mining when running on battery</source>
<translation>Разрешить майнинг при работе от батареи</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="144"/>
+ <location filename="../pages/Mining.qml" line="142"/>
<source>Manage miner</source>
<translation>Настроить майнер</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="153"/>
+ <location filename="../pages/Mining.qml" line="151"/>
<source>Start mining</source>
<translation>Запустить майнинг</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="163"/>
+ <location filename="../pages/Mining.qml" line="161"/>
<source>Error starting mining</source>
<translation>Ошибка запуска майнинга</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="164"/>
+ <location filename="../pages/Mining.qml" line="162"/>
<source>Couldn&apos;t start mining.&lt;br&gt;</source>
<translation>Нельзя запустить майнинг&lt;br&gt;</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="166"/>
+ <location filename="../pages/Mining.qml" line="164"/>
<source>Mining is only available on local daemons. Run a local daemon to be able to mine.&lt;br&gt;</source>
<translation>Майнинг доступен только на локальных демонах. Запустите локальный демон, чтобы майнить</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="178"/>
+ <location filename="../pages/Mining.qml" line="176"/>
<source>Stop mining</source>
<translation>Остановить майнинг</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="194"/>
+ <location filename="../pages/Mining.qml" line="192"/>
<source>Status: not mining</source>
<translation>Статус: майнинг выключен</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="205"/>
+ <location filename="../pages/Mining.qml" line="203"/>
<source>Mining at %1 H/s</source>
<translation>Майнинг на скорости %1 H/s</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="208"/>
+ <location filename="../pages/Mining.qml" line="206"/>
<source>Not mining</source>
<translation>Майнинг выключен</translation>
</message>
<message>
- <location filename="../pages/Mining.qml" line="210"/>
+ <location filename="../pages/Mining.qml" line="208"/>
<source>Status: </source>
<translation>Статус: </translation>
</message>
</context>
<context>
+ <name>MobileHeader</name>
+ <message>
+ <location filename="../components/MobileHeader.qml" line="94"/>
+ <source>Unlocked Balance:</source>
+ <translation type="unfinished"></translation>
+ </message>
+</context>
+<context>
<name>NetworkStatusItem</name>
<message>
<location filename="../components/NetworkStatusItem.qml" line="85"/>
@@ -583,22 +548,22 @@
<context>
<name>PasswordDialog</name>
<message>
- <location filename="../components/PasswordDialog.qml" line="70"/>
+ <location filename="../components/PasswordDialog.qml" line="79"/>
<source>Please enter wallet password</source>
<translation>Пожалуйста введите пароль кошелька</translation>
</message>
<message>
- <location filename="../components/PasswordDialog.qml" line="70"/>
+ <location filename="../components/PasswordDialog.qml" line="79"/>
<source>Please enter wallet password for:&lt;br&gt;</source>
<translation>Пожалуйста введите пароль кошелька для:&lt;br&gt;</translation>
</message>
<message>
- <location filename="../components/PasswordDialog.qml" line="147"/>
+ <location filename="../components/PasswordDialog.qml" line="156"/>
<source>Cancel</source>
<translation>Отмена</translation>
</message>
<message>
- <location filename="../components/PasswordDialog.qml" line="162"/>
+ <location filename="../components/PasswordDialog.qml" line="171"/>
<source>Ok</source>
<translation>ОК</translation>
</message>
@@ -702,72 +667,72 @@
<translation>Адрес кошелька только для чтения</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="227"/>
+ <location filename="../pages/Receive.qml" line="230"/>
<source>16 hexadecimal characters</source>
<translation>16 шестнадцатеричных символов</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="263"/>
+ <location filename="../pages/Receive.qml" line="266"/>
<source>Clear</source>
<translation>Очистить</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="273"/>
+ <location filename="../pages/Receive.qml" line="276"/>
<source>Integrated address</source>
<translation>Интегрированный адрес</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="385"/>
+ <location filename="../pages/Receive.qml" line="388"/>
<source>Save QrCode</source>
<translation>Сохранить QR-код</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="386"/>
+ <location filename="../pages/Receive.qml" line="389"/>
<source>Failed to save QrCode to </source>
<translation>Не удалось сохранить QR-код для</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="397"/>
+ <location filename="../pages/Receive.qml" line="400"/>
<source>Save As</source>
<translation>Сохранить Как</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="219"/>
+ <location filename="../pages/Receive.qml" line="222"/>
<source>Payment ID</source>
<translation>ID платежа</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="282"/>
+ <location filename="../pages/Receive.qml" line="285"/>
<source>Generate payment ID for integrated address</source>
<translation>Сгенерировать ID платежа для интегрированного адреса</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="306"/>
+ <location filename="../pages/Receive.qml" line="309"/>
<source>Amount</source>
<translation>Количество</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="314"/>
+ <location filename="../pages/Receive.qml" line="317"/>
<source>Amount to receive</source>
<translation>Сумма для получения</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="335"/>
+ <location filename="../pages/Receive.qml" line="338"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Отслеживание &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="340"/>
+ <location filename="../pages/Receive.qml" line="343"/>
<source>Tracking payments</source>
<translation>Отслеживание платежей</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="341"/>
+ <location filename="../pages/Receive.qml" line="344"/>
<source>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;This is a simple sales tracker:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Click Generate to create a random payment id for a new customer&lt;/p&gt; &lt;p&gt;Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).&lt;/p&gt;&lt;p&gt;This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.&lt;/p&gt;It&apos;s up to you whether to accept unconfirmed transactions or not. It is likely they&apos;ll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).&lt;/p&gt;</source>
<translation>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;Это простой инструмент для отслеживания операций:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Нажмите «Сгенерировать», чтобы создать случайный ID платежа для нового клиента.&lt;/p&gt; &lt;p&gt;Пусть ваш клиент отсканирует QR-код, чтобы произвести платеж (если у этого клиента есть программное обеспечение, которое поддерживает сканирование QR-кодов).&lt;/p&gt;&lt;p&gt;Эта страница автоматически сканирует блокчейн и пул транзакций для входящих транзакций, используя этот QR-код. Если вы введете сумму, она также будет проверена тем, что входящие транзакции составляют эту сумму.&lt;/p&gt;Вам решать, принимать или нет неподтвержденные транзакции. Вероятно, они вскоре будут подтверждены, но есть вероятность, что они могут не подтвердится, поэтому для больших сумм вы можете подождать одного или нескольких подтверждений.&lt;/p&gt;</translation>
</message>
<message>
- <location filename="../pages/Receive.qml" line="251"/>
+ <location filename="../pages/Receive.qml" line="254"/>
<source>Generate</source>
<translation>Сгенерировать</translation>
</message>
@@ -811,22 +776,43 @@
<context>
<name>Settings</name>
<message>
- <location filename="../pages/Settings.qml" line="424"/>
+ <location filename="../pages/Settings.qml" line="171"/>
+ <location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="425"/>
- <source>Wrong password</source>
- <translation>Неверный пароль</translation>
+ <location filename="../pages/Settings.qml" line="525"/>
+ <source>Wallet seed &amp; keys</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="527"/>
+ <source>Secret view key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="528"/>
+ <source>Public view key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="529"/>
+ <source>Secret spend key</source>
+ <translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="119"/>
- <source>Show seed</source>
- <translation>Показать сиды</translation>
+ <location filename="../pages/Settings.qml" line="530"/>
+ <source>Public spend key</source>
+ <translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="221"/>
+ <location filename="../pages/Settings.qml" line="540"/>
+ <source>Wrong password</source>
+ <translation>Неверный пароль</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="306"/>
<source>Daemon address</source>
<translation>Адрес демона</translation>
</message>
@@ -836,117 +822,178 @@
<translation>Кправление кошельком</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="87"/>
+ <location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>Закрыть кошелек</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="102"/>
+ <location filename="../pages/Settings.qml" line="103"/>
<source>Create view only wallet</source>
<translation>Создать кошелек только для просмотра</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="132"/>
+ <location filename="../pages/Settings.qml" line="193"/>
<source>Manage daemon</source>
<translation>Управление демоном</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="152"/>
+ <location filename="../pages/Settings.qml" line="212"/>
<source>Start daemon</source>
<translation>Запустить демон</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="166"/>
+ <location filename="../pages/Settings.qml" line="226"/>
<source>Stop daemon</source>
<translation>Остановить демон</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="199"/>
+ <location filename="../pages/Settings.qml" line="286"/>
<source>Daemon startup flags</source>
<translation>Флаги запуска демона</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="207"/>
+ <location filename="../pages/Settings.qml" line="265"/>
+ <location filename="../pages/Settings.qml" line="294"/>
<source>(optional)</source>
<translation>(необязательно)</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="249"/>
+ <location filename="../pages/Settings.qml" line="120"/>
+ <source>Show seed &amp; keys</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="163"/>
+ <source>Rescan wallet balance</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="172"/>
+ <source>Error: </source>
+ <translation type="unfinished">Ошибка: </translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="177"/>
+ <source>Information</source>
+ <translation type="unfinished">Информация</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="178"/>
+ <source>Sucessfully rescanned spent outputs</source>
+ <translation type="unfinished">Успешно пересканированые потраченые выходы</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="257"/>
+ <source>Blockchain location</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="342"/>
<source>Login (optional)</source>
<translation>Логин (необязательно)</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="258"/>
+ <location filename="../pages/Settings.qml" line="355"/>
<source>Username</source>
<translation>Имя пользователя</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="267"/>
+ <location filename="../pages/Settings.qml" line="364"/>
<source>Password</source>
<translation>Пароль</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="275"/>
+ <location filename="../pages/Settings.qml" line="372"/>
<source>Connect</source>
<translation>Подключить</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="302"/>
+ <location filename="../pages/Settings.qml" line="398"/>
<source>Layout settings</source>
<translation>Настройки макета</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="319"/>
+ <location filename="../pages/Settings.qml" line="415"/>
<source>Custom decorations</source>
<translation>Пользовательские украшения</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="330"/>
+ <location filename="../pages/Settings.qml" line="426"/>
<source>Log level</source>
<translation>Уровень логирования</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="356"/>
+ <location filename="../pages/Settings.qml" line="460"/>
<source>(e.g. *:WARNING,net.p2p:DEBUG)</source>
<translation>(Например, *: WARNING, net.p2p: DEBUG)</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="372"/>
+ <location filename="../pages/Settings.qml" line="476"/>
<source>Version</source>
<translation>Версия</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="388"/>
+ <location filename="../pages/Settings.qml" line="492"/>
<source>GUI version: </source>
<translation>Версия GUI</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="395"/>
+ <location filename="../pages/Settings.qml" line="499"/>
<source>Embedded Monero version: </source>
<translation>Версия встроенного Monero</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="405"/>
+ <location filename="../pages/Settings.qml" line="509"/>
<source>Daemon log</source>
<translation>Логи демона</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="416"/>
- <source>Wallet mnemonic seed</source>
- <translation>Мнемоническая фраза (seed) кошелька</translation>
+ <location filename="../pages/Settings.qml" line="573"/>
+ <source>Please choose a folder</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="582"/>
+ <source>Warning</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="585"/>
+ <source>Error: Filesystem is read only</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="589"/>
+ <source>Warning: There&apos;s only %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="591"/>
+ <source>Note: There&apos;s %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
+ <translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="230"/>
+ <location filename="../pages/Settings.qml" line="595"/>
+ <source>Note: lmdb folder not found. A new folder will be created.</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="600"/>
+ <source>Cancel</source>
+ <translation type="unfinished">Отмена</translation>
+ </message>
+ <message>
+ <location filename="../pages/Settings.qml" line="322"/>
<source>Hostname / IP</source>
<translation>Имя хоста / IP</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="179"/>
+ <location filename="../pages/Settings.qml" line="239"/>
<source>Show status</source>
<translation>Показать статус</translation>
</message>
<message>
- <location filename="../pages/Settings.qml" line="239"/>
+ <location filename="../pages/Settings.qml" line="331"/>
<source>Port</source>
<translation>Порт</translation>
</message>
@@ -974,85 +1021,85 @@
<translation>Эта подпись не проверена</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="123"/>
+ <location filename="../pages/Sign.qml" line="111"/>
<source>Sign a message or file contents with your address:</source>
<translation>Подпишите сообщение или содержимое файла с помощью своего адреса:</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="133"/>
- <location filename="../pages/Sign.qml" line="319"/>
+ <location filename="../pages/Sign.qml" line="122"/>
+ <location filename="../pages/Sign.qml" line="294"/>
<source>Either message:</source>
<translation>Любое сообщение:</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="148"/>
+ <location filename="../pages/Sign.qml" line="137"/>
<source>Message to sign</source>
<translation>Сообщение для подписи</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="167"/>
- <location filename="../pages/Sign.qml" line="242"/>
+ <location filename="../pages/Sign.qml" line="156"/>
+ <location filename="../pages/Sign.qml" line="231"/>
<source>Sign</source>
<translation>Подпись</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="195"/>
+ <location filename="../pages/Sign.qml" line="184"/>
<source>Please choose a file to sign</source>
<translation>Пожалуйста выберите файл для подписи</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="208"/>
- <location filename="../pages/Sign.qml" line="393"/>
+ <location filename="../pages/Sign.qml" line="197"/>
+ <location filename="../pages/Sign.qml" line="368"/>
<source>Select</source>
<translation>Выбрать</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="352"/>
- <location filename="../pages/Sign.qml" line="426"/>
+ <location filename="../pages/Sign.qml" line="327"/>
+ <location filename="../pages/Sign.qml" line="401"/>
<source>Verify</source>
<translation>Проверить</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="183"/>
- <location filename="../pages/Sign.qml" line="368"/>
+ <location filename="../pages/Sign.qml" line="172"/>
+ <location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>Или файл</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="223"/>
+ <location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>Имя файла с сообщением для подписи</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="264"/>
- <location filename="../pages/Sign.qml" line="273"/>
- <location filename="../pages/Sign.qml" line="470"/>
- <location filename="../pages/Sign.qml" line="479"/>
+ <location filename="../pages/Sign.qml" line="251"/>
+ <location filename="../pages/Sign.qml" line="257"/>
+ <location filename="../pages/Sign.qml" line="445"/>
+ <location filename="../pages/Sign.qml" line="452"/>
<source>Signature</source>
<translation>Подпись</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="309"/>
+ <location filename="../pages/Sign.qml" line="282"/>
<source>Verify a message or file signature from an address:</source>
<translation>Проверьте сообщение или подпись файла с адреса:</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="334"/>
+ <location filename="../pages/Sign.qml" line="309"/>
<source>Message to verify</source>
<translation>Сообщение для подтверждения</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="380"/>
+ <location filename="../pages/Sign.qml" line="355"/>
<source>Please choose a file to verify</source>
<translation>Выберите файл для подтверждения</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="408"/>
+ <location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>Имя файла с сообщением для подтверждения</translation>
</message>
<message>
- <location filename="../pages/Sign.qml" line="444"/>
+ <location filename="../pages/Sign.qml" line="419"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Подписывающий адрес &lt;font size=&apos;2&apos;&gt; ( Вставить или выбрать из &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Адресная книга&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
@@ -1060,12 +1107,12 @@
<context>
<name>StandardDialog</name>
<message>
- <location filename="../components/StandardDialog.qml" line="127"/>
+ <location filename="../components/StandardDialog.qml" line="135"/>
<source>Ok</source>
<translation>ОК</translation>
</message>
<message>
- <location filename="../components/StandardDialog.qml" line="112"/>
+ <location filename="../components/StandardDialog.qml" line="120"/>
<source>Cancel</source>
<translation>Отмена</translation>
</message>
@@ -1089,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished">Стандартная (x4 комиссия) {1 ?}</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>Все</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Отправить</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Получить</translation>
</message>
@@ -1112,8 +1179,8 @@
</message>
<message>
<location filename="../components/TableDropdown.qml" line="183"/>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation>&lt;b&gt;Отправить тому же получателю&lt;/b&gt;</translation>
+ <source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
+ <translation type="unfinished"></translation>
</message>
<message>
<location filename="../components/TableDropdown.qml" line="184"/>
@@ -1185,40 +1252,33 @@
<translation></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="480"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Стоимость транзакции</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="537"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>Подписать файл транзакции</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="551"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>Отправить файл транзакции</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="733"/>
- <location filename="../pages/Transfer.qml" line="745"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>Кошелек не подключен к демону</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="748"/>
- <source>Connected daemon is not compatible with GUI.
-Please upgrade or connect to another daemon</source>
- <translation>Подключенный демон несовместим с графическим интерфейсом.
-Обновите или подключитесь к другому демону</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="753"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Ожидание синхронизации с демоном</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>ID платежа &lt;font size=&apos;2&apos;&gt;( Необязательно )&lt;/font&gt;</translation>
</message>
@@ -1233,47 +1293,73 @@ Please upgrade or connect to another daemon</source>
<translation>Все</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="207"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished">Стандартная (x4 комиссия) {1 ?}</translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="208"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="209"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>Не найдено действительного адреса на этом OpenAlias</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>Адрес найден, но подписи DNSSEC не могут быть проверены, поэтому этот адрес может быть подделан</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>На этом адресе OpenAlias не найден действительный адрес, подписи DNSSEC не могут быть проверены, поэтому это может быть подделано</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Внутренняя ошибка</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Адрес не найден</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 или 64 шестнадцатеричных символа</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Описание &lt;font size=&apos;2&apos;&gt;( Необязательно )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Сохранено в локальной истории кошелька.</translation>
</message>
<message>
+ <location filename="../pages/Transfer.qml" line="719"/>
+ <source>Connected daemon is not compatible with GUI.
+Please upgrade or connect to another daemon</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
<location filename="../pages/Transfer.qml" line="78"/>
<source>Privacy level (ringsize %1)</source>
<translation>Уровень конфиденциальности (размер кольца %1)</translation>
@@ -1284,163 +1370,138 @@ Please upgrade or connect to another daemon</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;Запустить демон&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="193"/>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>Низкая (x1 комиссия)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>Средняя (x20 комиссия)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>Высокая (x166 комиссия)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
- <source>Default (x4 fee)</source>
- <translation>Стандартная (x4 комиссия)</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Адрес &lt;font size=&apos;2&apos;&gt; ( Вставить или выбрать из &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Адресная книга&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>QR-код</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Решить</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>Отправить</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="452"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Показать расширенные настройки</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="501"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>Убрать несмешиваемые</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="515"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>создать файл транзакции</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="566"/>
- <source>Rescan spent</source>
- <translation>Пересканировать потраченые</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="575"/>
- <location filename="../pages/Transfer.qml" line="610"/>
- <location filename="../pages/Transfer.qml" line="666"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="576"/>
- <source>Error: </source>
- <translation>Ошибка: </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="581"/>
- <location filename="../pages/Transfer.qml" line="672"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Информация</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="582"/>
- <source>Sucessfully rescanned spent outputs</source>
- <translation>Успешно пересканированые потраченые выходы</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="599"/>
- <location filename="../pages/Transfer.qml" line="660"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>Пожалуйста выберите файл</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="611"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>Невозможно загрузить неподписанную транзакцию: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="618"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>
Число транзакций: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="620"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>
Танзакция #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="621"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>
Получатель: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="622"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>
ID платежа: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="623"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>
Количество: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="624"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>
Комиссия: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="625"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>
Размер кольца: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="639"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Подтверждение</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="667"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>Невозможно отправить транзакцию: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="673"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>Деньги успешно отправлены</translation>
</message>
@@ -1453,57 +1514,57 @@ Ringsize: </source>
<translation>Убедитесь, что третье лицо осуществило платеж, предоставив:</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="94"/>
+ <location filename="../pages/TxKey.qml" line="95"/>
<source> - the recipient address</source>
<translation> - адрес получателя</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="98"/>
+ <location filename="../pages/TxKey.qml" line="100"/>
<source> - the transaction ID</source>
<translation> - ID транзакции</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="102"/>
+ <location filename="../pages/TxKey.qml" line="105"/>
<source> - the secret transaction key supplied by the sender</source>
<translation> - секретный ключ транзакции, предоставленный отправителем</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="119"/>
+ <location filename="../pages/TxKey.qml" line="123"/>
<source>Address</source>
<translation>Адрес</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="126"/>
+ <location filename="../pages/TxKey.qml" line="130"/>
<source>Recipient&apos;s wallet address</source>
<translation>Адрес кошелька получателя</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="148"/>
+ <location filename="../pages/TxKey.qml" line="152"/>
<source>Transaction ID</source>
<translation>ID транзакции</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="157"/>
+ <location filename="../pages/TxKey.qml" line="161"/>
<source>Paste tx ID</source>
<translation>Вставить ID транзакции</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="189"/>
+ <location filename="../pages/TxKey.qml" line="193"/>
<source>Paste tx key</source>
<translation>Вставить ключ транзакции</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="212"/>
+ <location filename="../pages/TxKey.qml" line="216"/>
<source>Check</source>
<translation>Проверить</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="181"/>
+ <location filename="../pages/TxKey.qml" line="185"/>
<source>Transaction key</source>
<translation>Ключ транзакции</translation>
</message>
<message>
- <location filename="../pages/TxKey.qml" line="106"/>
+ <location filename="../pages/TxKey.qml" line="110"/>
<source>If a payment had several transactions then each must be checked and the results combined.</source>
<translation>Если в платеже было несколько транзакций, каждая из них должна быть проверена и результаты объединены.</translation>
</message>
@@ -1557,7 +1618,7 @@ Ringsize: </source>
<context>
<name>WizardCreateWallet</name>
<message>
- <location filename="../wizard/WizardCreateWallet.qml" line="99"/>
+ <location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>Создать новый кошелек</translation>
</message>
@@ -1665,44 +1726,43 @@ Ringsize: </source>
<context>
<name>WizardMain</name>
<message>
- <location filename="../wizard/WizardMain.qml" line="168"/>
+ <location filename="../wizard/WizardMain.qml" line="176"/>
<source>A wallet with same name already exists. Please change wallet name</source>
<translation>Кошелек с таким именем уже существует. Измените имя кошелька.</translation>
</message>
<message>
- <location filename="../wizard/WizardMain.qml" line="176"/>
+ <location filename="../wizard/WizardMain.qml" line="184"/>
<source>Non-ASCII characters are not allowed in wallet path or account name</source>
<translation>Символы не из таблицы ASCII не разрешены в пути к кошельку или имени аккаунта</translation>
</message>
<message>
- <location filename="../wizard/WizardMain.qml" line="350"/>
+ <location filename="../wizard/WizardMain.qml" line="366"/>
<source>USE MONERO</source>
<translation>ПОЛЬЗУЙТЕСЬ MONERO</translation>
</message>
<message>
- <location filename="../wizard/WizardMain.qml" line="367"/>
+ <location filename="../wizard/WizardMain.qml" line="383"/>
<source>Create wallet</source>
<translation>Создать кошелек</translation>
</message>
<message>
- <location filename="../wizard/WizardMain.qml" line="377"/>
+ <location filename="../wizard/WizardMain.qml" line="393"/>
<source>Success</source>
<translation>Успешно</translation>
</message>
<message>
- <location filename="../wizard/WizardMain.qml" line="378"/>
- <source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
+ <location filename="../wizard/WizardMain.qml" line="394"/>
+ <source>The view only wallet has been created. You can open it by closing this current wallet, clicking the &quot;Open wallet from file&quot; option, and selecting the view wallet in:
%1</source>
- <translation>Был создан только кошелек для просмотра. Вы можете открыть его, закрыв этот текущий кошелек, нажав кнопку &quot; Открыть кошелек из файла &quot; и выбрав кошелек просмотра в:
-%1</translation>
+ <translation type="unfinished"></translation>
</message>
<message>
- <location filename="../wizard/WizardMain.qml" line="386"/>
+ <location filename="../wizard/WizardMain.qml" line="402"/>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
- <location filename="../wizard/WizardMain.qml" line="399"/>
+ <location filename="../wizard/WizardMain.qml" line="415"/>
<source>Abort</source>
<translation>Прервать</translation>
</message>
@@ -1750,7 +1810,7 @@ Ringsize: </source>
<translation>Ваш кошелек сохранен в</translation>
</message>
<message>
- <location filename="../wizard/WizardManageWalletUI.qml" line="272"/>
+ <location filename="../wizard/WizardManageWalletUI.qml" line="271"/>
<source>Please choose a directory</source>
<translation>Пожалуйста выберите папку</translation>
</message>
@@ -1846,10 +1906,6 @@ Ringsize: </source>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation>Добро пожаловать</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>Добро подаловать в Monero!</translation>
@@ -1863,61 +1919,56 @@ Ringsize: </source>
<context>
<name>main</name>
<message>
- <location filename="../main.qml" line="317"/>
- <location filename="../main.qml" line="482"/>
- <location filename="../main.qml" line="544"/>
- <location filename="../main.qml" line="556"/>
- <location filename="../main.qml" line="598"/>
- <location filename="../main.qml" line="659"/>
- <location filename="../main.qml" line="697"/>
- <location filename="../main.qml" line="727"/>
+ <location filename="../main.qml" line="323"/>
+ <location filename="../main.qml" line="491"/>
+ <location filename="../main.qml" line="503"/>
+ <location filename="../main.qml" line="553"/>
+ <location filename="../main.qml" line="565"/>
+ <location filename="../main.qml" line="607"/>
+ <location filename="../main.qml" line="616"/>
+ <location filename="../main.qml" line="668"/>
+ <location filename="../main.qml" line="706"/>
+ <location filename="../main.qml" line="736"/>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
- <location filename="../main.qml" line="318"/>
+ <location filename="../main.qml" line="324"/>
<source>Couldn&apos;t open wallet: </source>
<translation>Невозможно открыть кошелек</translation>
</message>
<message>
- <location filename="../main.qml" line="349"/>
- <source>Unlocked balance (ожидание блоков)</source>
- <translation>Доступный баланс ()</translation>
- </message>
- <message>
- <location filename="../main.qml" line="432"/>
+ <location filename="../main.qml" line="438"/>
<source>Daemon failed to start</source>
<translation>Не удалось запустить демона</translation>
</message>
<message>
- <location filename="../main.qml" line="433"/>
+ <location filename="../main.qml" line="439"/>
<source>Please check your wallet and daemon log for errors. You can also try to start %1 manually.</source>
<translation>Пожалуйста, проверьте ваш журнал кошелька и демона на наличие ошибок. Вы также можете попробовать запустить %1 вручную.</translation>
</message>
<message>
- <location filename="../main.qml" line="484"/>
+ <location filename="../main.qml" line="493"/>
<source>Can&apos;t create transaction: Wrong daemon version: </source>
<translation>Невозможно создать транзакцию: Неверная версия демона</translation>
</message>
<message>
- <location filename="../main.qml" line="494"/>
- <location filename="../main.qml" line="495"/>
- <location filename="../main.qml" line="607"/>
- <location filename="../main.qml" line="608"/>
+ <location filename="../main.qml" line="504"/>
+ <location filename="../main.qml" line="617"/>
<source>No unmixable outputs to sweep</source>
<translation>Нет несмешиваемых выходов для развертки</translation>
</message>
<message>
- <location filename="../main.qml" line="508"/>
- <location filename="../main.qml" line="621"/>
+ <location filename="../main.qml" line="517"/>
+ <location filename="../main.qml" line="630"/>
<source>Please confirm transaction:
</source>
<translation>Пожалуйста подтвердите транзакцию:
</translation>
</message>
<message>
- <location filename="../main.qml" line="511"/>
- <location filename="../main.qml" line="622"/>
+ <location filename="../main.qml" line="520"/>
+ <location filename="../main.qml" line="631"/>
<source>
Amount: </source>
@@ -1926,7 +1977,7 @@ Amount: </source>
Количество: </translation>
</message>
<message>
- <location filename="../main.qml" line="513"/>
+ <location filename="../main.qml" line="522"/>
<source>
Ringsize: </source>
@@ -1935,14 +1986,14 @@ Ringsize: </source>
Размер кольца: </translation>
</message>
<message>
- <location filename="../main.qml" line="514"/>
+ <location filename="../main.qml" line="523"/>
<source>
Number of transactions: </source>
<translation>
Количество транзакций: </translation>
</message>
<message>
- <location filename="../main.qml" line="515"/>
+ <location filename="../main.qml" line="524"/>
<source>
Description: </source>
@@ -1951,156 +2002,161 @@ Description: </source>
Описание: </translation>
</message>
<message>
- <location filename="../main.qml" line="545"/>
+ <location filename="../main.qml" line="554"/>
<source>Amount is wrong: expected number from %1 to %2</source>
<translation>Сумма неправильная: ожидаемое число от %1 до %2</translation>
</message>
<message>
- <location filename="../main.qml" line="1284"/>
+ <location filename="../main.qml" line="1317"/>
<source>Daemon is running</source>
<translation>Демон запущен</translation>
</message>
<message>
- <location filename="../main.qml" line="1285"/>
+ <location filename="../main.qml" line="1318"/>
<source>Daemon will still be running in background when GUI is closed.</source>
<translation>Демон будет все еще запущен в фоновом режиме после закрытия GUI</translation>
</message>
<message>
- <location filename="../main.qml" line="1287"/>
+ <location filename="../main.qml" line="1320"/>
<source>Stop daemon</source>
<translation>Остановить демона</translation>
</message>
<message>
- <location filename="../main.qml" line="1322"/>
+ <location filename="../main.qml" line="1355"/>
<source>New version of monero-wallet-gui is available: %1&lt;br&gt;%2</source>
<translation>Доступна новая версия кошелька с графическим интерфейсом: %1&lt;br&gt;%2</translation>
</message>
<message>
- <location filename="../main.qml" line="486"/>
- <location filename="../main.qml" line="599"/>
+ <location filename="../main.qml" line="495"/>
+ <location filename="../main.qml" line="608"/>
<source>Can&apos;t create transaction: </source>
<translation>Невозможно создать транзакцию</translation>
</message>
<message>
- <location filename="../main.qml" line="349"/>
+ <location filename="../main.qml" line="355"/>
<source>Unlocked balance (~%1 min)</source>
<translation>Доступный баланс (~%1 min)</translation>
</message>
<message>
- <location filename="../main.qml" line="349"/>
+ <location filename="../main.qml" line="355"/>
<source>Unlocked balance</source>
<translation>Доступный баланс</translation>
</message>
<message>
- <location filename="../main.qml" line="401"/>
+ <location filename="../main.qml" line="355"/>
+ <source>Unlocked balance (waiting for block)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../main.qml" line="407"/>
<source>Waiting for daemon to start...</source>
<translation>Ожидание запуска демона...</translation>
</message>
<message>
- <location filename="../main.qml" line="407"/>
+ <location filename="../main.qml" line="413"/>
<source>Waiting for daemon to stop...</source>
<translation>Ожидание остановки демона...</translation>
</message>
<message>
- <location filename="../main.qml" line="507"/>
- <location filename="../main.qml" line="620"/>
+ <location filename="../main.qml" line="516"/>
+ <location filename="../main.qml" line="629"/>
<source>Confirmation</source>
<translation>Подтверждение</translation>
</message>
<message>
- <location filename="../main.qml" line="509"/>
+ <location filename="../main.qml" line="518"/>
<source>
Address: </source>
<translation>
Адрес: </translation>
</message>
<message>
- <location filename="../main.qml" line="510"/>
+ <location filename="../main.qml" line="519"/>
<source>
Payment ID: </source>
<translation>
ID платежа: </translation>
</message>
<message>
- <location filename="../main.qml" line="512"/>
- <location filename="../main.qml" line="623"/>
+ <location filename="../main.qml" line="521"/>
+ <location filename="../main.qml" line="632"/>
<source>
Fee: </source>
<translation>
Комиссия: </translation>
</message>
<message>
- <location filename="../main.qml" line="557"/>
+ <location filename="../main.qml" line="566"/>
<source>Insufficient funds. Unlocked balance: %1</source>
<translation>Недостаточно средств. Доступный баланс: %1</translation>
</message>
<message>
- <location filename="../main.qml" line="660"/>
+ <location filename="../main.qml" line="669"/>
<source>Couldn&apos;t send the money: </source>
<translation>Невозможно отправить деньги</translation>
</message>
<message>
- <location filename="../main.qml" line="663"/>
+ <location filename="../main.qml" line="672"/>
<source>Information</source>
<translation>Информация</translation>
</message>
<message>
- <location filename="../main.qml" line="669"/>
+ <location filename="../main.qml" line="678"/>
<source>Transaction saved to file: %1</source>
<translation>Транзакция сохранена в файл: %1</translation>
</message>
<message>
- <location filename="../main.qml" line="719"/>
+ <location filename="../main.qml" line="728"/>
<source>This address received %1 monero, with %2 confirmation(s).</source>
<translation>Этот адрес получил %1 XMR, с %2 подтверждениями</translation>
</message>
<message>
- <location filename="../main.qml" line="735"/>
+ <location filename="../main.qml" line="744"/>
<source>Balance (syncing)</source>
<translation>Баланс (синхронизация)</translation>
</message>
<message>
- <location filename="../main.qml" line="735"/>
+ <location filename="../main.qml" line="744"/>
<source>Balance</source>
<translation>Баланс</translation>
</message>
<message>
- <location filename="../main.qml" line="953"/>
+ <location filename="../main.qml" line="978"/>
<source>Please wait...</source>
<translation>Пожалуйста, подождите...</translation>
</message>
<message>
- <location filename="../main.qml" line="669"/>
+ <location filename="../main.qml" line="678"/>
<source>Money sent successfully: %1 transaction(s) </source>
<translation>Деньги успешно отправлены: %1 подтверждений </translation>
</message>
<message>
- <location filename="../main.qml" line="709"/>
+ <location filename="../main.qml" line="718"/>
<source>Payment check</source>
<translation>Проверка платежа</translation>
</message>
<message>
- <location filename="../main.qml" line="714"/>
+ <location filename="../main.qml" line="723"/>
<source>This address received %1 monero, but the transaction is not yet mined</source>
<translation>Этот адрес получил %1 XMR, но транзакции еще не подтверждены майнерами</translation>
</message>
<message>
- <location filename="../main.qml" line="723"/>
+ <location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>Этот адрес ничего не получил </translation>
</message>
<message>
- <location filename="../main.qml" line="977"/>
+ <location filename="../main.qml" line="1002"/>
<source>Program setup wizard</source>
<translation>Мастер настройки программы</translation>
</message>
<message>
- <location filename="../main.qml" line="992"/>
+ <location filename="../main.qml" line="1017"/>
<source>Monero</source>
<translation>Monero</translation>
</message>
<message>
- <location filename="../main.qml" line="1033"/>
+ <location filename="../main.qml" line="1065"/>
<source>send to the same destination</source>
<translation>отправить тому же получателю</translation>
</message>
diff --git a/translations/monero-core_sv.ts b/translations/monero-core_sv.ts
index a27a442e..ecbad71e 100644
--- a/translations/monero-core_sv.ts
+++ b/translations/monero-core_sv.ts
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
-<TS version="2.1" language="sv_SE">
+<TS version="2.0" language="sv_SE">
<context>
<name>AddressBook</name>
<message>
@@ -14,86 +14,55 @@
<translation>Adress</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>QRKOD</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Betalnings-ID &lt;font size=&apos;2&apos;&gt;(Valfritt)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;Betalnings-ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;Ett unikt användarnamn som används i &lt;br/&gt;adressboken. Det är inte&lt;br/&gt;information som skickas&lt;br/&gt;med överföringen</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>Klistra in 64 hexadecimala tecken</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>Beskrivning &lt;font size=&apos;2&apos;&gt;(Valfritt)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>Ge den här posten ett namn eller beskrivning</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>Lägg till</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>Fel</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>Ogiltig adress</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>Kan inte skapa post</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="obsolete">Beskrivning &lt;font size=&apos;2&apos;&gt;(Lokal databas)&lt;/font&gt;</translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="obsolete">LÄGG TILL</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="obsolete">Betalnings-ID</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="obsolete">Beskrivning</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -147,18 +116,6 @@
<context>
<name>DaemonManagerDialog</name>
<message>
- <source>Daemon doesn&apos;t appear to be running</source>
- <translation type="obsolete">Noden verkar inte köras</translation>
- </message>
- <message>
- <source>Start daemon</source>
- <translation type="obsolete">Starta nod</translation>
- </message>
- <message>
- <source>Cancel</source>
- <translation type="obsolete">Avbryt</translation>
- </message>
- <message>
<location filename="../components/DaemonManagerDialog.qml" line="93"/>
<source>Starting Monero daemon in %1 seconds</source>
<translation>Monero-nod startar om %1 sekunder</translation>
@@ -175,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="obsolete">Synkroniserar block %1/%2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="obsolete">Synkroniserar block</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -229,15 +175,6 @@
<context>
<name>History</name>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation></translation>
- </message>
- <message>
<location filename="../pages/History.qml" line="135"/>
<source>Filter transaction history</source>
<translation>Filtrera överföringshistorik</translation>
@@ -248,63 +185,38 @@
<translation> vald: </translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;Totalt belopp för valda betalningar&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>Filtrera</translation>
</message>
<message>
- <source>Incremental search</source>
- <translation type="obsolete">Inkrementell sökning</translation>
- </message>
- <message>
- <source>Search transfers for a given string</source>
- <translation type="obsolete">Genomsök överföringar efter en given sträng</translation>
- </message>
- <message>
- <source>Type search string</source>
- <translation type="obsolete">Ange söksträng</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>Skriv för inkrementell sökning...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>Datum från</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>Till</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="obsolete">FILTRERA</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>Avancerad filtrering</translation>
</message>
<message>
- <source>Advance filtering</source>
- <translation type="obsolete">Avancerad filtrering</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>Typ av överföring</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>Belopp från</translation>
</message>
@@ -354,8 +266,8 @@
</message>
<message>
<location filename="../components/HistoryTable.qml" line="266"/>
- <source>(%1/10 confirmations)</source>
- <translation>(%1/10 bekräftelser)</translation>
+ <source>(%1/%2 confirmations)</source>
+ <translation>(%1/%2 bekräftelser)</translation>
</message>
<message>
<location filename="../components/HistoryTable.qml" line="270"/>
@@ -391,46 +303,32 @@
<translation>Saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>Olåst saldo</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>Skicka</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>Ta emot</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>R</translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="obsolete">Verifiera betalning</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>Historik</translation>
</message>
@@ -440,71 +338,67 @@
<translation>Testnet</translation>
</message>
<message>
- <source>T</source>
- <translation type="obsolete">T</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>Adressbok</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>Avancerat</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>Utvinning</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>Kontrollera betalning</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>Signera/verifiera</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>Inställningar</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>S</translation>
</message>
@@ -512,14 +406,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="obsolete">Saldo:</translation>
- </message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="obsolete">Olåst saldo:</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>Saldo</translation>
@@ -543,30 +429,6 @@
<translation>(endast tillgängligt för lokala noder)</translation>
</message>
<message>
- <source>Mining helps the Monero network build resilience.&lt;br&gt;</source>
- <translation type="obsolete">Utvinning hjälper Monero-nätverket att bli motståndskraftigt.&lt;br&gt;</translation>
- </message>
- <message>
- <source>The more mining is done, the harder it is to attack the network.&lt;br&gt;</source>
- <translation type="obsolete">Ju mer monero som utvinns, desto svårare blir det att angripa nätverket.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Mining also gives you a small chance to earn some Monero.&lt;br&gt;</source>
- <translation type="obsolete">Utvinning ger dig även en liten möjlighet att tjäna några Monero.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Your computer will search for Monero block solutions.&lt;br&gt;</source>
- <translation type="obsolete">Din dator kommer att leta efter lösningar för Monero-block.&lt;br&gt;</translation>
- </message>
- <message>
- <source>If you find a block, you will get the associated reward.&lt;br&gt;</source>
- <translation type="obsolete">Om du hittar ett block får du den tillhörande belöningen.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Mining helps the Monero network build resilience. The more mining is done, the harder it is to attack the network. Mining also gives you a small chance to earn some Monero. Your computer will search for Monero block solutions. If you find a block, you will get the associated reward.</source>
- <translation type="obsolete">Utvinning hjälper Monero-nätverket att bli motståndskraftigt. Ju mer monero som utvinns, desto svårare blir det att angripa nätverket. Utvinning ger dig även en liten möjlighet att tjäna några Monero. Din dator kommer att leta efter lösningar för Monero-block. Om du hittar ett block får du den tillhörande belöningen.</translation>
- </message>
- <message>
<location filename="../pages/Mining.qml" line="86"/>
<source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
<translation>Utvinning med din dator hjälper till att stärka Monero-nätverket. Ju mer som folk utvinner, ju svårare blir det för nätverket att angripas, och varje litet bidrag hjälper till.&lt;br&gt; &lt;br&gt;Utvinning ger dig även en liten möjlighet att tjäna några Monero. Din dator kommer att leta efter lösningar för block genom att skapa hashar. Om du hittar ett block får du den tillhörande belöningen. Lycka till!</translation>
@@ -709,18 +571,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="obsolete">LÅG</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="obsolete">MEDEL</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="obsolete">HÖG</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation>Låg</translation>
@@ -739,10 +589,6 @@
<context>
<name>ProgressBar</name>
<message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="obsolete">Synkroniserar block %1/%2</translation>
- </message>
- <message>
<location filename="../components/ProgressBar.qml" line="43"/>
<source>Establishing connection...</source>
<translation>Upprättar anslutning...</translation>
@@ -846,10 +692,6 @@
<translation>Rensa</translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="obsolete">Integrerad adress för endast läsbar plånbok visas här</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="285"/>
<source>Generate payment ID for integrated address</source>
<translation>Generera betalnings-ID för integrerad adress</translation>
@@ -862,7 +704,7 @@
<message>
<location filename="../pages/Receive.qml" line="344"/>
<source>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;This is a simple sales tracker:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Click Generate to create a random payment id for a new customer&lt;/p&gt; &lt;p&gt;Let your customer scan that QR code to make a payment (if that customer has software which supports QR code scanning).&lt;/p&gt;&lt;p&gt;This page will automatically scan the blockchain and the tx pool for incoming transactions using this QR code. If you input an amount, it will also check that incoming transactions total up to that amount.&lt;/p&gt;It&apos;s up to you whether to accept unconfirmed transactions or not. It is likely they&apos;ll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s).&lt;/p&gt;</source>
- <translation>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;Detta är en enkel försäljningsspårare:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Klicka för att generera ett slumpmässigt betalnings-id för en ny kund&lt;/p&gt; &lt;p&gt;Låt din kund läsa in den där QR-koden för att göra en betalning (om den kunden har programvara som stödjer inläsning av QR-koder).&lt;/p&gt;&lt;p&gt;Denna sida kommer automatiskt läsa in blockkedjan och tx-poolen för inkommande överföringar till dig oavsett du accepterar obekräftade överföringar eller inte. Det är troligt de blir bekräftade inom kort, men det är fortfarande en möjlighet att de inte blir det, så för större belopp vill du nog vänta på en eller fler bekräftelser.</translation>
+ <translation>&lt;p&gt;&lt;font size=&apos;+2&apos;&gt;Detta är en enkel försäljningsspårare:&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Klicka för att generera ett slumpmässigt betalnings-id för en ny kund&lt;/p&gt; &lt;p&gt;Låt din kund läsa in den där QR-koden för att göra en betalning (om den kunden har programvara som stödjer inläsning av QR-koder).&lt;/p&gt;&lt;p&gt;Denna sida kommer automatiskt läsa in blockkedjan och tx-poolen för inkommande överföringar till dig oavsett du accepterar obekräftade överföringar eller inte. Det är troligt de blir bekräftade inom kort, men det är fortfarande en möjlighet att de inte blir det, så för större belopp vill du nog vänta på en eller fler bekräftelser.&lt;/p&gt;</translation>
</message>
<message>
<location filename="../pages/Receive.qml" line="388"/>
@@ -875,10 +717,6 @@
<translation>Betalnings-ID</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="obsolete">16 eller 64 hexadecimala tecken</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="309"/>
<source>Amount</source>
<translation>Belopp</translation>
@@ -938,22 +776,6 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="obsolete">Klicka på knappen för att visa frö</translation>
- </message>
- <message>
- <source>Mnemonic seed: </source>
- <translation type="obsolete">Minnesfrö:</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="obsolete">Det är väldigt viktigt att skriva ner det, då detta är den enda backup du behöver för din plånbok.</translation>
- </message>
- <message>
- <source>Show seed</source>
- <translation type="vanished">Visa frö</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="306"/>
<source>Daemon address</source>
<translation>Adress för nod</translation>
@@ -964,10 +786,6 @@
<translation>Hantera plånbok</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="obsolete">Stäng nuvarande plånbok och öppna guide</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>Stäng plånbok</translation>
@@ -1083,10 +901,6 @@
<translation>Avbryt</translation>
</message>
<message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">Plånbokens minnesfrö</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -1149,10 +963,6 @@
<translation>Användarnamn</translation>
</message>
<message>
- <source>Save</source>
- <translation type="obsolete">Spara</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="372"/>
<source>Connect</source>
<translation>Anslut</translation>
@@ -1260,20 +1070,12 @@
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signeringsadress &lt;font size=&apos;2&apos;&gt; ( Klistra in eller välj från &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adressbok&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="obsolete">SIGNERA</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>Eller fil:</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="obsolete">VÄLJ</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>Filnamn med meddelande att signera</translation>
@@ -1297,18 +1099,10 @@
<translation>Meddelande att verifiera</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="obsolete">VERIFIERA</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>Filnamn med meddelande att verifiera</translation>
</message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="obsolete">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signeringsadress &lt;font size=&apos;2&apos;&gt; ( Ange eller välj från &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adressbok&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
- </message>
</context>
<context>
<name>StandardDialog</name>
@@ -1342,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation>Långsam (x0.25 avgift)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation>Standard (x1 avgift)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation>Snabb (x5 avgift)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation>Snabbast (x41.5 avgift)</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>Alla</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>Skickade</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>Mottagna</translation>
</message>
@@ -1364,10 +1178,6 @@
<translation>&lt;b&gt;Kopiera adress till urklipp&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;Skicka till samma mottagare&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
<translation>&lt;b&gt;Skicka till denna adress&lt;/b&gt;</translation>
@@ -1409,18 +1219,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="obsolete">LÅG</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="obsolete">MEDEL</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="obsolete">HÖG</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation>Normal</translation>
@@ -1449,48 +1247,16 @@
<translation>Överföringsprioritet</translation>
</message>
<message>
- <source>LOW</source>
- <translation type="obsolete">LÅG</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="obsolete">HÖG</translation>
- </message>
- <message>
- <source>or ALL</source>
- <translation type="obsolete">eller ALLT</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="91"/>
<source></source>
<translation></translation>
</message>
<message>
- <source>Privacy level</source>
- <translation type="obsolete">Integritetsnivå</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>Överföringskostnad</translation>
</message>
<message>
- <source>MEDIUM (x20 fee)</source>
- <translation type="obsolete">MEDEL (x20 avgift)</translation>
- </message>
- <message>
- <source>HIGH (x166 fee)</source>
- <translation type="obsolete">HÖG (x166 avgift)</translation>
- </message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
- <translation type="obsolete">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adress &lt;font size=&apos;2&apos;&gt; ( Klistra in eller välj från &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adressbok&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( Optional - saved to local wallet history )&lt;/font&gt;</source>
- <translation type="obsolete">Beskrivning &lt;font size=&apos;2&apos;&gt;( Valfritt - spara i historik för lokal plånbok )&lt;/font&gt;</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="66"/>
<source>OpenAlias error</source>
<translation>OpenAlias-fel</translation>
@@ -1506,288 +1272,240 @@
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt;&lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;Starta lokal nod&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
</message>
<message>
- <source>all</source>
- <translation type="obsolete">allt</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>Låg (x1 avgift)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>Medel (x20 avgift)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>Hög (x166 avgift)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation>Långsam (x0.25 avgift)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation>Standard (x1 avgift)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation>Snabb (x5 avgift)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation>Snabbast (x41.5 avgift)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adress &lt;font size=&apos;2&apos;&gt; ( Klistra in eller välj från &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adressbok&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>QR-kod</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>Lös</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>Ingen giltig adress hittades vid denna OpenAlias-adress</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>Adress hittad, men DNSSEC-signaturer kunde inte verifieras, så denna adress kan vara förfalskad</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>Ingen giltig adress hittades vid denna OpenAlias-adress, men DNSSEC-signaturer kunde inte verifieras, så den kan vara förfalskad</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>Internt fel</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>Ingen adress hittad</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Beskrivning &lt;font size=&apos;2&apos;&gt;( Valfritt )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>Sparad till historik för lokal plånbok</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>Skicka</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>Visa avancerade inställningar</translation>
</message>
<message>
- <source>Privacy level (ringsize 5)</source>
- <translation type="obsolete">Integritetsnivå (ringstorlek 5)</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>Städa bort omixbara</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>Skapa tx-fil</translation>
</message>
<message>
- <source>sign tx file</source>
- <translation type="obsolete">signera tx-fil</translation>
- </message>
- <message>
- <source>submit tx file</source>
- <translation type="obsolete">sänd tx-fil</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="175"/>
<source>All</source>
<translation>Allt</translation>
</message>
<message>
- <source>Default (x4 fee)</source>
- <translation type="vanished">Standard (x4 avgift)</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>Signera tx-fil</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>Sänd tx-fil</translation>
</message>
<message>
- <source>Rescan spent</source>
- <translation type="vanished">Läs om spenderat</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>Fel</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">Fel:</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>Information</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">Spenderade utgångar har lästs om</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>Välj en fil</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>Kan inte läsa in osignerade överföringar: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>
Antal överföringar: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>
Överföring #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>
Mottagare:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>
betalnings-ID: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>
Belopp: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>
Avgift: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>
Ringstorlek:</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>Bekräftelse</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>Kan inte sända överföring: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>Lyckades skicka pengar</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="699"/>
+ <location filename="../pages/Transfer.qml" line="711"/>
<source>Wallet is not connected to daemon.</source>
<translation>Plånboken är inte ansluten till nod.</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="714"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>Ansluten nod är inte kompatibel med GUI.
Uppgradera eller anslut till en annan nod</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>Väntar på att nod-synkronisering blir färdig</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="obsolete">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Adress &lt;font size=&apos;2&apos;&gt; ( Skriv eller välj från &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Adressbok&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>Betalnings-ID &lt;font size=&apos;2&apos;&gt;( Valfritt )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 eller 64 hexadecimala tecken</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="obsolete">Beskrivning &lt;font size=&apos;2&apos;&gt;( En valfri beskrivning som sparas i den lokala adressboken om angiven )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="obsolete">SKICKA</translation>
- </message>
- <message>
- <source>SWEEP UNMIXABLE</source>
- <translation type="obsolete">STÄDA BORT OMIXBARA</translation>
- </message>
</context>
<context>
<name>TxKey</name>
@@ -1797,10 +1515,6 @@ Uppgradera eller anslut till en annan nod</translation>
<translation>Verifiera att en tredje part genomfört en betalning genom att tillhandahålla:</translation>
</message>
<message>
- <source>You can verify that a third party made a payment by supplying:</source>
- <translation type="obsolete">Du kan verifiera att en tredjepart gjort en betalning genom att tillhandahålla:</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="95"/>
<source> - the recipient address</source>
<translation> - mottagaradressen</translation>
@@ -1841,28 +1555,16 @@ Uppgradera eller anslut till en annan nod</translation>
<translation>Klistra in tx-nyckeln</translation>
</message>
<message>
- <source> - the transaction ID,</source>
- <translation type="obsolete"> - överföringens ID,</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="105"/>
<source> - the secret transaction key supplied by the sender</source>
<translation> - den hemliga överföringsnyckeln som tillhandahölls av avsändaren</translation>
</message>
<message>
- <source> - the tx secret key supplied by the sender</source>
- <translation type="obsolete"> - den hemliga tx-nyckeln som tillhandahölls av avsändaren</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="185"/>
<source>Transaction key</source>
<translation>Överföringsnyckel</translation>
</message>
<message>
- <source>CHECK</source>
- <translation type="obsolete">KONTROLLERA</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="216"/>
<source>Check</source>
<translation>Kontrollera</translation>
@@ -1871,8 +1573,9 @@ Uppgradera eller anslut till en annan nod</translation>
<context>
<name>WalletManager</name>
<message>
+ <location filename="../src/libwalletqt/WalletManager.cpp" line="153"/>
<source>Unknown error</source>
- <translation type="vanished">Okänt fel</translation>
+ <translation>Okänt fel</translation>
</message>
</context>
<context>
@@ -1888,10 +1591,6 @@ Uppgradera eller anslut till en annan nod</translation>
<translation>Kickstarta Monero-blockkedjan?</translation>
</message>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="obsolete">Det är väldigt viktigt att skriva ner det, då detta är den enda backup som du kommer behöva för din plånbok. Du kommer att ombedas bekräfta fröet på nästa sida, för att säkerställa att det har skrivits ner korrekt.</translation>
- </message>
- <message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
<translation>Det är väldigt viktigt att skriva ner det, då detta är den enda backup du behöver för din plånbok.</translation>
@@ -1928,14 +1627,6 @@ Uppgradera eller anslut till en annan nod</translation>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="obsolete">En ny plånbok har skapats åt dig</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="obsolete">Detta är minnesfröet på 25 ord för din plånbok</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>Skapa en ny plånbok</translation>
@@ -1996,14 +1687,6 @@ Uppgradera eller anslut till en annan nod</translation>
<translation>Språk</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="obsolete">Kontonamn</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="obsolete">Frö</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
<translation>Plånboksnamn</translation>
@@ -2029,14 +1712,6 @@ Uppgradera eller anslut till en annan nod</translation>
<translation>Höjd att återskapa</translation>
</message>
<message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="obsolete">En översikt av din Monero-konfiguration visas nedan:</translation>
- </message>
- <message>
- <source>You’re all setup!</source>
- <translation type="obsolete">Du är konfiguerad och klar!</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="60"/>
<source>Backup seed</source>
<translation>Frö för återställning</translation>
@@ -2105,14 +1780,6 @@ Uppgradera eller anslut till en annan nod</translation>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="obsolete">Det här är namnet på din plånbok. Du kan ändra det till ett annat namn om du önskar:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="obsolete">Höjd att återskapa</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="245"/>
<source>Your wallet is stored in</source>
<translation>Din plånbok lagras i</translation>
@@ -2161,10 +1828,6 @@ Uppgradera eller anslut till en annan nod</translation>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="obsolete">Det är väldigt viktigt att skriva ner det, då detta är den enda backup som du kommer behöva för din plånbok. Du kommer att ombedas bekräfta fröet på nästa sida, för att säkerställa att det har skrivits ner korrekt.</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation>Ange ditt 25-ords minnesfrö</translation>
@@ -2203,22 +1866,6 @@ Uppgradera eller anslut till en annan nod</translation>
<translation>Öppna en plånbok från fil</translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="obsolete">Det här är min första gång, jag vill skapa ett nytt konto</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="obsolete">Jag vill återskapa mitt konto från mitt 25-ords frö</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="obsolete">Jag vill öppna en plånbok från fil</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="obsolete">Ställ in adress för nod nedan.</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>Testnet</translation>
@@ -2232,28 +1879,6 @@ Uppgradera eller anslut till en annan nod</translation>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="obsolete">Nu när din plånbok har skapats, ange ett lösenord för plånboken</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="obsolete">Nu när din plånbok har återskapats, ange ett lösenord för plånboken</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="obsolete">Notera att detta lösenord inte kan återskapas, och om det glöms bort måste du återskapa plånboken från minnesfröet som du just fick&lt;br/&gt;&lt;br/&gt;
- Ditt lösenord kommer att användas för att skydda din plånbok och för att bekräfta handlingar, så säkerställ att ditt lösenord är tillräckligt säkert.</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="obsolete">Lösenord</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="obsolete">Bekräfta lösenord</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2283,14 +1908,6 @@ Uppgradera eller anslut till en annan nod</translation>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="obsolete">Vi är redo att återskapa ditt konto</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="obsolete">Ange ditt 25-ords privata nyckel</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation>Återskapa plånbok</translation>
@@ -2299,10 +1916,6 @@ Uppgradera eller anslut till en annan nod</translation>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="obsolete">Välkommen</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>Välkommen till Monero!</translation>
@@ -2316,42 +1929,38 @@ Uppgradera eller anslut till en annan nod</translation>
<context>
<name>main</name>
<message>
- <location filename="../main.qml" line="323"/>
- <location filename="../main.qml" line="491"/>
- <location filename="../main.qml" line="503"/>
- <location filename="../main.qml" line="553"/>
- <location filename="../main.qml" line="565"/>
- <location filename="../main.qml" line="607"/>
- <location filename="../main.qml" line="616"/>
- <location filename="../main.qml" line="668"/>
- <location filename="../main.qml" line="706"/>
- <location filename="../main.qml" line="736"/>
+ <location filename="../main.qml" line="329"/>
+ <location filename="../main.qml" line="497"/>
+ <location filename="../main.qml" line="509"/>
+ <location filename="../main.qml" line="559"/>
+ <location filename="../main.qml" line="571"/>
+ <location filename="../main.qml" line="613"/>
+ <location filename="../main.qml" line="622"/>
+ <location filename="../main.qml" line="674"/>
+ <location filename="../main.qml" line="712"/>
+ <location filename="../main.qml" line="742"/>
<source>Error</source>
<translation>Fel</translation>
</message>
<message>
- <location filename="../main.qml" line="324"/>
+ <location filename="../main.qml" line="330"/>
<source>Couldn&apos;t open wallet: </source>
<translation>Kunde inte öppna plånbok:</translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="obsolete">Synkroniserar block %1 / %2</translation>
- </message>
- <message>
- <location filename="../main.qml" line="493"/>
+ <location filename="../main.qml" line="499"/>
<source>Can&apos;t create transaction: Wrong daemon version: </source>
<translation>Kan inte skapa överföring: Felaktig nod-version: </translation>
</message>
<message>
- <location filename="../main.qml" line="504"/>
- <location filename="../main.qml" line="617"/>
+ <location filename="../main.qml" line="510"/>
+ <location filename="../main.qml" line="623"/>
<source>No unmixable outputs to sweep</source>
<translation>Inga omixbara utgångar att städa bort</translation>
</message>
<message>
- <location filename="../main.qml" line="520"/>
- <location filename="../main.qml" line="631"/>
+ <location filename="../main.qml" line="526"/>
+ <location filename="../main.qml" line="637"/>
<source>
Amount: </source>
@@ -2360,22 +1969,14 @@ Amount: </source>
Belopp: </translation>
</message>
<message>
- <source>
-
-Mixin: </source>
- <translation type="obsolete">
-
-Inmixning:</translation>
- </message>
- <message>
- <location filename="../main.qml" line="523"/>
+ <location filename="../main.qml" line="529"/>
<source>
Number of transactions: </source>
<translation>
Antal överföringar: </translation>
</message>
<message>
- <location filename="../main.qml" line="524"/>
+ <location filename="../main.qml" line="530"/>
<source>
Description: </source>
@@ -2384,111 +1985,111 @@ Description: </source>
Beskrivning: </translation>
</message>
<message>
- <location filename="../main.qml" line="554"/>
+ <location filename="../main.qml" line="560"/>
<source>Amount is wrong: expected number from %1 to %2</source>
<translation>Beloppet är felaktigt: borde varit mellan %1 och %2</translation>
</message>
<message>
- <location filename="../main.qml" line="678"/>
+ <location filename="../main.qml" line="684"/>
<source>Money sent successfully: %1 transaction(s) </source>
<translation>Lyckades skicka pengar: %1 överföring(ar)</translation>
</message>
<message>
- <location filename="../main.qml" line="718"/>
+ <location filename="../main.qml" line="724"/>
<source>Payment check</source>
<translation>Betalningskontroll</translation>
</message>
<message>
- <location filename="../main.qml" line="495"/>
- <location filename="../main.qml" line="608"/>
+ <location filename="../main.qml" line="501"/>
+ <location filename="../main.qml" line="614"/>
<source>Can&apos;t create transaction: </source>
<translation>Kan inte skapa överföring: </translation>
</message>
<message>
- <location filename="../main.qml" line="516"/>
- <location filename="../main.qml" line="629"/>
+ <location filename="../main.qml" line="522"/>
+ <location filename="../main.qml" line="635"/>
<source>Confirmation</source>
<translation>Bekräftelse</translation>
</message>
<message>
- <location filename="../main.qml" line="518"/>
+ <location filename="../main.qml" line="524"/>
<source>
Address: </source>
<translation>
Adress: </translation>
</message>
<message>
- <location filename="../main.qml" line="519"/>
+ <location filename="../main.qml" line="525"/>
<source>
Payment ID: </source>
<translation>
Betalnings-ID: </translation>
</message>
<message>
- <location filename="../main.qml" line="521"/>
- <location filename="../main.qml" line="632"/>
+ <location filename="../main.qml" line="527"/>
+ <location filename="../main.qml" line="638"/>
<source>
Fee: </source>
<translation>
Avgift: </translation>
</message>
<message>
- <location filename="../main.qml" line="355"/>
+ <location filename="../main.qml" line="361"/>
<source>Unlocked balance (~%1 min)</source>
<translation>Olåst saldo (~%1 min)</translation>
</message>
<message>
- <location filename="../main.qml" line="566"/>
+ <location filename="../main.qml" line="572"/>
<source>Insufficient funds. Unlocked balance: %1</source>
<translation>Otillräckliga tillgångar. Olåst saldo: %1</translation>
</message>
<message>
- <location filename="../main.qml" line="669"/>
+ <location filename="../main.qml" line="675"/>
<source>Couldn&apos;t send the money: </source>
<translation>Kunde inte skicka pengar: </translation>
</message>
<message>
- <location filename="../main.qml" line="672"/>
+ <location filename="../main.qml" line="678"/>
<source>Information</source>
<translation>Information</translation>
</message>
<message>
- <location filename="../main.qml" line="413"/>
+ <location filename="../main.qml" line="419"/>
<source>Waiting for daemon to stop...</source>
<translation>Väntar på att noden ska avsluta...</translation>
</message>
<message>
- <location filename="../main.qml" line="438"/>
+ <location filename="../main.qml" line="444"/>
<source>Daemon failed to start</source>
<translation>Noden misslyckades att starta</translation>
</message>
<message>
- <location filename="../main.qml" line="439"/>
+ <location filename="../main.qml" line="445"/>
<source>Please check your wallet and daemon log for errors. You can also try to start %1 manually.</source>
<translation>Kontrollera din plånbok och nod-logg efter fel. Du kan också försöka starta %1 manuellt.</translation>
</message>
<message>
- <location filename="../main.qml" line="978"/>
+ <location filename="../main.qml" line="985"/>
<source>Please wait...</source>
<translation>Vänta...</translation>
</message>
<message>
- <location filename="../main.qml" line="1002"/>
+ <location filename="../main.qml" line="1009"/>
<source>Program setup wizard</source>
<translation>Konfigurationsguide</translation>
</message>
<message>
- <location filename="../main.qml" line="1017"/>
+ <location filename="../main.qml" line="1024"/>
<source>Monero</source>
<translation>Monero</translation>
</message>
<message>
- <location filename="../main.qml" line="1065"/>
+ <location filename="../main.qml" line="1072"/>
<source>send to the same destination</source>
<translation>skicka till samma mottagare</translation>
</message>
<message>
- <location filename="../main.qml" line="522"/>
+ <location filename="../main.qml" line="528"/>
<source>
Ringsize: </source>
@@ -2497,79 +2098,75 @@ Ringsize: </source>
Ringstorlek:</translation>
</message>
<message>
- <location filename="../main.qml" line="723"/>
+ <location filename="../main.qml" line="729"/>
<source>This address received %1 monero, but the transaction is not yet mined</source>
<translation>Denna adress tog emot %1 monero, men överföringen har ännu inte bekräftats</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="obsolete">Denna adress tog emot %1 monero, med %2 bekräftelser</translation>
- </message>
- <message>
- <location filename="../main.qml" line="732"/>
+ <location filename="../main.qml" line="738"/>
<source>This address received nothing</source>
<translation>Denna adress tog emot ingenting</translation>
</message>
<message>
- <location filename="../main.qml" line="678"/>
+ <location filename="../main.qml" line="684"/>
<source>Transaction saved to file: %1</source>
<translation>Överföring sparad till fil: %1</translation>
</message>
<message>
- <location filename="../main.qml" line="355"/>
+ <location filename="../main.qml" line="361"/>
<source>Unlocked balance (waiting for block)</source>
<translation>Olåst saldo (väntar på block)</translation>
</message>
<message>
- <location filename="../main.qml" line="355"/>
+ <location filename="../main.qml" line="361"/>
<source>Unlocked balance</source>
<translation>Olåst saldo</translation>
</message>
<message>
- <location filename="../main.qml" line="407"/>
+ <location filename="../main.qml" line="413"/>
<source>Waiting for daemon to start...</source>
<translation>Vänta på att nod startar...</translation>
</message>
<message>
- <location filename="../main.qml" line="517"/>
- <location filename="../main.qml" line="630"/>
+ <location filename="../main.qml" line="523"/>
+ <location filename="../main.qml" line="636"/>
<source>Please confirm transaction:
</source>
<translation>Bekräfta överföring:
</translation>
</message>
<message>
- <location filename="../main.qml" line="728"/>
+ <location filename="../main.qml" line="734"/>
<source>This address received %1 monero, with %2 confirmation(s).</source>
<translation>Denna adress tog emot %1 monero, med %2 bekräftelse(r).</translation>
</message>
<message>
- <location filename="../main.qml" line="744"/>
+ <location filename="../main.qml" line="750"/>
<source>Balance (syncing)</source>
<translation>Saldo (synkroniserar)</translation>
</message>
<message>
- <location filename="../main.qml" line="744"/>
+ <location filename="../main.qml" line="750"/>
<source>Balance</source>
<translation>Saldo</translation>
</message>
<message>
- <location filename="../main.qml" line="1317"/>
+ <location filename="../main.qml" line="1324"/>
<source>Daemon is running</source>
<translation>Nod körs</translation>
</message>
<message>
- <location filename="../main.qml" line="1318"/>
+ <location filename="../main.qml" line="1325"/>
<source>Daemon will still be running in background when GUI is closed.</source>
<translation>Noden kommer fortfarande att köras i bakgrunden när applikationen stängts ner.</translation>
</message>
<message>
- <location filename="../main.qml" line="1320"/>
+ <location filename="../main.qml" line="1327"/>
<source>Stop daemon</source>
<translation>Stoppa nod</translation>
</message>
<message>
- <location filename="../main.qml" line="1355"/>
+ <location filename="../main.qml" line="1361"/>
<source>New version of monero-wallet-gui is available: %1&lt;br&gt;%2</source>
<translation>Ny version av monero-wallet-gui finns tillgänglig: %1&lt;br&gt;%2</translation>
</message>
diff --git a/translations/monero-core_zh-cn.ts b/translations/monero-core_zh-cn.ts
index f6a5b81c..66da15ed 100644
--- a/translations/monero-core_zh-cn.ts
+++ b/translations/monero-core_zh-cn.ts
@@ -14,86 +14,55 @@
<translation>地址</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>二维码</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>付款ID &lt;font size=&apos;2&apos;&gt;(可选填)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;付款ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;在地址簿里&lt;br/&gt;用以区分的用户名&lt;br/&gt;这不是付款时&lt;br/&gt;传送的信息</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>粘贴上16进制字符串的地址</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>描述 &lt;font size=&apos;2&apos;&gt;(选填)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>给予这个地址一个名称或描述</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>新增</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>错误</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>无效的地址</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>无法新增地址</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">描述 &lt;font size=&apos;2&apos;&gt;(本地数据)&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">新增</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">付款ID</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">描述</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -163,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">同步区块中 %1/%2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="vanished">正在同步区块</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -227,68 +185,38 @@
<translation>交易纪录查询</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;已选择的付款总金额&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>输入查询条件...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>查询</translation>
</message>
<message>
- <source>Incremental search</source>
- <translation type="vanished">新增查询条件</translation>
- </message>
- <message>
- <source>Search transfers for a given string</source>
- <translation type="vanished">以关键词查询付款纪录</translation>
- </message>
- <message>
- <source>Type search string</source>
- <translation type="vanished">输入查询关键词</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>日期从</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>到</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">查询</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>高级查询</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>交易类型</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>金额从</translation>
</message>
@@ -375,46 +303,32 @@
<translation>余额</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
<source>Unlocked balance</source>
<translation>可用余额</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
<source>Send</source>
<translation>付款</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>收款</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>R</translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="vanished">验证交易</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>历史纪录</translation>
</message>
@@ -424,67 +338,67 @@
<translation>连接到测试网络</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>地址簿</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>高级功能</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>挖矿</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>交易检查</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>签名/验证</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>S</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>钱包设置</translation>
</message>
@@ -492,14 +406,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="vanished">总余额:</translation>
- </message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="vanished">可用余额:</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>总余额</translation>
@@ -523,26 +429,6 @@
<translation>(仅限于使用本地区块同步程序)</translation>
</message>
<message>
- <source>Mining helps the Monero network build resilience.&lt;br&gt;</source>
- <translation type="vanished">挖矿可增进Monero网络的安全性&lt;br&gt;</translation>
- </message>
- <message>
- <source>The more mining is done, the harder it is to attack the network.&lt;br&gt;</source>
- <translation type="vanished">只要越多使用者在挖矿,Monero 网络就会越难以被攻击&lt;br&gt;</translation>
- </message>
- <message>
- <source>Mining also gives you a small chance to earn some Monero.&lt;br&gt;</source>
- <translation type="vanished">挖矿同时能让您有机会赚取额外的门罗币.&lt;br&gt;</translation>
- </message>
- <message>
- <source>Your computer will search for Monero block solutions.&lt;br&gt;</source>
- <translation type="vanished">您的计算机将被用来寻找 Monero 区块的解答.&lt;br&gt;</translation>
- </message>
- <message>
- <source>If you find a block, you will get the associated reward.&lt;br&gt;</source>
- <translation type="vanished">每当您找到一个区块的解答,您即可以获得其附带的门罗币奖励&lt;br&gt;</translation>
- </message>
- <message>
<location filename="../pages/Mining.qml" line="86"/>
<source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
<translation>挖矿可增进 Monero 网络的安全性,只要越多使用者在挖矿,Monero 网络就会越难以被攻击。&lt;br&gt; &lt;br&gt;挖矿同时能让您有机会赚取额外的门罗币,因为在挖矿时,您的计算机将被用来寻找 Monero 区块的解答,每当您找到一个区块的解答,您即可以获得其附带的门罗币奖励,祝您好运!</translation>
@@ -685,18 +571,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">低</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">中</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">高</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation>低</translation>
@@ -813,10 +687,6 @@
<translation>欲接收的金额</translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">只读钱包的整合地址会显示在这</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="338"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 追踪中 &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
@@ -852,10 +722,6 @@
<translation>付款ID</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="vanished">16或64个十六进制字母</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="254"/>
<source>Generate</source>
<translation>产生</translation>
@@ -910,27 +776,11 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="vanished">点选显示种子码</translation>
- </message>
- <message>
- <source>Mnemonic seed: </source>
- <translation type="vanished">辅助记忆种子码:</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">请注意这是唯一需要备份的钱包信息,请一定要抄写下来。</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="103"/>
<source>Create view only wallet</source>
<translation>创建只读钱包(view only wallet)</translation>
</message>
<message>
- <source>Show seed</source>
- <translation type="vanished">显示种子码</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="193"/>
<source>Manage daemon</source>
<translation>管理区块同步程序(daemon)</translation>
@@ -1102,10 +952,6 @@
<translation type="unfinished">取消</translation>
</message>
<message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">钱包辅助记忆种子码</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="171"/>
<location filename="../pages/Settings.qml" line="539"/>
<source>Error</source>
@@ -1147,10 +993,6 @@
<translation>管理钱包</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="vanished">关闭当前的钱包然后启动设置程序</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>关闭钱包</translation>
@@ -1228,20 +1070,12 @@
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 签名来源之地址&lt;font size=&apos;2&apos;&gt; ( 粘帖上或从&lt;/font&gt; &lt;a href=&apos;#&apos;&gt;地址簿&lt;/a&gt; &lt;font size=&apos;2&apos;&gt; 中选择 )&lt;/font&gt;</translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="vanished">签名</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>或文件:</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="vanished">选择文件</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>要签名信息的文件名</translation>
@@ -1265,18 +1099,10 @@
<translation>欲验证的信息</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="vanished">验证</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>附带签名信息的文件名</translation>
</message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 签名的地址 &lt;font size=&apos;2&apos;&gt; ( 输入或从簿选择 &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; 簿选择 )&lt;/font&gt;</translation>
- </message>
</context>
<context>
<name>StandardDialog</name>
@@ -1310,16 +1136,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>全部</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>付款</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>收款</translation>
</message>
@@ -1332,10 +1178,6 @@
<translation>&lt;b&gt;复制至剪贴簿&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;付款到这个地址&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
<translation type="unfinished"></translation>
@@ -1377,18 +1219,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">低</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">中</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">高</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation>正常</translation>
@@ -1432,251 +1262,227 @@
<translation>交易优先级</translation>
</message>
<message>
- <source>all</source>
- <translation type="vanished">全部</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>低 (1倍手续费)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>中 (20倍手续费)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>高 (166倍手续费)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 地址&lt;font size=&apos;2&apos;&gt; ( 粘帖上或从&lt;/font&gt; &lt;a href=&apos;#&apos;&gt;地址簿&lt;/a&gt; &lt;font size=&apos;2&apos;&gt; 中选择 )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>二维码</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
<translation>解析</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>无效的 OpenAlias 地址</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>已找到地址,但无法验证其 DNSSEC 的签名,此地址有可能受到欺骗攻击的风险</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>无法找到有效地址,但无法验证其 DNSSEC 的签名,此地址有可能受到欺骗攻击的风险</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>内部错误</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>没有找到地址</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>描述 &lt;font size=&apos;2&apos;&gt;( 选填 )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>储存至本机钱包纪录</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>付款</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>显示高级选项</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>去除无法混淆的金额</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>创建交易文件(tx file)</translation>
</message>
<message>
- <source>sign tx file</source>
- <translation type="vanished">签名交易文件(tx file)</translation>
- </message>
- <message>
- <source>submit tx file</source>
- <translation type="vanished">提交交易文件(tx file)</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="175"/>
<source>All</source>
<translation>全部</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>签名一个交易文件</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>提交交易文件</translation>
</message>
<message>
- <source>Rescan spent</source>
- <translation type="vanished">重新扫描付款状态</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>错误</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">错误: </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>信息</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">重新扫描付款成功</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>请选择一个文件</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>无法加载未签名的交易: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>
交易数量: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>
交易 #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>
接收方: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>
付款ID: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>
金额: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>
手续费: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>
环签名大小: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>确认</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>无法提交交易: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>付款成功</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>钱包没有与区块同步程序(daemon)建立连接。</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>已连接的区块同步程序与此GUI钱包不兼容
请升级区块同步程序或是连接至另一个区块同步程序</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>正在等待区块同步程序完成同步</translation>
</message>
@@ -1686,80 +1492,24 @@ Please upgrade or connect to another daemon</source>
<translation></translation>
</message>
<message>
- <source>or ALL</source>
- <translation type="vanished">或发送全部余额</translation>
- </message>
- <message>
- <source>LOW</source>
- <translation type="vanished">低</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">中</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">高</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">隐私等级</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>交易所需的花费</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 地址 &lt;font size=&apos;2&apos;&gt; ( 输入地址或从 &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; 簿选择 )&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>付款ID &lt;font size=&apos;2&apos;&gt;(可不填)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16或64个十六进制字符</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">描述 &lt;font size=&apos;2&apos;&gt;( 选填,将储存在收款地址簿 )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">付款</translation>
- </message>
- <message>
- <source>SWEEP UNMIXABLE</source>
- <translation type="vanished">去除无法混淆的金额</translation>
- </message>
</context>
<context>
<name>TxKey</name>
<message>
- <source>You can verify that a third party made a payment by supplying:</source>
- <translation type="vanished">您可以在此验证第三方的支付,需提供:</translation>
- </message>
- <message>
- <source> - the recipient address,</source>
- <translation type="vanished"> - 接受方的地址,</translation>
- </message>
- <message>
- <source> - the transaction ID,</source>
- <translation type="vanished"> - 该项交易的交易ID</translation>
- </message>
- <message>
- <source> - the tx secret key supplied by the sender</source>
- <translation type="vanished"> - 支付方提供的 tx 密钥</translation>
- </message>
- <message>
- <source>If a payment was made up of several transactions, each transaction must be checked, and the results added</source>
- <translation type="vanished">如果该支付是同时包含数个交易,每一项交易都必须被确认和合并结果</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="90"/>
<source>Verify that a third party made a payment by supplying:</source>
<translation>提供以下信息来验证第三方支付的款项:</translation>
@@ -1815,22 +1565,10 @@ Please upgrade or connect to another daemon</source>
<translation>检查</translation>
</message>
<message>
- <source>Transaction ID here</source>
- <translation type="vanished">输入交易ID</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="185"/>
<source>Transaction key</source>
<translation>交易密钥</translation>
</message>
- <message>
- <source>Transaction key here</source>
- <translation type="vanished">输入交易密钥</translation>
- </message>
- <message>
- <source>CHECK</source>
- <translation type="vanished">检查</translation>
- </message>
</context>
<context>
<name>WizardConfigure</name>
@@ -1845,10 +1583,6 @@ Please upgrade or connect to another daemon</source>
<translation>开始同步 Monero 区块链?</translation>
</message>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">这是唯一需要备份的钱包信息,请一定要抄写下来。你将会在下一个步骤被要求确认这份种子码以确保你有妥善备份它。</translation>
- </message>
- <message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
<translation>请注意这是唯一需要备份的钱包信息,请一定要抄写下来。</translation>
@@ -1885,14 +1619,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">已为您创建一个新的钱包</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">这是钱包的25个辅助记忆种子码</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>创建一个新的钱包</translation>
@@ -1953,14 +1679,6 @@ Please upgrade or connect to another daemon</source>
<translation>语言</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="vanished">账户名称</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="vanished">种子码</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
<translation>钱包名称</translation>
@@ -2005,14 +1723,6 @@ Please upgrade or connect to another daemon</source>
<source>You’re all set up!</source>
<translation>您已完成所有设置!</translation>
</message>
- <message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">以下是您的 Monero 钱包设置总览:</translation>
- </message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">您已完成所有设置!</translation>
- </message>
</context>
<context>
<name>WizardMain</name>
@@ -2062,14 +1772,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">这是您的钱包名称,您也可以自己更改成想要的名称:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="vanished">恢复区块高度</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation>钱包名称</translation>
@@ -2118,10 +1820,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">这是您唯一需要备份的钱包信息,请一定要抄写下来。您将会在下一个后被要求确认这份种子码以确保你有妥善备份它。</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation>请输入您的 25个种子码(seed)</translation>
@@ -2165,22 +1863,6 @@ Please upgrade or connect to another daemon</source>
<translation>使用远程区块同步程序的IP或网址 (选填)</translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="vanished">这是我第一次使用,我想要创建一个新的账户</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="vanished">我想要从一组25个种子码恢复我的账户</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="vanished">我想要从文件打开钱包</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="vanished">请在下面设置区块链同步程序的位置。</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>连接到测试网络</translation>
@@ -2189,28 +1871,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">您的新钱包已被创建,请为它设置密码</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">您的钱包已被成功恢复,请为它设置密码</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">请注意:这个密码无法被恢复,如果忘记了密码,您将需要用刚刚获得的辅助记忆种子码重新恢复您的钱包&lt;br/&gt;&lt;br/&gt;
- 密码将会用来保护您的钱包或确认重要的动作,所以请确认您的密码强度足够安全。</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="vanished">密码</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="vanished">确认密码</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2223,12 +1883,6 @@ Please upgrade or connect to another daemon</source>
<translation>注意: 这个密码无法被恢复,如果您忘记了这个密码,则必须使用25个种子码恢复您的钱包。&lt;br/&gt;&lt;br/&gt;
&lt;b&gt;请输入足够强度的密码&lt;/b&gt; (使用字母, 数字或别的符号):</translation>
</message>
- <message>
- <source>Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
- <translation type="vanished">注意: 这个密码无法被恢复,如果您忘记了这个密码,则必须使用25个种子码恢复您的钱包。&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;请输入足够强度的密码&lt;/b&gt; (使用字母, 数字或别的符号):</translation>
- </message>
</context>
<context>
<name>WizardPasswordUI</name>
@@ -2246,14 +1900,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">已准备好恢复您的钱包</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">请输入您的 25个种子码</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation>恢复钱包</translation>
@@ -2262,10 +1908,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">欢迎</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>欢迎使用 Monero!</translation>
@@ -2298,10 +1940,6 @@ Please upgrade or connect to another daemon</source>
<translation>无法打开这个钱包:</translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="vanished">同步区块中 %1 / %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="355"/>
<source>Unlocked balance (waiting for block)</source>
<translation>可用余额 (等待区块确认中)</translation>
@@ -2433,14 +2071,6 @@ Ringsize: </source>
<translation>有可用的新版本 Monero 钱包: %1&lt;br&gt;%2</translation>
</message>
<message>
- <source>
-
-Mixin: </source>
- <translation type="vanished">
-
-混淆数量: </translation>
- </message>
- <message>
<location filename="../main.qml" line="523"/>
<source>
Number of transactions: </source>
@@ -2497,10 +2127,6 @@ Description: </source>
<translation>这个地址已收到 %1 monero币,但这笔交易尚未被矿工确认</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="vanished">这个地址已收到 %1 monero币,并已经过 %2 次的确认</translation>
- </message>
- <message>
<location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>这个地址没有收到款项</translation>
diff --git a/translations/monero-core_zh-tw.ts b/translations/monero-core_zh-tw.ts
index 4483ff9d..bb752ea7 100644
--- a/translations/monero-core_zh-tw.ts
+++ b/translations/monero-core_zh-tw.ts
@@ -14,86 +14,55 @@
<translation>位址</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="63"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="72"/>
+ <location filename="../pages/AddressBook.qml" line="71"/>
<source>QRCODE</source>
<translation>QR碼</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="94"/>
+ <location filename="../pages/AddressBook.qml" line="93"/>
<source>4...</source>
<translation>4...</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="103"/>
+ <location filename="../pages/AddressBook.qml" line="102"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>付款 ID &lt;font size=&apos;2&apos;&gt;(可選填)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="105"/>
- <source>&lt;b&gt;Payment ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;A unique user name used in&lt;br/&gt;the address book. It is not a&lt;br/&gt;transfer of information sent&lt;br/&gt;during the transfer</source>
- <translation>&lt;b&gt;付款 ID&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;在位址簿裡&lt;br/&gt;用以區分的使用者名稱&lt;br/&gt;這不是付款時&lt;br/&gt;傳送的資訊</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="117"/>
+ <location filename="../pages/AddressBook.qml" line="114"/>
<source>Paste 64 hexadecimal characters</source>
<translation>貼上16進位字元之位址</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="126"/>
+ <location filename="../pages/AddressBook.qml" line="123"/>
<source>Description &lt;font size=&apos;2&apos;&gt;(Optional)&lt;/font&gt;</source>
<translation>標記 &lt;font size=&apos;2&apos;&gt;(選填)&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="139"/>
+ <location filename="../pages/AddressBook.qml" line="135"/>
<source>Give this entry a name or description</source>
<translation>給予這個地址一個名稱或標記</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="155"/>
+ <location filename="../pages/AddressBook.qml" line="151"/>
<source>Add</source>
<translation>新增</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="160"/>
+ <location filename="../pages/AddressBook.qml" line="156"/>
<source>Error</source>
<translation>錯誤</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="163"/>
+ <location filename="../pages/AddressBook.qml" line="159"/>
<source>Invalid address</source>
<translation>無效的位址</translation>
</message>
<message>
- <location filename="../pages/AddressBook.qml" line="167"/>
+ <location filename="../pages/AddressBook.qml" line="163"/>
<source>Can&apos;t create entry</source>
<translation>無法新增位址</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;(Local database)&lt;/font&gt;</source>
- <translation type="vanished">描述 &lt;font size=&apos;2&apos;&gt;(本地資訊)&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/AddressBook.qml" line="128"/>
- <source>&lt;b&gt;Tip test test&lt;/b&gt;&lt;br/&gt;&lt;br/&gt;test line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <source>ADD</source>
- <translation type="vanished">新增</translation>
- </message>
- <message>
- <source>Payment ID</source>
- <translation type="vanished">付款 ID</translation>
- </message>
- <message>
- <source>Description</source>
- <translation type="vanished">標記</translation>
- </message>
</context>
<context>
<name>AddressBookTable</name>
@@ -163,17 +132,6 @@
</message>
</context>
<context>
- <name>DaemonProgress</name>
- <message>
- <source>Synchronizing blocks %1/%2</source>
- <translation type="vanished">同步區塊中 %1 / %2</translation>
- </message>
- <message>
- <source>Synchronizing blocks</source>
- <translation type="vanished">同步區塊中</translation>
- </message>
-</context>
-<context>
<name>Dashboard</name>
<message>
<location filename="../pages/Dashboard.qml" line="57"/>
@@ -227,68 +185,38 @@
<translation>交易紀錄篩選</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="147"/>
- <source>&lt;b&gt;Total amount of selected payments&lt;/b&gt;</source>
- <translation>&lt;b&gt;已選擇的付款總金額&lt;/b&gt;</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="185"/>
+ <location filename="../pages/History.qml" line="183"/>
<source>Type for incremental search...</source>
<translation>輸入篩選條件...</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="281"/>
+ <location filename="../pages/History.qml" line="276"/>
<source>Filter</source>
<translation>篩選</translation>
</message>
<message>
- <source>Incremental search</source>
- <translation type="vanished">新增搜尋條件</translation>
- </message>
- <message>
- <source>Search transfers for a given string</source>
- <translation type="vanished">以關鍵字搜尋付款紀錄</translation>
- </message>
- <message>
- <source>Type search string</source>
- <translation type="vanished">輸入搜尋關鍵字</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="226"/>
+ <location filename="../pages/History.qml" line="223"/>
<source>Date from</source>
<translation>日期從</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="228"/>
- <location filename="../pages/History.qml" line="255"/>
- <location filename="../pages/History.qml" line="341"/>
- <location filename="../pages/History.qml" line="378"/>
- <location filename="../pages/History.qml" line="412"/>
- <source>&lt;b&gt;Tip tekst test&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="253"/>
- <location filename="../pages/History.qml" line="410"/>
+ <location filename="../pages/History.qml" line="249"/>
+ <location filename="../pages/History.qml" line="403"/>
<source>To</source>
<translation>到</translation>
</message>
<message>
- <source>FILTER</source>
- <translation type="vanished">篩選</translation>
- </message>
- <message>
- <location filename="../pages/History.qml" line="319"/>
+ <location filename="../pages/History.qml" line="314"/>
<source>Advanced filtering</source>
<translation>進階篩選</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="339"/>
+ <location filename="../pages/History.qml" line="334"/>
<source>Type of transaction</source>
<translation>交易種類</translation>
</message>
<message>
- <location filename="../pages/History.qml" line="376"/>
+ <location filename="../pages/History.qml" line="370"/>
<source>Amount from</source>
<translation>金額從</translation>
</message>
@@ -375,46 +303,42 @@
<translation>餘額</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="135"/>
- <source>Test tip 1&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="178"/>
+ <location filename="../LeftPanel.qml" line="177"/>
+
+
+
+
+
<source>Unlocked balance</source>
<translation>總餘額</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="181"/>
- <source>Test tip 2&lt;br/&gt;&lt;br/&gt;line 2</source>
- <translation type="unfinished"></translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="281"/>
+ <location filename="../LeftPanel.qml" line="279"/>
+
+
+
+
+
<source>Send</source>
<translation>付款</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="331"/>
+ <location filename="../LeftPanel.qml" line="329"/>
<source>Receive</source>
<translation>收款</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="332"/>
+ <location filename="../LeftPanel.qml" line="330"/>
<source>R</source>
<translation>R</translation>
</message>
<message>
- <source>Verify payment</source>
- <translation type="vanished">確認交易</translation>
- </message>
- <message>
- <location filename="../LeftPanel.qml" line="425"/>
+ <location filename="../LeftPanel.qml" line="423"/>
<source>K</source>
<translation>K</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="355"/>
+ <location filename="../LeftPanel.qml" line="353"/>
<source>History</source>
<translation>歷史紀錄</translation>
</message>
@@ -424,67 +348,67 @@
<translation>連接到測試網路</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="306"/>
+ <location filename="../LeftPanel.qml" line="304"/>
<source>Address book</source>
<translation>位址簿</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="307"/>
+ <location filename="../LeftPanel.qml" line="305"/>
<source>B</source>
<translation>B</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="356"/>
+ <location filename="../LeftPanel.qml" line="354"/>
<source>H</source>
<translation>H</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="378"/>
+ <location filename="../LeftPanel.qml" line="376"/>
<source>Advanced</source>
<translation>進階功能</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="379"/>
+ <location filename="../LeftPanel.qml" line="377"/>
<source>D</source>
<translation>D</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="400"/>
+ <location filename="../LeftPanel.qml" line="398"/>
<source>Mining</source>
<translation>挖礦</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="401"/>
+ <location filename="../LeftPanel.qml" line="399"/>
<source>M</source>
<translation>M</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="424"/>
+ <location filename="../LeftPanel.qml" line="422"/>
<source>Check payment</source>
<translation>交易檢查</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="448"/>
+ <location filename="../LeftPanel.qml" line="446"/>
<source>Sign/verify</source>
<translation>簽署 / 驗證</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="472"/>
+ <location filename="../LeftPanel.qml" line="470"/>
<source>E</source>
<translation>E</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="282"/>
+ <location filename="../LeftPanel.qml" line="280"/>
<source>S</source>
<translation>S</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="449"/>
+ <location filename="../LeftPanel.qml" line="447"/>
<source>I</source>
<translation>I</translation>
</message>
<message>
- <location filename="../LeftPanel.qml" line="471"/>
+ <location filename="../LeftPanel.qml" line="469"/>
<source>Settings</source>
<translation>錢包設定</translation>
</message>
@@ -492,14 +416,6 @@
<context>
<name>MiddlePanel</name>
<message>
- <source>Balance:</source>
- <translation type="vanished">總餘額:</translation>
- </message>
- <message>
- <source>Unlocked Balance:</source>
- <translation type="vanished">可用餘額:</translation>
- </message>
- <message>
<location filename="../MiddlePanel.qml" line="46"/>
<source>Balance</source>
<translation>總餘額</translation>
@@ -523,26 +439,6 @@
<translation>(僅限於使用本地端區塊同步程式)</translation>
</message>
<message>
- <source>Mining helps the Monero network build resilience.&lt;br&gt;</source>
- <translation type="vanished">挖礦可增進 Monero 網路的安全性&lt;br&gt;</translation>
- </message>
- <message>
- <source>The more mining is done, the harder it is to attack the network.&lt;br&gt;</source>
- <translation type="vanished">只要越多使用者在挖礦,Monero 網路就會越難以被攻擊&lt;br&gt;</translation>
- </message>
- <message>
- <source>Mining also gives you a small chance to earn some Monero.&lt;br&gt;</source>
- <translation type="vanished">挖礦也同時提供您機會賺取一些額外的 Monero 幣&lt;br&gt;</translation>
- </message>
- <message>
- <source>Your computer will search for Monero block solutions.&lt;br&gt;</source>
- <translation type="vanished">您的電腦將被用來尋找 Monero 區塊的解答.&lt;br&gt;</translation>
- </message>
- <message>
- <source>If you find a block, you will get the associated reward.&lt;br&gt;</source>
- <translation type="vanished">每當您找到一個區塊的解答,您即可以獲得其附帶的獎勵金&lt;br&gt;</translation>
- </message>
- <message>
<location filename="../pages/Mining.qml" line="86"/>
<source>Mining with your computer helps strengthen the Monero network. The more that people mine, the harder it is for the network to be attacked, and every little bit helps.&lt;br&gt; &lt;br&gt;Mining also gives you a small chance to earn some Monero. Your computer will create hashes looking for block solutions. If you find a block, you will get the associated reward. Good luck!</source>
<translation>挖礦可增進 Monero 網路的安全性,只要越多使用者在挖礦,Monero 網路就會越難以被攻擊。&lt;br&gt; &lt;br&gt;挖礦也同時提供您機會賺取一些額外的 Monero 幣,因為在挖礦時,您的電腦將被用來尋找 Monero 區塊的解答,每當您找到一個區塊的解答,您即可以獲得其附帶的獎勵金,祝您好運!</translation>
@@ -623,7 +519,7 @@
<message>
<location filename="../components/MobileHeader.qml" line="94"/>
<source>Unlocked Balance:</source>
- <translation type="unfinished">可用餘額:</translation>
+ <translation>可用餘額:</translation>
</message>
</context>
<context>
@@ -685,18 +581,6 @@
<context>
<name>PrivacyLevelSmall</name>
<message>
- <source>LOW</source>
- <translation type="vanished">低</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">中</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">高</translation>
- </message>
- <message>
<location filename="../components/PrivacyLevelSmall.qml" line="100"/>
<source>Low</source>
<translation>低</translation>
@@ -813,10 +697,6 @@
<translation>欲接收的金額</translation>
</message>
<message>
- <source>ReadOnly wallet integrated address displayed here</source>
- <translation type="vanished">唯讀錢包的整合位址會顯示在這</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="338"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Tracking &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 追蹤中 &lt;font size=&apos;2&apos;&gt; (&lt;/font&gt;&lt;a href=&apos;#&apos;&gt;help&lt;/a&gt;&lt;font size=&apos;2&apos;&gt;)&lt;/font&gt;</translation>
@@ -852,10 +732,6 @@
<translation>付款 ID</translation>
</message>
<message>
- <source>16 or 64 hexadecimal characters</source>
- <translation type="vanished">16 或 64 十六進位字母</translation>
- </message>
- <message>
<location filename="../pages/Receive.qml" line="254"/>
<source>Generate</source>
<translation>產生</translation>
@@ -910,27 +786,11 @@
<context>
<name>Settings</name>
<message>
- <source>Click button to show seed</source>
- <translation type="vanished">點選顯示種子碼</translation>
- </message>
- <message>
- <source>Mnemonic seed: </source>
- <translation type="vanished">輔助記憶種子碼:</translation>
- </message>
- <message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
- <translation type="vanished">請注意這是唯一需要備份的錢包資訊,請一定要抄寫下來。</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="103"/>
<source>Create view only wallet</source>
<translation>創建唯讀錢包(view only wallet)</translation>
</message>
<message>
- <source>Show seed</source>
- <translation type="vanished">顯示種子碼</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="193"/>
<source>Manage daemon</source>
<translation>管理區塊同步程式(daemon)</translation>
@@ -964,32 +824,32 @@
<message>
<location filename="../pages/Settings.qml" line="120"/>
<source>Show seed &amp; keys</source>
- <translation type="unfinished"></translation>
+ <translation>顯示種子碼與金鑰</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="163"/>
<source>Rescan wallet balance</source>
- <translation type="unfinished"></translation>
+ <translation>重新掃描錢包餘額</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="172"/>
<source>Error: </source>
- <translation type="unfinished">錯誤: </translation>
+ <translation>錯誤: </translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="177"/>
<source>Information</source>
- <translation type="unfinished">資訊</translation>
+ <translation>資訊</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="178"/>
<source>Sucessfully rescanned spent outputs</source>
- <translation type="unfinished">掃描付款狀態的結果</translation>
+ <translation>已成功重新掃描交易輸出</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="257"/>
<source>Blockchain location</source>
- <translation type="unfinished"></translation>
+ <translation>區塊鏈檔案儲存位置</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="306"/>
@@ -1069,41 +929,37 @@
<message>
<location filename="../pages/Settings.qml" line="573"/>
<source>Please choose a folder</source>
- <translation type="unfinished"></translation>
+ <translation>請選擇一個資料夾</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="582"/>
<source>Warning</source>
- <translation type="unfinished"></translation>
+ <translation>警告</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="585"/>
<source>Error: Filesystem is read only</source>
- <translation type="unfinished"></translation>
+ <translation>錯誤: 沒有寫入權限</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="589"/>
<source>Warning: There&apos;s only %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
- <translation type="unfinished"></translation>
+ <translation>警告: 此裝置剩餘 %1 GB 可用裝置,區塊鏈需要約 %2 GB 存放空間。</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="591"/>
<source>Note: There&apos;s %1 GB available on the device. Blockchain requires ~%2 GB of data.</source>
- <translation type="unfinished"></translation>
+ <translation>注意: 此裝置尚有 %1 GB可用空間。 區塊鏈需要約 %2 GB的存放空間。</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="595"/>
<source>Note: lmdb folder not found. A new folder will be created.</source>
- <translation type="unfinished"></translation>
+ <translation>注意: 找不到lmdb資料夾。 將會建立一個新的。</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="600"/>
<source>Cancel</source>
- <translation type="unfinished">取消</translation>
- </message>
- <message>
- <source>Wallet mnemonic seed</source>
- <translation type="vanished">錢包輔助記憶種子碼</translation>
+ <translation>取消</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="171"/>
@@ -1114,27 +970,27 @@
<message>
<location filename="../pages/Settings.qml" line="525"/>
<source>Wallet seed &amp; keys</source>
- <translation type="unfinished"></translation>
+ <translation>錢包種子碼與金鑰</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="527"/>
<source>Secret view key</source>
- <translation type="unfinished"></translation>
+ <translation>查看私鑰 (Secret view key)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="528"/>
<source>Public view key</source>
- <translation type="unfinished"></translation>
+ <translation>查看公鑰 (Public view key)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="529"/>
<source>Secret spend key</source>
- <translation type="unfinished"></translation>
+ <translation>花費私鑰 (Secret spend key)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="530"/>
<source>Public spend key</source>
- <translation type="unfinished"></translation>
+ <translation>花費公鑰 (Public spend key)</translation>
</message>
<message>
<location filename="../pages/Settings.qml" line="540"/>
@@ -1147,10 +1003,6 @@
<translation>管理錢包</translation>
</message>
<message>
- <source>Close current wallet and open wizard</source>
- <translation type="vanished">關閉當前的錢包然後啟動設定精靈</translation>
- </message>
- <message>
<location filename="../pages/Settings.qml" line="88"/>
<source>Close wallet</source>
<translation>關閉錢包</translation>
@@ -1228,20 +1080,12 @@
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 簽署來源之位址&lt;font size=&apos;2&apos;&gt; ( 貼上或從&lt;/font&gt; &lt;a href=&apos;#&apos;&gt;位址簿&lt;/a&gt; &lt;font size=&apos;2&apos;&gt; 中選擇 )&lt;/font&gt;</translation>
</message>
<message>
- <source>SIGN</source>
- <translation type="vanished">簽署</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="172"/>
<location filename="../pages/Sign.qml" line="343"/>
<source>Or file:</source>
<translation>或檔案:</translation>
</message>
<message>
- <source>SELECT</source>
- <translation type="vanished">選擇檔案</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="212"/>
<source>Filename with message to sign</source>
<translation>要簽署訊息的檔案名稱</translation>
@@ -1265,18 +1109,10 @@
<translation>欲驗證的訊息</translation>
</message>
<message>
- <source>VERIFY</source>
- <translation type="vanished">驗證</translation>
- </message>
- <message>
<location filename="../pages/Sign.qml" line="383"/>
<source>Filename with message to verify</source>
<translation>附帶簽署訊息的檔案名稱</translation>
</message>
- <message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Signing address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 簽署的位址 &lt;font size=&apos;2&apos;&gt; ( 輸入或從簿選擇 &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; 簿選擇 )&lt;/font&gt;</translation>
- </message>
</context>
<context>
<name>StandardDialog</name>
@@ -1310,16 +1146,36 @@
</message>
<message>
<location filename="../components/StandardDropdown.qml" line="200"/>
+ <source>Slow (x0.25 fee)</source>
+ <translation>較慢 ( x0.25 手續費 )</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="201"/>
+ <source>Default (x1 fee)</source>
+ <translation>預設 ( x1 手續費 )</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="202"/>
+ <source>Fast (x5 fee)</source>
+ <translation>快速 ( x5 手續費 )</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="203"/>
+ <source>Fastest (x41.5 fee)</source>
+ <translation>優先 ( x41.5 手續費 )</translation>
+ </message>
+ <message>
+ <location filename="../components/StandardDropdown.qml" line="204"/>
<source>All</source>
<translation>全部</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="201"/>
+ <location filename="../components/StandardDropdown.qml" line="205"/>
<source>Sent</source>
<translation>付款</translation>
</message>
<message>
- <location filename="../components/StandardDropdown.qml" line="202"/>
+ <location filename="../components/StandardDropdown.qml" line="206"/>
<source>Received</source>
<translation>收款</translation>
</message>
@@ -1332,13 +1188,9 @@
<translation>&lt;b&gt;複製至剪貼簿&lt;/b&gt;</translation>
</message>
<message>
- <source>&lt;b&gt;Send to same destination&lt;/b&gt;</source>
- <translation type="vanished">&lt;b&gt;付款到這個位址&lt;/b&gt;</translation>
- </message>
- <message>
<location filename="../components/TableDropdown.qml" line="183"/>
<source>&lt;b&gt;Send to this address&lt;/b&gt;</source>
- <translation type="unfinished"></translation>
+ <translation>&lt;b&gt;轉帳至此錢包位址&lt;/b&gt;</translation>
</message>
<message>
<location filename="../components/TableDropdown.qml" line="184"/>
@@ -1377,18 +1229,6 @@
<context>
<name>TickDelegate</name>
<message>
- <source>LOW</source>
- <translation type="vanished">低</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">中</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">高</translation>
- </message>
- <message>
<location filename="../components/TickDelegate.qml" line="55"/>
<source>Normal</source>
<translation>正常</translation>
@@ -1432,251 +1272,227 @@
<translation>交易優先程度</translation>
</message>
<message>
- <source>all</source>
- <translation type="vanished">全部</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="193"/>
+ <location filename="../pages/Transfer.qml" line="197"/>
<source>Low (x1 fee)</source>
<translation>低 (1倍手續費)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="194"/>
+ <location filename="../pages/Transfer.qml" line="198"/>
<source>Medium (x20 fee)</source>
<translation>中 (20倍手續費)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="195"/>
+ <location filename="../pages/Transfer.qml" line="199"/>
<source>High (x166 fee)</source>
<translation>高 (166倍手續費)</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="202"/>
+ <location filename="../pages/Transfer.qml" line="206"/>
<source>Slow (x0.25 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>較慢 ( x0.25 手續費 )</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="203"/>
+ <location filename="../pages/Transfer.qml" line="207"/>
<source>Default (x1 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>預設 ( x1 手續費 )</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="204"/>
+ <location filename="../pages/Transfer.qml" line="208"/>
<source>Fast (x5 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>快速 ( x5 手續費 )</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="205"/>
+ <location filename="../pages/Transfer.qml" line="209"/>
<source>Fastest (x41.5 fee)</source>
- <translation type="unfinished"></translation>
+ <translation>優先 ( x41.5 手續費 )</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="233"/>
+ <location filename="../pages/Transfer.qml" line="237"/>
<source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Paste in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address book&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; )&lt;/font&gt;</source>
<translation>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 位址&lt;font size=&apos;2&apos;&gt; ( 貼上或從&lt;/font&gt; &lt;a href=&apos;#&apos;&gt;位址簿&lt;/a&gt; &lt;font size=&apos;2&apos;&gt; 中選擇 )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="251"/>
+ <location filename="../pages/Transfer.qml" line="255"/>
<source>QR Code</source>
<translation>QR碼</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="281"/>
+ <location filename="../pages/Transfer.qml" line="285"/>
<source>Resolve</source>
- <translation>解析</translation>
+ <translation>解析OpenAlias</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="299"/>
+ <location filename="../pages/Transfer.qml" line="303"/>
<source>No valid address found at this OpenAlias address</source>
<translation>無效的 OpenAlias address 位址</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="304"/>
+ <location filename="../pages/Transfer.qml" line="308"/>
<source>Address found, but the DNSSEC signatures could not be verified, so this address may be spoofed</source>
<translation>已找到位址,但無法驗證其 DNSSEC 的簽署,此位址有可能受到欺騙攻擊的風險</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="306"/>
+ <location filename="../pages/Transfer.qml" line="310"/>
<source>No valid address found at this OpenAlias address, but the DNSSEC signatures could not be verified, so this may be spoofed</source>
<translation>無法找到有效位址,但無法驗證其 DNSSEC 的簽署,此位址有可能受到欺騙攻擊的風險</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="309"/>
- <location filename="../pages/Transfer.qml" line="312"/>
+ <location filename="../pages/Transfer.qml" line="313"/>
+ <location filename="../pages/Transfer.qml" line="316"/>
<source>Internal error</source>
<translation>內部錯誤</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="315"/>
+ <location filename="../pages/Transfer.qml" line="319"/>
<source>No address found</source>
<translation>沒有找到位址</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="355"/>
+ <location filename="../pages/Transfer.qml" line="359"/>
<source>Description &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>標記 &lt;font size=&apos;2&apos;&gt;( 選填 )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="367"/>
+ <location filename="../pages/Transfer.qml" line="371"/>
<source>Saved to local wallet history</source>
<translation>儲存至本機錢包紀錄</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="397"/>
+ <location filename="../pages/Transfer.qml" line="401"/>
<source>Send</source>
<translation>付款</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="443"/>
+ <location filename="../pages/Transfer.qml" line="447"/>
<source>Show advanced options</source>
<translation>顯示進階選項</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="495"/>
+ <location filename="../pages/Transfer.qml" line="499"/>
<source>Sweep Unmixable</source>
<translation>去除無法混幣的金額</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="509"/>
+ <location filename="../pages/Transfer.qml" line="513"/>
<source>Create tx file</source>
<translation>建立交易檔案(tx file)</translation>
</message>
<message>
- <source>sign tx file</source>
- <translation type="vanished">簽署交易檔案(tx file)</translation>
- </message>
- <message>
- <source>submit tx file</source>
- <translation type="vanished">提交交易檔案(tx file)</translation>
- </message>
- <message>
<location filename="../pages/Transfer.qml" line="175"/>
<source>All</source>
<translation>全部</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="531"/>
+ <location filename="../pages/Transfer.qml" line="535"/>
<source>Sign tx file</source>
<translation>簽署一個交易檔案</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="545"/>
+ <location filename="../pages/Transfer.qml" line="549"/>
<source>Submit tx file</source>
<translation>提交交易檔案</translation>
</message>
<message>
- <source>Rescan spent</source>
- <translation type="vanished">重新掃描付款狀態</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="578"/>
- <location filename="../pages/Transfer.qml" line="634"/>
+ <location filename="../pages/Transfer.qml" line="582"/>
+ <location filename="../pages/Transfer.qml" line="638"/>
<source>Error</source>
<translation>錯誤</translation>
</message>
<message>
- <source>Error: </source>
- <translation type="vanished">錯誤: </translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="640"/>
+ <location filename="../pages/Transfer.qml" line="644"/>
<source>Information</source>
<translation>資訊</translation>
</message>
<message>
- <source>Sucessfully rescanned spent outputs</source>
- <translation type="vanished">掃描付款狀態的結果</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="567"/>
- <location filename="../pages/Transfer.qml" line="628"/>
+ <location filename="../pages/Transfer.qml" line="571"/>
+ <location filename="../pages/Transfer.qml" line="632"/>
<source>Please choose a file</source>
<translation>請選擇一個檔案</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="579"/>
+ <location filename="../pages/Transfer.qml" line="583"/>
<source>Can&apos;t load unsigned transaction: </source>
<translation>無法載入未簽署的交易: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="586"/>
+ <location filename="../pages/Transfer.qml" line="590"/>
<source>
Number of transactions: </source>
<translation>
交易數量: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="588"/>
+ <location filename="../pages/Transfer.qml" line="592"/>
<source>
Transaction #%1</source>
<translation>
交易 #%1</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="589"/>
+ <location filename="../pages/Transfer.qml" line="593"/>
<source>
Recipient: </source>
<translation>
接收方: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="590"/>
+ <location filename="../pages/Transfer.qml" line="594"/>
<source>
payment ID: </source>
<translation>
付款 ID: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="591"/>
+ <location filename="../pages/Transfer.qml" line="595"/>
<source>
Amount: </source>
<translation>
金額: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="592"/>
+ <location filename="../pages/Transfer.qml" line="596"/>
<source>
Fee: </source>
<translation>
手續費: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="593"/>
+ <location filename="../pages/Transfer.qml" line="597"/>
<source>
Ringsize: </source>
<translation>
環簽大小: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="607"/>
+ <location filename="../pages/Transfer.qml" line="611"/>
<source>Confirmation</source>
<translation>確認</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="635"/>
+ <location filename="../pages/Transfer.qml" line="639"/>
<source>Can&apos;t submit transaction: </source>
<translation>無法送出交易: </translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="641"/>
+ <location filename="../pages/Transfer.qml" line="645"/>
<source>Money sent successfully</source>
<translation>已成功完成 Monero 付款</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="700"/>
- <location filename="../pages/Transfer.qml" line="712"/>
+ <location filename="../pages/Transfer.qml" line="704"/>
+ <location filename="../pages/Transfer.qml" line="716"/>
<source>Wallet is not connected to daemon.</source>
<translation>錢包沒有與區塊同步程式(daemon)建立連線。</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="715"/>
+ <location filename="../pages/Transfer.qml" line="719"/>
<source>Connected daemon is not compatible with GUI.
Please upgrade or connect to another daemon</source>
<translation>已連接的區塊同步程式與此GUI錢包不相容
請升級區塊同步程式或是連接至另一個同步程式</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="720"/>
+ <location filename="../pages/Transfer.qml" line="724"/>
<source>Waiting on daemon synchronization to finish</source>
<translation>正在等待區塊同步程式完成同步</translation>
</message>
@@ -1686,80 +1502,24 @@ Please upgrade or connect to another daemon</source>
<translation></translation>
</message>
<message>
- <source>or ALL</source>
- <translation type="vanished">或發送全部餘額</translation>
- </message>
- <message>
- <source>LOW</source>
- <translation type="vanished">低</translation>
- </message>
- <message>
- <source>MEDIUM</source>
- <translation type="vanished">中</translation>
- </message>
- <message>
- <source>HIGH</source>
- <translation type="vanished">高</translation>
- </message>
- <message>
- <source>Privacy level</source>
- <translation type="vanished">隱私等級</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="470"/>
+ <location filename="../pages/Transfer.qml" line="474"/>
<source>Transaction cost</source>
<translation>交易所需的花費</translation>
</message>
<message>
- <source>&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; Address &lt;font size=&apos;2&apos;&gt; ( Type in or select from &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; book )&lt;/font&gt;</source>
- <translation type="vanished">&lt;style type=&apos;text/css&apos;&gt;a {text-decoration: none; color: #FF6C3C; font-size: 14px;}&lt;/style&gt; 位址 &lt;font size=&apos;2&apos;&gt; ( 輸入位址或從 &lt;/font&gt; &lt;a href=&apos;#&apos;&gt;Address&lt;/a&gt;&lt;font size=&apos;2&apos;&gt; 簿選擇 )&lt;/font&gt;</translation>
- </message>
- <message>
- <location filename="../pages/Transfer.qml" line="330"/>
+ <location filename="../pages/Transfer.qml" line="334"/>
<source>Payment ID &lt;font size=&apos;2&apos;&gt;( Optional )&lt;/font&gt;</source>
<translation>付款ID &lt;font size=&apos;2&apos;&gt;( 可不填 )&lt;/font&gt;</translation>
</message>
<message>
- <location filename="../pages/Transfer.qml" line="342"/>
+ <location filename="../pages/Transfer.qml" line="346"/>
<source>16 or 64 hexadecimal characters</source>
<translation>16 或 64 十六進位字元</translation>
</message>
- <message>
- <source>Description &lt;font size=&apos;2&apos;&gt;( An optional description that will be saved to the local address book if entered )&lt;/font&gt;</source>
- <translation type="vanished">標記 &lt;font size=&apos;2&apos;&gt;( 選填,將儲存在收款位址簿 )&lt;/font&gt;</translation>
- </message>
- <message>
- <source>SEND</source>
- <translation type="vanished">付款</translation>
- </message>
- <message>
- <source>SWEEP UNMIXABLE</source>
- <translation type="vanished">去除無法混幣的金額</translation>
- </message>
</context>
<context>
<name>TxKey</name>
<message>
- <source>You can verify that a third party made a payment by supplying:</source>
- <translation type="vanished">您可以在此驗證第三方的支付,需提供:</translation>
- </message>
- <message>
- <source> - the recipient address,</source>
- <translation type="vanished"> - 接受方的位址,</translation>
- </message>
- <message>
- <source> - the transaction ID,</source>
- <translation type="vanished"> - 該項交易的交易ID</translation>
- </message>
- <message>
- <source> - the tx secret key supplied by the sender</source>
- <translation type="vanished"> - 支付方提供的 tx 金鑰</translation>
- </message>
- <message>
- <source>If a payment was made up of several transactions, each transaction must be checked, and the results added</source>
- <translation type="vanished">如果該支付是同時包含數個交易,每一項交易都必須被確認和合併結果</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="90"/>
<source>Verify that a third party made a payment by supplying:</source>
<translation>藉由提供以下資訊來驗證第三方支付的款項:</translation>
@@ -1815,22 +1575,10 @@ Please upgrade or connect to another daemon</source>
<translation>檢查</translation>
</message>
<message>
- <source>Transaction ID here</source>
- <translation type="vanished">輸入交易ID</translation>
- </message>
- <message>
<location filename="../pages/TxKey.qml" line="185"/>
<source>Transaction key</source>
<translation>交易金鑰</translation>
</message>
- <message>
- <source>Transaction key here</source>
- <translation type="vanished">輸入交易金鑰</translation>
- </message>
- <message>
- <source>CHECK</source>
- <translation type="vanished">檢查</translation>
- </message>
</context>
<context>
<name>WizardConfigure</name>
@@ -1845,10 +1593,6 @@ Please upgrade or connect to another daemon</source>
<translation>開始同步 Monero 區塊鏈?</translation>
</message>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">這是唯一需要備份的錢包資訊,請一定要抄寫下來。你將會在下一個步驟被要求確認這份種子碼以確保你有妥善備份它。</translation>
- </message>
- <message>
<location filename="../wizard/WizardConfigure.qml" line="115"/>
<source>It is very important to write it down as this is the only backup you will need for your wallet.</source>
<translation>請注意這是唯一需要備份的錢包資訊,請一定要抄寫下來。</translation>
@@ -1885,14 +1629,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardCreateWallet</name>
<message>
- <source>A new wallet has been created for you</source>
- <translation type="vanished">已為您建立一個新的錢包</translation>
- </message>
- <message>
- <source>This is the 25 word mnemonic for your wallet</source>
- <translation type="vanished">這是錢包的25字輔助記憶種子碼</translation>
- </message>
- <message>
<location filename="../wizard/WizardCreateWallet.qml" line="100"/>
<source>Create a new wallet</source>
<translation>創建一個新的錢包</translation>
@@ -1953,14 +1689,6 @@ Please upgrade or connect to another daemon</source>
<translation>語言</translation>
</message>
<message>
- <source>Account name</source>
- <translation type="vanished">帳戶名稱</translation>
- </message>
- <message>
- <source>Seed</source>
- <translation type="vanished">種子碼</translation>
- </message>
- <message>
<location filename="../wizard/WizardFinish.qml" line="59"/>
<source>Wallet name</source>
<translation>錢包名稱</translation>
@@ -2005,14 +1733,6 @@ Please upgrade or connect to another daemon</source>
<source>You’re all set up!</source>
<translation>您已完成所有設定!</translation>
</message>
- <message>
- <source>An overview of your Monero configuration is below:</source>
- <translation type="vanished">以下是您的 Monero 錢包設定總覽:</translation>
- </message>
- <message>
- <source>You’re all setup!</source>
- <translation type="vanished">您已完成所有設定!</translation>
- </message>
</context>
<context>
<name>WizardMain</name>
@@ -2062,14 +1782,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardManageWalletUI</name>
<message>
- <source>This is the name of your wallet. You can change it to a different name if you’d like:</source>
- <translation type="vanished">這是您的錢包名稱,您也可以自己更改成想要的名稱:</translation>
- </message>
- <message>
- <source>Restore height</source>
- <translation type="vanished">回復區塊高度</translation>
- </message>
- <message>
<location filename="../wizard/WizardManageWalletUI.qml" line="133"/>
<source>Wallet name</source>
<translation>錢包名稱</translation>
@@ -2118,10 +1830,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardMemoTextInput</name>
<message>
- <source>It is very important to write it down as this is the only backup you will need for your wallet. You will be asked to confirm the seed in the next screen to ensure it has copied down correctly.</source>
- <translation type="vanished">這是您唯一需要備份的錢包資訊,請一定要抄寫下來。您將會在下一個後被要求確認這份種子碼以確保你有妥善備份它。</translation>
- </message>
- <message>
<location filename="../wizard/WizardMemoTextInput.qml" line="44"/>
<source>Enter your 25 word mnemonic seed</source>
<translation>請輸入您的 25字種子碼(seed)</translation>
@@ -2165,22 +1873,6 @@ Please upgrade or connect to another daemon</source>
<translation>使用遠端區塊同步程式的IP或網址 (選填)</translation>
</message>
<message>
- <source>This is my first time, I want to create a new account</source>
- <translation type="vanished">這是我第一次使用,我想要創建一個新的帳戶</translation>
- </message>
- <message>
- <source>I want to recover my account from my 25 word seed</source>
- <translation type="vanished">我想要從一組25字種子碼回復我的帳戶</translation>
- </message>
- <message>
- <source>I want to open a wallet from file</source>
- <translation type="vanished">我想要從檔案開啟錢包</translation>
- </message>
- <message>
- <source>Please setup daemon address below.</source>
- <translation type="vanished">請在下面設定區塊鏈同步程式的位置。</translation>
- </message>
- <message>
<location filename="../wizard/WizardOptions.qml" line="295"/>
<source>Testnet</source>
<translation>連接到測試網路</translation>
@@ -2189,28 +1881,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardPassword</name>
<message>
- <source>Now that your wallet has been created, please set a password for the wallet</source>
- <translation type="vanished">您的新錢包已被建立,請為它設定一組密碼</translation>
- </message>
- <message>
- <source>Now that your wallet has been restored, please set a password for the wallet</source>
- <translation type="vanished">您的錢包已被成功回復,請為它設定一組密碼</translation>
- </message>
- <message>
- <source>Note that this password cannot be recovered, and if forgotten you will need to restore your wallet from the mnemonic seed you were just given&lt;br/&gt;&lt;br/&gt;
- Your password will be used to protect your wallet and to confirm actions, so make sure that your password is sufficiently secure.</source>
- <translation type="vanished">請注意:這個密碼無法被回復,如果忘記了這組密碼,您將需要用剛剛獲得的輔助記憶種子碼重新回復您的錢包&lt;br/&gt;&lt;br/&gt;
- 密碼將會用來保護您的錢包或確認重要的動作,所以請確認您的密碼強度足夠安全。</translation>
- </message>
- <message>
- <source>Password</source>
- <translation type="vanished">密碼</translation>
- </message>
- <message>
- <source>Confirm password</source>
- <translation type="vanished">確認密碼</translation>
- </message>
- <message>
<location filename="../wizard/WizardPassword.qml" line="57"/>
<location filename="../wizard/WizardPassword.qml" line="59"/>
<source>Give your wallet a password</source>
@@ -2223,12 +1893,6 @@ Please upgrade or connect to another daemon</source>
<translation>注意: 這個密碼無法被回復,如果您忘記了這個密碼,則必須使用25字種子碼回復您的錢包。&lt;br/&gt;&lt;br/&gt;
&lt;b&gt;請輸入足夠強度的密碼&lt;/b&gt; (使用字母, 數字或可搭配符號):</translation>
</message>
- <message>
- <source>Note: this password cannot be recovered. If you forget it then the wallet will have to be restored from its 25 word mnemonic seed.&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;Enter a strong password&lt;/b&gt; (using letters, numbers, and/or symbols):</source>
- <translation type="vanished">注意: 這個密碼無法被回復,如果您忘記了這個密碼,則必須使用25字種子碼回復您的錢包。&lt;br/&gt;&lt;br/&gt;
- &lt;b&gt;請輸入足夠強度的密碼&lt;/b&gt; (使用字母, 數字或可搭配符號):</translation>
- </message>
</context>
<context>
<name>WizardPasswordUI</name>
@@ -2246,14 +1910,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardRecoveryWallet</name>
<message>
- <source>We&apos;re ready to recover your account</source>
- <translation type="vanished">已準備好回復您的錢包</translation>
- </message>
- <message>
- <source>Please enter your 25 word private key</source>
- <translation type="vanished">請輸入您的 25字種子碼</translation>
- </message>
- <message>
<location filename="../wizard/WizardRecoveryWallet.qml" line="112"/>
<source>Restore wallet</source>
<translation>回復錢包</translation>
@@ -2262,10 +1918,6 @@ Please upgrade or connect to another daemon</source>
<context>
<name>WizardWelcome</name>
<message>
- <source>Welcome</source>
- <translation type="vanished">歡迎</translation>
- </message>
- <message>
<location filename="../wizard/WizardWelcome.qml" line="79"/>
<source>Welcome to Monero!</source>
<translation>歡迎使用 Monero!</translation>
@@ -2298,10 +1950,6 @@ Please upgrade or connect to another daemon</source>
<translation>無法開啟這個錢包:</translation>
</message>
<message>
- <source>Synchronizing blocks %1 / %2</source>
- <translation type="vanished">同步區塊中 %1 / %2</translation>
- </message>
- <message>
<location filename="../main.qml" line="355"/>
<source>Unlocked balance (waiting for block)</source>
<translation>可用餘額 (等待區塊確認中)</translation>
@@ -2433,14 +2081,6 @@ Ringsize: </source>
<translation>有可用的新版本 Monero 錢包: %1&lt;br&gt;%2</translation>
</message>
<message>
- <source>
-
-Mixin: </source>
- <translation type="vanished">
-
-混幣數量: </translation>
- </message>
- <message>
<location filename="../main.qml" line="523"/>
<source>
Number of transactions: </source>
@@ -2497,10 +2137,6 @@ Description: </source>
<translation>這個位址已收到 %1 monero幣,但這筆交易尚未被礦工確認</translation>
</message>
<message>
- <source>This address received %1 monero, with %2 confirmations</source>
- <translation type="vanished">這個位址已收到 %1 monero幣,並已經過 %2 次的確認</translation>
- </message>
- <message>
<location filename="../main.qml" line="732"/>
<source>This address received nothing</source>
<translation>這個位址沒有收到款項</translation>