From d969fe412b6068fbc59c7e9d34fa7cd16f118d66 Mon Sep 17 00:00:00 2001 From: Spreadcat Date: Mon, 4 Mar 2024 09:07:16 +0100 Subject: [PATCH 1/2] add: norwegian kroner Adding the currency of norwegian krones back into the file. There was an earlier commit where this seems to have dropped of the table. --- backend/internal/core/currencies/currencies.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/backend/internal/core/currencies/currencies.json b/backend/internal/core/currencies/currencies.json index f6c6c75..18c26ed 100644 --- a/backend/internal/core/currencies/currencies.json +++ b/backend/internal/core/currencies/currencies.json @@ -623,6 +623,12 @@ "symbol": "C$", "name": "Nicaraguan Córdoba" }, + { + "code": "NOK", + "local": "Norge", + "symbol": "kr", + "name": "Norske kroner" + }, { "code": "UAH", "local": "Ukraine", From 8565c620c727797ff7ba38bbc5ee3d75755b193d Mon Sep 17 00:00:00 2001 From: Spreadcat Date: Mon, 4 Mar 2024 09:28:51 +0100 Subject: [PATCH 2/2] fix: using the correct terms for the currency. --- backend/internal/core/currencies/currencies.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/internal/core/currencies/currencies.json b/backend/internal/core/currencies/currencies.json index 18c26ed..c7b2630 100644 --- a/backend/internal/core/currencies/currencies.json +++ b/backend/internal/core/currencies/currencies.json @@ -625,9 +625,9 @@ }, { "code": "NOK", - "local": "Norge", + "local": "Norway", "symbol": "kr", - "name": "Norske kroner" + "name": "Norwegian Krone" }, { "code": "UAH",