diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-11-05 16:32:53 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-11-05 16:32:53 +0100 |
| commit | 60f4dcc106b10ece07804154c3e08084c8d836e1 (patch) | |
| tree | d4a82dcf0f2c0bc3b2621590388d5d553375fed4 | |
| parent | c58dfa913bb356368e12dc5248c4f5acdfe3934d (diff) | |
| download | monzero-gui-60f4dcc106b10ece07804154c3e08084c8d836e1.tar.gz monzero-gui-60f4dcc106b10ece07804154c3e08084c8d836e1.tar.xz monzero-gui-60f4dcc106b10ece07804154c3e08084c8d836e1.zip | |
Fix blockchain size typo
| -rw-r--r-- | main.qml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1056,9 +1056,9 @@ ApplicationWindow { if(validator.readOnly) confirmationDialog.text += qsTr("Error: Filesystem is read only") + "\n\n" if(validator.storageAvailable < 20) - confirmationDialog.text += qsTr("Warning: There's only %1 GB available on the device. Blockchain requires ~%30 GB of data.").arg(validator.storageAvailable).arg(15) + "\n\n" + confirmationDialog.text += qsTr("Warning: There's only %1 GB available on the device. Blockchain requires ~%2 GB of data.").arg(validator.storageAvailable).arg(30) + "\n\n" else - confirmationDialog.text += qsTr("Note: There's %1 GB available on the device. Blockchain requires ~%30 GB of data.").arg(validator.storageAvailable).arg(15) + "\n\n" + confirmationDialog.text += qsTr("Note: There's %1 GB available on the device. Blockchain requires ~%2 GB of data.").arg(validator.storageAvailable).arg(30) + "\n\n" if(!validator.lmdbExists) confirmationDialog.text += qsTr("Note: lmdb folder not found. A new folder will be created.") + "\n\n" |
