mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-18 01:24:31 +08:00
We removed a duplicate translation key, but it was being used here. Update the title token to use the canonical one.
11 lines
325 B
JavaScript
11 lines
325 B
JavaScript
import { service } from "@ember/service";
|
|
import DiscourseRoute from "discourse/routes/discourse";
|
|
import { i18n } from "discourse-i18n";
|
|
|
|
export default class AdminConfigThemesAndComponentsRoute extends DiscourseRoute {
|
|
@service router;
|
|
|
|
titleToken() {
|
|
return i18n("admin.config.themes_and_components.title");
|
|
}
|
|
}
|