From b7f6803b4b4d260ec9b140a88812124bc576d718 Mon Sep 17 00:00:00 2001 From: dolibarr95 <24292300+dolibarr95@users.noreply.github.com> Date: Wed, 10 Aug 2022 08:45:05 +0200 Subject: [PATCH] Update functions.php Fix #570 570 Translation missing tks to @bttrx --- system/includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/includes/functions.php b/system/includes/functions.php index 806273b..af08faf 100644 --- a/system/includes/functions.php +++ b/system/includes/functions.php @@ -586,9 +586,9 @@ function default_category() $desc->title = i18n("Uncategorized"); $desc->url = site_url() . 'category/uncategorized'; $desc->slug = 'uncategorized'; - $desc->body = '

Topics that don't need a category, or don't fit into any other existing category.

'; + $desc->body = '

' . i18n('Uncategorized_comment') . '

'; - $desc->description = 'Topics that don't need a category, or don't fit into any other existing category.'; + $desc->description = i18n('Uncategorized_comment'); return $tmp[] = $desc; }