This plugin is only useful for developers, however, making it core allows us to centralize any component modification in one commit. This integration also adds a new site_setting: `styleguide_admin_only` which allows to enable a styleguide on a live site while restricting visibility to admins only. By default, styleguide is disabled.
6 lines
164 B
JavaScript
6 lines
164 B
JavaScript
import I18n from "I18n";
|
|
|
|
export default Ember.Helper.helper(function (params) {
|
|
return I18n.t(`styleguide.sections.${params[0].replace(/\-/g, "_")}.title`);
|
|
});
|