diff options
author | Frederick Yin <fkfd@fkfd.me> | 2022-04-09 20:17:32 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2022-04-09 20:17:32 +0800 |
commit | 7785187e0510d77d93802dd3918f43794f83d9e4 (patch) | |
tree | 14ca1369a1d897c266f9f3e2eff70593a0e62de4 | |
parent | 6c340651ddffda29f0a7447cdb47803cbae88c97 (diff) |
Add more explanations for configCanvas
-rw-r--r-- | contents/ui/configCanvas.qml | 7 |
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." } } |