From 7739f3ab4f5bcfe1dae2a9cdfad23f68b06d59b9 Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Sun, 17 Jan 2016 19:30:57 -0500 Subject: [PATCH] use translation string for clipboard pasting prompt --- pd/nw/locales/en/translation.json | 1 + pd/nw/pd_canvas.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pd/nw/locales/en/translation.json b/pd/nw/locales/en/translation.json index d842be70b..c5bfcd4cd 100644 --- a/pd/nw/locales/en/translation.json +++ b/pd/nw/locales/en/translation.json @@ -243,6 +243,7 @@ "devtools_tt": "Show the DevTools window (for debugging)" }, "canvas": { + "paste_clipboard_prompt": "Warning: you are about to paste Pd code that came from somewhere outside of Pd. Do you want to continue?", "save_dialog": { "yes": "Yes", "yes_tt": "Write the changes to file before closing the patch", diff --git a/pd/nw/pd_canvas.js b/pd/nw/pd_canvas.js index 2437392cf..374d96eb6 100644 --- a/pd/nw/pd_canvas.js +++ b/pd/nw/pd_canvas.js @@ -64,7 +64,7 @@ function might_be_a_pd_file(stuff_from_clipboard) { } function permission_to_paste_from_external_clipboard() { - return global.confirm("Warning: you are about to paste Pd code that came from somewhere outside of Pd. Do you want to continue?"); + return global.confirm(l("canvas.paste_clipboard_prompt")); } function nw_window_focus_callback() { -- GitLab