From e34e96746fcdea47d1fd83f07511384fe4910d77 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Sat, 28 Jun 2025 10:18:00 +0200 Subject: [PATCH] Update terminology (#861) --- .../ImportExport/Components/ImportServiceAliasVault.razor | 4 ++-- .../Main/Pages/Settings/ImportExport/ImportExport.razor | 2 +- docs/installation/install.md | 2 +- install.sh | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/apps/server/AliasVault.Client/Main/Pages/Settings/ImportExport/Components/ImportServiceAliasVault.razor b/apps/server/AliasVault.Client/Main/Pages/Settings/ImportExport/Components/ImportServiceAliasVault.razor index eb7d8e139..8dd8401de 100644 --- a/apps/server/AliasVault.Client/Main/Pages/Settings/ImportExport/Components/ImportServiceAliasVault.razor +++ b/apps/server/AliasVault.Client/Main/Pages/Settings/ImportExport/Components/ImportServiceAliasVault.razor @@ -6,10 +6,10 @@ -

If you have a CSV file back-up of your AliasVault database (from a different AliasVault instance), you can import it here.

+

If you have a CSV file back-up of your AliasVault database (from a different AliasVault server), you can import it here.

@code { diff --git a/apps/server/AliasVault.Client/Main/Pages/Settings/ImportExport/ImportExport.razor b/apps/server/AliasVault.Client/Main/Pages/Settings/ImportExport/ImportExport.razor index 535de0c7c..3b01f8959 100644 --- a/apps/server/AliasVault.Client/Main/Pages/Settings/ImportExport/ImportExport.razor +++ b/apps/server/AliasVault.Client/Main/Pages/Settings/ImportExport/ImportExport.razor @@ -40,7 +40,7 @@

Export vault

- If you want to export your AliasVault credentials to another AliasVault instance (e.g. from cloud to self-hosted or vice-versa) or to another service altogether, you can export it here. Note that all exports are unencrypted so store it in a safe place and delete it when you no longer need it. + If you want to export your AliasVault credentials to another AliasVault server (e.g. from cloud to self-hosted or vice-versa) or to another service altogether, you can export it here. Note that all exports are unencrypted so store it in a safe place and delete it when you no longer need it.

diff --git a/docs/installation/install.md b/docs/installation/install.md index 2ea90fbcc..f0a586aeb 100644 --- a/docs/installation/install.md +++ b/docs/installation/install.md @@ -49,7 +49,7 @@ chmod +x install.sh - Client: `https://localhost` - Admin: `https://localhost/admin` -> Note: if you do not wish to run the `install.sh` wizard but want to use Docker commands directly, follow the [manual setup guide](advanced/manual-setup.md). We do however encourage the use of `install.sh` as it will guide you through all configuration steps and allow you to easily update your AliasVault instance later. +> Note: if you do not wish to run the `install.sh` wizard but want to use Docker commands directly, follow the [manual setup guide](advanced/manual-setup.md). We do however encourage the use of `install.sh` as it will guide you through all configuration steps and allow you to easily update your AliasVault server later. --- diff --git a/install.sh b/install.sh index 75e4119fa..692b2003d 100755 --- a/install.sh +++ b/install.sh @@ -1071,7 +1071,7 @@ create_env_file() { populate_hostname() { if ! grep -q "^HOSTNAME=" "$ENV_FILE" || [ -z "$(grep "^HOSTNAME=" "$ENV_FILE" | cut -d '=' -f2)" ]; then while true; do - read -p "Enter the (public) hostname where this AliasVault instance can be accessed from (e.g. aliasvault.net): " USER_HOSTNAME + read -p "Enter the (public) hostname where this AliasVault server can be accessed from (e.g. aliasvault.net): " USER_HOSTNAME if [ -n "$USER_HOSTNAME" ]; then HOSTNAME="$USER_HOSTNAME" break @@ -1292,7 +1292,7 @@ handle_registration_configuration() { CURRENT_SETTING=$(grep "^PUBLIC_REGISTRATION_ENABLED=" "$ENV_FILE" | cut -d '=' -f2) printf "${CYAN}About Public Registration:${NC}\n" - printf "Public registration allows new users to create their own accounts on your AliasVault instance.\n" + printf "Public registration allows new users to create their own accounts on your AliasVault server.\n" printf "When disabled, no new accounts can be created.\n" printf "\n" printf "${CYAN}Current Configuration:${NC}\n" @@ -2537,7 +2537,7 @@ handle_hostname_configuration() { exit 1 fi - printf "The hostname is the domain name where your AliasVault instance will be accessible.\n" + printf "The hostname is the domain name where your AliasVault server will be accessible.\n" printf "A valid hostname is required for Let's Encrypt SSL certificate generation.\n" printf "The hostname must be a real domain that points to this server (not localhost).\n" printf "\n"