el mensaje de commit sale con el idioma de le usuarie
This commit is contained in:
parent
9a69edb05b
commit
8bf0bdc508
1 changed files with 5 additions and 3 deletions
|
@ -31,9 +31,11 @@ class Site
|
||||||
def write(usuarie = nil)
|
def write(usuarie = nil)
|
||||||
return if persisted?
|
return if persisted?
|
||||||
|
|
||||||
|
I18n.with_locale(usuarie.try(:lang) || I18n.default_locale) do
|
||||||
Site::Writer.new(site: site, file: path,
|
Site::Writer.new(site: site, file: path,
|
||||||
content: content.to_yaml, usuarie: usuarie,
|
content: content.to_yaml, usuarie: usuarie,
|
||||||
message: I18n.t('sites.repository.config')).save
|
message: I18n.t('sites.repository.config')).save
|
||||||
|
end
|
||||||
# Actualizar el hash para no escribir dos veces
|
# Actualizar el hash para no escribir dos veces
|
||||||
@hash = content.hash
|
@hash = content.hash
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue