Fix build (again)

This time, it's by hand because why not :D
This commit is contained in:
Nathan Mattes 2022-11-14 23:40:22 +01:00
parent 082e0933d2
commit 26d918a28f
3 changed files with 19 additions and 14 deletions

View File

@ -74,8 +74,8 @@
"take_photo": "Take Photo", "take_photo": "Take Photo",
"save_photo": "Save Photo", "save_photo": "Save Photo",
"copy_photo": "Copy Photo", "copy_photo": "Copy Photo",
"sign_in": "Sign In", "sign_in": "Log in",
"sign_up": "Sign Up", "sign_up": "Create account",
"see_more": "See More", "see_more": "See More",
"preview": "Preview", "preview": "Preview",
"share": "Share", "share": "Share",
@ -218,10 +218,16 @@
"get_started": "Get Started", "get_started": "Get Started",
"log_in": "Log In" "log_in": "Log In"
}, },
"login": {
"title": "Welcome back",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "Enter URL or search for your server"
}
}
"server_picker": { "server_picker": {
"title": "Mastodon is made of users in different servers.", "title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "All", "all": "All",
@ -248,8 +254,7 @@
"category": "CATEGORY" "category": "CATEGORY"
}, },
"input": { "input": {
"placeholder": "Search servers", "search_servers_or_enter_url": "Search communities or enter URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Finding available servers...", "finding_servers": "Finding available servers...",
@ -719,4 +724,4 @@
"title": "Bookmarks" "title": "Bookmarks"
} }
} }
} }

View File

@ -219,10 +219,10 @@
"log_in": "Log In" "log_in": "Log In"
}, },
"login": { "login": {
"title": "", "title": "Welcome back",
"subtitle": "", "subtitle": "Log you in on the server you created your account on.",
"server_search_field": { "server_search_field": {
"placeholder": "Search for your server" "placeholder": "Enter URL or search for your server"
} }
} }
"server_picker": { "server_picker": {
@ -724,4 +724,4 @@
"title": "Bookmarks" "title": "Bookmarks"
} }
} }
} }

View File

@ -667,12 +667,12 @@ public enum L10n {
} }
public enum Login { public enum Login {
/// Log you in with the server where you created your account /// Log you in with the server where you created your account
public static let subtitle = L10n.tr("Localizable", "Scene.Login.Subtitle") public static let subtitle = L10n.tr("Localizable", "Scene.Login.Subtitle", fallback: "Scene.Login.Subtitle")
/// Welcome Back! /// Welcome Back!
public static let title = L10n.tr("Localizable", "Scene.Login.Title") public static let title = L10n.tr("Localizable", "Scene.Login.Title", fallback: "Welcome")
public enum ServerSearchField { public enum ServerSearchField {
/// Search for your server /// Search for your server
public static let placeholder = L10n.tr("Localizable", "Scene.Login.ServerSearchField.Placeholder") public static let placeholder = L10n.tr("Localizable", "Scene.Login.ServerSearchField.Placeholder", fallback: "Scene.Login.ServerSearchField.Placeholder")
} }
} }
public enum Notification { public enum Notification {