update locales

This commit is contained in:
Zamitto 2024-05-26 22:25:09 -03:00
parent 1299eecc12
commit bd9b4d3385
8 changed files with 5 additions and 36 deletions

View file

@ -29,7 +29,8 @@
"catalogue": "Catalogue",
"downloads": "Downloads",
"search_results": "Search results",
"settings": "Settings"
"settings": "Settings",
"version_available": "Version {{version}} available. Click here to restart and install."
},
"bottom_panel": {
"no_downloads_in_progress": "No downloads in progress",
@ -176,11 +177,5 @@
},
"modal": {
"close": "Close button"
},
"splash": {
"downloading_version": "Downloading version {{version}}",
"searching_updates": "Searching for updates",
"update_found": "Update {{version}} found",
"restarting_and_applying": "Restarting and applying update"
}
}

View file

@ -176,11 +176,5 @@
},
"modal": {
"close": "Botón de cierre"
},
"splash": {
"downloading_version": "Descargando versión {{version}}",
"searching_updates": "Buscando actualizaciones",
"update_found": "Actualización {{version}} encontrada",
"restarting_and_applying": "Reiniciando y aplicando actualización"
}
}

View file

@ -176,11 +176,5 @@
},
"modal": {
"close": "Pulsante Chiudi"
},
"splash": {
"downloading_version": "Scaricando la versione {{version}}",
"searching_updates": "Ricerca di aggiornamenti",
"update_found": "Trovato aggiornamento {{version}}",
"restarting_and_applying": "Riavvio e applico l'aggiornamento"
}
}

View file

@ -29,7 +29,8 @@
"downloads": "Downloads",
"search_results": "Resultados da busca",
"settings": "Configurações",
"home": "Início"
"home": "Início",
"version_available": "Versão {{version}} disponível. Clique aqui para reiniciar e instalar."
},
"bottom_panel": {
"no_downloads_in_progress": "Sem downloads em andamento",

View file

@ -176,11 +176,5 @@
},
"modal": {
"close": "Закрыть"
},
"splash": {
"downloading_version": "Загрузка версии {{version}}",
"searching_updates": "Поиск обновлений",
"update_found": "Найдена новая версия {{version}}",
"restarting_and_applying": "Перезапуск и внесение изменений"
}
}

View file

@ -174,11 +174,5 @@
},
"modal": {
"close": "关闭按钮"
},
"splash": {
"downloading_version": "正在下载新版本 {{version}}",
"searching_updates": "检查更新...",
"update_found": "有新版本 {{version}} 可用",
"restarting_and_applying": "重启并应用更新"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

View file

@ -166,10 +166,7 @@ export function Header({ onSearch, onClear, search }: HeaderProps) {
onClick={handleClickRestartAndUpdate}
>
<SyncIcon size={12} />
<small>
New version {newVersion} available. Click here to restart and
install
</small>
<small>{t("version_available", { version: newVersion })}</small>
</button>
</header>
)}