diff --git a/src/uxbox/locales/en.cljs b/src/uxbox/locales/en.cljs index c9bfce831f..8e3c5169e4 100644 --- a/src/uxbox/locales/en.cljs +++ b/src/uxbox/locales/en.cljs @@ -9,4 +9,8 @@ "ds.standard-title" "STANDARD" "ds.your-libraries-title" "YOUR LIBRARIES" "ds.num-elements" ["%s element" - "%s elements"]}) + "%s elements"] + + "ds.recent-colors" "Recent colors" + + }) diff --git a/src/uxbox/ui/workspace/recent_colors.cljs b/src/uxbox/ui/workspace/recent_colors.cljs index 9f4e391b24..2eebdefb2e 100644 --- a/src/uxbox/ui/workspace/recent_colors.cljs +++ b/src/uxbox/ui/workspace/recent_colors.cljs @@ -2,6 +2,7 @@ (:require [sablono.core :as html :refer-macros [html]] [rum.core :as rum] [cats.labs.lens :as l] + [uxbox.locales :refer (tr)] [uxbox.rstore :as rs] [uxbox.state :as st] [uxbox.data.workspace :as dw] @@ -53,7 +54,7 @@ colors (calculate-colors shapes)] (html [:div - [:span "Recent colors"] + [:span (tr "ds.recent-colors")] [:div.row-flex (for [color colors] [:span.color-th {:style {:background color}