From 22d4d0d6c1b4ae8bd83d2e5fdf3f7c459d0ddb57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=80=20?= =?UTF-8?q?=22axel=5Fverse=22=20=D0=9C=D1=83=D0=B4=D1=80=D0=BE=D0=B2?= Date: Tue, 8 Sep 2026 23:28:53 +0300 Subject: [PATCH] =?UTF-8?q?FEAT:=20=D0=BF=D0=B5=D1=80=D0=B5=D0=B2=D0=BE?= =?UTF-8?q?=D0=B4=20=D0=B2=D1=81=D0=BF=D0=BB=D1=8B=D0=B2=D0=B0=D1=8E=D1=89?= =?UTF-8?q?=D0=B5=D0=B3=D0=BE=20=D1=81=D0=BE=D0=BE=D0=B1=D1=89=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/composables/useUpdateApp.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/composables/useUpdateApp.js b/src/composables/useUpdateApp.js index 0d2f760..9cb3fc9 100644 --- a/src/composables/useUpdateApp.js +++ b/src/composables/useUpdateApp.js @@ -25,23 +25,23 @@ export function useUpdateApp() { if (import.meta.env.DEV) console.log('NeedRefresh:', n) if (n) { toast.add({ - title: 'Update', + title: 'Обновление', description: - 'A newer version of the app is available. Click the “Update” button to install.', + 'Доступна более новая версия приложения. Нажмите кнопку “Обновить”, чтобы установить его.', duration: 0, icon: 'lucide:cloud-download', close: false, actions: [ { icon: 'lucide:arrow-big-up-dash', - label: 'Update', + label: 'Обновить', onClick: updateServiceWorker, color: 'error', }, { icon: 'lucide:x', - label: 'Dismiss', + label: 'Отложить', onClick: close, variant: 'outline', },