better translations
This commit is contained in:
parent
8711e8f911
commit
0d88674cea
2 changed files with 1 additions and 22 deletions
|
@ -55,28 +55,6 @@ class Champs::PieceJustificativeChamp < Champ
|
||||||
piece_justificative_file.filename.to_s if piece_justificative_file.attached?
|
piece_justificative_file.filename.to_s if piece_justificative_file.attached?
|
||||||
end
|
end
|
||||||
|
|
||||||
def piece_justificative_file_errors
|
|
||||||
errors = []
|
|
||||||
|
|
||||||
if piece_justificative_file.attached? && piece_justificative_file.previous_changes.present?
|
|
||||||
if piece_justificative_file.blob.byte_size > MAX_SIZE
|
|
||||||
errors << "Le fichier #{piece_justificative_file.filename} est trop lourd, il doit faire au plus #{MAX_SIZE.to_s(:human_size, precision: 2)}"
|
|
||||||
end
|
|
||||||
|
|
||||||
if !piece_justificative_file.blob.content_type.in?(ACCEPTED_FORMATS)
|
|
||||||
errors << "Le fichier #{piece_justificative_file.filename} est dans un format que nous n'acceptons pas"
|
|
||||||
end
|
|
||||||
|
|
||||||
# FIXME: add Clamav check
|
|
||||||
end
|
|
||||||
|
|
||||||
if errors.present?
|
|
||||||
piece_justificative_file.purge_later
|
|
||||||
end
|
|
||||||
|
|
||||||
errors
|
|
||||||
end
|
|
||||||
|
|
||||||
def for_api
|
def for_api
|
||||||
if piece_justificative_file.attached? && (piece_justificative_file.virus_scanner.safe? || piece_justificative_file.virus_scanner.pending?)
|
if piece_justificative_file.attached? && (piece_justificative_file.virus_scanner.safe? || piece_justificative_file.virus_scanner.pending?)
|
||||||
piece_justificative_file.service_url
|
piece_justificative_file.service_url
|
||||||
|
|
|
@ -2,3 +2,4 @@ fr:
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
content_type_invalid: n’est pas d’un type accepté
|
content_type_invalid: n’est pas d’un type accepté
|
||||||
|
file_size_out_of_range: "est trop lourde, elle doit faire au plus 200 Mo."
|
||||||
|
|
Loading…
Reference in a new issue