Skip to content

Commit

Permalink
#3: Change some labels
Browse files Browse the repository at this point in the history
  • Loading branch information
proofrock committed Feb 15, 2024
1 parent 5e943d5 commit d06f9e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/handlers/get_stock/getStockExcel.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func GetStockExcel(c *fiber.Ctx) error {
}

// FIXME i18n (passed by the browser)
f.SetCellValue("Sheet1", "A1", fmt.Sprintf("Report delle giacenze, %s", time.Now().Format("02/01/2006, 15:04:05")))
f.SetCellValue("Sheet1", "A1", fmt.Sprintf("Report delle scorte, %s", time.Now().Format("02/01/2006, 15:04:05")))
err = f.MergeCell("Sheet1", "A1", "C1")
if err != nil {
return utils.SendError(c, fiber.StatusInternalServerError, "FHE010", "", &err)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<!-- svelte-ignore a11y-missing-attribute -->
<a on:click={popup}>Scheda stampabile</a></td
<a on:click={popup}>Stampa Scheda</a></td
>
</tr>
</table>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/orderpage/SubpageData.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
Object.keys(residuals).forEach((key) => {
if (residuals[key] < 0)
_errors.push(
`L'ordine per la categoria '${key}' è inferiore a quanto permesso.`,
`L'ordinato per la categoria '${key}' è superiore a quanto previsto.`,
);
});
Expand Down

0 comments on commit d06f9e7

Please sign in to comment.