Commit 9cb6a53289e695dec730708c30a8a917e6269c7d
add tooltip on block button
Matt McKegg committed on 10/14/2017, 4:53:47 AMParent: fec81386227bdfae59b98184c5a371cadbea9623
Files changed
locales/en.json | changed |
modules/page/html/render/profile.js | changed |
locales/en.json | ||
---|---|---|
@@ -141,12 +141,12 @@ | ||
141 | 141 | "de": "German", |
142 | 142 | "Private Message": "Private Message", |
143 | 143 | "Send Private Message": "Send Private Message", |
144 | 144 | "Publish Privately": "Publish Privately", |
145 | - "Unblock": "Unblock", | |
146 | 145 | "Block": "Block", |
147 | 146 | "Click to unblock": "Click to unblock", |
148 | 147 | "Blocked": "Blocked", |
149 | 148 | "pt": "pt", |
150 | 149 | "blocked ": "blocked ", |
151 | - "unblocked ": "unblocked " | |
152 | -} | |
150 | + "unblocked ": "unblocked ", | |
151 | + "Click to block syncing with this person and hide their posts": "Click to block syncing with this person and hide their posts" | |
152 | +} |
modules/page/html/render/profile.js | ||
---|---|---|
@@ -171,9 +171,9 @@ | ||
171 | 171 | }, when(followsYou, i18n('Follow Back'), i18n('Follow'))) |
172 | 172 | ), |
173 | 173 | h('a.ToggleButton.-blocking', { |
174 | 174 | 'href': '#', |
175 | - 'title': i18n('Block'), | |
175 | + 'title': i18n('Click to block syncing with this person and hide their posts'), | |
176 | 176 | 'ev-click': () => block(id, console.log) |
177 | 177 | }, i18n('Block')) |
178 | 178 | ]) |
179 | 179 | ]) |
Built with git-ssb-web