Commit 8bd83e67884a280072496409f441bf3b22975713
ux: Improve descriptions and tips on the connections tab
Andre Staltz committed on 8/19/2019, 4:28:08 PMParent: 658f7fd9096341daaebe8f9a2fae1bde2f645e85
Files changed
src/frontend/screens/central/connections-tab/view/index.ts | changed |
src/frontend/screens/central/connections-tab/view/index.ts | ||
---|---|---|
@@ -158,26 +158,26 @@ | ||
158 | 158 | style: styles.emptySection, |
159 | 159 | image: require('../../../../../../images/noun-lantern.png'), |
160 | 160 | title: 'Offline', |
161 | 161 | description: |
162 | - 'Turn on some connection mode\nor just enjoy some existing content', | |
162 | + 'Turn on some connection mode\nor enjoy reading some existing content', | |
163 | 163 | }); |
164 | 164 | } else if (!peers.length && !rooms.length && !stagedPeers.length) { |
165 | 165 | if (recentlyScanned(state.bluetoothLastScanned)) { |
166 | 166 | emptySection = h(EmptySection, { |
167 | 167 | style: styles.emptySection, |
168 | 168 | image: require('../../../../../../images/noun-crops.png'), |
169 | 169 | title: 'Connecting', |
170 | 170 | description: |
171 | - 'Standby while the app is\nattempting to connect to your peers', | |
171 | + 'Wait while the app is\nattempting to connect to your peers', | |
172 | 172 | }); |
173 | 173 | } else { |
174 | 174 | emptySection = h(EmptySection, { |
175 | 175 | style: styles.emptySection, |
176 | 176 | image: require('../../../../../../images/noun-crops.png'), |
177 | 177 | title: 'No connections', |
178 | 178 | description: |
179 | - 'Invite a friend to connect with\nor sync with people nearby', | |
179 | + 'Try syncing with people nearby\nor use a server invite code', | |
180 | 180 | }); |
181 | 181 | } |
182 | 182 | } |
183 | 183 |
Built with git-ssb-web