Skip to content

Commit

Permalink
lagt til feilmeldingstekster for illegalAction.typeDetectionOrConvers…
Browse files Browse the repository at this point in the history
…ionError
  • Loading branch information
nils-arne committed Nov 14, 2024
1 parent fb8f3df commit 5b49dc9
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion assets/locales/en/backend.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"title": "You have not uploaded any new documents"
},
"illegalAction.notSupportedFileFormat": {
"message": "Wrong file format. It is only allowed to upload files of type TXT, DOCX, PDF, JPEG/JPG and PNG."
"message": "Wrong file format. It is only allowed to upload files of type PDF, JPEG/JPG, PNG, TIFF/TIF, BMP, GIF, DOCX/DOC, ODT, RTF and TXT."
},
"illegalAction.fileSizeSumTooLarge": {
"message": "The sum of the size of uploaded files for the entire application exceeds the maximum allowed size. The maximum size allowed is 150MB in total."
Expand Down
2 changes: 1 addition & 1 deletion assets/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
"filForStor": "The size of the selected file exceeds the maximum size limit. The maximum size allowed is 50MB.",
"filIkkeValgt": "An error occurred during file selection, please retry",
"filUtenInnhold": "Selected file has no content, choose a file larger than 0 kB",
"ugyldigFilformat": "It is only allowed to upload files of type TXT, DOCX, PDF, JPEG/JPG and PNG",
"ugyldigFilformat": "It is only allowed to upload files of type PDF, JPEG/JPG, PNG, TIFF/TIF, BMP, GIF, DOCX/DOC, ODT, RTF and TXT.",
"paakrevd": "You must fill in: {{felt}}",
"maksLengde": "{{felt}} cannot be longer than {{maksLengde}} characters"
},
Expand Down
2 changes: 1 addition & 1 deletion assets/locales/nb/backend.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"title": "Du har ikke lastet opp noen nye dokumenter"
},
"illegalAction.notSupportedFileFormat": {
"message": "Feil filformat, det er kun lov å laste opp filer av type TXT, DOCX, PDF, JPEG/JPG og PNG."
"message": "Feil filformat, det er kun lov å laste opp filer av type PDF, JPEG/JPG, PNG, TIFF/TIF, BMP, GIF, DOCX/DOC, ODT, RTF og TXT."
},
"illegalAction.fileSizeSumTooLarge": {
"message": "Summen av størrelsen på opplastede filer for hele søknaden overskrider maksimal tillatt størrelse. Den maksimale størrelsen er 150MB totalt."
Expand Down
2 changes: 1 addition & 1 deletion assets/locales/nb/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
"filForStor": "Størrelsen på filen overskrider maksimal tillatt størrelse. Den maksimale størrelsen er 50MB.",
"filIkkeValgt": "En feil oppsto under valg av fil. Prøv på nytt",
"filUtenInnhold": "Valgt fil mangler innhold, velg en fil som er større en 0 kB",
"ugyldigFilformat": "Feil filformat, det er bare lov å laste opp filer av typen TXT, DOCX, PDF, JPEG/JPG og PNG",
"ugyldigFilformat": "Feil filformat, det er bare lov å laste opp filer av typen PDF, JPEG/JPG, PNG, TIFF/TIF, BMP, GIF, DOCX/DOC, ODT, RTF og TXT.",
"paakrevd": "Du må fylle ut: {{felt}}",
"maksLengde": "{{felt}} kan ikke være mer enn {{maksLengde}} tegn"
},
Expand Down
2 changes: 1 addition & 1 deletion assets/locales/nn/backend.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"title": "Du har ikkje lasta opp nokon nye dokument"
},
"illegalAction.notSupportedFileFormat": {
"message": "Feil filformat, det er berre lov å laste opp filer av typen TXT, DOCX, PDF, JPEG/JPG og PNG."
"message": "Feil filformat, det er berre lov å laste opp filer av typen PDF, JPEG/JPG, PNG, TIFF/TIF, BMP, GIF, DOCX/DOC, ODT, RTF og TXT."
},
"illegalAction.fileSizeSumTooLarge": {
"message": "Summen av storleiken på opplasta filer for heile søknaden overskrid maksimal tillaten storleik. Den maksimale storleiken er 150MB totalt."
Expand Down
2 changes: 1 addition & 1 deletion assets/locales/nn/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@
"filForStor": "Storleiken på fila overskrid maksimal tillaten storleik. Den maksimale storleiken er 50MB.",
"filIkkeValgt": "Ein feil oppstod under val av fil. Prøv på nytt",
"filUtenInnhold": "Vald fil manglar innhald, vel ei fil som er større ein 0 kB",
"ugyldigFilformat": "Feil filformat, det er berre lov å laste opp filer av typen TXT, DOCX, PDF, JPEG/JPG og PNG",
"ugyldigFilformat": "Feil filformat, det er berre lov å laste opp filer av typen PDF, JPEG/JPG, PNG, TIFF/TIF, BMP, GIF, DOCX/DOC, ODT, RTF og TXT",
"paakrevd": "Du må fylle ut: {{felt}}",
"maksLengde": "{{felt}} kan ikkje vera meir enn {{maksLengde}} teikn"
},
Expand Down
2 changes: 1 addition & 1 deletion components/Fil.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const filValidering = (fil?: File) => {
}
if (!GYLDIGE_FILFORMATER.includes(fil.type)) {
sendLog({
message: `UgyldigFilformat size - ${fil.size}, type: ${fil.type}, gyldige formater er ${legal_filforats}`,
message: `UgyldigFilformat size - ${fil.size}, type: ${fil.type || fil.name}, gyldige formater er ${legal_filforats}`,
level: 'warn',
});
return { harFeil: true, melding: 'ugyldigFilformat' } as const;
Expand Down
2 changes: 1 addition & 1 deletion components/Filvelger.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function Filvelger(props: FilvelgerProps) {
autoFocus={autoFocus}
id={inputId}
{...rest}
accept="image/png, image/jpeg, .pdf, .docx, .txt, text/plain"
accept=".pdf, image/jpeg, image/png, image/tiff, image/bmp, image/gif, .docx, .doc, .odt, .rtf, .txt, text/plain"
multiple={allowMultiple}
type="file"
// TODO?: Støtte for drag&drop. Kan ikke bruke display: none. Eksempel på løsning: https://stackoverflow.com/a/44277812/15886307
Expand Down

0 comments on commit 5b49dc9

Please sign in to comment.