Unverified Commit 427c7ee7 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3160031 by quietone, jungle, longwave, jameszhang023: Fix 18 spelling...

Issue #3160031 by quietone, jungle, longwave, jameszhang023: Fix 18 spelling errors for migrate specific terms
parent 7ad99c1e
Loading
Loading
Loading
Loading
+0 −18
Original line number Diff line number Diff line
a'foo
abantu
abcdefg
abcdefghijklmno
abcdefghijklmnopqrstuvwxyz
@@ -61,7 +60,6 @@ api's
apng
apos
applix
aptain
archiver
archivers
arctor
@@ -448,7 +446,6 @@ descripcion
deserialization
deserializes
destid
destinationproperty
destructable
destructured
desynchronized
@@ -618,7 +615,6 @@ fieldgroups
fielditem
fieldlinks
fieldnames
fieldright
fieldsets
filecount
filefield
@@ -797,13 +793,9 @@ iframes
iframeupload
ignoretag
ilike
imageapi
imagecache
imagecreatefrom
imagefield
imagefields
imagelink
imagemagick
imagetest
inator
indexname
@@ -1153,7 +1145,6 @@ nocdata
nocookie
nocssjs
nodeaccess
nodeapi
nodelink
nodereference
nodo
@@ -1231,7 +1222,6 @@ optgroups
optimizable
optin
optionchecker
optionwidgets
ored
org's
orgchart
@@ -1545,7 +1535,6 @@ sebe
secondcolumn
seld
selectbox
selectlist
semver
sendmail
serializer's
@@ -1990,7 +1979,6 @@ usecase
userid
userinfo
userref
userreference
users's
userspace
usuario
@@ -2020,18 +2008,13 @@ viewports
viewsviewfiles
vivamus
vmov
vocabfixed
vocablocalized
vocabs
vocabtranslate
volgende
vorige
vous
vxezb
vxfbk
waitfor
wambooli
wamboolipastafazoul
wcprops
wcsrefsdf
webassert
@@ -2052,7 +2035,6 @@ webtest
webuser
wellformedwebentry
wellformedwebrendererentry
whakamataku
whitespaces
whois
whos
+6 −6
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ protected function setUp(): void {
   * @covers ::transform
   */
  public function testTransformNoData() {
    $transformed_value = $this->plugin->transform([0, '', []], $this->migrateExecutable, $this->row, 'destinationproperty');
    $transformed_value = $this->plugin->transform([0, '', []], $this->migrateExecutable, $this->row, 'destination_property');
    $this->assertEmpty($transformed_value);
  }

@@ -45,7 +45,7 @@ public function testTransformNoData() {
   * @covers ::transform
   */
  public function testTransformSinglePageWithFront() {
    $visibility = $this->plugin->transform([0, '<front>', []], $this->migrateExecutable, $this->row, 'destinationproperty');
    $visibility = $this->plugin->transform([0, '<front>', []], $this->migrateExecutable, $this->row, 'destination_property');
    $this->assertSame('request_path', $visibility['request_path']['id']);
    $this->assertTrue($visibility['request_path']['negate']);
    $this->assertSame('<front>', $visibility['request_path']['pages']);
@@ -55,7 +55,7 @@ public function testTransformSinglePageWithFront() {
   * @covers ::transform
   */
  public function testTransformMultiplePagesWithFront() {
    $visibility = $this->plugin->transform([1, "foo\n/bar\rbaz\r\n<front>", []], $this->migrateExecutable, $this->row, 'destinationproperty');
    $visibility = $this->plugin->transform([1, "foo\n/bar\rbaz\r\n<front>", []], $this->migrateExecutable, $this->row, 'destination_property');
    $this->assertSame('request_path', $visibility['request_path']['id']);
    $this->assertFalse($visibility['request_path']['negate']);
    $this->assertSame("/foo\n/bar\n/baz\n<front>", $visibility['request_path']['pages']);
@@ -66,7 +66,7 @@ public function testTransformMultiplePagesWithFront() {
   */
  public function testTransformPhpEnabled() {
    $this->moduleHandler->moduleExists('php')->willReturn(TRUE);
    $visibility = $this->plugin->transform([2, '<?php', []], $this->migrateExecutable, $this->row, 'destinationproperty');
    $visibility = $this->plugin->transform([2, '<?php', []], $this->migrateExecutable, $this->row, 'destination_property');
    $this->assertSame('php', $visibility['php']['id']);
    $this->assertFalse($visibility['php']['negate']);
    $this->assertSame('<?php', $visibility['php']['php']);
@@ -77,7 +77,7 @@ public function testTransformPhpEnabled() {
   */
  public function testTransformPhpDisabled() {
    $this->moduleHandler->moduleExists('php')->willReturn(FALSE);
    $transformed_value = $this->plugin->transform([2, '<?php', []], $this->migrateExecutable, $this->row, 'destinationproperty');
    $transformed_value = $this->plugin->transform([2, '<?php', []], $this->migrateExecutable, $this->row, 'destination_property');
    $this->assertEmpty($transformed_value);
  }

@@ -97,7 +97,7 @@ public function testTransformException() {
    $this->plugin = new BlockVisibility(['skip_php' => TRUE], 'block_visibility_pages', [], $this->moduleHandler->reveal(), $migrate_lookup->reveal());
    $this->expectException(MigrateSkipRowException::class);
    $this->expectExceptionMessage("The block with bid '99' from module 'foobar' will have no PHP or request_path visibility configuration.");
    $this->plugin->transform([2, '<?php', []], $this->migrateExecutable, $this->row, 'destinationproperty');
    $this->plugin->transform([2, '<?php', []], $this->migrateExecutable, $this->row, 'destination_property');
  }

}
+1 −0
Original line number Diff line number Diff line
# cspell:ignore imagefield optionwidgets userreference
id: d6_field_instance_option_translation
label: Field instance option configuration translation
migration_tags:
+1 −0
Original line number Diff line number Diff line
# cspell:ignore imagefield optionwidgets userreference
id: d6_field_option_translation
label: Field option configuration translation
migration_tags:
+1 −0
Original line number Diff line number Diff line
# cspell:ignore imagefield optionwidgets userreference
id: d6_field
label: Field configuration
migration_tags:
Loading