- Issue created by @joachim
- Status changed to Needs review
about 1 year ago 1:13pm 24 October 2023 - last update
about 1 year ago 30,434 pass - Status changed to Needs work
about 1 year ago 3:29pm 24 October 2023 - πΊπΈUnited States smustgrave
$edit = ['field_storage[subform][cardinality_number]' => 2]; $this->drupalGet('admin/structure/types/manage/article/fields/node.article.field_image'); $this->submitForm($edit, 'Save'); // Make the image field non-translatable. $edit = ['settings[node][article][fields][field_image]' => FALSE]; $this->drupalGet('admin/config/regional/content-language'); $this->submitForm($edit, 'Save configuration');
$edit['use_admin_theme'] = FALSE; $this->drupalGet('admin/appearance'); $this->submitForm($edit, 'Save configuration');
Could these be converted too?
- Status changed to Needs review
about 1 year ago 8:56am 25 October 2023 - last update
about 1 year ago 30,437 pass - Status changed to RTBC
about 1 year ago 2:02pm 25 October 2023 - last update
about 1 year ago 30,438 pass - last update
about 1 year ago 30,464 pass - last update
about 1 year ago 30,480 pass - last update
about 1 year ago 30,483 pass - last update
about 1 year ago 30,486 pass - last update
about 1 year ago 30,488 pass - last update
about 1 year ago 30,510 pass - last update
about 1 year ago 30,516 pass - Status changed to Needs review
about 1 year ago 11:32pm 10 November 2023 - π¬π§United Kingdom longwave UK
+++ b/core/modules/node/tests/src/Functional/NodeTranslationUITest.php @@ -258,21 +263,19 @@ public function testTranslationLinkTheme() { + $this->container->get('router.builder')->rebuild();
Why do we need to do a router rebuild here but not in the earlier case? This sort of thing makes me take pause about these conversions because it's not clear why we have to do this now when we didn't before.
- Status changed to Needs work
about 1 year ago 12:11am 11 November 2023 The Needs Review Queue Bot β tested this issue.
While you are making the above changes, we recommend that you convert this patch to a merge request β . Merge requests are preferred over patches. Be sure to hide the old patch files as well. (Converting an issue to a merge request without other contributions to the issue will not receive credit.)
- π¬π§United Kingdom joachim
> Why do we need to do a router rebuild here but not in the earlier case? This sort of thing makes me take pause about these conversions because it's not clear why we have to do this now when we didn't before.
Let's try without it :)
Part of the problem with these conversions is that the language system's API is complicated and not well-documented.