pull/540/head
Alen BOHCELYAN 2017-02-14 18:54:39 +02:00
commit da5154261a
4 changed files with 12 additions and 5 deletions

View File

@ -1,10 +1,10 @@
{ {
"admin_server" : { "admin_server" : {
"listen_url" : "0.0.0.0:3333", "listen_url" : "127.0.0.1:3333",
"use_tls" : false, "use_tls" : false,
"cert_path" : "gophish_admin.crt", "cert_path" : "gophish_admin.crt",
"key_path" : "gophish_admin.key", "key_path" : "gophish_admin.key",
"languge": "tr-TR" "languge": "en-US"
}, },
"phish_server" : { "phish_server" : {
"listen_url" : "0.0.0.0:80", "listen_url" : "0.0.0.0:80",

View File

@ -313,7 +313,7 @@ func Register(w http.ResponseWriter, r *http.Request) {
if succ { if succ {
session.AddFlash(models.Flash{ session.AddFlash(models.Flash{
Type: "success", Type: "success",
Message: "Registration successful!.", Message: util.T("Registration successful!."),
}) })
session.Save(r, w) session.Save(r, w)
http.Redirect(w, r, "/login", 302) http.Redirect(w, r, "/login", 302)
@ -431,7 +431,7 @@ func Settings(w http.ResponseWriter, r *http.Request) {
err := auth.ChangePassword(r) err := auth.ChangePassword(r)
msg := models.Response{Success: true, Message: util.T("Settings Updated Successfully")} msg := models.Response{Success: true, Message: util.T("Settings Updated Successfully")}
if err == auth.ErrInvalidPassword { if err == auth.ErrInvalidPassword {
msg.Message = "Invalid Password" msg.Message = util.T("Invalid Password")
msg.Success = false msg.Success = false
JSONResponse(w, msg, http.StatusBadRequest) JSONResponse(w, msg, http.StatusBadRequest)
return return

View File

@ -40,7 +40,6 @@ import (
"github.com/gophish/gophish/models" "github.com/gophish/gophish/models"
"./util" "./util"
"github.com/gorilla/handlers" "github.com/gorilla/handlers"
// "github.com/nicksnyder/go-i18n/i18n"
) )
var Logger = log.New(os.Stdout, " ", log.Ldate|log.Ltime|log.Lshortfile) var Logger = log.New(os.Stdout, " ", log.Ldate|log.Ltime|log.Lshortfile)

View File

@ -1058,5 +1058,13 @@
{ {
"id": "Template not found", "id": "Template not found",
"translation": "Tema bulunamadı" "translation": "Tema bulunamadı"
},
{
"id": "Invalid Password",
"translation": "Hatalı Şifre"
},
{
"id": "Registration successful!.",
"translation": "Kayıt başarıyla tamamlandı!"
} }
] ]