Compare commits
2
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f53fee6896 | ||
|
|
f14dfd2522 |
+1
-1
@@ -2,7 +2,7 @@ FROM python:3.10-slim-bullseye
|
|||||||
|
|
||||||
RUN apt-get clean
|
RUN apt-get clean
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y curl pkg-config build-essential libnss-myhostname
|
RUN apt-get install -y curl pkg-config build-essential
|
||||||
|
|
||||||
RUN curl -sSL https://install.python-poetry.org | python3 -
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
||||||
ENV PATH="/root/.local/bin:$PATH"
|
ENV PATH="/root/.local/bin:$PATH"
|
||||||
|
|||||||
+1
-42
@@ -53,45 +53,8 @@ async def stop_extension_background_work(
|
|||||||
):
|
):
|
||||||
"""
|
"""
|
||||||
Stop background work for extension (like asyncio.Tasks, WebSockets, etc).
|
Stop background work for extension (like asyncio.Tasks, WebSockets, etc).
|
||||||
Extensions SHOULD expose a `api_stop()` function and/or a DELETE enpoint
|
Extensions SHOULD expose a DELETE enpoint at the root level of their API.
|
||||||
at the root level of their API.
|
|
||||||
"""
|
"""
|
||||||
stopped = await _stop_extension_background_work(ext_id)
|
|
||||||
|
|
||||||
if not stopped:
|
|
||||||
# fallback to REST API call
|
|
||||||
await _stop_extension_background_work_via_api(ext_id, user, access_token)
|
|
||||||
|
|
||||||
|
|
||||||
async def _stop_extension_background_work(ext_id) -> bool:
|
|
||||||
upgrade_hash = settings.extension_upgrade_hash(ext_id) or ""
|
|
||||||
ext = Extension(ext_id, True, False, upgrade_hash=upgrade_hash)
|
|
||||||
|
|
||||||
try:
|
|
||||||
logger.info(f"Stopping background work for extension '{ext.module_name}'.")
|
|
||||||
old_module = importlib.import_module(ext.module_name)
|
|
||||||
|
|
||||||
# Extensions must expose an `{ext_id}_stop()` function at the module level
|
|
||||||
# The `api_stop()` function is for backwards compatibility (will be deprecated)
|
|
||||||
stop_fns = [f"{ext_id}_stop", "api_stop"]
|
|
||||||
stop_fn_name = next((fn for fn in stop_fns if hasattr(old_module, fn)), None)
|
|
||||||
assert stop_fn_name, "No stop function found for '{ext.module_name}'"
|
|
||||||
|
|
||||||
await getattr(old_module, stop_fn_name)()
|
|
||||||
|
|
||||||
logger.info(f"Stopped background work for extension '{ext.module_name}'.")
|
|
||||||
except Exception as ex:
|
|
||||||
logger.warning(f"Failed to stop background work for '{ext.module_name}'.")
|
|
||||||
logger.warning(ex)
|
|
||||||
return False
|
|
||||||
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
||||||
async def _stop_extension_background_work_via_api(ext_id, user, access_token):
|
|
||||||
logger.info(
|
|
||||||
f"Stopping background work for extension '{ext_id}' using the REST API."
|
|
||||||
)
|
|
||||||
async with httpx.AsyncClient() as client:
|
async with httpx.AsyncClient() as client:
|
||||||
try:
|
try:
|
||||||
url = f"http://{settings.host}:{settings.port}/{ext_id}/api/v1?usr={user}"
|
url = f"http://{settings.host}:{settings.port}/{ext_id}/api/v1?usr={user}"
|
||||||
@@ -100,11 +63,7 @@ async def _stop_extension_background_work_via_api(ext_id, user, access_token):
|
|||||||
)
|
)
|
||||||
resp = await client.delete(url=url, headers=headers)
|
resp = await client.delete(url=url, headers=headers)
|
||||||
resp.raise_for_status()
|
resp.raise_for_status()
|
||||||
logger.info(f"Stopped background work for extension '{ext_id}'.")
|
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
logger.warning(
|
|
||||||
f"Failed to stop background work for '{ext_id}' using the REST API."
|
|
||||||
)
|
|
||||||
logger.warning(ex)
|
logger.warning(ex)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -18,13 +18,16 @@ from lnbits.core.services import (
|
|||||||
)
|
)
|
||||||
from lnbits.settings import get_wallet_class, settings
|
from lnbits.settings import get_wallet_class, settings
|
||||||
from lnbits.tasks import (
|
from lnbits.tasks import (
|
||||||
|
SseListenersDict,
|
||||||
create_permanent_task,
|
create_permanent_task,
|
||||||
create_task,
|
create_task,
|
||||||
register_invoice_listener,
|
register_invoice_listener,
|
||||||
send_push_notification,
|
send_push_notification,
|
||||||
)
|
)
|
||||||
|
|
||||||
api_invoice_listeners: Dict[str, asyncio.Queue] = {}
|
api_invoice_listeners: Dict[str, asyncio.Queue] = SseListenersDict(
|
||||||
|
"api_invoice_listeners"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def register_killswitch():
|
def register_killswitch():
|
||||||
|
|||||||
@@ -85,7 +85,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="isSuperUser">
|
<div v-if="isSuperUser" id="funding-sources">
|
||||||
<lnbits-funding-sources
|
<lnbits-funding-sources
|
||||||
:form-data="formData"
|
:form-data="formData"
|
||||||
:allowed-funding-sources="settings.lnbits_allowed_funding_sources"
|
:allowed-funding-sources="settings.lnbits_allowed_funding_sources"
|
||||||
|
|||||||
@@ -165,4 +165,10 @@
|
|||||||
</q-dialog>
|
</q-dialog>
|
||||||
{% endblock %} {% block scripts %} {{ window_vars(user) }}
|
{% endblock %} {% block scripts %} {{ window_vars(user) }}
|
||||||
<script src="{{ static_url_for('static', 'js/admin.js') }}"></script>
|
<script src="{{ static_url_for('static', 'js/admin.js') }}"></script>
|
||||||
|
<style>
|
||||||
|
.introjs-tooltip-custom .introjs-tooltiptext,
|
||||||
|
.introjs-tooltip-header {
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -5,7 +5,6 @@
|
|||||||
:content-inset-level="0.5"
|
:content-inset-level="0.5"
|
||||||
>
|
>
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<strong>Node URL: </strong><em v-text="origin"></em><br />
|
|
||||||
<strong>Wallet ID: </strong><em>{{ wallet.id }}</em><br />
|
<strong>Wallet ID: </strong><em>{{ wallet.id }}</em><br />
|
||||||
<strong>Admin key: </strong><em>{{ wallet.adminkey }}</em><br />
|
<strong>Admin key: </strong><em>{{ wallet.adminkey }}</em><br />
|
||||||
<strong>Invoice/read key: </strong><em>{{ wallet.inkey }}</em>
|
<strong>Invoice/read key: </strong><em>{{ wallet.inkey }}</em>
|
||||||
|
|||||||
@@ -4,6 +4,12 @@
|
|||||||
<!---->
|
<!---->
|
||||||
{% block scripts %} {{ window_vars(user, wallet) }}
|
{% block scripts %} {{ window_vars(user, wallet) }}
|
||||||
<script src="{{ static_url_for('static', 'js/wallet.js') }}"></script>
|
<script src="{{ static_url_for('static', 'js/wallet.js') }}"></script>
|
||||||
|
<style>
|
||||||
|
.introjs-tooltip-custom .introjs-tooltiptext,
|
||||||
|
.introjs-tooltip-header {
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
<!---->
|
<!---->
|
||||||
{% block title %} {{ wallet.name }} - {{ SITE_TITLE }} {% endblock %}
|
{% block title %} {{ wallet.name }} - {{ SITE_TITLE }} {% endblock %}
|
||||||
@@ -34,7 +40,7 @@
|
|||||||
} : ''"
|
} : ''"
|
||||||
>
|
>
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<h3 class="q-my-none text-no-wrap">
|
<h3 class="q-my-none text-no-wrap" id="wallet-balance">
|
||||||
<strong v-text="formattedBalance"></strong>
|
<strong v-text="formattedBalance"></strong>
|
||||||
<small>{{LNBITS_DENOMINATION}}</small>
|
<small>{{LNBITS_DENOMINATION}}</small>
|
||||||
<lnbits-update-balance
|
<lnbits-update-balance
|
||||||
@@ -68,7 +74,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</q-card-section>
|
</q-card-section>
|
||||||
<div class="row q-pb-md q-px-md q-col-gutter-md gt-sm">
|
<div
|
||||||
|
class="row q-pb-md q-px-md q-col-gutter-md gt-sm"
|
||||||
|
id="wallet-buttons"
|
||||||
|
>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<q-btn
|
<q-btn
|
||||||
unelevated
|
unelevated
|
||||||
@@ -165,6 +174,7 @@
|
|||||||
:hide-header="mobileSimple"
|
:hide-header="mobileSimple"
|
||||||
:hide-bottom="mobileSimple"
|
:hide-bottom="mobileSimple"
|
||||||
@request="fetchPayments"
|
@request="fetchPayments"
|
||||||
|
id="wallet-table"
|
||||||
>
|
>
|
||||||
<template v-slot:header="props">
|
<template v-slot:header="props">
|
||||||
<q-tr :props="props">
|
<q-tr :props="props">
|
||||||
@@ -895,6 +905,7 @@
|
|||||||
</q-dialog>
|
</q-dialog>
|
||||||
|
|
||||||
<q-tabs
|
<q-tabs
|
||||||
|
id="mobile-wallet-buttons"
|
||||||
class="lt-md fixed-bottom left-0 right-0 bg-primary text-white shadow-2 z-top"
|
class="lt-md fixed-bottom left-0 right-0 bg-primary text-white shadow-2 z-top"
|
||||||
active-class="px-0"
|
active-class="px-0"
|
||||||
indicator-color="transparent"
|
indicator-color="transparent"
|
||||||
@@ -922,11 +933,8 @@
|
|||||||
|
|
||||||
<q-dialog v-model="disclaimerDialog.show" position="top">
|
<q-dialog v-model="disclaimerDialog.show" position="top">
|
||||||
<q-card class="q-pa-lg">
|
<q-card class="q-pa-lg">
|
||||||
<h6
|
<h6 class="q-my-md text-primary">Warning</h6>
|
||||||
class="q-my-md text-primary"
|
<p v-text="$t('disclaimer_dialog')"></p>
|
||||||
v-text="$t('disclaimer_dialog_title')"
|
|
||||||
></h6>
|
|
||||||
<p class="whitespace-pre-line" v-text="$t('disclaimer_dialog')"></p>
|
|
||||||
<div class="row q-mt-lg">
|
<div class="row q-mt-lg">
|
||||||
<q-btn
|
<q-btn
|
||||||
outline
|
outline
|
||||||
|
|||||||
@@ -824,9 +824,8 @@ async def api_install_extension(
|
|||||||
|
|
||||||
await add_installed_extension(ext_info)
|
await add_installed_extension(ext_info)
|
||||||
|
|
||||||
if extension.is_upgrade_extension:
|
# call stop while the old routes are still active
|
||||||
# call stop while the old routes are still active
|
await stop_extension_background_work(data.ext_id, user.id, access_token)
|
||||||
await stop_extension_background_work(data.ext_id, user.id, access_token)
|
|
||||||
|
|
||||||
if data.ext_id not in settings.lnbits_deactivated_extensions:
|
if data.ext_id not in settings.lnbits_deactivated_extensions:
|
||||||
settings.lnbits_deactivated_extensions += [data.ext_id]
|
settings.lnbits_deactivated_extensions += [data.ext_id]
|
||||||
|
|||||||
@@ -92,10 +92,6 @@ def template_renderer(additional_folders: Optional[List] = None) -> Jinja2Templa
|
|||||||
|
|
||||||
def get_current_extension_name() -> str:
|
def get_current_extension_name() -> str:
|
||||||
"""
|
"""
|
||||||
DEPRECATED: Use the repo name instead, will be removed in the future
|
|
||||||
before: `register_invoice_listener(invoice_queue, get_current_extension_name())`
|
|
||||||
after: `register_invoice_listener(invoice_queue, "my-extension")`
|
|
||||||
|
|
||||||
Returns the name of the extension that calls this method.
|
Returns the name of the extension that calls this method.
|
||||||
"""
|
"""
|
||||||
import inspect
|
import inspect
|
||||||
|
|||||||
@@ -68,16 +68,6 @@ class InstalledExtensionsSettings(LNbitsSettings):
|
|||||||
# list of redirects that extensions want to perform
|
# list of redirects that extensions want to perform
|
||||||
lnbits_extensions_redirects: List[Any] = Field(default=[])
|
lnbits_extensions_redirects: List[Any] = Field(default=[])
|
||||||
|
|
||||||
def extension_upgrade_path(self, ext_id: str) -> Optional[str]:
|
|
||||||
return next(
|
|
||||||
(e for e in self.lnbits_upgraded_extensions if e.endswith(f"/{ext_id}")),
|
|
||||||
None,
|
|
||||||
)
|
|
||||||
|
|
||||||
def extension_upgrade_hash(self, ext_id: str) -> Optional[str]:
|
|
||||||
path = settings.extension_upgrade_path(ext_id)
|
|
||||||
return path.split("/")[0] if path else None
|
|
||||||
|
|
||||||
|
|
||||||
class ThemesSettings(LNbitsSettings):
|
class ThemesSettings(LNbitsSettings):
|
||||||
lnbits_site_title: str = Field(default="LNbits")
|
lnbits_site_title: str = Field(default="LNbits")
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+10
-10
File diff suppressed because one or more lines are too long
@@ -550,7 +550,3 @@ video {
|
|||||||
padding: 0.2rem;
|
padding: 0.2rem;
|
||||||
border-radius: 0.2rem;
|
border-radius: 0.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.whitespace-pre-line {
|
|
||||||
white-space: pre-line;
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -61,10 +61,9 @@ window.localisation.br = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
'Taxa de serviço cobrada pelo administrador do servidor LNbits por transação de saída',
|
'Taxa de serviço cobrada pelo administrador do servidor LNbits por transação de saída',
|
||||||
toggle_darkmode: 'Alternar modo escuro',
|
toggle_darkmode: 'Alternar modo escuro',
|
||||||
payment_reactions: 'Reações de Pagamento',
|
|
||||||
view_swagger_docs: 'Ver a documentação da API do LNbits Swagger',
|
view_swagger_docs: 'Ver a documentação da API do LNbits Swagger',
|
||||||
api_docs: 'Documentação da API',
|
api_docs: 'Documentação da API',
|
||||||
api_keys_api_docs: 'URL do Node, chaves da API e documentação da API',
|
api_keys_api_docs: 'Chaves de API e documentação da API',
|
||||||
lnbits_version: 'Versão do LNbits',
|
lnbits_version: 'Versão do LNbits',
|
||||||
runs_on: 'Executa em',
|
runs_on: 'Executa em',
|
||||||
credit_hint: 'Pressione Enter para creditar a conta',
|
credit_hint: 'Pressione Enter para creditar a conta',
|
||||||
@@ -191,12 +190,6 @@ window.localisation.br = {
|
|||||||
allow_access_hint: 'Permitir acesso por IP (substituirá os IPs bloqueados)',
|
allow_access_hint: 'Permitir acesso por IP (substituirá os IPs bloqueados)',
|
||||||
enter_ip: 'Digite o IP e pressione enter',
|
enter_ip: 'Digite o IP e pressione enter',
|
||||||
rate_limiter: 'Limitador de Taxa',
|
rate_limiter: 'Limitador de Taxa',
|
||||||
wallet_limiter: 'Limitador de Carteira',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Retirada máxima diária da carteira em sats (0 para desativar)',
|
|
||||||
wallet_max_ballance: 'Saldo máximo da carteira em sats (0 para desativar)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Minutos e segundos entre transações por carteira (0 para desativar)',
|
|
||||||
number_of_requests: 'Número de solicitações',
|
number_of_requests: 'Número de solicitações',
|
||||||
time_unit: 'Unidade de tempo',
|
time_unit: 'Unidade de tempo',
|
||||||
minute: 'minuto',
|
minute: 'minuto',
|
||||||
@@ -215,7 +208,6 @@ window.localisation.br = {
|
|||||||
account_settings: 'Configurações da Conta',
|
account_settings: 'Configurações da Conta',
|
||||||
signin_with_google: 'Entrar com o Google',
|
signin_with_google: 'Entrar com o Google',
|
||||||
signin_with_github: 'Entrar com GitHub',
|
signin_with_github: 'Entrar com GitHub',
|
||||||
signin_with_keycloak: 'Entrar com Keycloak',
|
|
||||||
username_or_email: 'Nome de usuário ou E-mail',
|
username_or_email: 'Nome de usuário ou E-mail',
|
||||||
password: 'Senha',
|
password: 'Senha',
|
||||||
password_config: 'Configuração de Senha',
|
password_config: 'Configuração de Senha',
|
||||||
@@ -238,8 +230,5 @@ window.localisation.br = {
|
|||||||
auth_provider: 'Provedor de Autenticação',
|
auth_provider: 'Provedor de Autenticação',
|
||||||
my_account: 'Minha Conta',
|
my_account: 'Minha Conta',
|
||||||
back: 'Voltar',
|
back: 'Voltar',
|
||||||
logout: 'Sair',
|
logout: 'Sair'
|
||||||
look_and_feel: 'Aparência',
|
|
||||||
language: 'Idioma',
|
|
||||||
color_scheme: 'Esquema de Cores'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -57,10 +57,9 @@ window.localisation.cn = {
|
|||||||
service_fee_max: '服务费:%{amount}% 每笔交易(最高 %{max} sats)',
|
service_fee_max: '服务费:%{amount}% 每笔交易(最高 %{max} sats)',
|
||||||
service_fee_tooltip: 'LNbits服务器管理员每笔外发交易收取的服务费',
|
service_fee_tooltip: 'LNbits服务器管理员每笔外发交易收取的服务费',
|
||||||
toggle_darkmode: '切换暗黑模式',
|
toggle_darkmode: '切换暗黑模式',
|
||||||
payment_reactions: '支付反应',
|
|
||||||
view_swagger_docs: '查看 LNbits Swagger API 文档',
|
view_swagger_docs: '查看 LNbits Swagger API 文档',
|
||||||
api_docs: 'API文档',
|
api_docs: 'API文档',
|
||||||
api_keys_api_docs: '节点URL、API密钥和API文档',
|
api_keys_api_docs: 'API密钥和API文档',
|
||||||
lnbits_version: 'LNbits版本',
|
lnbits_version: 'LNbits版本',
|
||||||
runs_on: '可运行在',
|
runs_on: '可运行在',
|
||||||
credit_hint: '按 Enter 键充值账户',
|
credit_hint: '按 Enter 键充值账户',
|
||||||
@@ -180,11 +179,6 @@ window.localisation.cn = {
|
|||||||
allow_access_hint: '允许通过IP访问(将覆盖被屏蔽的IP)',
|
allow_access_hint: '允许通过IP访问(将覆盖被屏蔽的IP)',
|
||||||
enter_ip: '输入IP地址并按回车键',
|
enter_ip: '输入IP地址并按回车键',
|
||||||
rate_limiter: '速率限制器',
|
rate_limiter: '速率限制器',
|
||||||
wallet_limiter: '钱包限制器',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'每日钱包最大提现额度(单位:sats)(设为0则禁用)',
|
|
||||||
wallet_max_ballance: '钱包最大余额(以sats计)(设为0则禁用)',
|
|
||||||
wallet_limit_secs_between_trans: '每个钱包交易间最少秒数(设为0则禁用)',
|
|
||||||
number_of_requests: '请求次数',
|
number_of_requests: '请求次数',
|
||||||
time_unit: '时间单位',
|
time_unit: '时间单位',
|
||||||
minute: '分钟',
|
minute: '分钟',
|
||||||
@@ -202,8 +196,7 @@ window.localisation.cn = {
|
|||||||
create_account: '创建账户',
|
create_account: '创建账户',
|
||||||
account_settings: '账户设置',
|
account_settings: '账户设置',
|
||||||
signin_with_google: '使用谷歌账号登录',
|
signin_with_google: '使用谷歌账号登录',
|
||||||
signin_with_github: '使用GitHub登录',
|
signin_with_github: '使用 GitHub 登录',
|
||||||
signin_with_keycloak: '使用Keycloak登录',
|
|
||||||
username_or_email: '用户名或电子邮箱',
|
username_or_email: '用户名或电子邮箱',
|
||||||
password: '密码',
|
password: '密码',
|
||||||
password_config: '密码配置',
|
password_config: '密码配置',
|
||||||
@@ -226,8 +219,5 @@ window.localisation.cn = {
|
|||||||
auth_provider: '认证提供者',
|
auth_provider: '认证提供者',
|
||||||
my_account: '我的账户',
|
my_account: '我的账户',
|
||||||
back: '返回',
|
back: '返回',
|
||||||
logout: '注销',
|
logout: '注销'
|
||||||
look_and_feel: '外观和感觉',
|
|
||||||
language: '语言',
|
|
||||||
color_scheme: '配色方案'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,10 +61,9 @@ window.localisation.cs = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
'Servisní poplatek účtovaný správcem LNbits serveru za odchozí transakci',
|
'Servisní poplatek účtovaný správcem LNbits serveru za odchozí transakci',
|
||||||
toggle_darkmode: 'Přepnout tmavý režim',
|
toggle_darkmode: 'Přepnout tmavý režim',
|
||||||
payment_reactions: 'Reakce na platby',
|
|
||||||
view_swagger_docs: 'Zobrazit LNbits Swagger API dokumentaci',
|
view_swagger_docs: 'Zobrazit LNbits Swagger API dokumentaci',
|
||||||
api_docs: 'API dokumentace',
|
api_docs: 'API dokumentace',
|
||||||
api_keys_api_docs: 'Adresa uzlu, API klíče a API dokumentace',
|
api_keys_api_docs: 'API klíče a API dokumentace',
|
||||||
lnbits_version: 'Verze LNbits',
|
lnbits_version: 'Verze LNbits',
|
||||||
runs_on: 'Běží na',
|
runs_on: 'Běží na',
|
||||||
credit_hint: 'Stiskněte Enter pro připsání na účet',
|
credit_hint: 'Stiskněte Enter pro připsání na účet',
|
||||||
@@ -188,12 +187,6 @@ window.localisation.cs = {
|
|||||||
allow_access_hint: 'Povolit přístup podle IP (přepíše blokované IP)',
|
allow_access_hint: 'Povolit přístup podle IP (přepíše blokované IP)',
|
||||||
enter_ip: 'Zadejte IP a stiskněte enter',
|
enter_ip: 'Zadejte IP a stiskněte enter',
|
||||||
rate_limiter: 'Omezovač počtu požadavků',
|
rate_limiter: 'Omezovač počtu požadavků',
|
||||||
wallet_limiter: 'Omezení peněženky',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Maximální denní limit pro výběr z peněženky v sats (0 pro deaktivaci)',
|
|
||||||
wallet_max_ballance: 'Maximální zůstatek v peněžence v sats (0 pro zakázání)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Minimální počet sekund mezi transakcemi na peněženku (0 pro vypnutí)',
|
|
||||||
number_of_requests: 'Počet požadavků',
|
number_of_requests: 'Počet požadavků',
|
||||||
time_unit: 'Časová jednotka',
|
time_unit: 'Časová jednotka',
|
||||||
minute: 'minuta',
|
minute: 'minuta',
|
||||||
@@ -212,7 +205,6 @@ window.localisation.cs = {
|
|||||||
account_settings: 'Nastavení účtu',
|
account_settings: 'Nastavení účtu',
|
||||||
signin_with_google: 'Přihlásit se přes Google',
|
signin_with_google: 'Přihlásit se přes Google',
|
||||||
signin_with_github: 'Přihlásit se přes GitHub',
|
signin_with_github: 'Přihlásit se přes GitHub',
|
||||||
signin_with_keycloak: 'Přihlásit se přes Keycloak',
|
|
||||||
username_or_email: 'Uživatelské jméno nebo Email',
|
username_or_email: 'Uživatelské jméno nebo Email',
|
||||||
password: 'Heslo',
|
password: 'Heslo',
|
||||||
password_config: 'Konfigurace hesla',
|
password_config: 'Konfigurace hesla',
|
||||||
@@ -235,8 +227,5 @@ window.localisation.cs = {
|
|||||||
auth_provider: 'Poskytovatel ověření',
|
auth_provider: 'Poskytovatel ověření',
|
||||||
my_account: 'Můj účet',
|
my_account: 'Můj účet',
|
||||||
back: 'Zpět',
|
back: 'Zpět',
|
||||||
logout: 'Odhlásit se',
|
logout: 'Odhlásit se'
|
||||||
look_and_feel: 'Vzhled a chování',
|
|
||||||
language: 'Jazyk',
|
|
||||||
color_scheme: 'Barevné schéma'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,10 +63,9 @@ window.localisation.de = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
'Bearbeitungsgebühr, die vom LNbits Server-Administrator pro ausgehender Transaktion berechnet wird',
|
'Bearbeitungsgebühr, die vom LNbits Server-Administrator pro ausgehender Transaktion berechnet wird',
|
||||||
toggle_darkmode: 'Auf Dark Mode umschalten',
|
toggle_darkmode: 'Auf Dark Mode umschalten',
|
||||||
payment_reactions: 'Zahlungsreaktionen',
|
|
||||||
view_swagger_docs: 'LNbits Swagger API-Dokumentation',
|
view_swagger_docs: 'LNbits Swagger API-Dokumentation',
|
||||||
api_docs: 'API-Dokumentation',
|
api_docs: 'API-Dokumentation',
|
||||||
api_keys_api_docs: 'Knoten-URL, API-Schlüssel und API-Dokumentation',
|
api_keys_api_docs: 'API-Schlüssel und API-Dokumentation',
|
||||||
lnbits_version: 'LNbits-Version',
|
lnbits_version: 'LNbits-Version',
|
||||||
runs_on: 'Läuft auf',
|
runs_on: 'Läuft auf',
|
||||||
credit_hint: 'Klicke Enter, um das Konto zu belasten',
|
credit_hint: 'Klicke Enter, um das Konto zu belasten',
|
||||||
@@ -193,13 +192,6 @@ window.localisation.de = {
|
|||||||
allow_access_hint: 'Zugriff durch IP erlauben (überschreibt blockierte IPs)',
|
allow_access_hint: 'Zugriff durch IP erlauben (überschreibt blockierte IPs)',
|
||||||
enter_ip: 'Geben Sie die IP ein und drücken Sie die Eingabetaste',
|
enter_ip: 'Geben Sie die IP ein und drücken Sie die Eingabetaste',
|
||||||
rate_limiter: 'Ratenbegrenzer',
|
rate_limiter: 'Ratenbegrenzer',
|
||||||
wallet_limiter: 'Geldbeutel-Limiter',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Maximales tägliches Wallet-Auszahlungslimit in Sats (0 zum Deaktivieren)',
|
|
||||||
wallet_max_ballance:
|
|
||||||
'Maximales Guthaben der Wallet in Sats (0 zum Deaktivieren)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Mindestsekunden zwischen Transaktionen pro Wallet (0 zum Deaktivieren)',
|
|
||||||
number_of_requests: 'Anzahl der Anfragen',
|
number_of_requests: 'Anzahl der Anfragen',
|
||||||
time_unit: 'Zeiteinheit',
|
time_unit: 'Zeiteinheit',
|
||||||
minute: 'Minute',
|
minute: 'Minute',
|
||||||
@@ -219,7 +211,6 @@ window.localisation.de = {
|
|||||||
account_settings: 'Kontoeinstellungen',
|
account_settings: 'Kontoeinstellungen',
|
||||||
signin_with_google: 'Mit Google anmelden',
|
signin_with_google: 'Mit Google anmelden',
|
||||||
signin_with_github: 'Anmelden mit GitHub',
|
signin_with_github: 'Anmelden mit GitHub',
|
||||||
signin_with_keycloak: 'Mit Keycloak anmelden',
|
|
||||||
username_or_email: 'Benutzername oder E-Mail',
|
username_or_email: 'Benutzername oder E-Mail',
|
||||||
password: 'Passwort',
|
password: 'Passwort',
|
||||||
password_config: 'Passwortkonfiguration',
|
password_config: 'Passwortkonfiguration',
|
||||||
@@ -242,8 +233,5 @@ window.localisation.de = {
|
|||||||
auth_provider: 'Anbieter für Authentifizierung',
|
auth_provider: 'Anbieter für Authentifizierung',
|
||||||
my_account: 'Mein Konto',
|
my_account: 'Mein Konto',
|
||||||
back: 'Zurück',
|
back: 'Zurück',
|
||||||
logout: 'Abmelden',
|
logout: 'Abmelden'
|
||||||
look_and_feel: 'Aussehen und Verhalten',
|
|
||||||
language: 'Sprache',
|
|
||||||
color_scheme: 'Farbschema'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ window.localisation.en = {
|
|||||||
payment_reactions: 'Payment Reactions',
|
payment_reactions: 'Payment Reactions',
|
||||||
view_swagger_docs: 'View LNbits Swagger API docs',
|
view_swagger_docs: 'View LNbits Swagger API docs',
|
||||||
api_docs: 'API docs',
|
api_docs: 'API docs',
|
||||||
api_keys_api_docs: 'Node URL, API keys and API docs',
|
api_keys_api_docs: 'API keys and API docs',
|
||||||
lnbits_version: 'LNbits version',
|
lnbits_version: 'LNbits version',
|
||||||
runs_on: 'Runs on',
|
runs_on: 'Runs on',
|
||||||
credit_hint: 'Press Enter to credit account',
|
credit_hint: 'Press Enter to credit account',
|
||||||
@@ -97,12 +97,8 @@ window.localisation.en = {
|
|||||||
'This is an LNURL-withdraw QR code for slurping everything from this wallet. Do not share with anyone. It is compatible with balanceCheck and balanceNotify so your wallet may keep pulling the funds continuously from here after the first withdraw.',
|
'This is an LNURL-withdraw QR code for slurping everything from this wallet. Do not share with anyone. It is compatible with balanceCheck and balanceNotify so your wallet may keep pulling the funds continuously from here after the first withdraw.',
|
||||||
i_understand: 'I understand',
|
i_understand: 'I understand',
|
||||||
copy_wallet_url: 'Copy wallet URL',
|
copy_wallet_url: 'Copy wallet URL',
|
||||||
disclaimer_dialog_title: 'Important!',
|
disclaimer_dialog:
|
||||||
disclaimer_dialog: `You *must* save your login credentials to be able to access your wallet again.If you lose them, you will lose access to your wallet and funds.
|
'To ensure continuous access to your wallets, please remember to securely store your login credentials! Please visit the "My Account" page. This service is in BETA, and we hold no responsibility for people losing access to funds.',
|
||||||
|
|
||||||
Find your login credentials on your account settings page.
|
|
||||||
|
|
||||||
This service is in BETA. LNbits holds no responsibility for loss of access to funds.`,
|
|
||||||
no_transactions: 'No transactions made yet',
|
no_transactions: 'No transactions made yet',
|
||||||
manage: 'Manage',
|
manage: 'Manage',
|
||||||
extensions: 'Extensions',
|
extensions: 'Extensions',
|
||||||
|
|||||||
@@ -61,10 +61,9 @@ window.localisation.es = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
'Comisión de servicio cobrada por el administrador del servidor LNbits por cada transacción saliente',
|
'Comisión de servicio cobrada por el administrador del servidor LNbits por cada transacción saliente',
|
||||||
toggle_darkmode: 'Cambiar modo oscuro',
|
toggle_darkmode: 'Cambiar modo oscuro',
|
||||||
payment_reactions: 'Reacciones de Pago',
|
|
||||||
view_swagger_docs: 'Ver documentación de API de LNbits Swagger',
|
view_swagger_docs: 'Ver documentación de API de LNbits Swagger',
|
||||||
api_docs: 'Documentación de API',
|
api_docs: 'Documentación de API',
|
||||||
api_keys_api_docs: 'URL del nodo, claves de API y documentación de API',
|
api_keys_api_docs: 'Claves de API y documentación de API',
|
||||||
lnbits_version: 'Versión de LNbits',
|
lnbits_version: 'Versión de LNbits',
|
||||||
runs_on: 'Corre en',
|
runs_on: 'Corre en',
|
||||||
credit_hint: 'Presione Enter para cargar la cuenta',
|
credit_hint: 'Presione Enter para cargar la cuenta',
|
||||||
@@ -191,13 +190,6 @@ window.localisation.es = {
|
|||||||
allow_access_hint: 'Permitir acceso por IP (anulará las IPs bloqueadas)',
|
allow_access_hint: 'Permitir acceso por IP (anulará las IPs bloqueadas)',
|
||||||
enter_ip: 'Ingrese la IP y presione enter',
|
enter_ip: 'Ingrese la IP y presione enter',
|
||||||
rate_limiter: 'Limitador de tasa',
|
rate_limiter: 'Limitador de tasa',
|
||||||
wallet_limiter: 'Limitador de Cartera',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Límite diario de retiro de la cartera en sats (0 para deshabilitar)',
|
|
||||||
wallet_max_ballance:
|
|
||||||
'Saldo máximo de la billetera en sats (0 para desactivar)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Mín. segs entre transacciones por cartera (0 para desactivar)',
|
|
||||||
number_of_requests: 'Número de solicitudes',
|
number_of_requests: 'Número de solicitudes',
|
||||||
time_unit: 'Unidad de tiempo',
|
time_unit: 'Unidad de tiempo',
|
||||||
minute: 'minuto',
|
minute: 'minuto',
|
||||||
@@ -217,7 +209,6 @@ window.localisation.es = {
|
|||||||
account_settings: 'Configuración de la cuenta',
|
account_settings: 'Configuración de la cuenta',
|
||||||
signin_with_google: 'Inicia sesión con Google',
|
signin_with_google: 'Inicia sesión con Google',
|
||||||
signin_with_github: 'Inicia sesión con GitHub',
|
signin_with_github: 'Inicia sesión con GitHub',
|
||||||
signin_with_keycloak: 'Iniciar sesión con Keycloak',
|
|
||||||
username_or_email: 'Nombre de usuario o correo electrónico',
|
username_or_email: 'Nombre de usuario o correo electrónico',
|
||||||
password: 'Contraseña',
|
password: 'Contraseña',
|
||||||
password_config: 'Configuración de Contraseña',
|
password_config: 'Configuración de Contraseña',
|
||||||
@@ -240,8 +231,5 @@ window.localisation.es = {
|
|||||||
auth_provider: 'Proveedor de Autenticación',
|
auth_provider: 'Proveedor de Autenticación',
|
||||||
my_account: 'Mi cuenta',
|
my_account: 'Mi cuenta',
|
||||||
back: 'Atrás',
|
back: 'Atrás',
|
||||||
logout: 'Cerrar sesión',
|
logout: 'Cerrar sesión'
|
||||||
look_and_feel: 'Apariencia',
|
|
||||||
language: 'Idioma',
|
|
||||||
color_scheme: 'Esquema de colores'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ window.localisation.fi = {
|
|||||||
toggle_reactions: 'Käytä tapahtuma efektejä',
|
toggle_reactions: 'Käytä tapahtuma efektejä',
|
||||||
view_swagger_docs: 'Näytä LNbits Swagger API-dokumentit',
|
view_swagger_docs: 'Näytä LNbits Swagger API-dokumentit',
|
||||||
api_docs: 'API-dokumentaatio',
|
api_docs: 'API-dokumentaatio',
|
||||||
api_keys_api_docs: 'Solmun URL, API-avaimet ja -dokumentaatio',
|
api_keys_api_docs: 'API-avaimet ja -dokumentaatio',
|
||||||
lnbits_version: 'LNbits versio',
|
lnbits_version: 'LNbits versio',
|
||||||
runs_on: 'Mukana menossa',
|
runs_on: 'Mukana menossa',
|
||||||
credit_hint: 'Hyväksy painamalla Enter',
|
credit_hint: 'Hyväksy painamalla Enter',
|
||||||
@@ -191,12 +191,6 @@ window.localisation.fi = {
|
|||||||
allow_access_hint: 'Salli pääsy IP-osoitteen perusteella (ohittaa estot)',
|
allow_access_hint: 'Salli pääsy IP-osoitteen perusteella (ohittaa estot)',
|
||||||
enter_ip: 'Anna IP ja paina +',
|
enter_ip: 'Anna IP ja paina +',
|
||||||
rate_limiter: 'Toiston rajoitin',
|
rate_limiter: 'Toiston rajoitin',
|
||||||
wallet_limiter: 'Lompakon Rajoitin',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Maksimi päivittäinen lompakon nosto sateissa (0 poistaa käytöstä)',
|
|
||||||
wallet_max_ballance: 'Lompakon maksimisaldo satosheina (0 poistaa käytöstä)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Min sekuntia transaktioiden välillä lompakkoa kohden (0 poistaa käytöstä)',
|
|
||||||
number_of_requests: 'Pyyntöjen lukumäärä',
|
number_of_requests: 'Pyyntöjen lukumäärä',
|
||||||
time_unit: 'aikayksikkö',
|
time_unit: 'aikayksikkö',
|
||||||
minute: 'minuutti',
|
minute: 'minuutti',
|
||||||
@@ -215,7 +209,6 @@ window.localisation.fi = {
|
|||||||
account_settings: 'Tilin asetukset',
|
account_settings: 'Tilin asetukset',
|
||||||
signin_with_google: 'Kirjaudu Google-tunnuksella',
|
signin_with_google: 'Kirjaudu Google-tunnuksella',
|
||||||
signin_with_github: 'Kirjaudu GitHub-tunnuksella',
|
signin_with_github: 'Kirjaudu GitHub-tunnuksella',
|
||||||
signin_with_keycloak: 'Kirjaudu Keycloak-tunnuksella',
|
|
||||||
username_or_email: 'Käyttäjänimi tai sähköposti',
|
username_or_email: 'Käyttäjänimi tai sähköposti',
|
||||||
password: 'Anna uusi salasana',
|
password: 'Anna uusi salasana',
|
||||||
password_config: 'Salasanan määritys',
|
password_config: 'Salasanan määritys',
|
||||||
|
|||||||
@@ -65,10 +65,9 @@ window.localisation.fr = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
"Frais de service facturés par l'administrateur du serveur LNbits pour chaque transaction sortante",
|
"Frais de service facturés par l'administrateur du serveur LNbits pour chaque transaction sortante",
|
||||||
toggle_darkmode: 'Basculer le mode sombre',
|
toggle_darkmode: 'Basculer le mode sombre',
|
||||||
payment_reactions: 'Réactions de paiement',
|
|
||||||
view_swagger_docs: "Voir les documentation de l'API Swagger de LNbits",
|
view_swagger_docs: "Voir les documentation de l'API Swagger de LNbits",
|
||||||
api_docs: "Documentation de l'API",
|
api_docs: "Documentation de l'API",
|
||||||
api_keys_api_docs: 'URL du nœud, clés API et documentation API',
|
api_keys_api_docs: "Clés API et documentation de l'API",
|
||||||
lnbits_version: 'Version de LNbits',
|
lnbits_version: 'Version de LNbits',
|
||||||
runs_on: 'Fonctionne sur',
|
runs_on: 'Fonctionne sur',
|
||||||
credit_hint: 'Appuyez sur Entrée pour créditer le compte',
|
credit_hint: 'Appuyez sur Entrée pour créditer le compte',
|
||||||
@@ -196,13 +195,6 @@ window.localisation.fr = {
|
|||||||
"Autoriser l'accès par IP (cela passera outre les IP bloquées)",
|
"Autoriser l'accès par IP (cela passera outre les IP bloquées)",
|
||||||
enter_ip: "Entrez l'adresse IP et appuyez sur Entrée",
|
enter_ip: "Entrez l'adresse IP et appuyez sur Entrée",
|
||||||
rate_limiter: 'Limiteur de débit',
|
rate_limiter: 'Limiteur de débit',
|
||||||
wallet_limiter: 'Limiteur de portefeuille',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Retrait quotidien maximum du portefeuille en sats (0 pour désactiver)',
|
|
||||||
wallet_max_ballance:
|
|
||||||
'Solde maximum du portefeuille en sats (0 pour désactiver)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Minutes et secondes entre les transactions par portefeuille (0 pour désactiver)',
|
|
||||||
number_of_requests: 'Nombre de requêtes',
|
number_of_requests: 'Nombre de requêtes',
|
||||||
time_unit: 'Unité de temps',
|
time_unit: 'Unité de temps',
|
||||||
minute: 'minute',
|
minute: 'minute',
|
||||||
@@ -221,7 +213,6 @@ window.localisation.fr = {
|
|||||||
account_settings: 'Paramètres du compte',
|
account_settings: 'Paramètres du compte',
|
||||||
signin_with_google: 'Connectez-vous avec Google',
|
signin_with_google: 'Connectez-vous avec Google',
|
||||||
signin_with_github: 'Connectez-vous avec GitHub',
|
signin_with_github: 'Connectez-vous avec GitHub',
|
||||||
signin_with_keycloak: 'Connectez-vous avec Keycloak',
|
|
||||||
username_or_email: "Nom d'utilisateur ou e-mail",
|
username_or_email: "Nom d'utilisateur ou e-mail",
|
||||||
password: 'Mot de passe',
|
password: 'Mot de passe',
|
||||||
password_config: 'Configuration du mot de passe',
|
password_config: 'Configuration du mot de passe',
|
||||||
@@ -244,8 +235,5 @@ window.localisation.fr = {
|
|||||||
auth_provider: "Fournisseur d'authentification",
|
auth_provider: "Fournisseur d'authentification",
|
||||||
my_account: 'Mon compte',
|
my_account: 'Mon compte',
|
||||||
back: 'Retour',
|
back: 'Retour',
|
||||||
logout: 'Déconnexion',
|
logout: 'Déconnexion'
|
||||||
look_and_feel: 'Apparence',
|
|
||||||
language: 'Langue',
|
|
||||||
color_scheme: 'Schéma de couleurs'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,10 +62,9 @@ window.localisation.it = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
"Commissione di servizio addebitata dall'amministratore del server LNbits per ogni transazione in uscita",
|
"Commissione di servizio addebitata dall'amministratore del server LNbits per ogni transazione in uscita",
|
||||||
toggle_darkmode: 'Attiva la modalità notturna',
|
toggle_darkmode: 'Attiva la modalità notturna',
|
||||||
payment_reactions: 'Reazioni al Pagamento',
|
|
||||||
view_swagger_docs: "Visualizza i documentazione dell'API Swagger di LNbits",
|
view_swagger_docs: "Visualizza i documentazione dell'API Swagger di LNbits",
|
||||||
api_docs: "Documentazione dell'API",
|
api_docs: "Documentazione dell'API",
|
||||||
api_keys_api_docs: 'URL del nodo, chiavi API e documentazione API',
|
api_keys_api_docs: "Chiavi API e documentazione dell'API",
|
||||||
lnbits_version: 'Versione di LNbits',
|
lnbits_version: 'Versione di LNbits',
|
||||||
runs_on: 'Esegue su',
|
runs_on: 'Esegue su',
|
||||||
credit_hint: 'Premere Invio per accreditare i fondi',
|
credit_hint: 'Premere Invio per accreditare i fondi',
|
||||||
@@ -192,13 +191,6 @@ window.localisation.it = {
|
|||||||
"Consenti l'accesso per IP (sovrascriverà gli IP bloccati)",
|
"Consenti l'accesso per IP (sovrascriverà gli IP bloccati)",
|
||||||
enter_ip: "Inserisci l'IP e premi invio",
|
enter_ip: "Inserisci l'IP e premi invio",
|
||||||
rate_limiter: 'Limitatore di frequenza',
|
rate_limiter: 'Limitatore di frequenza',
|
||||||
wallet_limiter: 'Limitatore del Portafoglio',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Prelievo massimo giornaliero dal portafoglio in sats (0 per disabilitare)',
|
|
||||||
wallet_max_ballance:
|
|
||||||
'Saldo massimo del portafoglio in sats (0 per disabilitare)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Minuti e secondi tra transazioni per portafoglio (0 per disabilitare)',
|
|
||||||
number_of_requests: 'Numero di richieste',
|
number_of_requests: 'Numero di richieste',
|
||||||
time_unit: 'Unità di tempo',
|
time_unit: 'Unità di tempo',
|
||||||
minute: 'minuto',
|
minute: 'minuto',
|
||||||
@@ -218,7 +210,6 @@ window.localisation.it = {
|
|||||||
account_settings: "Impostazioni dell'account",
|
account_settings: "Impostazioni dell'account",
|
||||||
signin_with_google: 'Accedi con Google',
|
signin_with_google: 'Accedi con Google',
|
||||||
signin_with_github: 'Accedi con GitHub',
|
signin_with_github: 'Accedi con GitHub',
|
||||||
signin_with_keycloak: 'Accedi con Keycloak',
|
|
||||||
username_or_email: 'Nome utente o Email',
|
username_or_email: 'Nome utente o Email',
|
||||||
password: 'Password',
|
password: 'Password',
|
||||||
password_config: 'Configurazione della password',
|
password_config: 'Configurazione della password',
|
||||||
@@ -241,8 +232,5 @@ window.localisation.it = {
|
|||||||
auth_provider: 'Provider di Autenticazione',
|
auth_provider: 'Provider di Autenticazione',
|
||||||
my_account: 'Il mio account',
|
my_account: 'Il mio account',
|
||||||
back: 'Indietro',
|
back: 'Indietro',
|
||||||
logout: 'Esci',
|
logout: 'Esci'
|
||||||
look_and_feel: 'Aspetto e Comportamento',
|
|
||||||
language: 'Lingua',
|
|
||||||
color_scheme: 'Schema dei colori'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,10 +59,9 @@ window.localisation.jp = {
|
|||||||
service_fee_max: '取引手数料:%{amount}%(最大%{max}サトシ)',
|
service_fee_max: '取引手数料:%{amount}%(最大%{max}サトシ)',
|
||||||
service_fee_tooltip: 'LNbitsサーバー管理者が発生する送金ごとの手数料',
|
service_fee_tooltip: 'LNbitsサーバー管理者が発生する送金ごとの手数料',
|
||||||
toggle_darkmode: 'ダークモードを切り替える',
|
toggle_darkmode: 'ダークモードを切り替える',
|
||||||
payment_reactions: '支払いの反応',
|
|
||||||
view_swagger_docs: 'Swaggerドキュメントを表示',
|
view_swagger_docs: 'Swaggerドキュメントを表示',
|
||||||
api_docs: 'APIドキュメント',
|
api_docs: 'APIドキュメント',
|
||||||
api_keys_api_docs: 'ノードURL、APIキー、APIドキュメント',
|
api_keys_api_docs: 'APIキーとAPIドキュメント',
|
||||||
lnbits_version: 'LNbits バージョン',
|
lnbits_version: 'LNbits バージョン',
|
||||||
runs_on: 'で実行',
|
runs_on: 'で実行',
|
||||||
credit_hint:
|
credit_hint:
|
||||||
@@ -189,12 +188,6 @@ window.localisation.jp = {
|
|||||||
'IPによるアクセスを許可する(ブロックされたIPを上書きします)',
|
'IPによるアクセスを許可する(ブロックされたIPを上書きします)',
|
||||||
enter_ip: 'IPを入力してエンターキーを押してください',
|
enter_ip: 'IPを入力してエンターキーを押してください',
|
||||||
rate_limiter: 'レートリミッター',
|
rate_limiter: 'レートリミッター',
|
||||||
wallet_limiter: 'ウォレットリミッター',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'1日あたりの最大ウォレット出金額をsatsで入力してください(0 で無効)。',
|
|
||||||
wallet_max_ballance: 'ウォレットの最大残高(sats)(0は無効)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'トランザクション間の最小秒数(ウォレットごと)(0は無効)',
|
|
||||||
number_of_requests: 'リクエストの数',
|
number_of_requests: 'リクエストの数',
|
||||||
time_unit: '時間単位',
|
time_unit: '時間単位',
|
||||||
minute: '分',
|
minute: '分',
|
||||||
@@ -214,7 +207,6 @@ window.localisation.jp = {
|
|||||||
account_settings: 'アカウント設定',
|
account_settings: 'アカウント設定',
|
||||||
signin_with_google: 'Googleでサインイン',
|
signin_with_google: 'Googleでサインイン',
|
||||||
signin_with_github: 'GitHubでサインイン',
|
signin_with_github: 'GitHubでサインイン',
|
||||||
signin_with_keycloak: 'Keycloakでサインイン',
|
|
||||||
username_or_email: 'ユーザー名またはメールアドレス',
|
username_or_email: 'ユーザー名またはメールアドレス',
|
||||||
password: 'パスワード',
|
password: 'パスワード',
|
||||||
password_config: 'パスワード設定',
|
password_config: 'パスワード設定',
|
||||||
@@ -237,8 +229,5 @@ window.localisation.jp = {
|
|||||||
auth_provider: '認証プロバイダ',
|
auth_provider: '認証プロバイダ',
|
||||||
my_account: 'マイアカウント',
|
my_account: 'マイアカウント',
|
||||||
back: '戻る',
|
back: '戻る',
|
||||||
logout: 'ログアウト',
|
logout: 'ログアウト'
|
||||||
look_and_feel: 'ルック・アンド・フィール',
|
|
||||||
language: '言語',
|
|
||||||
color_scheme: 'カラースキーム'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,10 +60,9 @@ window.localisation.kr = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
'지불 결제 시마다 LNBits 서버 관리자에게 납부되는 서비스 수수료',
|
'지불 결제 시마다 LNBits 서버 관리자에게 납부되는 서비스 수수료',
|
||||||
toggle_darkmode: '다크 모드 전환',
|
toggle_darkmode: '다크 모드 전환',
|
||||||
payment_reactions: '결제 반응',
|
|
||||||
view_swagger_docs: 'LNbits Swagger API 문서를 봅니다',
|
view_swagger_docs: 'LNbits Swagger API 문서를 봅니다',
|
||||||
api_docs: 'API 문서',
|
api_docs: 'API 문서',
|
||||||
api_keys_api_docs: '노드 URL, API 키와 API 문서',
|
api_keys_api_docs: 'API 키와 API 문서',
|
||||||
lnbits_version: 'LNbits 버전',
|
lnbits_version: 'LNbits 버전',
|
||||||
runs_on: 'Runs on',
|
runs_on: 'Runs on',
|
||||||
credit_hint: '계정에 자금을 넣으려면 Enter를 눌러주세요',
|
credit_hint: '계정에 자금을 넣으려면 Enter를 눌러주세요',
|
||||||
@@ -188,11 +187,6 @@ window.localisation.kr = {
|
|||||||
allow_access_hint: 'IP 기준으로 접속 허용하기 (차단한 IP들을 무시합니다)',
|
allow_access_hint: 'IP 기준으로 접속 허용하기 (차단한 IP들을 무시합니다)',
|
||||||
enter_ip: 'IP 주소를 입력하고 Enter를 눌러주세요',
|
enter_ip: 'IP 주소를 입력하고 Enter를 눌러주세요',
|
||||||
rate_limiter: '횟수로 제한하기',
|
rate_limiter: '횟수로 제한하기',
|
||||||
wallet_limiter: '지갑 제한기',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'일일 최대 지갑 출금액(sats) (0은 비활성화)',
|
|
||||||
wallet_max_ballance: '지갑 최대 잔액(sats) (0은 비활성화)',
|
|
||||||
wallet_limit_secs_between_trans: '지갑 당 거래 사이 최소 초 (0은 비활성화)',
|
|
||||||
number_of_requests: '요청 횟수',
|
number_of_requests: '요청 횟수',
|
||||||
time_unit: '시간 단위',
|
time_unit: '시간 단위',
|
||||||
minute: '분',
|
minute: '분',
|
||||||
@@ -211,7 +205,6 @@ window.localisation.kr = {
|
|||||||
account_settings: '계정 설정',
|
account_settings: '계정 설정',
|
||||||
signin_with_google: 'Google으로 로그인',
|
signin_with_google: 'Google으로 로그인',
|
||||||
signin_with_github: 'GitHub으로 로그인',
|
signin_with_github: 'GitHub으로 로그인',
|
||||||
signin_with_keycloak: 'Keycloak으로 로그인',
|
|
||||||
username_or_email: '사용자 이름 또는 이메일',
|
username_or_email: '사용자 이름 또는 이메일',
|
||||||
password: '비밀번호',
|
password: '비밀번호',
|
||||||
password_config: '비밀번호 설정',
|
password_config: '비밀번호 설정',
|
||||||
@@ -234,8 +227,5 @@ window.localisation.kr = {
|
|||||||
auth_provider: '인증 제공자',
|
auth_provider: '인증 제공자',
|
||||||
my_account: '내 계정',
|
my_account: '내 계정',
|
||||||
back: '뒤로',
|
back: '뒤로',
|
||||||
logout: '로그아웃',
|
logout: '로그아웃'
|
||||||
look_and_feel: '외관과 느낌',
|
|
||||||
language: '언어',
|
|
||||||
color_scheme: '색상 구성'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,10 +63,9 @@ window.localisation.nl = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
'Transactiekosten in rekening gebracht door de LNbits serverbeheerder per uitgaande transactie',
|
'Transactiekosten in rekening gebracht door de LNbits serverbeheerder per uitgaande transactie',
|
||||||
toggle_darkmode: 'Donkere modus aan/uit',
|
toggle_darkmode: 'Donkere modus aan/uit',
|
||||||
payment_reactions: 'Betalingsreacties',
|
|
||||||
view_swagger_docs: 'Bekijk LNbits Swagger API-documentatie',
|
view_swagger_docs: 'Bekijk LNbits Swagger API-documentatie',
|
||||||
api_docs: 'API-documentatie',
|
api_docs: 'API-documentatie',
|
||||||
api_keys_api_docs: 'Node URL, API-sleutels en API-documentatie',
|
api_keys_api_docs: 'API-sleutels en API-documentatie',
|
||||||
lnbits_version: 'LNbits-versie',
|
lnbits_version: 'LNbits-versie',
|
||||||
runs_on: 'Draait op',
|
runs_on: 'Draait op',
|
||||||
credit_hint: 'Druk op Enter om de rekening te crediteren',
|
credit_hint: 'Druk op Enter om de rekening te crediteren',
|
||||||
@@ -192,13 +191,6 @@ window.localisation.nl = {
|
|||||||
"Toegang verlenen op basis van IP (zal geblokkeerde IP's overschrijven)",
|
"Toegang verlenen op basis van IP (zal geblokkeerde IP's overschrijven)",
|
||||||
enter_ip: 'Voer IP in en druk op enter',
|
enter_ip: 'Voer IP in en druk op enter',
|
||||||
rate_limiter: 'Snelheidsbegrenzer',
|
rate_limiter: 'Snelheidsbegrenzer',
|
||||||
wallet_limiter: 'Portemonnee Limietsteller',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Maximale dagelijkse opname van wallet in sats (0 om uit te schakelen)',
|
|
||||||
wallet_max_ballance:
|
|
||||||
'Maximale portefeuillesaldo in sats (0 om uit te schakelen)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Min seconden tussen transacties per portemonnee (0 om uit te schakelen)',
|
|
||||||
number_of_requests: 'Aantal verzoeken',
|
number_of_requests: 'Aantal verzoeken',
|
||||||
time_unit: 'Tijdeenheid',
|
time_unit: 'Tijdeenheid',
|
||||||
minute: 'minuut',
|
minute: 'minuut',
|
||||||
@@ -217,7 +209,6 @@ window.localisation.nl = {
|
|||||||
account_settings: 'Accountinstellingen',
|
account_settings: 'Accountinstellingen',
|
||||||
signin_with_google: 'Inloggen met Google',
|
signin_with_google: 'Inloggen met Google',
|
||||||
signin_with_github: 'Inloggen met GitHub',
|
signin_with_github: 'Inloggen met GitHub',
|
||||||
signin_with_keycloak: 'Inloggen met Keycloak',
|
|
||||||
username_or_email: 'Gebruikersnaam of e-mail',
|
username_or_email: 'Gebruikersnaam of e-mail',
|
||||||
password: 'Wachtwoord',
|
password: 'Wachtwoord',
|
||||||
password_config: 'Wachtwoordconfiguratie',
|
password_config: 'Wachtwoordconfiguratie',
|
||||||
@@ -240,8 +231,5 @@ window.localisation.nl = {
|
|||||||
auth_provider: 'Auth Provider',
|
auth_provider: 'Auth Provider',
|
||||||
my_account: 'Mijn Account',
|
my_account: 'Mijn Account',
|
||||||
back: 'Terug',
|
back: 'Terug',
|
||||||
logout: 'Afmelden',
|
logout: 'Afmelden'
|
||||||
look_and_feel: 'Uiterlijk en gedrag',
|
|
||||||
language: 'Taal',
|
|
||||||
color_scheme: 'Kleurenschema'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,10 +61,9 @@ window.localisation.pi = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
"Service fee charged by the LNbits server admin per goin' transaction",
|
"Service fee charged by the LNbits server admin per goin' transaction",
|
||||||
toggle_darkmode: 'Toggle Dark Mode, arr!',
|
toggle_darkmode: 'Toggle Dark Mode, arr!',
|
||||||
payment_reactions: 'Payment Reactions',
|
|
||||||
view_swagger_docs: 'View LNbits Swagger API docs and learn the secrets',
|
view_swagger_docs: 'View LNbits Swagger API docs and learn the secrets',
|
||||||
api_docs: 'API docs for the scallywags',
|
api_docs: 'API docs for the scallywags',
|
||||||
api_keys_api_docs: 'Node URL, API keys and API docs',
|
api_keys_api_docs: 'API keys and API docs',
|
||||||
lnbits_version: 'LNbits version, arr!',
|
lnbits_version: 'LNbits version, arr!',
|
||||||
runs_on: 'Runs on, matey',
|
runs_on: 'Runs on, matey',
|
||||||
credit_hint: 'Press Enter to credit account and make it richer',
|
credit_hint: 'Press Enter to credit account and make it richer',
|
||||||
@@ -190,12 +189,6 @@ window.localisation.pi = {
|
|||||||
allow_access_hint: 'Grant permission by IP (will override barred IPs)',
|
allow_access_hint: 'Grant permission by IP (will override barred IPs)',
|
||||||
enter_ip: 'Enter IP and hit enter',
|
enter_ip: 'Enter IP and hit enter',
|
||||||
rate_limiter: 'Rate Limiter',
|
rate_limiter: 'Rate Limiter',
|
||||||
wallet_limiter: 'Pouch Limitar',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Max daily wallet withdrawal in sats (0 ter disable)',
|
|
||||||
wallet_max_ballance: 'Purse max heaviness in sats (0 fer scuttle)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
"Min secs 'tween transactions per wallet (0 to disable)",
|
|
||||||
number_of_requests: "Number o' requests",
|
number_of_requests: "Number o' requests",
|
||||||
time_unit: "time bein'",
|
time_unit: "time bein'",
|
||||||
minute: 'minnit',
|
minute: 'minnit',
|
||||||
@@ -214,7 +207,6 @@ window.localisation.pi = {
|
|||||||
account_settings: "Account Settin's",
|
account_settings: "Account Settin's",
|
||||||
signin_with_google: "Sign in wit' Google",
|
signin_with_google: "Sign in wit' Google",
|
||||||
signin_with_github: "Sign in wit' GitHub",
|
signin_with_github: "Sign in wit' GitHub",
|
||||||
signin_with_keycloak: "Sign in wit' Keycloak",
|
|
||||||
username_or_email: 'Usarrrname or Email',
|
username_or_email: 'Usarrrname or Email',
|
||||||
password: 'Passwarrd',
|
password: 'Passwarrd',
|
||||||
password_config: 'Passwarrd Config',
|
password_config: 'Passwarrd Config',
|
||||||
@@ -237,8 +229,5 @@ window.localisation.pi = {
|
|||||||
auth_provider: 'Auth Provider becometh Auth Provider, ye see?',
|
auth_provider: 'Auth Provider becometh Auth Provider, ye see?',
|
||||||
my_account: 'Me Arrrccount',
|
my_account: 'Me Arrrccount',
|
||||||
back: 'Return',
|
back: 'Return',
|
||||||
logout: 'Log out yer session',
|
logout: 'Log out yer session'
|
||||||
look_and_feel: 'Look and Feel',
|
|
||||||
language: 'Langwidge',
|
|
||||||
color_scheme: 'Colour Scheme'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,10 +60,9 @@ window.localisation.pl = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
'Opłata serwisowa pobierana przez administratora serwera LNbits za każdą wychodzącą transakcję',
|
'Opłata serwisowa pobierana przez administratora serwera LNbits za każdą wychodzącą transakcję',
|
||||||
toggle_darkmode: 'Tryb nocny',
|
toggle_darkmode: 'Tryb nocny',
|
||||||
payment_reactions: 'Reakcje na płatność',
|
|
||||||
view_swagger_docs: 'Dokumentacja Swagger API',
|
view_swagger_docs: 'Dokumentacja Swagger API',
|
||||||
api_docs: 'Dokumentacja API',
|
api_docs: 'Dokumentacja API',
|
||||||
api_keys_api_docs: 'Adres URL węzła, klucze API i dokumentacja API',
|
api_keys_api_docs: 'Klucze API i dokumentacja API',
|
||||||
lnbits_version: 'Wersja LNbits',
|
lnbits_version: 'Wersja LNbits',
|
||||||
runs_on: 'Działa na',
|
runs_on: 'Działa na',
|
||||||
credit_hint: 'Naciśnij Enter aby doładować konto',
|
credit_hint: 'Naciśnij Enter aby doładować konto',
|
||||||
@@ -189,12 +188,6 @@ window.localisation.pl = {
|
|||||||
'Zezwól na dostęp przez IP (zignoruje zablokowane adresy IP)',
|
'Zezwól na dostęp przez IP (zignoruje zablokowane adresy IP)',
|
||||||
enter_ip: 'Wpisz adres IP i naciśnij enter',
|
enter_ip: 'Wpisz adres IP i naciśnij enter',
|
||||||
rate_limiter: 'Ogranicznik Częstotliwości',
|
rate_limiter: 'Ogranicznik Częstotliwości',
|
||||||
wallet_limiter: 'Ogranicznik Portfela',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Maksymalna dzienna wypłata z portfela w satoshi (0 aby wyłączyć)',
|
|
||||||
wallet_max_ballance: 'Maksymalny stan portfela w satoshi (0 aby wyłączyć)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Min sekund pomiędzy transakcjami na portfel (0 aby wyłączyć)',
|
|
||||||
number_of_requests: 'Liczba żądań',
|
number_of_requests: 'Liczba żądań',
|
||||||
time_unit: 'Jednostka czasu',
|
time_unit: 'Jednostka czasu',
|
||||||
minute: 'minuta',
|
minute: 'minuta',
|
||||||
@@ -213,7 +206,6 @@ window.localisation.pl = {
|
|||||||
account_settings: 'Ustawienia konta',
|
account_settings: 'Ustawienia konta',
|
||||||
signin_with_google: 'Zaloguj się przez Google',
|
signin_with_google: 'Zaloguj się przez Google',
|
||||||
signin_with_github: 'Zaloguj się przez GitHub',
|
signin_with_github: 'Zaloguj się przez GitHub',
|
||||||
signin_with_keycloak: 'Zaloguj się przez Keycloak',
|
|
||||||
username_or_email: 'Nazwa użytkownika lub Email',
|
username_or_email: 'Nazwa użytkownika lub Email',
|
||||||
password: 'Hasło',
|
password: 'Hasło',
|
||||||
password_config: 'Konfiguracja Hasła',
|
password_config: 'Konfiguracja Hasła',
|
||||||
@@ -236,8 +228,5 @@ window.localisation.pl = {
|
|||||||
auth_provider: 'Dostawca uwierzytelniania',
|
auth_provider: 'Dostawca uwierzytelniania',
|
||||||
my_account: 'Moje Konto',
|
my_account: 'Moje Konto',
|
||||||
back: 'Wstecz',
|
back: 'Wstecz',
|
||||||
logout: 'Wyloguj',
|
logout: 'Wyloguj'
|
||||||
look_and_feel: 'Wygląd i zachowanie',
|
|
||||||
language: 'Język',
|
|
||||||
color_scheme: 'Schemat kolorów'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,10 +61,9 @@ window.localisation.pt = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
'Taxa de serviço cobrada pelo administrador do servidor LNbits por transação de saída',
|
'Taxa de serviço cobrada pelo administrador do servidor LNbits por transação de saída',
|
||||||
toggle_darkmode: 'Alternar modo escuro',
|
toggle_darkmode: 'Alternar modo escuro',
|
||||||
payment_reactions: 'Reações de Pagamento',
|
|
||||||
view_swagger_docs: 'Ver a documentação da API do LNbits Swagger',
|
view_swagger_docs: 'Ver a documentação da API do LNbits Swagger',
|
||||||
api_docs: 'Documentação da API',
|
api_docs: 'Documentação da API',
|
||||||
api_keys_api_docs: 'URL do Nó, chaves de API e documentação de API',
|
api_keys_api_docs: 'Chaves de API e documentação de API',
|
||||||
lnbits_version: 'Versão do LNbits',
|
lnbits_version: 'Versão do LNbits',
|
||||||
runs_on: 'Executa em',
|
runs_on: 'Executa em',
|
||||||
credit_hint: 'Pressione Enter para creditar a conta',
|
credit_hint: 'Pressione Enter para creditar a conta',
|
||||||
@@ -190,12 +189,6 @@ window.localisation.pt = {
|
|||||||
allow_access_hint: 'Permitir acesso por IP (substituirá IPs bloqueados)',
|
allow_access_hint: 'Permitir acesso por IP (substituirá IPs bloqueados)',
|
||||||
enter_ip: 'Digite o IP e pressione enter.',
|
enter_ip: 'Digite o IP e pressione enter.',
|
||||||
rate_limiter: 'Limitador de Taxa',
|
rate_limiter: 'Limitador de Taxa',
|
||||||
wallet_limiter: 'Limitador de Carteira',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Limite diário máximo de saque da carteira em sats (0 para desativar)',
|
|
||||||
wallet_max_ballance: 'Saldo máximo da carteira em sats (0 para desativar)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Minutos seg. entre transações por carteira (0 para desativar)',
|
|
||||||
number_of_requests: 'Número de solicitações',
|
number_of_requests: 'Número de solicitações',
|
||||||
time_unit: 'Unidade de tempo',
|
time_unit: 'Unidade de tempo',
|
||||||
minute: 'minuto',
|
minute: 'minuto',
|
||||||
@@ -214,7 +207,6 @@ window.localisation.pt = {
|
|||||||
account_settings: 'Configurações da Conta',
|
account_settings: 'Configurações da Conta',
|
||||||
signin_with_google: 'Entrar com o Google',
|
signin_with_google: 'Entrar com o Google',
|
||||||
signin_with_github: 'Entrar com o GitHub',
|
signin_with_github: 'Entrar com o GitHub',
|
||||||
signin_with_keycloak: 'Entrar com o Keycloak',
|
|
||||||
username_or_email: 'Nome de usuário ou Email',
|
username_or_email: 'Nome de usuário ou Email',
|
||||||
password: 'Senha',
|
password: 'Senha',
|
||||||
password_config: 'Configuração de Senha',
|
password_config: 'Configuração de Senha',
|
||||||
@@ -237,8 +229,5 @@ window.localisation.pt = {
|
|||||||
auth_provider: 'Provedor de Autenticação',
|
auth_provider: 'Provedor de Autenticação',
|
||||||
my_account: 'Minha Conta',
|
my_account: 'Minha Conta',
|
||||||
back: 'Voltar',
|
back: 'Voltar',
|
||||||
logout: 'Sair',
|
logout: 'Sair'
|
||||||
look_and_feel: 'Aparência e Sensação',
|
|
||||||
language: 'Idioma',
|
|
||||||
color_scheme: 'Esquema de Cores'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -60,10 +60,9 @@ window.localisation.sk = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
'Servisný poplatok účtovaný správcom LNbits servera za odchádzajúcu transakciu',
|
'Servisný poplatok účtovaný správcom LNbits servera za odchádzajúcu transakciu',
|
||||||
toggle_darkmode: 'Prepnúť Tmavý režim',
|
toggle_darkmode: 'Prepnúť Tmavý režim',
|
||||||
payment_reactions: 'Reakcie na platbu',
|
|
||||||
view_swagger_docs: 'Zobraziť LNbits Swagger API dokumentáciu',
|
view_swagger_docs: 'Zobraziť LNbits Swagger API dokumentáciu',
|
||||||
api_docs: 'API dokumentácia',
|
api_docs: 'API dokumentácia',
|
||||||
api_keys_api_docs: 'Adresa uzla, API kľúče a API dokumentácia',
|
api_keys_api_docs: 'API kľúče a API dokumentácia',
|
||||||
lnbits_version: 'Verzia LNbits',
|
lnbits_version: 'Verzia LNbits',
|
||||||
runs_on: 'Beží na',
|
runs_on: 'Beží na',
|
||||||
credit_hint: 'Stlačte Enter pre pripísanie na účet',
|
credit_hint: 'Stlačte Enter pre pripísanie na účet',
|
||||||
@@ -188,13 +187,6 @@ window.localisation.sk = {
|
|||||||
allow_access_hint: 'Povoliť prístup podľa IP (prebije blokované IP)',
|
allow_access_hint: 'Povoliť prístup podľa IP (prebije blokované IP)',
|
||||||
enter_ip: 'Zadajte IP a stlačte enter',
|
enter_ip: 'Zadajte IP a stlačte enter',
|
||||||
rate_limiter: 'Obmedzovač počtu požiadaviek',
|
rate_limiter: 'Obmedzovač počtu požiadaviek',
|
||||||
wallet_limiter: 'Obmedzovač peňaženky',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Maximálny denný výber z peňaženky v satošiach (0 pre zrušenie)',
|
|
||||||
wallet_max_ballance:
|
|
||||||
'Maximálny zostatok v peňaženke v satošiach (0 pre deaktiváciu)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Minimálny počet sekúnd medzi transakciami na peňaženku (0 na deaktiváciu)',
|
|
||||||
number_of_requests: 'Počet požiadaviek',
|
number_of_requests: 'Počet požiadaviek',
|
||||||
time_unit: 'Časová jednotka',
|
time_unit: 'Časová jednotka',
|
||||||
minute: 'minúta',
|
minute: 'minúta',
|
||||||
@@ -211,9 +203,8 @@ window.localisation.sk = {
|
|||||||
login_to_account: 'Prihláste sa do vášho účtu',
|
login_to_account: 'Prihláste sa do vášho účtu',
|
||||||
create_account: 'Vytvoriť účet',
|
create_account: 'Vytvoriť účet',
|
||||||
account_settings: 'Nastavenia účtu',
|
account_settings: 'Nastavenia účtu',
|
||||||
signin_with_google: 'Prihlásiť sa pomocou Google',
|
signin_with_google: 'Prihlásiť sa cez Google',
|
||||||
signin_with_github: 'Prihlásiť sa pomocou GitHub',
|
signin_with_github: 'Prihláste sa pomocou GitHub',
|
||||||
signin_with_keycloak: 'Prihlásiť sa pomocou Keycloak',
|
|
||||||
username_or_email: 'Používateľské meno alebo email',
|
username_or_email: 'Používateľské meno alebo email',
|
||||||
password: 'Heslo',
|
password: 'Heslo',
|
||||||
password_config: 'Konfigurácia hesla',
|
password_config: 'Konfigurácia hesla',
|
||||||
@@ -236,8 +227,5 @@ window.localisation.sk = {
|
|||||||
auth_provider: 'Poskytovateľ autentifikácie',
|
auth_provider: 'Poskytovateľ autentifikácie',
|
||||||
my_account: 'Môj účet',
|
my_account: 'Môj účet',
|
||||||
back: 'Späť',
|
back: 'Späť',
|
||||||
logout: 'Odhlásiť sa',
|
logout: 'Odhlásiť sa'
|
||||||
look_and_feel: 'Vzhľad a dojem',
|
|
||||||
language: 'Jazyk',
|
|
||||||
color_scheme: 'Farebná schéma'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,10 +61,9 @@ window.localisation.we = {
|
|||||||
service_fee_tooltip:
|
service_fee_tooltip:
|
||||||
"Ffi gwasanaeth a godir gan weinyddwr gweinydd LNbits ym mhob trafodiad sy'n mynd allan",
|
"Ffi gwasanaeth a godir gan weinyddwr gweinydd LNbits ym mhob trafodiad sy'n mynd allan",
|
||||||
toggle_darkmode: 'Toglo Modd Tywyll',
|
toggle_darkmode: 'Toglo Modd Tywyll',
|
||||||
payment_reactions: 'Adweithiau Talu',
|
|
||||||
view_swagger_docs: 'Gweld dogfennau API LNbits Swagger',
|
view_swagger_docs: 'Gweld dogfennau API LNbits Swagger',
|
||||||
api_docs: 'Dogfennau API',
|
api_docs: 'Dogfennau API',
|
||||||
api_keys_api_docs: 'URL y nod, allweddi API a dogfennau API',
|
api_keys_api_docs: 'Allweddi API a dogfennau API',
|
||||||
lnbits_version: 'Fersiwn LNbits',
|
lnbits_version: 'Fersiwn LNbits',
|
||||||
runs_on: 'Yn rhedeg ymlaen',
|
runs_on: 'Yn rhedeg ymlaen',
|
||||||
credit_hint: 'Pwyswch Enter i gyfrif credyd',
|
credit_hint: 'Pwyswch Enter i gyfrif credyd',
|
||||||
@@ -189,12 +188,6 @@ window.localisation.we = {
|
|||||||
"Caniatáu mynediad gan IP (bydd yn diystyru IPs sydd wedi'u blocio)",
|
"Caniatáu mynediad gan IP (bydd yn diystyru IPs sydd wedi'u blocio)",
|
||||||
enter_ip: 'Rhowch IP a gwasgwch enter',
|
enter_ip: 'Rhowch IP a gwasgwch enter',
|
||||||
rate_limiter: 'Cyfyngydd Cyfradd',
|
rate_limiter: 'Cyfyngydd Cyfradd',
|
||||||
wallet_limiter: 'Cyfyngwr Waled',
|
|
||||||
wallet_limit_max_withdraw_per_day:
|
|
||||||
'Uchafswm tynnu’n ôl waled dyddiol mewn sats (0 i analluogi)',
|
|
||||||
wallet_max_ballance: 'Uchafswm balans y waled mewn sats (0 i analluogi)',
|
|
||||||
wallet_limit_secs_between_trans:
|
|
||||||
'Eiliadau lleiaf rhwng trafodion fesul waled (0 i analluogi)',
|
|
||||||
number_of_requests: 'Nifer y ceisiadau',
|
number_of_requests: 'Nifer y ceisiadau',
|
||||||
time_unit: 'Uned amser',
|
time_unit: 'Uned amser',
|
||||||
minute: 'munud',
|
minute: 'munud',
|
||||||
@@ -213,7 +206,6 @@ window.localisation.we = {
|
|||||||
account_settings: 'Gosodiadau Cyfrif',
|
account_settings: 'Gosodiadau Cyfrif',
|
||||||
signin_with_google: 'Mewngofnodi gyda Google',
|
signin_with_google: 'Mewngofnodi gyda Google',
|
||||||
signin_with_github: 'Mewngofnodi gyda GitHub',
|
signin_with_github: 'Mewngofnodi gyda GitHub',
|
||||||
signin_with_keycloak: 'Mewngofnodi gyda Keycloak',
|
|
||||||
username_or_email: 'Defnyddiwr neu E-bost',
|
username_or_email: 'Defnyddiwr neu E-bost',
|
||||||
password: 'Cyfrinair',
|
password: 'Cyfrinair',
|
||||||
password_config: 'Ffurfweddiad Cyfrinair',
|
password_config: 'Ffurfweddiad Cyfrinair',
|
||||||
@@ -236,8 +228,5 @@ window.localisation.we = {
|
|||||||
auth_provider: 'Darparwr Dilysiad',
|
auth_provider: 'Darparwr Dilysiad',
|
||||||
my_account: 'Fy Nghyfrif',
|
my_account: 'Fy Nghyfrif',
|
||||||
back: 'Yn ôl',
|
back: 'Yn ôl',
|
||||||
logout: 'Allgofnodi',
|
logout: 'Allgofnodi'
|
||||||
look_and_feel: 'Edrych a Theimlo',
|
|
||||||
language: 'Iaith',
|
|
||||||
color_scheme: 'Cynllun Lliw'
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,7 +48,8 @@ new Vue({
|
|||||||
show: false
|
show: false
|
||||||
},
|
},
|
||||||
tab: 'funding',
|
tab: 'funding',
|
||||||
needsRestart: false
|
needsRestart: false,
|
||||||
|
introJs: null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
@@ -56,6 +57,32 @@ new Vue({
|
|||||||
this.getAudit()
|
this.getAudit()
|
||||||
this.balance = +'{{ balance|safe }}'
|
this.balance = +'{{ balance|safe }}'
|
||||||
},
|
},
|
||||||
|
mounted() {
|
||||||
|
const url = window.location.href
|
||||||
|
const queryString = url.split('?')[1]
|
||||||
|
const queryObject = {}
|
||||||
|
|
||||||
|
if (queryString) {
|
||||||
|
for (const param of queryString.split('&')) {
|
||||||
|
const [key, value] = param.split('=')
|
||||||
|
queryObject[key] = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (queryObject.hasOwnProperty('first_use')) {
|
||||||
|
const scriptTag = document.createElement('script')
|
||||||
|
scriptTag.src = 'https://unpkg.com/intro.js/intro.js'
|
||||||
|
const linkTag = document.createElement('link')
|
||||||
|
linkTag.rel = 'stylesheet'
|
||||||
|
linkTag.href = 'https://unpkg.com/intro.js/introjs.css'
|
||||||
|
|
||||||
|
document.body.appendChild(scriptTag)
|
||||||
|
document.head.appendChild(linkTag)
|
||||||
|
scriptTag.onload = () => {
|
||||||
|
this.runOnboarding()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
lnbitsVersion() {
|
lnbitsVersion() {
|
||||||
return LNBITS_VERSION
|
return LNBITS_VERSION
|
||||||
@@ -68,6 +95,60 @@ new Vue({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
runOnboarding() {
|
||||||
|
introJs()
|
||||||
|
.onbeforeexit(() => {
|
||||||
|
return window.history.replaceState(
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
window.location.pathname
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.setOptions({
|
||||||
|
disableInteraction: true,
|
||||||
|
tooltipClass: 'introjs-tooltip-custom',
|
||||||
|
dontShowAgain: true,
|
||||||
|
steps: [
|
||||||
|
{
|
||||||
|
title: 'Welcome to LNbits',
|
||||||
|
intro: 'Start your tour!'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Add a funding source',
|
||||||
|
element: document.getElementById('funding-sources'),
|
||||||
|
intro:
|
||||||
|
'Select a Lightning Network funding source to add funds to your LNbits.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Access your wallet',
|
||||||
|
element: document.getElementById('wallet-list'),
|
||||||
|
position: 'right',
|
||||||
|
intro:
|
||||||
|
'Wallets are the core of LNbits. They are the place where you can store your funds.'
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
title: 'Manage LNbits',
|
||||||
|
element: document.getElementById('admin-manage'),
|
||||||
|
position: 'right',
|
||||||
|
intro:
|
||||||
|
'This is the place where you can manage your LNbits. You can configure settings, install extensions, themes, view logs, manage a node, and more.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Access extensions',
|
||||||
|
element: document.getElementById('extension-list'),
|
||||||
|
position: 'right',
|
||||||
|
intro:
|
||||||
|
'Extensions are the way to add functionality to your LNbits. You view and access them here.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Farewell!',
|
||||||
|
intro: '<img src="static/images/logos/lnbits.svg" width=100%/>'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
.start()
|
||||||
|
},
|
||||||
addAdminUser() {
|
addAdminUser() {
|
||||||
let addUser = this.formAddAdmin
|
let addUser = this.formAddAdmin
|
||||||
let admin_users = this.formData.lnbits_admin_users
|
let admin_users = this.formData.lnbits_admin_users
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ new Vue({
|
|||||||
this.password,
|
this.password,
|
||||||
this.passwordRepeat
|
this.passwordRepeat
|
||||||
)
|
)
|
||||||
window.location.href = '/wallet'
|
window.location.href = '/wallet?first_use'
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
LNbits.utils.notifyApiError(e)
|
LNbits.utils.notifyApiError(e)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// update cache version every time there is a new deployment
|
// update cache version every time there is a new deployment
|
||||||
// so the service worker reinitializes the cache
|
// so the service worker reinitializes the cache
|
||||||
const CACHE_VERSION = 117
|
const CACHE_VERSION = 115
|
||||||
const CURRENT_CACHE = `lnbits-${CACHE_VERSION}-`
|
const CURRENT_CACHE = `lnbits-${CACHE_VERSION}-`
|
||||||
|
|
||||||
const getApiKey = request => {
|
const getApiKey = request => {
|
||||||
|
|||||||
+100
-1
@@ -90,7 +90,6 @@ new Vue({
|
|||||||
mixins: [windowMixin],
|
mixins: [windowMixin],
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
origin: window.location.origin,
|
|
||||||
user: LNbits.map.user(window.user),
|
user: LNbits.map.user(window.user),
|
||||||
receive: {
|
receive: {
|
||||||
show: false,
|
show: false,
|
||||||
@@ -819,6 +818,105 @@ new Vue({
|
|||||||
navigator.clipboard.readText().then(text => {
|
navigator.clipboard.readText().then(text => {
|
||||||
this.$refs.textArea.value = text
|
this.$refs.textArea.value = text
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
checkFirstUse() {
|
||||||
|
const url = window.location.href
|
||||||
|
const queryString = url.split('?')[1]
|
||||||
|
const queryObject = {}
|
||||||
|
|
||||||
|
if (queryString) {
|
||||||
|
for (const param of queryString.split('&')) {
|
||||||
|
const [key, value] = param.split('=')
|
||||||
|
queryObject[key] = value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (queryObject.hasOwnProperty('first_use')) {
|
||||||
|
const scriptTag = document.createElement('script')
|
||||||
|
scriptTag.src = 'https://unpkg.com/intro.js/intro.js'
|
||||||
|
const linkTag = document.createElement('link')
|
||||||
|
linkTag.rel = 'stylesheet'
|
||||||
|
linkTag.href = 'https://unpkg.com/intro.js/introjs.css'
|
||||||
|
|
||||||
|
document.body.appendChild(scriptTag)
|
||||||
|
document.head.appendChild(linkTag)
|
||||||
|
scriptTag.onload = () => {
|
||||||
|
if (!this.g.visibleDrawer) {
|
||||||
|
this.g.visibleDrawer = true
|
||||||
|
}
|
||||||
|
this.runOnboarding()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
runOnboarding() {
|
||||||
|
introJs()
|
||||||
|
.onbeforechange(step => {
|
||||||
|
if (!step.id || !this.mobileSimple) return
|
||||||
|
if (step.id === 'wallet-list' || step.id === 'admin-manage') {
|
||||||
|
this.g.visibleDrawer = true
|
||||||
|
} else {
|
||||||
|
this.g.visibleDrawer = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
// .onbeforeexit(() => {
|
||||||
|
// return window.history.replaceState(
|
||||||
|
// null,
|
||||||
|
// null,
|
||||||
|
// window.location.pathname
|
||||||
|
// )
|
||||||
|
// })
|
||||||
|
.setOptions({
|
||||||
|
disableInteraction: true,
|
||||||
|
tooltipClass: 'introjs-tooltip-custom',
|
||||||
|
dontShowAgain: true,
|
||||||
|
steps: [
|
||||||
|
{
|
||||||
|
title: 'Welcome to LNbits',
|
||||||
|
intro: 'Start your tour!'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Access your wallet',
|
||||||
|
element: document.getElementById('wallet-list'),
|
||||||
|
position: 'right',
|
||||||
|
intro:
|
||||||
|
'Wallets are the core of LNbits. They are the place where you can store your funds.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Access extensions',
|
||||||
|
element: document.getElementById('admin-manage'),
|
||||||
|
position: 'right',
|
||||||
|
intro:
|
||||||
|
'Extensions are the way to add functionality to your LNbits. You view and access them here.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Wallet balance',
|
||||||
|
element: document.getElementById('wallet-balance'),
|
||||||
|
position: 'right',
|
||||||
|
intro: 'Your wallet balance is displayed here.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Send and receive payments',
|
||||||
|
element: document.getElementById(
|
||||||
|
this.mobileSimple ? 'mobile-wallet-buttons' : 'wallet-buttons'
|
||||||
|
),
|
||||||
|
position: 'bottom',
|
||||||
|
intro:
|
||||||
|
'Use these buttons to send and receive payments or scan a QR code.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Transaction details',
|
||||||
|
element: document.getElementById('wallet-table'),
|
||||||
|
position: 'bottom',
|
||||||
|
intro:
|
||||||
|
'Here you can see all the transactions made in your wallet. You can also export them as a CSV file.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Farewell!',
|
||||||
|
intro: '<img src="static/images/logos/lnbits.svg" width=100%/>'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
.start()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -866,6 +964,7 @@ new Vue({
|
|||||||
this.onPaymentReceived(payment.payment_hash)
|
this.onPaymentReceived(payment.payment_hash)
|
||||||
)
|
)
|
||||||
eventReactionWebocket(wallet.id)
|
eventReactionWebocket(wallet.id)
|
||||||
|
this.checkFirstUse()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -227,7 +227,3 @@ video {
|
|||||||
padding: 0.2rem;
|
padding: 0.2rem;
|
||||||
border-radius: 0.2rem;
|
border-radius: 0.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.whitespace-pre-line {
|
|
||||||
white-space: pre-line;
|
|
||||||
}
|
|
||||||
|
|||||||
+32
-17
@@ -58,25 +58,42 @@ async def send_push_promise(a, b) -> None:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
invoice_listeners: Dict[str, asyncio.Queue] = {}
|
class SseListenersDict(dict):
|
||||||
|
"""
|
||||||
|
A dict of sse listeners.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, name: Optional[str] = None):
|
||||||
|
self.name = name or f"sse_listener_{str(uuid.uuid4())[:8]}"
|
||||||
|
|
||||||
|
def __setitem__(self, key, value):
|
||||||
|
assert isinstance(key, str), f"{key} is not a string"
|
||||||
|
assert isinstance(value, asyncio.Queue), f"{value} is not an asyncio.Queue"
|
||||||
|
logger.trace(f"sse: adding listener {key} to {self.name}. len = {len(self)+1}")
|
||||||
|
return super().__setitem__(key, value)
|
||||||
|
|
||||||
|
def __delitem__(self, key):
|
||||||
|
logger.trace(f"sse: removing listener from {self.name}. len = {len(self)-1}")
|
||||||
|
return super().__delitem__(key)
|
||||||
|
|
||||||
|
_RaiseKeyError = object() # singleton for no-default behavior
|
||||||
|
|
||||||
|
def pop(self, key, v=_RaiseKeyError) -> None:
|
||||||
|
logger.trace(f"sse: removing listener from {self.name}. len = {len(self)-1}")
|
||||||
|
return super().pop(key)
|
||||||
|
|
||||||
|
|
||||||
|
invoice_listeners: Dict[str, asyncio.Queue] = SseListenersDict("invoice_listeners")
|
||||||
|
|
||||||
|
|
||||||
# TODO: name should not be optional
|
|
||||||
# some extensions still dont use a name, but they should
|
|
||||||
def register_invoice_listener(send_chan: asyncio.Queue, name: Optional[str] = None):
|
def register_invoice_listener(send_chan: asyncio.Queue, name: Optional[str] = None):
|
||||||
"""
|
"""
|
||||||
A method intended for extensions (and core/tasks.py) to call when they want to be
|
A method intended for extensions (and core/tasks.py) to call when they want to be
|
||||||
notified about new invoice payments incoming. Will emit all incoming payments.
|
notified about new invoice payments incoming. Will emit all incoming payments.
|
||||||
"""
|
"""
|
||||||
if not name:
|
name_unique = f"{name or 'no_name'}_{str(uuid.uuid4())[:8]}"
|
||||||
# fallback to a random name if extension didn't provide one
|
logger.trace(f"sse: registering invoice listener {name_unique}")
|
||||||
name = f"no_name_{str(uuid.uuid4())[:8]}"
|
invoice_listeners[name_unique] = send_chan
|
||||||
|
|
||||||
if invoice_listeners.get(name):
|
|
||||||
logger.warning(f"invoice listener `{name}` already exists, replacing it")
|
|
||||||
|
|
||||||
logger.trace(f"registering invoice listener `{name}`")
|
|
||||||
invoice_listeners[name] = send_chan
|
|
||||||
|
|
||||||
|
|
||||||
async def webhook_handler():
|
async def webhook_handler():
|
||||||
@@ -174,12 +191,10 @@ async def invoice_callback_dispatcher(checking_id: str):
|
|||||||
"""
|
"""
|
||||||
payment = await get_standalone_payment(checking_id, incoming=True)
|
payment = await get_standalone_payment(checking_id, incoming=True)
|
||||||
if payment and payment.is_in:
|
if payment and payment.is_in:
|
||||||
logger.trace(
|
logger.trace(f"sse sending invoice callback for payment {checking_id}")
|
||||||
f"invoice listeners: sending invoice callback for payment {checking_id}"
|
|
||||||
)
|
|
||||||
await payment.set_pending(False)
|
await payment.set_pending(False)
|
||||||
for name, send_chan in invoice_listeners.items():
|
for chan_name, send_chan in invoice_listeners.items():
|
||||||
logger.trace(f"invoice listeners: sending to `{name}`")
|
logger.trace(f"sse sending to chan: {chan_name}")
|
||||||
await send_chan.put(payment)
|
await send_chan.put(payment)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -168,13 +168,17 @@
|
|||||||
show-if-above
|
show-if-above
|
||||||
:elevated="$q.screen.lt.md"
|
:elevated="$q.screen.lt.md"
|
||||||
>
|
>
|
||||||
<lnbits-wallet-list></lnbits-wallet-list>
|
<lnbits-wallet-list id="wallet-list"></lnbits-wallet-list>
|
||||||
|
|
||||||
<lnbits-manage
|
<lnbits-manage
|
||||||
|
id="admin-manage"
|
||||||
:show-admin="'{{LNBITS_ADMIN_UI}}' == 'True'"
|
:show-admin="'{{LNBITS_ADMIN_UI}}' == 'True'"
|
||||||
:show-node="'{{LNBITS_NODE_UI}}' == 'True'"
|
:show-node="'{{LNBITS_NODE_UI}}' == 'True'"
|
||||||
></lnbits-manage>
|
></lnbits-manage>
|
||||||
<lnbits-extension-list class="q-pb-xl"></lnbits-extension-list>
|
<lnbits-extension-list
|
||||||
|
id="extension-list"
|
||||||
|
class="q-pb-xl"
|
||||||
|
></lnbits-extension-list>
|
||||||
</q-drawer>
|
</q-drawer>
|
||||||
{% endblock %} {% block page_container %}
|
{% endblock %} {% block page_container %}
|
||||||
<q-page-container>
|
<q-page-container>
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "lnbits"
|
name = "lnbits"
|
||||||
version = "0.12.2"
|
version = "0.12.1"
|
||||||
description = "LNbits, free and open-source Lightning wallet and accounts system."
|
description = "LNbits, free and open-source Lightning wallet and accounts system."
|
||||||
authors = ["Alan Bits <alan@lnbits.com>"]
|
authors = ["Alan Bits <alan@lnbits.com>"]
|
||||||
|
|
||||||
|
|||||||
@@ -64,7 +64,6 @@ def translate_string(lang_from, lang_to, text):
|
|||||||
"cs": "Czech",
|
"cs": "Czech",
|
||||||
"sk": "Slovak",
|
"sk": "Slovak",
|
||||||
"kr": "Korean",
|
"kr": "Korean",
|
||||||
"fi": "Finnish",
|
|
||||||
}[lang_to]
|
}[lang_to]
|
||||||
assert os.getenv("OPENAI_API_KEY"), "OPENAI_API_KEY env var not set"
|
assert os.getenv("OPENAI_API_KEY"), "OPENAI_API_KEY env var not set"
|
||||||
client = OpenAI()
|
client = OpenAI()
|
||||||
|
|||||||
Reference in New Issue
Block a user