From 23795d70db1fc292966b98ca1c6f3721590eb448 Mon Sep 17 00:00:00 2001
From: Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>
Date: Sun, 20 Sep 2026 13:59:00 -0300
Subject: KOrganizer: fix punctuation in template overwrite prompt
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Sebastião Guerra <sebastiao.luiz.guerra@gmail.com>
---
 korganizer/templatemanagementdialog.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/korganizer/templatemanagementdialog.cpp b/korganizer/templatemanagementdialog.cpp
index 3d673c37..4a1d2b5b 100644
--- a/korganizer/templatemanagementdialog.cpp
+++ b/korganizer/templatemanagementdialog.cpp
@@ -73,7 +73,7 @@ void TemplateManagementDialog::slotAddTemplate()
                                        i18n("New Template"), &ok );
   if ( newTemplate.isEmpty() || !ok ) return;
   if ( m_templates.find( newTemplate) != m_templates.end() ) {
-    int rc = KMessageBox::warningContinueCancel( this, i18n("A template with that name already exists, do you want to overwrite it?."), i18n("Duplicate Template Name"), i18n("Overwrite"));
+    int rc = KMessageBox::warningContinueCancel( this, i18n("A template with that name already exists, do you want to overwrite it?"), i18n("Duplicate Template Name"), i18n("Overwrite"));
     if ( rc == KMessageBox::Cancel ) {
       TQTimer::singleShot(0, this, TQ_SLOT( slotAddTemplate() ) );
       return;
-- 
cgit v1.2.3

