Skip to content

Commit 741418c

Browse files
committed
Use camel case in localization keys for AuthTokenIssueSolver
1 parent 6c0979f commit 741418c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

WordPress/Classes/Utility/AuthTokenIssueSolver.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,25 +77,25 @@ struct AuthTokenIssueSolver {
7777
private enum Strings {
7878
enum CancelAlert {
7979
static let title = NSLocalizedString(
80-
"auth_token_issue_solver.cancel_alert.title",
80+
"authTokenIssueSolver.cancelAlert.title",
8181
value: "Careful!",
8282
comment: "Title for the warning shown to the user when he refuses to re-login when the authToken is missing."
8383
)
8484
static let message = NSLocalizedString(
85-
"auth_token_issue_solver.cancel_alert.message",
85+
"authTokenIssueSolver.cancelAlert.message",
8686
value: "Proceeding will remove all WordPress.com data from this device, and delete any locally saved drafts. You will not lose anything already saved to your WordPress.com blog(s).",
8787
comment: "Message for the warning shown to the user when he refuses to re-login when the authToken is missing."
8888
)
8989
}
9090

9191
enum ExplanationAlert {
9292
static let title = NSLocalizedString(
93-
"auth_token_issue_solver.explanation_alert.title",
93+
"authTokenIssueSolver.explanationAlert.title",
9494
value: "Oops!",
9595
comment: "Title for the warning shown to the user when the app realizes there should be an auth token but there isn't one."
9696
)
9797
static let message = NSLocalizedString(
98-
"auth_token_issue_solver.explanation_alert.title",
98+
"authTokenIssueSolver.explanationAlert.title",
9999
value: "There was a problem connecting to WordPress.com. Please log in again.",
100100
comment: "Message for the warning shown to the user when the app realizes there should be an auth token but there isn't one."
101101
)

0 commit comments

Comments
 (0)