소스 검색

Merge pull request #220 from deltachat/exampleorg

prefer example.org over example.com
cyBerta 5 년 전
부모
커밋
cbd0b1b459
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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