Added additional missing editor translations

- Also merged StyleCI fixes

As per #3342
This commit is contained in:
Dan Brown
2022-03-23 14:41:54 +00:00
parent 1c859e94e0
commit d23b24b8db
2 changed files with 16 additions and 1 deletions

View File

@ -24,6 +24,7 @@ return [
'width' => 'Width', 'width' => 'Width',
'height' => 'Height', 'height' => 'Height',
'More' => 'More', 'More' => 'More',
'select' => 'Select...',
// Toolbar // Toolbar
'formats' => 'Formats', 'formats' => 'Formats',
@ -92,7 +93,10 @@ return [
'cell_properties_title' => 'Cell Properties', 'cell_properties_title' => 'Cell Properties',
'cell_type' => 'Cell type', 'cell_type' => 'Cell type',
'cell_type_cell' => 'Cell', 'cell_type_cell' => 'Cell',
'cell_scope' => 'Scope',
'cell_type_header' => 'Header cell', 'cell_type_header' => 'Header cell',
'merge_cells' => 'Merge cells',
'split_cell' => 'Split cell',
'table_row_group' => 'Row Group', 'table_row_group' => 'Row Group',
'table_column_group' => 'Column Group', 'table_column_group' => 'Column Group',
'horizontal_align' => 'Horizontal align', 'horizontal_align' => 'Horizontal align',
@ -120,6 +124,16 @@ return [
'caption' => 'Caption', 'caption' => 'Caption',
'show_caption' => 'Show caption', 'show_caption' => 'Show caption',
'constrain' => 'Constrain proportions', 'constrain' => 'Constrain proportions',
'cell_border_solid' => 'Solid',
'cell_border_dotted' => 'Dotted',
'cell_border_dashed' => 'Dashed',
'cell_border_double' => 'Double',
'cell_border_groove' => 'Groove',
'cell_border_ridge' => 'Ridge',
'cell_border_inset' => 'Inset',
'cell_border_outset' => 'Outset',
'cell_border_none' => 'None',
'cell_border_hidden' => 'Hidden',
// Images, links, details/summary & embed // Images, links, details/summary & embed
'source' => 'Source', 'source' => 'Source',
@ -140,6 +154,7 @@ return [
'toggle_label' => 'Toggle label', 'toggle_label' => 'Toggle label',
// About view // About view
'about' => 'About the editor',
'about_title' => 'About the WYSIWYG Editor', 'about_title' => 'About the WYSIWYG Editor',
'editor_license' => 'Editor License & Copyright', 'editor_license' => 'Editor License & Copyright',
'editor_tiny_license' => 'This editor is built using :tinyLink which is provided under an LGPL v2.1 license.', 'editor_tiny_license' => 'This editor is built using :tinyLink which is provided under an LGPL v2.1 license.',

View File

@ -435,7 +435,7 @@ class ExportTest extends TestCase
$pageB->save(); $pageB->save();
$resp = $this->get($book->getUrl('/export/markdown')); $resp = $this->get($book->getUrl('/export/markdown'));
$resp->assertDontSee("hello tester# The second page in this test"); $resp->assertDontSee('hello tester# The second page in this test');
$resp->assertSee("hello tester\n\n# The second page in this test"); $resp->assertSee("hello tester\n\n# The second page in this test");
} }