From 9cd12a76092c7d07ddb579c7aa179e3d965942f8 Mon Sep 17 00:00:00 2001 From: Juan de la Cruz Date: Mon, 27 Feb 2017 09:21:45 +0100 Subject: [PATCH] change download text dialog --- .../resources/public/images/svg/download.svg | 3 +++ .../src/uxbox/main/ui/workspace/download.cljs | 16 ++++++++-------- 2 files changed, 11 insertions(+), 8 deletions(-) create mode 100644 frontend/resources/public/images/svg/download.svg diff --git a/frontend/resources/public/images/svg/download.svg b/frontend/resources/public/images/svg/download.svg new file mode 100644 index 000000000..1f78adb6c --- /dev/null +++ b/frontend/resources/public/images/svg/download.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/src/uxbox/main/ui/workspace/download.cljs b/frontend/src/uxbox/main/ui/workspace/download.cljs index 52ec31998..d5a3bb8b4 100644 --- a/frontend/src/uxbox/main/ui/workspace/download.cljs +++ b/frontend/src/uxbox/main/ui/workspace/download.cljs @@ -115,26 +115,26 @@ (download-html [event] (dom/prevent-default event))] [:div.lightbox-body.export-dialog - [:h3 "Export options"] + [:h3 "Download options"] [:div.row-flex [:div.content-col [:span.icon i/file-svg] - [:span.title "Export page"] + [:span.title "Download page"] [:p.info "Download a single page of your project in SVG."] [:select.input-select {:ref "page" :default-value (pr-str current)} (for [{:keys [id name]} pages] [:option {:value (pr-str id)} name])] - [:a.btn-primary {:href "#" :on-click download-page} "Export page"]] + [:a.btn-primary {:href "#" :on-click download-page} "Download page"]] [:div.content-col [:span.icon i/folder-zip] - [:span.title "Export project"] - [:p.info "Download the whole project as a ZIP file."] - [:a.btn-primary {:href "#" :on-click download-zip} "Expor project"]] + [:span.title "Download project"] + [:p.info "Download all pages as svg in a zip file."] + [:a.btn-primary {:href "#" :on-click download-zip} "Download project"]] [:div.content-col [:span.icon i/file-html] - [:span.title "Export as HTML"] + [:span.title "Download as HTML"] [:p.info "Download your project as HTML files."] - [:a.btn-primary {:href "#" :on-click download-html} "Export HTML"]]] + [:a.btn-primary {:href "#" :on-click download-html} "Download HTML"]]] [:a.close {:href "#" :on-click on-close} i/close]]))) (defmethod lbx/render-lightbox :download