-
Notifications
You must be signed in to change notification settings - Fork 1
/
validateWords.go
53 lines (52 loc) · 1.85 KB
/
validateWords.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package main
func notValidRequestError(method string) string {
return `{"error": true,"message":"` + method + ` yöntemi bu hizmette geçersizdir."}`
}
func notFindRecordError() string {
return `{"error": true,"message":"Kayıt bulunamamıştır."}`
}
func requiredInputError(inputName string) string {
return `{"error": true,"message":"` + inputName + ` alanı doldurulmalıdır."}`
}
func succesfullyRecordedError() string {
return `{"error": false,"message":"Başarılı şekilde kaydedilmiştir."}`
}
func succesfullyError() string {
return `{"error": false,"message":"Başarılı ."}`
}
func succesfullyNotificationError() string {
return `{"error": false,"message":"Bildirim gönderimi başarılı."}`
}
func failedRecordError() string {
return `{"error": true,"message":"Kayıt başarısız olmuştur."}`
}
func invalidPermission() string {
return `{"error": true,"message":"Bu servisi kullanma yetkisine sahip değilsiniz."}`
}
func incorrectInput(inputName string) string {
return `{"error": true,"message":"` + inputName + ` hatası ."}`
}
func dataBaseSaveError() string {
return `{"error": true,"message":"Veri tabanına kayıtta hata oluştu."}`
}
func creditCardError() string {
return `{"error": true,"message":"Hatalı kredi kartı."}`
}
func objectIDError() string {
return `{"error": true,"message":"Hatalı ID."}`
}
func someThingWentWrong() string {
return `{"error": true,"message":"Bir şeyler yanlış gitti."}`
}
func sendMailError() string {
return `{"error": true,"message":"Mail gönderimi başarısız."}`
}
func sendNotificationError() string {
return `{"error": true,"message":"Bildirim gönderimi başarısız."}`
}
func invalidLoginRequest() string {
return `{"error": true,"message":"Onaylanmamış kullanıcı"}`
}
func alreadyDefinedError(inputName string) string {
return `{"error": true,"message":"` + inputName + ` zaten tanımlı ."}`
}