diff --git a/src/pobsync_backend/forms.py b/src/pobsync_backend/forms.py
index 174ca00..0fa1c71 100644
--- a/src/pobsync_backend/forms.py
+++ b/src/pobsync_backend/forms.py
@@ -192,7 +192,7 @@ class SshCredentialForm(forms.ModelForm):
if not raw_private_key.strip():
if self.instance and self.instance.pk and self.instance.key_path:
return self.instance.private_key
- raise forms.ValidationError("Paste a private key, upload a private key file, or generate a key from Django.")
+ raise forms.ValidationError("Paste a private key, upload a private key file, or generate a key in pobsync.")
private_key = normalize_private_key(raw_private_key)
public_key = validate_ssh_private_key(private_key)
diff --git a/src/pobsync_backend/self_check.py b/src/pobsync_backend/self_check.py
index f8bde76..3388929 100644
--- a/src/pobsync_backend/self_check.py
+++ b/src/pobsync_backend/self_check.py
@@ -266,13 +266,13 @@ def _config_checks() -> list[SelfCheck]:
message = "Default global config exists."
if global_config.backup_root != settings.POBSYNC_BACKUP_ROOT:
status = "warning"
- message = "Global config backup root differs from the runtime backup root."
+ message = "Saved backup root differs from the active backup root."
return [
SelfCheck(
"Global config",
status,
message,
- f"database={global_config.backup_root} runtime={settings.POBSYNC_BACKUP_ROOT}",
+ f"saved={global_config.backup_root} active={settings.POBSYNC_BACKUP_ROOT}",
)
]
diff --git a/src/pobsync_backend/templates/pobsync_backend/changelog.html b/src/pobsync_backend/templates/pobsync_backend/changelog.html
index 87570fb..0e5b38a 100644
--- a/src/pobsync_backend/templates/pobsync_backend/changelog.html
+++ b/src/pobsync_backend/templates/pobsync_backend/changelog.html
@@ -12,7 +12,7 @@
{% if global_config %}Edit Global Config{% else %}Create Global Config{% endif %}