Skip to content

Commit 8aba535

Browse files
committed
Seeder tag types
1 parent 74ccc87 commit 8aba535

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

resources/lang/en/filament-flexible-content-block-pages.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,7 @@
5252
'navigation_group' => 'Settings',
5353
'tag_plural_lbl' => 'Tags',
5454
'tag_lbl' => 'Tag',
55+
'tag_type_lbl' => 'Tag type',
56+
'tag_type_hint' => 'You can assign a type to use this tag only on certain page types.',
5557
],
5658
];

resources/lang/nl/filament-flexible-content-block-pages.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,7 @@
5252
'navigation_group' => 'Instellingen',
5353
'tag_plural_lbl' => 'Tags',
5454
'tag_lbl' => 'Tag',
55+
'tag_type_lbl' => 'Tag type',
56+
'tag_type_hint' => 'Je kunt een type toewijzen om deze tag alleen op bepaalde paginatypes te gebruiken.',
5557
],
5658
];

src/Commands/SeedDefaultsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ private function seedTagTypes()
9393
$seoType->code = TagType::TYPE_SEO;
9494
$this->setTranslatedField($seoType, 'name', "Alleen voor SEO-pagina's", $locales);
9595
$seoType->colour = '#FFC107';
96-
$seoType->icon = 'heroicon-s-alt-globe';
96+
$seoType->icon = 'heroicon-o-globe-alt';
9797
$seoType->is_default_type = false;
9898
$seoType->has_seo_pages = true;
9999
$seoType->save();

0 commit comments

Comments
 (0)