diff --git a/framework/qml/Icons.qml b/framework/qml/Icons.qml index a627fab1..7353c1e8 100644 --- a/framework/qml/Icons.qml +++ b/framework/qml/Icons.qml @@ -1,80 +1,80 @@ /* Copyright (C) 2017 Michael Bohlender, Copyright (C) 2017 Christian Mollekopf, 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: "kdocumentinfo-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: "kuberead" - property string markAsUnread: "kubeunread" + property string markAsRead: "mail-mark-read-inverted" + property string markAsUnread: "mail-mark-unread-new-inverted" property string markImportant: "kubeimportant" property string markUnimportant: "kubeunimportant" 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" }