* cosmetics

This commit is contained in:
Reinhard Pointner 2013-02-20 10:16:21 +00:00
parent 39b6d93940
commit cdfafe0337
4 changed files with 4 additions and 3 deletions

View File

@ -110,7 +110,7 @@ class RenameListCellRenderer extends DefaultFancyListCellRenderer {
setText(isSelected || matchProbablity < 1 ? formatPath(path) : colorizePath(path, true));
String ext = getExtension(path);
typeRenderer.setText(ext != null ? ext.toLowerCase() : "NO EXTENSION");
typeRenderer.setText(ext != null ? ext.toLowerCase() : "MISSING EXTENSION");
if (file.isDirectory()) {
typeRenderer.setText("Folder");
}

View File

@ -1392,6 +1392,7 @@ TCPA
TDF
tdl
TDR
TEAM-KAI
TeamRV
TeGijA
TEKATE

View File

@ -43,7 +43,7 @@ if ($mode != 's') {
</form>
<img src="images/money.png" style="float:left; margin:5px 10px 5px 5px; width:48px; height:48px" />
<p style="margin: 13px 20px">
Shutter at the thought of how many hours and days of time FileBot has saved you?
Shudder at the thought of how many hours and days of time FileBot has saved you?
You can show your appreciation and <b>support for future development</b> by donating.
</p>
</div>

View File

@ -8,7 +8,7 @@ args.each{ _log.fine("Argument: $it") }
args.findAll{ !it.exists() }.each{ throw new Exception("File not found: $it") }
// check user-defined pre-condition
if (tryQuietly{ ut_state != ut_state_allow }) {
if (tryQuietly{ ut_state ==~ ut_state_allow }) {
throw new Exception("Invalid state: ut_state = $ut_state (expected $ut_state_allow)")
}