Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
66825d15d3
2 changed files with 5 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
"updateAll": "Actualizar todo",
|
||||
"confirmUpdateAll": "¿Estás seguro de que deseas actualizar todo?",
|
||||
"confirmUpdate": "¿Estás seguro de que deseas actualizar?",
|
||||
"insertRowBefore": "Insertar filas ${x} arriba",
|
||||
"insertRowAfter": "Insertar filas ${x} debajo",
|
||||
"setDueTime": "Establecer tiempo de vencimiento",
|
||||
|
|
|
@ -707,7 +707,7 @@ export const bazaar = {
|
|||
event.stopPropagation();
|
||||
break;
|
||||
} else if (type === "install-all") {
|
||||
confirmDialog(window.siyuan.languages.updateAll, window.siyuan.languages.confirmUpdateAll, () => {
|
||||
confirmDialog('⬆️ ' + window.siyuan.languages.updateAll, window.siyuan.languages.confirmUpdateAll, () => {
|
||||
fetchPost("/api/bazaar/batchUpdatePackage", {frontend: getFrontend()});
|
||||
});
|
||||
event.preventDefault();
|
||||
|
@ -715,7 +715,7 @@ export const bazaar = {
|
|||
break;
|
||||
} else if (type === "install-t") {
|
||||
if (!target.classList.contains("b3-button--progress")) {
|
||||
confirmDialog(window.siyuan.languages.update, window.siyuan.languages.confirmUpdate, () => {
|
||||
confirmDialog('⬆️ ' + window.siyuan.languages.update, window.siyuan.languages.confirmUpdate, () => {
|
||||
const bazaarType = dataObj.bazaarType as TBazaarType;
|
||||
let url = "/api/bazaar/installBazaarTemplate";
|
||||
if (bazaarType === "themes") {
|
||||
|
|
Loading…
Add table
Reference in a new issue