mirror of
https://github.com/penpot/penpot.git
synced 2025-04-09 21:41:23 -05:00
🐛 Fix empty translation strings (#5847)
This commit is contained in:
parent
f8820695cc
commit
46d2359107
5 changed files with 6 additions and 28 deletions
|
@ -84,7 +84,7 @@
|
|||
:controls :inline-actions
|
||||
:type :inline
|
||||
:level level
|
||||
:accept {:label (tr "Refresh")
|
||||
:accept {:label (tr "labels.refresh")
|
||||
:callback force-reload!}
|
||||
:tag :notification))
|
||||
|
||||
|
|
|
@ -149,7 +149,6 @@
|
|||
[:input {:type "text"
|
||||
:value (:token created "")
|
||||
:class (stl/css :custom-input-token)
|
||||
:placeholder (tr "modals.create-access-token.token")
|
||||
:read-only true}]
|
||||
[:button {:title (tr "modals.create-access-token.copy-token")
|
||||
:class (stl/css :copy-btn)
|
||||
|
|
|
@ -77,12 +77,12 @@
|
|||
[:& radio-button {:icon i/boolean-intersection
|
||||
:value "intersection"
|
||||
:disabled disabled-bool-btns
|
||||
:title (str (tr "intersection") " (" (sc/get-tooltip :bool-intersection) ")")
|
||||
:title (str (tr "workspace.shape.menu.intersection") " (" (sc/get-tooltip :bool-intersection) ")")
|
||||
:id "bool-opt-intersection"}]
|
||||
[:& radio-button {:icon i/boolean-exclude
|
||||
:value "exclude"
|
||||
:disabled disabled-bool-btns
|
||||
:title (str (tr "exclude") " (" (sc/get-tooltip :bool-exclude) ")")
|
||||
:title (str (tr "workspace.shape.menu.exclude") " (" (sc/get-tooltip :bool-exclude) ")")
|
||||
:id "bool-opt-exclude"}]]]
|
||||
|
||||
[:button
|
||||
|
|
|
@ -120,7 +120,7 @@
|
|||
(dom/prevent-default e)
|
||||
(dom/stop-propagation e)
|
||||
(st/emit! (wdt/toggle-token-theme-active? group name)))}
|
||||
[:& switch {:name (tr "workspace.token.theme" name)
|
||||
[:& switch {:name (tr "workspace.token.theme-name" name)
|
||||
:on-change (constantly nil)
|
||||
:selected? selected?}]]
|
||||
[:> text* {:as "span" :typography "body-medium" :class (stl/css :theme-name)} name]]
|
||||
|
|
|
@ -12,9 +12,8 @@ msgstr ""
|
|||
"X-Generator: Weblate 5.10-dev\n"
|
||||
|
||||
#: src/app/main/data/common.cljs:87
|
||||
#, fuzzy
|
||||
msgid "Refresh"
|
||||
msgstr ""
|
||||
msgid "labels.refresh"
|
||||
msgstr "Refresh"
|
||||
|
||||
#: src/app/main/ui/auth/register.cljs:133, src/app/main/ui/static.cljs:155, src/app/main/ui/viewer/login.cljs:98
|
||||
msgid "auth.already-have-account"
|
||||
|
@ -1382,11 +1381,6 @@ msgstr "Email or password is incorrect."
|
|||
msgid "errors.wrong-old-password"
|
||||
msgstr "Old password is incorrect"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/bool.cljs:85
|
||||
#, fuzzy
|
||||
msgid "exclude"
|
||||
msgstr ""
|
||||
|
||||
#: src/app/main/ui/settings/feedback.cljs:74
|
||||
msgid "feedback.description"
|
||||
msgstr "Description"
|
||||
|
@ -1687,11 +1681,6 @@ msgstr "Text"
|
|||
msgid "inspect.tabs.info"
|
||||
msgstr "Info"
|
||||
|
||||
#: src/app/main/ui/workspace/sidebar/options/menus/bool.cljs:80
|
||||
#, fuzzy
|
||||
msgid "intersection"
|
||||
msgstr ""
|
||||
|
||||
#: src/app/main/ui/workspace/main_menu.cljs:162
|
||||
msgid "label.shortcuts"
|
||||
msgstr "Shortcuts"
|
||||
|
@ -2454,11 +2443,6 @@ msgstr "Create token"
|
|||
msgid "modals.create-access-token.title"
|
||||
msgstr "Generate access token"
|
||||
|
||||
#: src/app/main/ui/settings/access_tokens.cljs:152
|
||||
#, fuzzy
|
||||
msgid "modals.create-access-token.token"
|
||||
msgstr ""
|
||||
|
||||
#: src/app/main/ui/dashboard/team.cljs:921
|
||||
msgid "modals.create-webhook.submit-label"
|
||||
msgstr "Create webhook"
|
||||
|
@ -6617,11 +6601,6 @@ msgstr "Select set."
|
|||
msgid "workspace.token.set-selection-theme"
|
||||
msgstr "Define what token sets should be used as part of this theme option:"
|
||||
|
||||
#: src/app/main/ui/workspace/tokens/modals/themes.cljs:123
|
||||
#, fuzzy
|
||||
msgid "workspace.token.theme"
|
||||
msgstr ""
|
||||
|
||||
#: src/app/main/ui/workspace/tokens/modals/themes.cljs
|
||||
#, unused
|
||||
msgid "workspace.token.theme-name"
|
||||
|
|
Loading…
Add table
Reference in a new issue