diff --git a/src/timeline2/view/qml/AssetMenu.qml b/src/timeline2/view/qml/AssetMenu.qml index 289e27f07..18afa727d 100644 --- a/src/timeline2/view/qml/AssetMenu.qml +++ b/src/timeline2/view/qml/AssetMenu.qml @@ -1,46 +1,46 @@ /*************************************************************************** * Copyright (C) 2017 by Nicolas Carion * * This file is part of Kdenlive. See www.kdenlive.org. * * * * 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) version 3 or any later version accepted by the * * membership of KDE e.V. (or its successor approved by the membership * * of KDE e.V.), which shall act as a proxy defined in Section 14 of * * version 3 of the license. * * * * 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, see . * ***************************************************************************/ import QtQuick 2.6 import QtQuick.Controls 1.5 import QtQuick.Window 2.2 import QtQml.Models 2.2 Menu { id: menuRoot property alias menuModel: itemRepeater.model property bool isTransition: false signal assetSelected(string assetId) Instantiator { id: itemRepeater onObjectAdded: menuRoot.insertItem( index, object ) onObjectRemoved: menuRoot.removeItem( object ) delegate: MenuItem { - text: timeline.getAssetName(modelData, isTransition) //name + text: i18n(timeline.getAssetName(modelData, isTransition)) //name property string assetId: modelData //identifier onTriggered: { console.log(assetId) menuRoot.assetSelected(assetId) } } } }