Browse Source

Update functions.php

Fix #570 570 Translation missing
tks to @bttrx
pull/576/head
dolibarr95 3 years ago
committed by GitHub
parent
commit
b7f6803b4b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      system/includes/functions.php

+ 2
- 2
system/includes/functions.php View File

@ -586,9 +586,9 @@ function default_category()
$desc->title = i18n("Uncategorized");
$desc->url = site_url() . 'category/uncategorized';
$desc->slug = 'uncategorized';
$desc->body = '<p>Topics that don&#39;t need a category, or don&#39;t fit into any other existing category.</p>';
$desc->body = '<p>' . i18n('Uncategorized_comment') . '</p>';
$desc->description = 'Topics that don&#39;t need a category, or don&#39;t fit into any other existing category.';
$desc->description = i18n('Uncategorized_comment');
return $tmp[] = $desc;
}


Loading…
Cancel
Save