Compare commits
1 Commits
fix/7263-d
...
rakekniven
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f952d8c71 |
@@ -78,7 +78,6 @@ OC.L10N.register(
|
|||||||
"Message from {author} in {conversationName}" : "Паведамленне ад {author} у {conversationName}",
|
"Message from {author} in {conversationName}" : "Паведамленне ад {author} у {conversationName}",
|
||||||
"Failed to upload {name}" : "Не ўдалося запампаваць {name}",
|
"Failed to upload {name}" : "Не ўдалося запампаваць {name}",
|
||||||
"Share" : "Абагуліць",
|
"Share" : "Абагуліць",
|
||||||
"Personal" : "Асабістыя",
|
|
||||||
"Today" : "Сёння",
|
"Today" : "Сёння",
|
||||||
"Tomorrow" : "Заўтра"
|
"Tomorrow" : "Заўтра"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -76,7 +76,6 @@
|
|||||||
"Message from {author} in {conversationName}" : "Паведамленне ад {author} у {conversationName}",
|
"Message from {author} in {conversationName}" : "Паведамленне ад {author} у {conversationName}",
|
||||||
"Failed to upload {name}" : "Не ўдалося запампаваць {name}",
|
"Failed to upload {name}" : "Не ўдалося запампаваць {name}",
|
||||||
"Share" : "Абагуліць",
|
"Share" : "Абагуліць",
|
||||||
"Personal" : "Асабістыя",
|
|
||||||
"Today" : "Сёння",
|
"Today" : "Сёння",
|
||||||
"Tomorrow" : "Заўтра"
|
"Tomorrow" : "Заўтра"
|
||||||
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
|
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ class Notifier implements INotifier {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$notification->setParsedSubject(
|
$notification->setParsedSubject(
|
||||||
$l->t('The card "%s" on "%s" has reached its due date.', $params)
|
$l->t('The card "%1$s" on "%2$s" has reached its due date.', $params)
|
||||||
);
|
);
|
||||||
$notification->setRichSubject(
|
$notification->setRichSubject(
|
||||||
$l->t('The card {deck-card} on {deck-board} has reached its due date.'),
|
$l->t('The card {deck-card} on {deck-board} has reached its due date.'),
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="attachments-drag-zone"
|
<div class="attachments-drag-zone"
|
||||||
@dragover.prevent="handleDragOver"
|
@dragover.prevent="!isDraggingOver && (isDraggingOver = true)"
|
||||||
@dragleave.prevent="isDraggingOver && (isDraggingOver = false)"
|
@dragleave.prevent="isDraggingOver && (isDraggingOver = false)"
|
||||||
@drop.prevent="handleDropFiles">
|
@drop.prevent="handleDropFiles">
|
||||||
<slot />
|
<slot />
|
||||||
@@ -83,13 +83,6 @@ export default {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
handleDragOver(event) {
|
|
||||||
if (!event.dataTransfer || event.dataTransfer.items?.length <= 0) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
!this.isDraggingOver && (this.isDraggingOver = true)
|
|
||||||
},
|
|
||||||
|
|
||||||
handleDropFiles(event) {
|
handleDropFiles(event) {
|
||||||
event.dataTransfer.dropEffect = 'copy'
|
event.dataTransfer.dropEffect = 'copy'
|
||||||
this.isDraggingOver = false
|
this.isDraggingOver = false
|
||||||
|
|||||||
Reference in New Issue
Block a user