mirror of
https://github.com/zulip/zulip.git
synced 2025-11-15 11:22:04 +00:00
minor: Tag a string for translation.
This commit is contained in:
committed by
Tim Abbott
parent
834abefdb9
commit
a47a3defa9
@@ -3,8 +3,8 @@ const render_draft_table_body = require('../templates/draft_table_body.hbs');
|
||||
|
||||
function set_count(count) {
|
||||
const draft_count = count.toString();
|
||||
$(".compose_drafts_button").text(i18n.t(
|
||||
'Drafts (__draft_count__)', {draft_count: draft_count}));
|
||||
const text = i18n.t('Drafts (__draft_count__)', {draft_count: draft_count});
|
||||
$(".compose_drafts_button").text(text);
|
||||
}
|
||||
|
||||
const draft_model = (function () {
|
||||
|
||||
Reference in New Issue
Block a user