Got rid of some old translations, migrated some 'new' ones from 2.x

pull/14/head
Tim Su 16 years ago
parent 7e44c8ae8f
commit 1e8f2e6c63

@ -4,22 +4,6 @@
<!-- Resources for built-in backup plug-in --> <!-- Resources for built-in backup plug-in -->
<!-- ============================================== BackupPreferences == -->
<string name="backup_BPr_backup_title">Automatic Backups</string>
<!-- backup summary when there is no backup message -->
<string name="backup_BPr_backup_desc">Perform daily backups to sdcard.</string>
<!-- backup failure message (%s -> error message) -->
<string name="backup_BPr_backup_desc_failure">Last backup failed: %s</string>
<!-- backup failure error when error message is null -->
<string name="backup_BPr_backup_desc_failure_null">Last backup failed, could not read SD card</string>
<!-- backup success message (%s -> date) -->
<string name="backup_BPr_backup_desc_success">Latest backup was on %s</string>
<!-- ================================================= BackupPreferences == --> <!-- ================================================= BackupPreferences == -->
<!-- Preferences Title --> <!-- Preferences Title -->

@ -304,15 +304,6 @@ to the plugin creator for fastest service.
<!-- Elapsed time label --> <!-- Elapsed time label -->
<string name="TEA_elapsedDuration_label">Time Already Spent on Task</string> <string name="TEA_elapsedDuration_label">Time Already Spent on Task</string>
<!-- Save button -->
<string name="TEA_save_label">Save</string>
<!-- Don't Save button -->
<string name="TEA_cancel_label">Cancel</string>
<!-- Delete button -->
<string name="TEA_delete_label">Delete</string>
<!-- Menu: Save --> <!-- Menu: Save -->
<string name="TEA_menu_save">Save Changes</string> <string name="TEA_menu_save">Save Changes</string>
@ -338,7 +329,7 @@ to the plugin creator for fastest service.
<!-- Toast: task was deleted --> <!-- Toast: task was deleted -->
<string name="TEA_onTaskDelete">Task Deleted!</string> <string name="TEA_onTaskDelete">Task Deleted!</string>
<!-- ===================== IntroductionActivity == --> <!-- ============================================= IntroductionActivity == -->
<!-- Introduction Window title --> <!-- Introduction Window title -->
<string name="InA_title">Welcome to Astrid!</string> <string name="InA_title">Welcome to Astrid!</string>
@ -411,12 +402,24 @@ to the plugin creator for fastest service.
<!-- ============================================================= Misc == --> <!-- ============================================================= Misc == -->
<!-- %s => name of the application --> <!-- Displayed when task killer found. %s => name of the application -->
<string name="task_killer_help"> <string name="task_killer_help">
It looks like you are using an app that can kill processes (%s)! If you can, It looks like you are using an app that can kill processes (%s)! If you can,
add Astrid to the exclusion list so it doesn\'t get killed. Otherwise, add Astrid to the exclusion list so it doesn\'t get killed. Otherwise,
Astrid might not let you know when your tasks are due.\n Astrid might not let you know when your tasks are due.\n
</string> </string>
<!-- Task killer dialog ok button -->
<string name="task_killer_help_ok">I Won\'t Kill Astrid!</string> <string name="task_killer_help_ok">I Won\'t Kill Astrid!</string>
<!-- Astrid's Android Marketplace title. It never appears in the app itself. -->
<string name="marketplace_title">Astrid Task/Todo List</string>
<!-- Astrid's Android Marketplace description. It never appears in the app itself. -->
<string name="marketplace_description">
Astrid is the highly-acclaimed open-source task list that is simple enough to
not get in your way, powerful enough to help you get stuff done! Tags,
reminders, RememberTheMilk sync, Locale plug-in &amp; more!
</string>
</resources> </resources>

@ -23,14 +23,6 @@
<!-- Calendar event name when task is completed (%s => task title) --> <!-- Calendar event name when task is completed (%s => task title) -->
<string name="gcal_completed_title">%s (completed)</string> <string name="gcal_completed_title">%s (completed)</string>
<!-- ============================================== Calendar Preferences == -->
<!-- Preference: Calendar Setting Title -->
<string name="gcal_GCP_title">Default Calendar</string>
<!-- Preference: Calendar Setting Summary (%s -> calendar summary) -->
<string name="gcal_GCP_summary">Current Setting: %s</string>
<!-- System Default Calendar (displayed if we can't figure out calendars) --> <!-- System Default Calendar (displayed if we can't figure out calendars) -->
<string name="gcal_GCP_default">Default Calendar</string> <string name="gcal_GCP_default">Default Calendar</string>

@ -120,11 +120,13 @@ Error Message: %s
<!-- ======================== Synchronization ========================== --> <!-- ======================== Synchronization ========================== -->
<!-- rmilk-specific constants --> <!-- title for notification tray when synchronizing -->
<string name="rmilk_notification_title">Astrid: Remember the Milk</string> <string name="rmilk_notification_title">Astrid: Remember the Milk</string>
<!-- confirmation dialog for RTM log out -->
<string name="rmilk_forget_confirm">Log out / clear synchronization data?</string> <string name="rmilk_forget_confirm">Log out / clear synchronization data?</string>
<!-- Error msg when io exception with rmilk -->
<string name="rmilk_ioerror">Connection Error! Check your Internet connection, <string name="rmilk_ioerror">Connection Error! Check your Internet connection,
or maybe RTM servers (status.rememberthemilk.com), for possible solutions.</string> or maybe RTM servers (status.rememberthemilk.com), for possible solutions.</string>

@ -477,15 +477,15 @@ public final class TaskEditActivity extends TabActivity {
super.onCreateOptionsMenu(menu); super.onCreateOptionsMenu(menu);
MenuItem item; MenuItem item;
item = menu.add(Menu.NONE, MENU_SAVE_ID, 0, R.string.TEA_save_label); item = menu.add(Menu.NONE, MENU_SAVE_ID, 0, R.string.TEA_menu_save);
item.setIcon(android.R.drawable.ic_menu_save); item.setIcon(android.R.drawable.ic_menu_save);
item.setAlphabeticShortcut('s'); item.setAlphabeticShortcut('s');
item = menu.add(Menu.NONE, MENU_DISCARD_ID, 0, R.string.TEA_cancel_label); item = menu.add(Menu.NONE, MENU_DISCARD_ID, 0, R.string.TEA_menu_discard);
item.setIcon(android.R.drawable.ic_menu_close_clear_cancel); item.setIcon(android.R.drawable.ic_menu_close_clear_cancel);
item.setAlphabeticShortcut('c'); item.setAlphabeticShortcut('c');
item = menu.add(Menu.NONE, MENU_DELETE_ID, 0, R.string.TEA_delete_label); item = menu.add(Menu.NONE, MENU_DELETE_ID, 0, R.string.TEA_menu_delete);
item.setIcon(android.R.drawable.ic_menu_delete); item.setIcon(android.R.drawable.ic_menu_delete);
item.setAlphabeticShortcut('d'); item.setAlphabeticShortcut('d');

Loading…
Cancel
Save