diff --git a/plugins/welcomepage/qml/area_debug.qml b/plugins/welcomepage/qml/area_debug.qml index 5c2b24bcbb..ce41ff527a 100644 --- a/plugins/welcomepage/qml/area_debug.qml +++ b/plugins/welcomepage/qml/area_debug.qml @@ -1,68 +1,70 @@ /* KDevelop * * Copyright 2011 Aleix Pol * * 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. */ import QtQuick 2.0 import QtQuick.Layouts 1.1 import QtQuick.Controls 1.2 StandardBackground { id: root tools: Link { id: goCode iconName: "go-previous" text: i18n("Back to code") onClicked: kdev.setArea("code") } pageIcon: "tools-report-bug" StandardPage { id: startingPage anchors { fill: parent leftMargin: root.marginLeft+root.margins margins: root.margins } Column { anchors.margins: 30 anchors.fill: parent spacing: 30 RowLayout { Link { iconName: "configure"; text: i18n("Configure a new Launcher"); onClicked: kdev.retrieveMenuAction("run/configure_launches").trigger() } Link { iconName: "audio-input-line"; text: i18n("Attach to Process"); onClicked: kdev.retrieveMenuAction("run/debug_attach").trigger() } Link { iconName: "debug-run"; text: i18n("Debug your program"); onClicked: kdev.retrieveMenuAction("run/run_debug").trigger() } } Heading { text: i18n("Debug Area") } Label { width: parent.width - text: i18n("On the Debug area you will be able to see and analyze how your program works on execution. "+ - "On the Run menu you will find all the possible options.

"+ - "As you can see, here you can just execute your application or debug it if you need "+ - "further runtime information. You can select what is going to be run by configuring "+ - "the launches and selecting the one you want to use in the Current Launch Configuration sub-menu.") + text: i18n("On the Debug area you will be able to see and analyze how your program works on execution. On the Run menu you will find all the possible options.") + wrapMode: Text.WordWrap + horizontalAlignment: Text.AlignJustify + } + Label { + width: parent.width + text: i18n("As you can see, here you can just execute your application or debug it if you need further runtime information. You can select what is going to be run by configuring the launches and selecting the one you want to use in the Current Launch Configuration sub-menu.") wrapMode: Text.WordWrap horizontalAlignment: Text.AlignJustify } } } } diff --git a/plugins/welcomepage/qml/area_review.qml b/plugins/welcomepage/qml/area_review.qml index e0933dd550..a0bd7b63f4 100644 --- a/plugins/welcomepage/qml/area_review.qml +++ b/plugins/welcomepage/qml/area_review.qml @@ -1,73 +1,76 @@ /* KDevelop * * Copyright 2011 Aleix Pol * * 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. */ import QtQuick 2.0 StandardBackground { id: root tools: Link { id: goCode iconName: "go-previous" text: i18n("Back to code") onClicked: kdev.setArea("code") } pageIcon: "applications-engineering" StandardPage { id: startingPage anchors { fill: parent leftMargin: root.marginLeft+root.margins margins: root.margins } Column { anchors.margins: 30 anchors.fill: parent spacing: 30 Item { tools: Flow { Link { iconName: "kompare" text: i18n("Review a Patch") onClicked: { kdev.raiseToolView("EditPatch") } } } } Heading { text: i18n("Review Area") } Label { width: parent.width - text: i18n("On the Review area you will be able to find the tools you need "+ - "to review changes in your projects, either the ones you made or some external patch.
Also it will help you send "+ - "the changes to the community you're contributing to, either by committing the changes, sending them by e-mail or "+ - "putting them on a ReviewBoard service.") + text: i18n("On the Review area you will be able to find the tools you need to review changes in your projects, either the ones you made or some external patch.") + wrapMode: Text.WordWrap + horizontalAlignment: Text.AlignJustify + } + Label { + width: parent.width + text: i18n("Also it will help you send the changes to the community you're contributing to, either by committing the changes, sending them by e-mail or putting them on a ReviewBoard service.") wrapMode: Text.WordWrap horizontalAlignment: Text.AlignJustify } } } }