mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-22 08:24:44 +03:00
parent
5cde590a4f
commit
bfc8b93a96
@ -155,6 +155,9 @@ export const PageHeaderMenuButton = ({
|
|||||||
}),
|
}),
|
||||||
cancelText: t['com.affine.confirmModal.button.cancel'](),
|
cancelText: t['com.affine.confirmModal.button.cancel'](),
|
||||||
confirmText: t.Delete(),
|
confirmText: t.Delete(),
|
||||||
|
confirmButtonOptions: {
|
||||||
|
variant: 'error',
|
||||||
|
},
|
||||||
onConfirm: () => {
|
onConfirm: () => {
|
||||||
editorService.editor.doc.moveToTrash();
|
editorService.editor.doc.moveToTrash();
|
||||||
},
|
},
|
||||||
|
@ -141,6 +141,9 @@ export const VirtualizedPageList = ({
|
|||||||
}),
|
}),
|
||||||
cancelText: t['com.affine.confirmModal.button.cancel'](),
|
cancelText: t['com.affine.confirmModal.button.cancel'](),
|
||||||
confirmText: t.Delete(),
|
confirmText: t.Delete(),
|
||||||
|
confirmButtonOptions: {
|
||||||
|
variant: 'error',
|
||||||
|
},
|
||||||
onConfirm: () => {
|
onConfirm: () => {
|
||||||
for (const docId of filteredSelectedPageIds) {
|
for (const docId of filteredSelectedPageIds) {
|
||||||
const doc = docsService.list.doc$(docId).value;
|
const doc = docsService.list.doc$(docId).value;
|
||||||
|
@ -119,6 +119,9 @@ export const PageOperationCell = ({
|
|||||||
}),
|
}),
|
||||||
cancelText: t['com.affine.confirmModal.button.cancel'](),
|
cancelText: t['com.affine.confirmModal.button.cancel'](),
|
||||||
confirmText: t.Delete(),
|
confirmText: t.Delete(),
|
||||||
|
confirmButtonOptions: {
|
||||||
|
variant: 'error',
|
||||||
|
},
|
||||||
onConfirm: () => {
|
onConfirm: () => {
|
||||||
docRecord.moveToTrash();
|
docRecord.moveToTrash();
|
||||||
},
|
},
|
||||||
|
@ -36,6 +36,9 @@ const ResolveConflictOperations = ({ docRecord }: { docRecord: DocRecord }) => {
|
|||||||
}),
|
}),
|
||||||
cancelText: t['com.affine.confirmModal.button.cancel'](),
|
cancelText: t['com.affine.confirmModal.button.cancel'](),
|
||||||
confirmText: t.Delete(),
|
confirmText: t.Delete(),
|
||||||
|
confirmButtonOptions: {
|
||||||
|
variant: 'error',
|
||||||
|
},
|
||||||
onConfirm: () => {
|
onConfirm: () => {
|
||||||
docRecord.moveToTrash();
|
docRecord.moveToTrash();
|
||||||
},
|
},
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"ar": 79,
|
"ar": 79,
|
||||||
"ca": 6,
|
"ca": 6,
|
||||||
"da": 6,
|
"da": 6,
|
||||||
"de": 30,
|
"de": 29,
|
||||||
"en": 100,
|
"en": 100,
|
||||||
"es-AR": 14,
|
"es-AR": 14,
|
||||||
"es-CL": 16,
|
"es-CL": 16,
|
||||||
@ -10,10 +10,10 @@
|
|||||||
"fr": 70,
|
"fr": 70,
|
||||||
"hi": 2,
|
"hi": 2,
|
||||||
"it": 1,
|
"it": 1,
|
||||||
"ja": 94,
|
"ja": 93,
|
||||||
"ko": 83,
|
"ko": 83,
|
||||||
"pl": 0,
|
"pl": 0,
|
||||||
"pt-BR": 91,
|
"pt-BR": 90,
|
||||||
"ru": 77,
|
"ru": 77,
|
||||||
"sv-SE": 5,
|
"sv-SE": 5,
|
||||||
"ur": 3,
|
"ur": 3,
|
||||||
|
Loading…
Reference in New Issue
Block a user