web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

commit cec23f8009cbb63f37f94d82529b80ad0704a302
parent 0f89ab01bd303c0655606314b871d3e24ff66b0e
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Sun, 17 Nov 2024 08:27:16 +0000

apps-lib: edit stores, add locales

Diffstat:
Mapps-lib/src/lib/locales/en/error.json | 1+
Mapps-lib/src/lib/stores/client.ts | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/apps-lib/src/lib/locales/en/error.json b/apps-lib/src/lib/locales/en/error.json @@ -4,6 +4,7 @@ "file_path_read_bin_undefined": "The file was not found", "keystore_nostr_secretkey": "The nostr key is not configured", "network_failure": "The requested resource is not available", + "nostr_sync_disabled": "Sync to nostr network is disabled. Do you want to activate it?", "page": { "load": "There was an error loading the page", "status": { diff --git a/apps-lib/src/lib/stores/client.ts b/apps-lib/src/lib/stores/client.ts @@ -19,7 +19,7 @@ if (typeof window !== 'undefined') kv = new Keyva({ name: kv_name }); export const app_layout = writable<AppLayoutKey>(`mobile_base`); export const app_cfg_type = writable<AppConfigType>(`personal`); -export const app_render = writable<boolean>(false); +export const app_init = writable<boolean>(false); export const app_tilt = writable<boolean>(false); export const app_loading = writable<boolean>(false); export const app_splash = writable<boolean>(true);