Cura/plugins/ChangeLogPlugin/ChangeLog.qml
Ghostkeeper a60f63c71b Add internationalisation for ChangeLog plug-in
Some of these strings were not translated.

Contributes to issue CURA-1190.
2016-03-22 15:38:01 +01:00

41 lines
875 B
QML

// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.
import QtQuick 2.1
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
import QtQuick.Window 2.1
import UM 1.1 as UM
UM.Dialog
{
id: base
minimumWidth: 400
minimumHeight: 300
title: catalog.i18nc("@label", "Changelog")
ScrollView
{
width: parent.width
height: parent.height - 25
Text
{
text: manager.getChangeLogString()
width:base.width - 35
wrapMode: Text.Wrap;
}
}
Button
{
UM.I18nCatalog
{
id: catalog
name: "cura"
}
anchors.bottom:parent.bottom
text: catalog.i18nc("@action:button", "Close")
onClicked: base.hide()
anchors.horizontalCenter: parent.horizontalCenter
}
}