2017-10-17 13:31:45 -04:00
|
|
|
function postActionTitle([id, nameKey]) {
|
2018-06-15 11:03:24 -04:00
|
|
|
let title = I18n.t(`admin.flags.short_names.${nameKey}`, {
|
|
|
|
defaultValue: null
|
|
|
|
});
|
2017-10-17 13:31:45 -04:00
|
|
|
|
|
|
|
// TODO: We can remove this once other translations have been updated
|
|
|
|
if (!title) {
|
|
|
|
return I18n.t(`admin.flags.summary.action_type_${id}`, { count: 1 });
|
|
|
|
}
|
|
|
|
|
|
|
|
return title;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Ember.Helper.helper(postActionTitle);
|