mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-27 03:32:16 -05:00
Made "Load more messages" cue a little more informative.
Now pulls k9.VISIBLE_LIMIT_INCREMENT and says "Load up to (increment value) more". Also, the build number was auto-updated by my build script. This shows up in the debug menu. It would be nice to have ant handle this, but I'm not sure how to make it do that.
This commit is contained in:
parent
21655bcd26
commit
15ba4d0f39
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="build_number">20080722-0001</string>
|
||||
<string name="build_number">114M</string>
|
||||
</resources>
|
||||
|
@ -1129,7 +1129,8 @@ public class FolderMessageList extends ExpandableListActivity {
|
||||
}
|
||||
else {
|
||||
if (folder.status == null) {
|
||||
holder.main.setText(getString(R.string.message_list_load_more_messages_action));
|
||||
// holder.main.setText(getString(R.string.message_list_load_more_messages_action));
|
||||
holder.main.setText("Load up to " + k9.VISIBLE_LIMIT_INCREMENT + " more");
|
||||
}
|
||||
else {
|
||||
holder.main.setText(getString(R.string.status_loading_more_failed));
|
||||
|
Loading…
Reference in New Issue
Block a user