Explorar el Código

Merge pull request #220 from deltachat/exampleorg

prefer example.org over example.com
cyBerta hace 5 años
padre
commit
cbd0b1b459
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      deltachat-ios/View/TextFieldCell.swift

+ 1 - 1
deltachat-ios/View/TextFieldCell.swift

@@ -77,7 +77,7 @@ class TextFieldCell: UITableViewCell {
     }
 
     static func makeEmailCell(delegate: UITextFieldDelegate? = nil) -> TextFieldCell {
-        let cell = TextFieldCell(description: String.localized("email_address"), placeholder: "you@example.com")
+        let cell = TextFieldCell(description: String.localized("email_address"), placeholder: "you@example.org")
         cell.textField.keyboardType = .emailAddress
         // switch off quicktype
         cell.textField.autocorrectionType = .no