From: Andrew Dolgov Date: Sat, 6 Oct 2012 13:47:19 +0000 (+0400) Subject: getCategoryTitle: return translated Uncategorized (closes #506) X-Git-Tag: 1.6.0~18 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f99759dae4ce97b44da9da1edf03e4ac64085ae0;p=tt-rss.git getCategoryTitle: return translated Uncategorized (closes #506) --- diff --git a/include/functions.php b/include/functions.php index 75ffcc8b..0156ddf9 100644 --- a/include/functions.php +++ b/include/functions.php @@ -1378,7 +1378,7 @@ if (db_num_rows($result) == 1) { return db_fetch_result($result, 0, "title"); } else { - return "Uncategorized"; + return __("Uncategorized"); } } }