Commit b7f977c9dc47cf824b093affb8ffe454db26d938
dx: include private message placeholder in localization
David Gomez authored on 6/19/2020, 10:07:27 PMAndre Staltz committed on 7/3/2020, 1:06:26 PM
Parent: 16b075ee8dc72fbf74270a8aa4520c6f819e87ee
Files changed
android/app/src/main/assets/translations/en.json | changed |
src/frontend/screens/conversation/view.ts | changed |
typings/i18n-js.d.ts | changed |
android/app/src/main/assets/translations/en.json | ||
---|---|---|
@@ -485,8 +485,9 @@ | ||
485 | 485 | } |
486 | 486 | }, |
487 | 487 | "conversation": { |
488 | 488 | "title": "Conversation", |
489 | + "placeholder": "Type a message...", | |
489 | 490 | "call_to_action": { |
490 | 491 | "show_recipients": { |
491 | 492 | "accessibility_label": "Show Recipients" |
492 | 493 | } |
src/frontend/screens/conversation/view.ts | ||
---|---|---|
@@ -172,8 +172,9 @@ | ||
172 | 172 | |
173 | 173 | function renderComposer(props: any) { |
174 | 174 | return h(Composer, { |
175 | 175 | ...props, |
176 | + placeholder: t('conversation.placeholder'), | |
176 | 177 | textInputStyle: styles.textInputStyle, |
177 | 178 | }); |
178 | 179 | } |
179 | 180 |
typings/i18n-js.d.ts | ||
---|---|---|
@@ -219,8 +219,9 @@ | ||
219 | 219 | | 'backup.identity.call_to_action.show_recovery_phrase' |
220 | 220 | | 'biography.picture.accessibility_label' |
221 | 221 | | 'biography.description.accessibility_label' |
222 | 222 | | 'conversation.title' |
223 | + | 'conversation.placeholder' | |
223 | 224 | | 'conversation.call_to_action.show_recipients.accessibility_label' |
224 | 225 | | 'conversation.notifications.new_conversation' |
225 | 226 | | 'dialog_about.title' |
226 | 227 | | 'dialog_about.version' |
Built with git-ssb-web