From a87179d127a0ec6906c4687d4f89c89e15d672da Mon Sep 17 00:00:00 2001
From: Trent Larson
Date: Fri, 12 Jan 2024 16:37:02 -0700
Subject: [PATCH] change wording from "identity" to "identifier" in many places
---
src/components/GiftedDialog.vue | 4 ++--
src/components/OfferDialog.vue | 4 ++--
src/views/AccountViewView.vue | 17 +++++++++--------
src/views/ClaimView.vue | 2 +-
src/views/ContactAmountsView.vue | 2 +-
src/views/ContactGiftingView.vue | 2 +-
src/views/ContactQRScanShowView.vue | 2 +-
src/views/ContactsView.vue | 4 ++--
src/views/HomeView.vue | 12 +++++++-----
src/views/ImportAccountView.vue | 6 +++---
src/views/NewEditProjectView.vue | 2 +-
src/views/ProjectsView.vue | 4 ++--
src/views/SeedBackupView.vue | 10 +++++-----
src/views/StartView.vue | 2 +-
14 files changed, 38 insertions(+), 35 deletions(-)
diff --git a/src/components/GiftedDialog.vue b/src/components/GiftedDialog.vue
index 8b70c05..c865e6f 100644
--- a/src/components/GiftedDialog.vue
+++ b/src/components/GiftedDialog.vue
@@ -236,7 +236,7 @@ export default class GiftedDialog extends Vue {
if (!identity) {
throw new Error(
- "Attempted to load Give records for DID ${activeDid} but no identity was found",
+ "Attempted to load Give records for DID ${activeDid} but no identifier was found",
);
}
return identity;
@@ -260,7 +260,7 @@ export default class GiftedDialog extends Vue {
group: "alert",
type: "danger",
title: "Error",
- text: "You must select an identity before you can record a give.",
+ text: "You must select an identifier before you can record a give.",
},
-1,
);
diff --git a/src/components/OfferDialog.vue b/src/components/OfferDialog.vue
index b61bde8..a05f82f 100644
--- a/src/components/OfferDialog.vue
+++ b/src/components/OfferDialog.vue
@@ -166,7 +166,7 @@ export default class OfferDialog extends Vue {
if (!identity) {
throw new Error(
- "Attempted to load Offer records for DID ${activeDid} but no identity was found",
+ "Attempted to load Offer records for DID ${activeDid} but no identifier was found",
);
}
return identity;
@@ -188,7 +188,7 @@ export default class OfferDialog extends Vue {
group: "alert",
type: "danger",
title: "Error",
- text: "You must select an identity before you can record an offer.",
+ text: "You must select an identifier before you can record an offer.",
},
-1,
);
diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue
index fddf979..7dbd703 100644
--- a/src/views/AccountViewView.vue
+++ b/src/views/AccountViewView.vue
@@ -40,13 +40,14 @@
class="bg-amber-200 text-amber-900 border-amber-500 border-dashed border text-center rounded-md overflow-hidden px-4 py-3 mb-4"
>
- Note: Before you can take any action, you need an ID.
+ Note: Before you can share with others or take any action, you
+ need an identifier.
@@ -716,9 +717,9 @@ export default class AccountViewView extends Vue {
if (
err instanceof Error &&
err.message ===
- "Attempted to load account records with no identity available."
+ "Attempted to load account records with no identifier available."
) {
- this.limitsMessage = "No identity.";
+ this.limitsMessage = "No identifier.";
this.loadingLimits = false;
} else {
this.$notify(
@@ -1020,9 +1021,9 @@ export default class AccountViewView extends Vue {
} else if (
error instanceof Error &&
error.message ===
- "Attempted to load Give records with no identity available."
+ "Attempted to load Give records with no identifier available."
) {
- this.limitsMessage = "No identity.";
+ this.limitsMessage = "No identifier.";
} else {
// Handle other unknown errors
}
diff --git a/src/views/ClaimView.vue b/src/views/ClaimView.vue
index d85fab0..93f513a 100644
--- a/src/views/ClaimView.vue
+++ b/src/views/ClaimView.vue
@@ -335,7 +335,7 @@ export default class ClaimView extends Vue {
if (!identity) {
throw new Error(
- "Attempted to load project records with no identity available.",
+ "Attempted to load project records with no identifier available.",
);
}
return identity;
diff --git a/src/views/ContactAmountsView.vue b/src/views/ContactAmountsView.vue
index fdf0372..f9e58e2 100644
--- a/src/views/ContactAmountsView.vue
+++ b/src/views/ContactAmountsView.vue
@@ -155,7 +155,7 @@ export default class ContactAmountssView extends Vue {
if (!identity) {
throw new Error(
- "Attempted to load Give records with no identity available.",
+ "Attempted to load Give records with no identifier available.",
);
}
return identity;
diff --git a/src/views/ContactGiftingView.vue b/src/views/ContactGiftingView.vue
index 8232d76..76aa105 100644
--- a/src/views/ContactGiftingView.vue
+++ b/src/views/ContactGiftingView.vue
@@ -121,7 +121,7 @@ export default class ContactGiftingView extends Vue {
if (!identity) {
throw new Error(
- "Attempted to load Give records with no identity available.",
+ "Attempted to load Give records with no identifier available.",
);
}
return identity;
diff --git a/src/views/ContactQRScanShowView.vue b/src/views/ContactQRScanShowView.vue
index ae3bb6e..91b51d0 100644
--- a/src/views/ContactQRScanShowView.vue
+++ b/src/views/ContactQRScanShowView.vue
@@ -120,7 +120,7 @@ export default class ContactQRScanShow extends Vue {
if (!identity) {
throw new Error(
- "Attempted to show contact info with no identity available.",
+ "Attempted to show contact info with no identifier available.",
);
}
return identity;
diff --git a/src/views/ContactsView.vue b/src/views/ContactsView.vue
index 334f2f0..300ebf1 100644
--- a/src/views/ContactsView.vue
+++ b/src/views/ContactsView.vue
@@ -344,7 +344,7 @@ export default class ContactsView extends Vue {
if (!identity) {
throw new Error(
- "Attempted to load Give records with no identity available.",
+ "Attempted to load Give records with no identifier available.",
);
}
return identity;
@@ -962,7 +962,7 @@ export default class ContactsView extends Vue {
group: "alert",
type: "danger",
title: "Status Error",
- text: "No identity is available.",
+ text: "No identifier is available.",
},
-1,
);
diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue
index edc54ad..209ed60 100644
--- a/src/views/HomeView.vue
+++ b/src/views/HomeView.vue
@@ -15,7 +15,8 @@
class="bg-amber-200 rounded-md overflow-hidden text-center px-4 py-3 mb-4"
>
- This app doesn't support notifications, so let's fix that.
+ This currently doesn't support notifications, so let's fix that.
+
@@ -52,7 +53,7 @@
Google Chrome
- or look for a way to install as an app.
+ or look for a way to install as an app from this browser.
- You need an identifier before you can record anyone's gives.
+ Want to connect with your contacts, or share contributions or
+ projects?
- Create Your Identifier
@@ -85,7 +87,7 @@
:to="{ name: 'contact-qr' }"
class="block text-center text-md font-bold uppercase bg-blue-500 text-white mt-2 px-2 py-3 rounded-md"
>
- 1. Show Them Your Identity Info
- Import Existing Identity
+ Import Existing Identifier
- Enter your seed phrase below to import your identity on this device.
+ Enter your seed phrase below to import your identifier on this device.
- Note: You have more than one identity
+ Note: You have more than one identifier
stored in this browser. If they are all based on the same seed as the
- current identity, this one backup is sufficient; however, if you have
- different seeds for other identities, you will have to back them up
+ current identifier, this one backup is sufficient; however, if you have
+ different seeds for other identifiers, you will have to back them up
separately.