From d9c984da276a8f5d622b465c2908e1744ba00c0e Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Tue, 6 Nov 2018 11:17:43 +0100 Subject: [PATCH] Reword comment about host title format --- Passepartout/Resources/en.lproj/Localizable.strings | 2 +- Passepartout/Sources/SwiftGen+Strings.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Passepartout/Resources/en.lproj/Localizable.strings b/Passepartout/Resources/en.lproj/Localizable.strings index b5a06e69..583757bc 100644 --- a/Passepartout/Resources/en.lproj/Localizable.strings +++ b/Passepartout/Resources/en.lproj/Localizable.strings @@ -26,7 +26,7 @@ "global.ok" = "OK"; "global.cancel" = "Cancel"; "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"; "reddit.title" = "Reddit"; diff --git a/Passepartout/Sources/SwiftGen+Strings.swift b/Passepartout/Sources/SwiftGen+Strings.swift index 866c6c67..01bb24dd 100644 --- a/Passepartout/Sources/SwiftGen+Strings.swift +++ b/Passepartout/Sources/SwiftGen+Strings.swift @@ -245,7 +245,7 @@ internal enum L10n { internal static let ok = L10n.tr("Localizable", "global.ok") internal enum Host { 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") /// My Profile internal static let placeholder = L10n.tr("Localizable", "global.host.title_input.placeholder")