summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-06-10 00:48:29 +0300
committerAlon Levy <alon@pobox.com>2015-07-06 12:33:52 +0300
commitb5b07b76e2549db65f0d1a2b1150315439f73278 (patch)
treeb7e97c0d5fff7c1a41766a5c2c2cf7f8665dd65d /src
parent9afe276a7598536cf174a4b672691acf6b7dce60 (diff)
client: filter names: use node_titles, not types (fix translations)
Diffstat (limited to 'src')
-rw-r--r--src/client/view/graph_view.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js
index 721e71ed..f7afc733 100644
--- a/src/client/view/graph_view.js
+++ b/src/client/view/graph_view.js
@@ -93,7 +93,7 @@ function init_checkboxes(graph, update_view) {
input.attr("name", type);
div.append(input);
- div.append(util.capitalize(type));
+ div.append(util.capitalize(model_types.node_titles[type]));
root.append(div);
});
}