Reword comment about host title format

This commit is contained in:
Davide De Rosa 2018-11-06 11:17:43 +01:00
parent c7cb00f679
commit d9c984da27
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
"global.ok" = "OK"; "global.ok" = "OK";
"global.cancel" = "Cancel"; "global.cancel" = "Cancel";
"global.next" = "Next"; "global.next" = "Next";
"global.host.title_input.message" = "Legal characters are alphanumerics plus dash (-), underscore (_) and dot (.)."; "global.host.title_input.message" = "Acceptable characters are alphanumerics plus dash \"-\", underscore \"_\" and dot \".\".";
"global.host.title_input.placeholder" = "My Profile"; "global.host.title_input.placeholder" = "My Profile";
"reddit.title" = "Reddit"; "reddit.title" = "Reddit";

View File

@ -245,7 +245,7 @@ internal enum L10n {
internal static let ok = L10n.tr("Localizable", "global.ok") internal static let ok = L10n.tr("Localizable", "global.ok")
internal enum Host { internal enum Host {
internal enum TitleInput { internal enum TitleInput {
/// Legal characters are alphanumerics plus dash (-), underscore (_) and dot (.). /// Acceptable characters are alphanumerics plus dash "-", underscore "_" and dot ".".
internal static let message = L10n.tr("Localizable", "global.host.title_input.message") internal static let message = L10n.tr("Localizable", "global.host.title_input.message")
/// My Profile /// My Profile
internal static let placeholder = L10n.tr("Localizable", "global.host.title_input.placeholder") internal static let placeholder = L10n.tr("Localizable", "global.host.title_input.placeholder")