Skip to content

Commit 946fa40

Browse files
authored
Merge pull request #3122 from takluyver/i3074
Don't try to translate missing help strings
2 parents 9ce534c + b23cbdc commit 946fa40

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

notebook/static/notebook/js/commandpalette.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,19 @@ define([
157157
} else {
158158
display_text = humanize_action_id(action_id);
159159
}
160+
161+
var help = null;
162+
if (action.help) {
163+
help = i18n.msg._(action.help);
164+
}
160165

161166
src[group].data.push({
162167
display: display_text,
163168
shortcut: short,
164169
mode_shortcut: get_mode_for_action_id(action_id, notebook),
165170
group: group,
166171
icon: action.icon,
167-
help: i18n.msg._(action.help),
172+
help: help,
168173
key: action_id,
169174
});
170175
}

0 commit comments

Comments
 (0)