Enhance placeholder picker functionality: Added support for custom placeholders in the placeholder picker component, allowing dynamic loading of custom blade files. Updated localization for both English and Turkish languages to include new placeholder types, improving user experience and flexibility in template customization.

This commit is contained in:
Ümit Tunç
2025-11-04 12:08:31 -03:00
parent 01ef804c03
commit 9dd1bde863
6 changed files with 36 additions and 38 deletions
+2
View File
@@ -4,6 +4,7 @@ return [
'title' => 'Placeholder Variables',
'click_to_insert' => 'Click to insert into editor',
'special_placeholders' => 'Special Placeholders',
'custom_placeholders' => 'Custom Placeholders',
'search_placeholder' => 'Search placeholders...',
'no_results' => 'No results found',
@@ -31,5 +32,6 @@ return [
'type_toggle' => 'Toggle',
'type_color' => 'Color',
'type_tags' => 'Tags',
'type_custom' => 'Custom',
];
+2
View File
@@ -4,6 +4,7 @@ return [
'title' => 'Placeholder Değişkenleri',
'click_to_insert' => 'Tıklayarak editöre ekle',
'special_placeholders' => 'Özel Placeholder\'lar',
'custom_placeholders' => 'Özel Placeholder\'lar',
'search_placeholder' => 'Placeholder ara...',
'no_results' => 'Arama sonucu bulunamadı',
@@ -31,5 +32,6 @@ return [
'type_toggle' => 'Aç/Kapa',
'type_color' => 'Renk',
'type_tags' => 'Etiketler',
'type_custom' => 'Özel',
];