Reword comment about host title format
This commit is contained in:
parent
c7cb00f679
commit
d9c984da27
|
@ -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";
|
||||||
|
|
|
@ -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")
|
||||||
|
|
Loading…
Reference in New Issue