Skip to content

Commit 98a626a

Browse files
committed
button text: Change "Log in with" to "Sign in with" everywhere.
Apple's Human Interface Guidelines doc on the "Sign in with Apple" button [1] (to be added in an upcoming commit) is quite clear that, for logging in, the text must say "Sign in with Apple", with that exact capitalization and wording. In order to keep the buttons consistent, change the others to match. [1]: https://developer.apple.com/design/human-interface-guidelines/sign-in-with-apple/overview/buttons/.
1 parent 8db5a4d commit 98a626a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/howto/dev-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ This will be `http://ADDRESS:9991`, where `ADDRESS` is the address you
202202
identified in step 2. (Be sure to type the `http://`.)
203203

204204
This should get you the login screen! Unless you're working on the login
205-
flow itself, tap "Log in with dev account"; then pick any user to log in as.
205+
flow itself, tap "Sign in with dev account"; then pick any user to log in as.
206206

207207
If you need to work more closely with authentication systems, or if you need
208208
to use the [Zulip REST API][rest-api], which requires an API key, this

src/start/AuthScreen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ class AuthScreen extends PureComponent<Props> {
257257
style={styles.halfMarginTop}
258258
secondary
259259
text={{
260-
text: 'Log in with {method}',
260+
text: 'Sign in with {method}',
261261
values: { method: auth.displayName },
262262
}}
263263
Icon={auth.Icon}

static/translations/messages_en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"Password": "Password",
3535
"Why not start the conversation?": "Why not start the conversation?",
3636
"Chat": "Chat",
37-
"Log in with {method}": "Log in with {method}",
37+
"Sign in with {method}": "Sign in with {method}",
3838
"Cannot connect to server": "Cannot connect to server",
3939
"Wrong email or password. Try again.": "Wrong email or password. Try again.",
4040
"Wrong username or password. Try again.": "Wrong username or password. Try again.",

0 commit comments

Comments
 (0)