blob: 4f056ac5b2109c4a53abf999833bc42cac3b40ac (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/*
Copyright (C) 2017 Michael Bohlender, <bohlender@kolabsys.com>
Copyright (C) 2017 Christian Mollekopf, <mollekopf@kolabsys.com>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
pragma Singleton
import QtQuick 2.7
Item {
property string error: "error"
property string info_inverted: "documentinfo-inverted"
property string error_inverted: "error-inverted"
property string busy: "view-refresh"
property string busy_inverted: "view-refresh-inverted"
property string noNetworkConnection_inverted: "network-disconnect-inverted"
property string connected: "dialog-ok"
property string connected_inverted: "dialog-ok-inverted"
property string success: "dialog-ok"
property string success_inverted: "dialog-ok-inverted"
property string markAsRead: "mail-mark-read"
property string markAsUnread: "mail-mark-unread-new"
property string markImportant: "kubeimportant"
property string markUnimportant: "kubeunimportant"
property string isImportant: "kubeimportant"
property string undo: "edit-undo-inverted"
property string moveToTrash: "kubetrash"
property string edit: "document-edit"
property string edit_inverted: "document-edit-inverted"
property string replyToSender: "mail-reply-sender"
property string forward: "mail-forward"
property string outbox: "mail-folder-outbox"
property string outbox_inverted: "mail-folder-outbox-inverted"
property string copy: "edit-copy"
property string menu_inverted: "application-menu-inverted"
property string group: "group"
property string user: "im-user"
property string user_inverted: "im-user-inverted"
property string search_inverted: "edit-find-inverted"
property string mail_inverted: "mail-message-inverted"
property string goBack: "go-previous"
property string goBack_inverted: "go-previous-inverted"
property string goDown: "go-down"
property string goDown_inverted: "go-down-inverted"
property string goUp: "go-up"
property string checkbox: "checkbox"
property string password_show: "password-show-on"
property string password_hide: "password-show-off"
property string secure: "document-encrypt"
property string insecure: "document-decrypt"
property string signed: "document-sign"
property string key_import_inverted: "view-certificate-import-inverted"
property string addNew: "list-add"
property string listRemove: "list-remove"
property string remove: "kube-list-remove-inverted"
property string folder: "folder"
property string save_inverted: "document-save-inverted"
property string bold: "format-text-bold-symbolic"
property string italic: "format-text-italic-symbolic"
property string underline: "format-text-underline-symbolic"
property string help: "question-inverted"
}
|