diff options
author | stuconnolly <stuart02@gmail.com> | 2010-05-18 20:03:06 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-05-18 20:03:06 +0000 |
commit | 17cd8e717d853946813deda9cb160832b445dfdd (patch) | |
tree | 087eba4001d7e1a1f0584b7aea33031f516f8bb3 /Source/SPAppController.m | |
parent | d62f41c9fd22c868d3754917cde5a6d08624f0de (diff) | |
download | sequelpro-17cd8e717d853946813deda9cb160832b445dfdd.tar.gz sequelpro-17cd8e717d853946813deda9cb160832b445dfdd.tar.bz2 sequelpro-17cd8e717d853946813deda9cb160832b445dfdd.zip |
Change filesize units to base 2 rather than base 10. Fixes issue #690. Patch provided by Max Lohrmann, thanks Max!.
Diffstat (limited to 'Source/SPAppController.m')
-rw-r--r-- | Source/SPAppController.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPAppController.m b/Source/SPAppController.m index 69fcca80..b80e0680 100644 --- a/Source/SPAppController.m +++ b/Source/SPAppController.m @@ -224,8 +224,8 @@ [alert addButtonWithTitle:NSLocalizedString(@"Import", @"import button")]; - [alert setInformativeText:[NSString stringWithFormat:NSLocalizedString(@"Do you really want to load a SQL file with %.1f MB of data into the Query Editor?", @"message of panel asking for confirmation for loading large text into the query editor"), - [filesize unsignedLongValue]/1048576.0]]; + [alert setInformativeText:[NSString stringWithFormat:NSLocalizedString(@"Do you really want to load a SQL file with %@ of data into the Query Editor?", @"message of panel asking for confirmation for loading large text into the query editor"), + [NSString stringForByteSize:[filesize longLongValue]]]]; [alert setHelpAnchor:filename]; [alert setMessageText:NSLocalizedString(@"Warning",@"warning")]; [alert setAlertStyle:NSWarningAlertStyle]; |