docs: Update migration status after ContactAmountsView human testing

- Update CURRENT_MIGRATION_STATUS.md with latest progress (35% complete)
- Add ContactAmountsView.vue to human testing completion list
- Update migration-time-tracker.md with testing metrics and progress
- Document 8 components now human tested, 25 ready for testing
- Update realistic estimates for remaining 59 components

Migration Progress: 33/92 components (35%) | Human Tested: 8 components
This commit is contained in:
Matthew Raymer
2025-07-07 13:23:30 +00:00
parent 26155a6243
commit ca38c197f0
3 changed files with 207 additions and 135 deletions

View File

@@ -455,3 +455,19 @@ export const NOTIFY_CONTACT_SAVED = {
// Dynamic message template for contact not found (used in ContactEditView.vue)
export const createContactNotFoundMessage = (did: string): string =>
`${NOTIFY_CONTACT_NOT_FOUND.message} ${did}`;
// ContactAmountsView.vue constants
export const NOTIFY_SETTINGS_RETRIEVAL_ERROR = {
title: "Error",
message: "There was an error retrieving your settings or contacts or gives.",
};
export const NOTIFY_SERVER_RETRIEVAL_ERROR = {
title: "Error With Server",
message: "Got an error retrieving your given time from the server.",
};
export const NOTIFY_CONFIRMATION_RESTRICTION = {
title: "Not Allowed",
message: "Only the recipient can confirm final receipt.",
};