From: Thomas F. <tho...@ru...> - 2015-01-31 13:11:51
|
Git commit f5d6394a82bb0eddc3c191a49674ab708c0d4330 by Thomas Friedrichsmeier. Committed on 31/01/2015 at 13:01. Pushed by tfry into branch 'master'. Fix quote M +1 -1 rkward/plugins/plots/cor_graph.js http://commits.kde.org/rkward/f5d6394a82bb0eddc3c191a49674ab708c0d4330 diff --git a/rkward/plugins/plots/cor_graph.js b/rkward/plugins/plots/cor_graph.js index 47abc3a..894fe4a 100644 --- a/rkward/plugins/plots/cor_graph.js +++ b/rkward/plugins/plots/cor_graph.js @@ -48,7 +48,7 @@ function doPrintout (full) { if (full) { echo ('rk.graph.off ()\n'); echo ('\n'); - echo ('rk.print(' + i18n ("Legend:") + '\\t\'***\': p < 0.001 -- \'**\': p < 0.01 -- \'*\': p < 0.05 -- \'.\'\': p < 0.1")\n'); + echo ('rk.print('+ quote (i18n (noquote ("Legend:")) + '\\t\'***\': p < 0.001 -- \'**\': p < 0.01 -- \'*\': p < 0.05 -- \'.\'\': p < 0.1') + ')\n'); } } |