Cosmetic improvements to displayed strings.

pull/14/head
Tim Su 17 years ago
parent fe1bddf761
commit a036a31ed0

@ -30,24 +30,24 @@
<item>Your friendly neighborhood assistant here!</item> <item>Your friendly neighborhood assistant here!</item>
<item>Hi! Can I bother you for a moment?</item> <item>Hi! Can I bother you for a moment?</item>
<item>I would like a minute of your time.</item> <item>I would like a minute of your time.</item>
<item>It's a great day to get something done!</item> <item>It\'s a great day to get something done!</item>
</string-array> </string-array>
<!-- Astrid says... (user should answer yes or no)--> <!-- Astrid says... (user should answer yes or no)-->
<string-array name="reminder_responses"> <string-array name="reminder_responses">
<item>I've got something for you!</item> <item>I\'ve got something for you!</item>
<item>Ready to put this in the past?</item> <item>Ready to put this in the past?</item>
<item>Why don't you get this done?</item> <item>Why don\'t you get this done?</item>
<item>How about it? Ready tiger?</item> <item>How about it? Ready tiger?</item>
<item>Ready to do this?</item> <item>Ready to do this?</item>
<item>Can you handle this?</item> <item>Can you handle this?</item>
<item>You can be happy! Just finish this!</item> <item>You can be happy! Just finish this!</item>
<item>I promise you'll feel better if you finish this!</item> <item>I promise you\'ll feel better if you finish this!</item>
<item>Won't you do this today?</item> <item>Won\'t you do this today?</item>
<item>Please finish this, I'm sick of it!</item> <item>Please finish this, I\'m sick of it!</item>
<item>Can you finish this? Yes you can!</item> <item>Can you finish this? Yes you can!</item>
<item>Are you ever going to do this?</item> <item>Are you ever going to do this?</item>
<item>Feel good about yourself! Let's go!</item> <item>Feel good about yourself! Let\'s go!</item>
<item>I'm so proud of you! Lets get it done!</item> <item>I'm so proud of you! Lets get it done!</item>
<item>A little snack after you finish this?</item> <item>A little snack after you finish this?</item>
<item>Just this one task? Please?</item> <item>Just this one task? Please?</item>

@ -64,7 +64,7 @@
<!-- TaskList --> <!-- TaskList -->
<skip /> <skip />
<string name="taskList_titlePrefix">Astrid: </string> <string name="taskList_titlePrefix">Astrid: </string>
<string name="taskList_titleTagPrefix">Tasks Tagged \"%s\": </string> <string name="taskList_titleTagPrefix">Tagged \"%s\": </string>
<string name="taskList_hiddenSuffix"> hidden</string> <string name="taskList_hiddenSuffix"> hidden</string>
<string name="taskList_dueIn">Due in</string> <string name="taskList_dueIn">Due in</string>
<string name="taskList_overdueBy">Overdue by</string> <string name="taskList_overdueBy">Overdue by</string>

@ -368,11 +368,6 @@ public class TaskList extends Activity {
item.setAlphabeticShortcut('t'); item.setAlphabeticShortcut('t');
} }
/*item = menu.add(Menu.NONE, SETTINGS_ID, Menu.NONE,
R.string.taskList_menu_settings);
item.setIcon(android.R.drawable.ic_menu_preferences);
item.setAlphabeticShortcut('p');*/
return true; return true;
} }

@ -150,7 +150,8 @@ public class TaskListAdapter extends ArrayAdapter<TaskModelForList> {
tagString.append(", "); tagString.append(", ");
} }
if(tagString.length() > 0) { if(tagString.length() > 0) {
tagsView.setText(r.getString(R.string.tags_prefix) + tagString); tagsView.setText(r.getString(R.string.tags_prefix) + " " +
tagString);
} else { } else {
tagsView.setText(r.getString(R.string.no_tags)); tagsView.setText(r.getString(R.string.no_tags));
} }

Loading…
Cancel
Save