Commit Graph

57889 Commits

Author SHA1 Message Date
Drake Harper d698b47c7b Process assignmet params from create discussion mutation
closes VICE-3799
flag=discussion_create

Test Plan:
- create an assignment on a discussion topic via graqhiql

Sample Mutation:
mutation MyMutation($topicTitle: String!) {
  __typename
  createDiscussionTopic(input: {
    contextId: "1",
    contextType: "Course",
    message: "Well hello there",
    published: true,
    title: $topicTitle,
    assignment: {courseId: "1",
      name: $topicTitle,
      pointsPossible: 15,
      gradingType: percent,
      peerReviews: {
        anonymousReviews: true,
        automaticReviews: true,
        count: 2,
        enabled: true,
        intraReviews: true,
        dueAt: "2023-11-23T17:44:51.014Z"
      }
    }
  }) {
    discussionTopic {
      _id
      title
      message
      assignment {
        _id
        name
        pointsPossible
        gradingType
        peerReviews {
          anonymousReviews
          automaticReviews
          count
          enabled
        }
      }
    }
  }
}

Variables: {
  "topicTitle": "GQL Test 5"
}

Change-Id: Ie19f0032a886f279ccbf7f924bc822e44d2ac480
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330897
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
QA-Review: Jason Gillett <jason.gillett@instructure.com>
Product-Review: Drake Harper <drake.harper@instructure.com>
Reviewed-by: Caleb Guanzon <cguanzon@instructure.com>
2023-10-24 22:36:34 +00:00
Cody Cutrer 076f037ca5 use cluster name for redis error reporting when redis is a ring
fixes CNVS-60221

Change-Id: I7fe0e2339e5c46835727807535baf85e678f8c1c
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331189
Reviewed-by: Keith Garner <kgarner@instructure.com>
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
QA-Review: Cody Cutrer <cody@instructure.com>
Product-Review: Cody Cutrer <cody@instructure.com>
2023-10-24 22:12:22 +00:00
August Thornton 0ff1e911d0 update welcome tour tutorial video links
fixes FOO-3978
flag = none

test plan:
- go to welcome tour
- click on the video links
- make sure they go to the correct working videos on Studio

Change-Id: I4dae322f8b00cdfc8092a8c09638f6ba5dceb3ef
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331173
Reviewed-by: Michael Hulse <michael.hulse@instructure.com>
Reviewed-by: Aaron Shafovaloff <ashafovaloff@instructure.com>
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
QA-Review: August Thornton <august@instructure.com>
Product-Review: August Thornton <august@instructure.com>
2023-10-24 21:03:01 +00:00
Ryan Hawkins d7f98ec63e Remove no_redirect_on_oauth_token_method FF
why:
- To remove FF cruft
- To simplify the code. We were using errors to redirect on missing
  scopes, but explicitly redirecting for all other oauth param issues,
  which was confusing. We don't do that anymore.

closes INTEROP-7446

flag=none

test-plan:
- The tests cover all of these cases, as there should be no user/API
  changes, just code removal/simplification.

Change-Id: I1a5e1f6e07e517d936748fc41a38dd2e7ee8f49d
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330832
Reviewed-by: Tucker Mcknight <tmcknight@instructure.com>
QA-Review: Tucker Mcknight <tmcknight@instructure.com>
Product-Review: Ryan Hawkins <ryan.hawkins@instructure.com>
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 20:50:21 +00:00
Omar Gerardo Soto-Fortuño 1a77e0fa82 Add checkpoint fields to Assignment Type
refs VICE-3835
flag=discussion_checkpoints

test plan:
  - Specs pass.
  - You can test it with this query:
query MyQuery {
  course(id: "1") {
    _id
    assetString
    name
    assignmentsConnection(filter: {userId: "1"}) {
      nodes {
        _id
        name
        checkpointed
        checkpoints {
          name
          label
          pointsPossible
          dueAt
          onlyVisibleToOverrides
        }
      }
    }
  }
}

qa risk: low

Change-Id: I485a50ec4e58fde273f1c0ab69a317f311329073
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330979
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Spencer Olson <solson@instructure.com>
QA-Review: Jason Gillett <jason.gillett@instructure.com>
Product-Review: Jason Gillett <jason.gillett@instructure.com>
2023-10-24 19:56:19 +00:00
gustavo.bernardes 8164f4a702 theme override new sidenav
Start theme overriding global CSS on new SideNav

closes FOO-3885
closes FOO-3937
flag=instui_nav

test plan:
- Log in to Canvas as an Admin
- Go to RootAccount > Settings > Feature Options >
Enable New InstUI NavBar

Change-Id: I44de95190bab61fc29d542b7fc599f0aec0acf9e
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331107
QA-Review: Gustavo Bernardes <gustavo.bernardes@instructure.com>
Product-Review: Gustavo Bernardes <gustavo.bernardes@instructure.com>
Reviewed-by: Aaron Shafovaloff <ashafovaloff@instructure.com>
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 19:55:13 +00:00
Cody Cutrer e05536529e add optional argument for Redis#pipelined
to specify the (singular) key you will operate on, so address
a specific node when it's a distributed redis client

Change-Id: I9c4c0ab7114ea491439b42e4f4310f81470422a7
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331131
Reviewed-by: Aaron Ogata <aogata@instructure.com>
Build-Review: Aaron Ogata <aogata@instructure.com>
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
QA-Review: Cody Cutrer <cody@instructure.com>
Product-Review: Cody Cutrer <cody@instructure.com>
2023-10-24 19:25:01 +00:00
jonathan 668afad9b4 Use the DifferentiatedModulesTray for modules creation
closes LF-759, LF-760, LF-761
flag= differentiated_modules
qa risk: low

test plan:
In a course with some modules
Click on the + Module button
Expect the new tray to be open with all the inputs empty
Expect to see Add Module in the header and as the label for the
primary button
Expect not to see the Assign To tab
Try to save the module without the name
Expect not to be allowed and an alert to appear
Fill in the module information and save the module
Expect the module to be added to the DOM
Edit the created module
Expect the module to be editable and the settings you saved to be
shown when you try to edit the new module.

Change-Id: I56ae74d2af87cefa4510ee8e67e0ce9146b3a1fb
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330515
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Product-Review: Jonathan Guardado <jonathan.guardado@instructure.com>
Reviewed-by: Jake Oeding <jake.oeding@instructure.com>
QA-Review: Jake Oeding <jake.oeding@instructure.com>
2023-10-24 19:15:46 +00:00
Jeremy Stanley b99f1e9bb3 don't null out lti_context_id in deleted shadow records
because writing to the shadow record is deprecated, and the
primary record might not be deleted. instead follow the
code path where a non-deleted clash exists and generate a
new random lti_context_id

test plan: specs
flag=none
fixes CANVAS-MDMF
fixes CANVAS-MAEC
fixes CANVAS-MAH9
fixes CANVAS-MAGM

Change-Id: Ic511d0bad3a90b1299fca5ed5944125b91f6ecfe
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330990
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: August Thornton <august@instructure.com>
QA-Review: Jeremy Stanley <jeremy@instructure.com>
Product-Review: Jeremy Stanley <jeremy@instructure.com>
2023-10-24 18:48:32 +00:00
Aaron Ogata e978083a69 prevent cross-shard tool queries in ContextToolFinder
refs AE-563

this change still allows multiple shards to be queried for
each context in the account chain

Change-Id: I74df653793328a627ddf0c4ef6ec1fa412a87acd
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331130
Reviewed-by: Xander Moffatt <xmoffatt@instructure.com>
Reviewed-by: Cody Cutrer <cody@instructure.com>
QA-Review: Aaron Ogata <aogata@instructure.com>
Product-Review: Aaron Ogata <aogata@instructure.com>
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 18:20:35 +00:00
Aaron Shafovaloff 203048ecfd Badge counts in SideNavBar
test plan:
  badge counts show up in navbar items in new SideNavBar

flag=instui_nav

refs FOO-3880
refs FOO-3894
refs FOO-3895

Change-Id: Iea01d6d9b5aa6aed7afe129842b17b1a6463c9b1
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331126
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Martin Ochoa <martin.ochoa@instructure.com>
QA-Review: Aaron Shafovaloff <ashafovaloff@instructure.com>
Product-Review: Aaron Shafovaloff <ashafovaloff@instructure.com>
2023-10-24 18:19:25 +00:00
juan.chavez 6a84dcf553 Add pagination support to the Import Issues modal
closes LF-913

flag=instui_for_import_page

test plan:
- Navigate to a course content import page.
- Import content that have more than 10 issues.
(DM me or Eric if want a file with these number of issues)
- Wait until the import process finishes.
- Check that in "Progress" column has more than 10 issues.
- Click "View Issues" button.
> Verify that 10 issues are initially loaded in the modal.
- Click "Show More" button.
> Verify that a spinner is showed meanwhile is fetching.
> Verify that more issues are loaded in the modal.
> Verify that the "Show More" button is not showed after
all issues are already loaded in the modal.

Change-Id: Id6ab206732bdd30ea7bcb9925c45501e1889c291
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330983
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Eric Saupe <eric.saupe@instructure.com>
QA-Review: Eric Saupe <eric.saupe@instructure.com>
Product-Review: Juan Chavez <juan.chavez@instructure.com>
2023-10-24 18:14:37 +00:00
Cody Cutrer 6f8e97178e fix failed login workflow with Redis::Distributed
need to run the pipeline against a singular node

Change-Id: I33befbf4e11daaf5942c37af9233d8f90adde732
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331124
Reviewed-by: August Thornton <august@instructure.com>
QA-Review: Cody Cutrer <cody@instructure.com>
Product-Review: Cody Cutrer <cody@instructure.com>
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 17:09:08 +00:00
August Thornton 385b70c6c5 add TemporaryEnrollmentPairing model
closes FOO-3963
closes FOO-3964
flag = temporary_enrollments

test plan:
 • in rails console create a temporary enrollment pairing
    TemporaryEnrollmentPairing.create!(root_account: Account.default)
 • should be created with a default workflow_state of "active"
 • temporary enrollment pairings are soft-deletable
 • they have a one to many association on enrollments to be used for
   tracking the enrollments that were created from the pairing
   during temporary enrollment creation (TempEnrollAssign) modal

Change-Id: I75083d3163af13a609b15d984313f4dc8ec944a8
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330991
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Jason Perry <jason.perry@instructure.com>
Migration-Review: Cody Cutrer <cody@instructure.com>
QA-Review: August Thornton <august@instructure.com>
Product-Review: August Thornton <august@instructure.com>
2023-10-24 16:52:07 +00:00
Spencer Olson c590c2c398 aggregate points_possible for checkpointed assignments
closes VICE-3874
flag=discussion_checkpoints

Test Plan:
1. Create a checkpointed discussion in a rails console via
   DiscussionTopic#create_checkpoints. Set the points_possible on the
   checkpoints to 3 and 7, and the required replies to 1.

2. Verify the "parent" assignment has points_possible of 10:

   topic.reload.assignment.points_possible

3. Update the points_possible on the first checkpoint from 3 to 4, and
   then verify the points_possible on the parent are updated from 10 to
   11:

   topic.reply_to_topic_checkpoint.update!(points_possible: 4)
   topic.reload.assignment.points_possible # should be 11

Change-Id: Ic4f3472a624faab68c989daade6f8cc7f55c4496
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330996
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Omar Soto-Fortuño <omar.soto@instructure.com>
Product-Review: Omar Soto-Fortuño <omar.soto@instructure.com>
QA-Review: Caleb Guanzon <cguanzon@instructure.com>
2023-10-24 16:42:00 +00:00
Mysti Lilla c9383c7ce1 Make API call to get attachment info
fixes LF-887
flag=media_links_use_attachment_id

Test plan
- In a Blueprint parent course, upload
  a media file and lock the file for editing
  in the children courses
- Link a child course and sync the content
  from the parent
- Link the video in the RCE in the child course
- Click on the video in the editor and go to
  Video Options
- Verify that an API response to the RCS at
  api/files/:fileId was sent
- For best results, test with g/330028 and
  g/330353 (which will actually provide the
  required API field)

Change-Id: Ib0f734ba45842c6320804c4d46516ab8b1a76304
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330025
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Luis Oliveira <luis.oliveira@instructure.com>
QA-Review: Luis Oliveira <luis.oliveira@instructure.com>
Product-Review: Mysti Lilla <mysti@instructure.com>
2023-10-24 16:31:38 +00:00
Jason Gillett d1a56c669d Handle orphaned conversation participants
A conversation participant should not be able to exist
However we have run into a few instances where they do
This commit handles them gracefully

refs VICE-3725
flag=react_inbox

Test Plan
1. Test the new test case before and after changes

Or
1. Disable foreign key restraints
2. Delete a conversation in a way that preserves
the participant
3. verify orphaned participant exists
4. open inbox, no error should occur

Change-Id: I16b067bddf72d12a92d8f97dbb4abdcfd4e491f8
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330792
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Spencer Olson <solson@instructure.com>
QA-Review: Omar Soto-Fortuño <omar.soto@instructure.com>
Product-Review: Omar Soto-Fortuño <omar.soto@instructure.com>
2023-10-24 15:11:01 +00:00
Spencer Olson bb5717b917 add question mark to discussion delete prompt
flag=react_discussions_post

Test Plan:
- specs pass

Change-Id: Iae675aab499a541fa2bfb6f8aa09c96ea28c462a
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330574
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Drake Harper <drake.harper@instructure.com>
QA-Review: Drake Harper <drake.harper@instructure.com>
Product-Review: Drake Harper <drake.harper@instructure.com>
2023-10-24 14:56:27 +00:00
Sleyder Zuleta d6ed45d595 preserve restrict quantitative data in course copy
flag=restrict_quantitative_data
closes EVAL-3585

Test Plan:
- Enable restrict_quantitative_data flag
- create a course
- go to courses/:course_id/settings#tab-details
- check 'Restrict view of quantitative data' and click update
- copy the course
- the copy should has 'Restrict view of quantitative data'
checked

Change-Id: I6e5ad1bd34a20ddfb73fa2eef27a73a7da72b77f
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/330507
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
Reviewed-by: Derek Williams <derek.williams@instructure.com>
Reviewed-by: Samuel Lee <samuel.lee@instructure.com>
QA-Review: Kai Bjorkman <kbjorkman@instructure.com>
Product-Review: Ravi Koll <ravi.koll@instructure.com>
2023-10-24 14:16:25 +00:00
Jenkins 30369e43e7 update zh-Hant translation
Change-Id: I4d2e4592a8007f6e14142b3a4af593ec1a692ce9
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331062
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:55:24 +00:00
Jenkins 8d55511f3b update zh-Hans translation
Change-Id: Ica38428a71748de91aefe07d5461ba9407c9ff50
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331061
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:54:47 +00:00
Jenkins 7573fc598f update vi translation
Change-Id: Ibc3c0fa33bd4519fc486306ece80a020cccb17fe
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331060
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:54:07 +00:00
Jenkins ec36fe2194 update th translation
Change-Id: I91fb0ef3b637c0f38075e0fd31a90f43e6976ba5
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331059
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:53:34 +00:00
Jenkins 412c2e240e update sv-x-k12 translation
Change-Id: I91f8c794c293174e5ec9ed4e339ade8740f6d73f
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331058
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:52:58 +00:00
Jenkins 64d030416b update sv translation
Change-Id: I2605b467e4f7b56a0ab9185c5b008ff3a4818486
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331057
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:52:24 +00:00
Jenkins 1d1300991d update sl translation
Change-Id: Ief3d8d2a8c9bc83f6ded7043c39529b5f7a35acf
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331056
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:51:47 +00:00
Jenkins 424610e27a update ru translation
Change-Id: I4f10a81e22e92613cf3c540a3a3e1a775d8fd6b5
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331055
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:51:14 +00:00
Jenkins fa46d636f4 update pt-BR translation
Change-Id: Ib8cc463afe680f6d8b68edba97ba00ac34538e11
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331054
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:50:38 +00:00
Jenkins 5e755b4d2e update pt translation
Change-Id: Idf8e15927f313dcb542566dc06b56de9a6f14d3d
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331053
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:50:03 +00:00
Jenkins 46acb35e3d update pl translation
Change-Id: I30085cd87fb05d1210bd5684d46db6a21dea70c3
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331052
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:49:26 +00:00
Jenkins 048fd40777 update nl translation
Change-Id: I283f3ddcbddf53bd8f6385fd44cd051615ab816b
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331051
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:48:51 +00:00
Jenkins 491c62cfba update nb-x-k12 translation
Change-Id: Ibc425e70bc7503cba70299075cb0d2320eb17694
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331050
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:48:15 +00:00
Jenkins 59ab6466c1 update nb translation
Change-Id: Ibb855ff8cbeb673062a5ba56ee809bc3e51d7928
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331049
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:47:41 +00:00
Jenkins 9f29ce026b update ms translation
Change-Id: Ie8d9842dd9103fc91306c3fad850c9137d16093a
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331048
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:47:04 +00:00
Jenkins b4cacf0d62 update mi translation
Change-Id: Id5494d82bd0f3899d1a93e4c0c38eb0544cb8dad
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331047
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:46:33 +00:00
Jenkins 51d4cfc441 update ja translation
Change-Id: I05bdbda26bd0d46e9b98fb73ee864d4d67ec9084
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331046
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:45:54 +00:00
Jenkins 8fe319e51e update it translation
Change-Id: I96d1622738c3fef63f985a5311446ac769d03198
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331045
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:45:15 +00:00
Jenkins c58c0e3ced update is translation
Change-Id: Ic2e780a06f3a2f751cc718b1551a08ca89e5e66e
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331044
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:44:39 +00:00
Jenkins b07c51286a update ht translation
Change-Id: Iea5a5e04c2803ee2db58e6f2e4de0f9b0d9b7610
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331043
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:44:04 +00:00
Jenkins b0238bc5ad update fr-CA translation
Change-Id: I43c31262573e7322634a481ab3004e4b51618791
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331042
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:43:30 +00:00
Jenkins a2d421fdac update fr translation
Change-Id: I17e79f56fe60722a9501d8aef123255f02d6e5ef
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331041
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:42:55 +00:00
Jenkins 9601f0c7f6 update fi translation
Change-Id: I1685775d944433f8a1f6d71adf05bed8d910a994
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331040
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:42:21 +00:00
Jenkins 760768420c update es-ES translation
Change-Id: I401a92d30cef79fbf25a9c7cac46f5a160040120
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331039
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:41:45 +00:00
Jenkins d7b25837bc update es translation
Change-Id: I856e2ba3a5dcf496e26ad5975e3b41647e08ed3d
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331038
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:41:15 +00:00
Jenkins e4bd61269d update en-GB translation
Change-Id: Ib7304e9ee90818eab861a09fdd8a574dea2b17a6
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331036
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:40:29 +00:00
Jenkins 7c7a4da540 update en-CA translation
Change-Id: If00a0374a471c8f331aed3f2f6c0fe2cf5e0719d
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331035
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:39:56 +00:00
Jenkins 2be85d86b6 update en-AU translation
Change-Id: I6c962ecee53e5dbc356de759b737eb2c8bfb95d1
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331033
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:39:12 +00:00
Jenkins efac718e87 update de translation
Change-Id: I5e94932298e9f93e8b677a284dc8ffa40a70b929
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331032
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:38:42 +00:00
Jenkins e2dc8fce84 update da-x-k12 translation
Change-Id: I4ec43511e5b69da2ddd3e674508e074a844b3ba8
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331031
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:38:12 +00:00
Jenkins c0e0a453fa update da translation
Change-Id: Ic3e8f4aeb2b7c9dc2865abf02d33fcd2c5bc41a3
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/331030
Tested-by: Service Cloud Jenkins <svc.cloudjenkins@instructure.com>
2023-10-24 05:37:44 +00:00