From aadb525af069c00edc200643fbdacad1ecb46e99 Mon Sep 17 00:00:00 2001 From: Paulo Castellano Date: Wed, 10 Jun 2026 16:06:02 -0300 Subject: [PATCH] Rename post editor 'Schedule' tab to 'Channels' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The tab holds publish targets, per-platform settings, and labels — not scheduling (the date/time control lives in the editor header). Renames the i18n key posts.edit.tabs.schedule -> tabs.channels (Channels / Canais / Canales) and the single $t reference. The scheduling button string and the tab's internal value are untouched. --- lang/en/posts.php | 2 +- lang/es/posts.php | 2 +- lang/pt-BR/posts.php | 2 +- resources/js/components/posts/editor/PostEditorTabs.vue | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lang/en/posts.php b/lang/en/posts.php index 2009a8ee..b078650f 100644 --- a/lang/en/posts.php +++ b/lang/en/posts.php @@ -320,7 +320,7 @@ 'tabs' => [ 'preview' => 'Preview', - 'schedule' => 'Schedule', + 'channels' => 'Channels', 'comments' => 'Comments', 'comments_empty' => 'No comments yet.', ], diff --git a/lang/es/posts.php b/lang/es/posts.php index a450a798..e04c19e0 100644 --- a/lang/es/posts.php +++ b/lang/es/posts.php @@ -320,7 +320,7 @@ 'tabs' => [ 'preview' => 'Vista previa', - 'schedule' => 'Programación', + 'channels' => 'Canales', 'comments' => 'Comentarios', 'comments_empty' => 'Todavía no hay comentarios.', ], diff --git a/lang/pt-BR/posts.php b/lang/pt-BR/posts.php index a8eb31b0..299bcfcc 100644 --- a/lang/pt-BR/posts.php +++ b/lang/pt-BR/posts.php @@ -320,7 +320,7 @@ 'tabs' => [ 'preview' => 'Pré-visualização', - 'schedule' => 'Agendamento', + 'channels' => 'Canais', 'comments' => 'Comentários', 'comments_empty' => 'Nenhum comentário ainda.', ], diff --git a/resources/js/components/posts/editor/PostEditorTabs.vue b/resources/js/components/posts/editor/PostEditorTabs.vue index e175112c..fdfd39b4 100644 --- a/resources/js/components/posts/editor/PostEditorTabs.vue +++ b/resources/js/components/posts/editor/PostEditorTabs.vue @@ -93,7 +93,7 @@ defineExpose({ {{ $t('posts.edit.tabs.preview') }} - {{ $t('posts.edit.tabs.schedule') }} + {{ $t('posts.edit.tabs.channels') }} {{ $t('posts.edit.tabs.comments') }}