X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9fec2fd137619eed257f146542ae44d792cc49dd..7369b7427c3df17314cfa5e9f69bedd78f760047:/app/controllers/oauth_clients_controller.rb diff --git a/app/controllers/oauth_clients_controller.rb b/app/controllers/oauth_clients_controller.rb index 94a7d4d5b..f90302894 100644 --- a/app/controllers/oauth_clients_controller.rb +++ b/app/controllers/oauth_clients_controller.rb @@ -17,7 +17,7 @@ class OauthClientsController < ApplicationController def create @client_application = @user.client_applications.build(params[:client_application]) if @client_application.save - flash[:notice] = "Registered the information successfully" + flash[:notice] = t'oauth_clients.create.flash' redirect_to :action => "show", :id => @client_application.id else render :action => "new" @@ -38,7 +38,7 @@ class OauthClientsController < ApplicationController def update @client_application = @user.client_applications.find(params[:id]) if @client_application.update_attributes(params[:client_application]) - flash[:notice] = "Updated the client information successfully" + flash[:notice] = t'oauth_clients.update.flash' redirect_to :action => "show", :id => @client_application.id else render :action => "edit" @@ -48,7 +48,7 @@ class OauthClientsController < ApplicationController def destroy @client_application = @user.client_applications.find(params[:id]) @client_application.destroy - flash[:notice] = "Destroyed the client application registration" + flash[:notice] = t'oauth_clients.destroy.flash' redirect_to :action => "index" end end