summaryrefslogtreecommitdiff
path: root/contents/ui/configCanvas.qml
diff options
context:
space:
mode:
Diffstat (limited to 'contents/ui/configCanvas.qml')
-rw-r--r--contents/ui/configCanvas.qml7
1 files changed, 5 insertions, 2 deletions
diff --git a/contents/ui/configCanvas.qml b/contents/ui/configCanvas.qml
index fc64389..0940c1a 100644
--- a/contents/ui/configCanvas.qml
+++ b/contents/ui/configCanvas.qml
@@ -34,7 +34,9 @@ Kirigami.FormLayout {
courses.append(`${c.id} ${c.course_code}`)
}
fetchCoursesStatus.text = i18n(
- "Done! You can remove courses you don't wish to see on your desktop from the list."
+ "Done! You can remove courses you don't wish to see on your desktop from " +
+ "the list.\nYou can also rename the course code, but leave the numeric " +
+ "course ID at the beginning of each line intact."
)
} catch (e) {
if (e instanceof SyntaxError) {
@@ -61,13 +63,14 @@ Kirigami.FormLayout {
}
Button {
+ icon.name: "download"
text: "Fetch courses"
onClicked: fetchCourses()
}
Label {
id: fetchCoursesStatus
- text: ""
+ text: "Fetching courses from Canvas will overwrite your current config."
}
}