mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
DEV: Do not use concatenation in translations
This commit is contained in:
@@ -53,7 +53,7 @@ export default createWidget("hamburger-categories", {
|
||||
const href = Discourse.getURL("/categories");
|
||||
let title = I18n.t("filters.categories.title");
|
||||
if (attrs.moreCount > 0) {
|
||||
title += I18n.t("categories.more", { count: attrs.moreCount });
|
||||
title = I18n.t("categories.n_more", { count: attrs.moreCount });
|
||||
}
|
||||
|
||||
let result = [
|
||||
|
||||
Reference in New Issue
Block a user