diff options
author | Frederick Yin <fkfd@fkfd.me> | 2023-07-27 10:35:58 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2023-07-27 10:35:58 +0800 |
commit | 119255ee7c0e76edbc9a43e4550ccb664d0baea3 (patch) | |
tree | c3226847a9865aa5fabdb437d3884dca81d50e86 /contents/ui/configCanvas.qml | |
parent | db589d8f552e6ddaf80712fbbddfe2f296b135b4 (diff) |
Add missing i18n()s
Diffstat (limited to 'contents/ui/configCanvas.qml')
-rw-r--r-- | contents/ui/configCanvas.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contents/ui/configCanvas.qml b/contents/ui/configCanvas.qml index aed1a3e..26f611e 100644 --- a/contents/ui/configCanvas.qml +++ b/contents/ui/configCanvas.qml @@ -63,13 +63,13 @@ Kirigami.FormLayout { Button { icon.name: "download" - text: "Fetch courses" + text: i18n("Fetch courses") onClicked: fetchCourses() } Label { id: fetchCoursesStatus - text: "Fetching courses from Canvas will overwrite your current config." + text: i18n("Fetching courses from Canvas will overwrite your current config.") } } |