Skip to content

Commit

Permalink
[4.x] Adding missing translation calls (#8387)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeauchamps authored Jul 3, 2023
1 parent e29d537 commit 62451f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/Fieldtypes/Markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ protected function configFieldItems(): array
{
return [
[
'display' => 'Editor',
'display' => __('Editor'),
'fields' => [
'automatic_line_breaks' => [
'display' => __('Automatic Line Breaks'),
Expand Down Expand Up @@ -56,7 +56,7 @@ protected function configFieldItems(): array
],
],
[
'display' => 'Assets',
'display' => __('Assets'),
'fields' => [
'container' => [
'display' => __('Container'),
Expand Down Expand Up @@ -85,7 +85,7 @@ protected function configFieldItems(): array
'display' => 'Antlers',
'fields' => [
'antlers' => [
'display' => 'Allow Antlers',
'display' => __('Allow Antlers'),
'instructions' => __('statamic::fieldtypes.any.config.antlers'),
'type' => 'toggle',
],
Expand Down
6 changes: 3 additions & 3 deletions src/Fieldtypes/Text.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ protected function configFieldItems(): array
{
return [
[
'display' => 'Input Behavior',
'display' => __('Input Behavior'),
'fields' => [
'input_type' => [
'display' => __('Input Type'),
Expand Down Expand Up @@ -54,7 +54,7 @@ protected function configFieldItems(): array
],
],
[
'display' => 'Appearance',
'display' => __('Appearance'),
'fields' => [
'prepend' => [
'display' => __('Prepend'),
Expand All @@ -72,7 +72,7 @@ protected function configFieldItems(): array
'display' => 'Antlers',
'fields' => [
'antlers' => [
'display' => 'Allow Antlers',
'display' => __('Allow Antlers'),
'instructions' => __('statamic::fieldtypes.any.config.antlers'),
'type' => 'toggle',
],
Expand Down

0 comments on commit 62451f1

Please sign in to comment.