1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| import { _ } from './gettext';
|
| const CANCEL = 1,
| REMOVE = 2,
| RESTART = 3,
| RESIZE = 4,
| IMPORT = 5;
|
| let pendingActions = {
| [CANCEL]: {
| descr: _("Canceling...")
| },
| [REMOVE]: {
| descr: _("Deleting...")
| },
| [RESTART]: {
| descr: _("Restarting...")
| },
| [RESIZE]: {
| descr: _("Resizing images...")
| },
| [IMPORT]: {
| descr: _("Importing...")
| }
| };
|
| export default {
| CANCEL: CANCEL,
| REMOVE: REMOVE,
| RESTART: RESTART,
| RESIZE: RESIZE,
| IMPORT: IMPORT,
|
| description: function(pendingAction) {
| if (pendingActions[pendingAction]) return pendingActions[pendingAction].descr;
| else return "";
| }
| };
|
|