From fc264e9c66c80fe9e68f8ee1488460fb9548a177 Mon Sep 17 00:00:00 2001 From: Trygve Amundsen Date: Mon, 27 Mar 2023 15:51:28 +0200 Subject: [PATCH 1/4] feat: add i18n with lingui --- .linguirc | 10 ++++++++++ package.json | 9 +++++++-- packages/alert/svgs.js | 23 +++++++++++++++++++---- packages/utils/locale.js | 27 +++++++++++++++++++++++++++ 4 files changed, 63 insertions(+), 6 deletions(-) create mode 100644 .linguirc create mode 100644 packages/utils/locale.js diff --git a/.linguirc b/.linguirc new file mode 100644 index 00000000..87006a55 --- /dev/null +++ b/.linguirc @@ -0,0 +1,10 @@ +{ + "catalogs": [{ + "path": "locale/{locale}/{name}", + "include": ["packages/{name}/"] + }], + "compileNamespace": "es", + "format": "po", + "locales": ["en","nb","fi"], + "sourceLocale": "en" +} \ No newline at end of file diff --git a/package.json b/package.json index 1d2dcef2..51655d57 100644 --- a/package.json +++ b/package.json @@ -14,13 +14,16 @@ "types": "dist/index.d.ts", "scripts": { "build:api": "npx esbuild ./packages/toast/api.js --outdir=dist --target=es2017 --bundle --sourcemap --format=esm --minify", - "build:npm": "npx esbuild ./index.js --outdir=dist/ --target=es2017 --bundle --sourcemap --format=esm --minify", - "watch:npm": "npx esbuild ./index.js --outdir=dist/ --target=es2017 --bundle --sourcemap --format=esm --minify --watch", + "build:npm": "npx esbuild ./index.js --outdir=dist/ --target=es2022 --bundle --sourcemap --format=esm --minify", + "watch:npm": "npx esbuild ./index.js --outdir=dist/ --target=es2022 --bundle --sourcemap --format=esm --minify --watch", "build": "rimraf dist && npm run build:elements && tsc && npm run build:npm && npm run build:api", "format": "prettier --write . --ignore-path .gitignore", "lint": "npm run lint:format && npm run lint:eslint", "lint:format": "prettier --check . --ignore-path .gitignore", "lint:eslint": "eslint . --ext js,cjs,mjs --ignore-path .gitignore", + "locale:extract": "lingui extract --overwrite --clean", + "locale:compile": "lingui compile", + "locale": "npm run locale:extract && npm run locale:compile", "dev": "vite", "build:docs": "vite build && cp CNAME site", "eik:login": "eik login", @@ -45,6 +48,7 @@ "@eik/cli": "2.0.22", "@fabric-ds/css": "1.2.0", "@finn-no/browserslist-config": "3.0.0", + "@lingui/cli": "^4.0.0-next.4", "@semantic-release/changelog": "6.0.2", "@semantic-release/git": "10.0.1", "@stylelint/postcss-css-in-js": "0.38.0", @@ -84,6 +88,7 @@ "dependencies": { "@fabric-ds/core": "0.0.15", "@fabric-ds/icons": "0.6.7", + "@lingui/core": "^4.0.0-next.4", "@open-wc/testing": "3.1.7", "glob": "8.1.0", "html-format": "1.0.2", diff --git a/packages/alert/svgs.js b/packages/alert/svgs.js index d53ac0a5..a32051d5 100644 --- a/packages/alert/svgs.js +++ b/packages/alert/svgs.js @@ -1,7 +1,22 @@ import { html, svg } from 'lit'; +import { i18n } from '@lingui/core'; +import { initLocale } from '../utils/locale.js'; + +await initLocale('alert'); + +const negativeAria = i18n._( + /*i18n*/ { message: 'Red exclamation mark', id: 'alert.negative.svg.aria-label' }, +); +const positiveAria = i18n._( + /*i18n*/ { message: 'Green checkmark', id: 'alert.positive.svg.aria-label' }, +); +const warningAria = i18n._( + /*i18n*/ { message: 'Yellow exclamation mark', id: 'alert.warning.svg.aria-label' }, +); +const infoAria = i18n._(/*i18n*/ { message: 'Info', id: 'alert.info.svg.aria-label' }); export const negativeSvg = () => html` html``; export const positiveSvg = () => html` html` `; export const warningSvg = () => html` html` `; export const infoSvg = () => html` Date: Mon, 27 Mar 2023 15:52:02 +0200 Subject: [PATCH 2/4] feat: use non-english lang in alert for testing --- pages/components/alert.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/components/alert.html b/pages/components/alert.html index d96402d1..e135de43 100644 --- a/pages/components/alert.html +++ b/pages/components/alert.html @@ -1,4 +1,4 @@ - + <%- include('head.html'); -%> From d0c58f28c30b3e076da0871d6ba82cefed46cbde Mon Sep 17 00:00:00 2001 From: Trygve Amundsen Date: Mon, 27 Mar 2023 15:52:33 +0200 Subject: [PATCH 3/4] feat: check in language files for now --- locale/en/affix.mjs | 1 + locale/en/affix.po | 14 ++++++++++++++ locale/en/alert.mjs | 1 + locale/en/alert.po | 34 ++++++++++++++++++++++++++++++++++ locale/en/attention.mjs | 1 + locale/en/attention.po | 14 ++++++++++++++ locale/en/box.mjs | 1 + locale/en/box.po | 14 ++++++++++++++ locale/en/breadcrumbs.mjs | 1 + locale/en/breadcrumbs.po | 14 ++++++++++++++ locale/en/broadcast.mjs | 1 + locale/en/broadcast.po | 14 ++++++++++++++ locale/en/button.mjs | 1 + locale/en/button.po | 14 ++++++++++++++ locale/en/card.mjs | 1 + locale/en/card.po | 14 ++++++++++++++ locale/en/expandable.mjs | 1 + locale/en/expandable.po | 14 ++++++++++++++ locale/en/select.mjs | 1 + locale/en/select.po | 14 ++++++++++++++ locale/en/textfield.mjs | 1 + locale/en/textfield.po | 14 ++++++++++++++ locale/en/toast.mjs | 1 + locale/en/toast.po | 14 ++++++++++++++ locale/en/utils.mjs | 1 + locale/en/utils.po | 14 ++++++++++++++ locale/fi/affix.mjs | 1 + locale/fi/affix.po | 14 ++++++++++++++ locale/fi/alert.mjs | 1 + locale/fi/alert.po | 34 ++++++++++++++++++++++++++++++++++ locale/fi/attention.mjs | 1 + locale/fi/attention.po | 14 ++++++++++++++ locale/fi/box.mjs | 1 + locale/fi/box.po | 14 ++++++++++++++ locale/fi/breadcrumbs.mjs | 1 + locale/fi/breadcrumbs.po | 14 ++++++++++++++ locale/fi/broadcast.mjs | 1 + locale/fi/broadcast.po | 14 ++++++++++++++ locale/fi/button.mjs | 1 + locale/fi/button.po | 14 ++++++++++++++ locale/fi/card.mjs | 1 + locale/fi/card.po | 14 ++++++++++++++ locale/fi/expandable.mjs | 1 + locale/fi/expandable.po | 14 ++++++++++++++ locale/fi/select.mjs | 1 + locale/fi/select.po | 14 ++++++++++++++ locale/fi/textfield.mjs | 1 + locale/fi/textfield.po | 14 ++++++++++++++ locale/fi/toast.mjs | 1 + locale/fi/toast.po | 14 ++++++++++++++ locale/fi/utils.mjs | 1 + locale/fi/utils.po | 14 ++++++++++++++ locale/nb/affix.mjs | 1 + locale/nb/affix.po | 14 ++++++++++++++ locale/nb/alert.mjs | 1 + locale/nb/alert.po | 34 ++++++++++++++++++++++++++++++++++ locale/nb/attention.mjs | 1 + locale/nb/attention.po | 14 ++++++++++++++ locale/nb/box.mjs | 1 + locale/nb/box.po | 14 ++++++++++++++ locale/nb/breadcrumbs.mjs | 1 + locale/nb/breadcrumbs.po | 14 ++++++++++++++ locale/nb/broadcast.mjs | 1 + locale/nb/broadcast.po | 14 ++++++++++++++ locale/nb/button.mjs | 1 + locale/nb/button.po | 14 ++++++++++++++ locale/nb/card.mjs | 1 + locale/nb/card.po | 14 ++++++++++++++ locale/nb/expandable.mjs | 1 + locale/nb/expandable.po | 14 ++++++++++++++ locale/nb/select.mjs | 1 + locale/nb/select.po | 14 ++++++++++++++ locale/nb/textfield.mjs | 1 + locale/nb/textfield.po | 14 ++++++++++++++ locale/nb/toast.mjs | 1 + locale/nb/toast.po | 14 ++++++++++++++ locale/nb/utils.mjs | 1 + locale/nb/utils.po | 14 ++++++++++++++ 78 files changed, 645 insertions(+) create mode 100644 locale/en/affix.mjs create mode 100644 locale/en/affix.po create mode 100644 locale/en/alert.mjs create mode 100644 locale/en/alert.po create mode 100644 locale/en/attention.mjs create mode 100644 locale/en/attention.po create mode 100644 locale/en/box.mjs create mode 100644 locale/en/box.po create mode 100644 locale/en/breadcrumbs.mjs create mode 100644 locale/en/breadcrumbs.po create mode 100644 locale/en/broadcast.mjs create mode 100644 locale/en/broadcast.po create mode 100644 locale/en/button.mjs create mode 100644 locale/en/button.po create mode 100644 locale/en/card.mjs create mode 100644 locale/en/card.po create mode 100644 locale/en/expandable.mjs create mode 100644 locale/en/expandable.po create mode 100644 locale/en/select.mjs create mode 100644 locale/en/select.po create mode 100644 locale/en/textfield.mjs create mode 100644 locale/en/textfield.po create mode 100644 locale/en/toast.mjs create mode 100644 locale/en/toast.po create mode 100644 locale/en/utils.mjs create mode 100644 locale/en/utils.po create mode 100644 locale/fi/affix.mjs create mode 100644 locale/fi/affix.po create mode 100644 locale/fi/alert.mjs create mode 100644 locale/fi/alert.po create mode 100644 locale/fi/attention.mjs create mode 100644 locale/fi/attention.po create mode 100644 locale/fi/box.mjs create mode 100644 locale/fi/box.po create mode 100644 locale/fi/breadcrumbs.mjs create mode 100644 locale/fi/breadcrumbs.po create mode 100644 locale/fi/broadcast.mjs create mode 100644 locale/fi/broadcast.po create mode 100644 locale/fi/button.mjs create mode 100644 locale/fi/button.po create mode 100644 locale/fi/card.mjs create mode 100644 locale/fi/card.po create mode 100644 locale/fi/expandable.mjs create mode 100644 locale/fi/expandable.po create mode 100644 locale/fi/select.mjs create mode 100644 locale/fi/select.po create mode 100644 locale/fi/textfield.mjs create mode 100644 locale/fi/textfield.po create mode 100644 locale/fi/toast.mjs create mode 100644 locale/fi/toast.po create mode 100644 locale/fi/utils.mjs create mode 100644 locale/fi/utils.po create mode 100644 locale/nb/affix.mjs create mode 100644 locale/nb/affix.po create mode 100644 locale/nb/alert.mjs create mode 100644 locale/nb/alert.po create mode 100644 locale/nb/attention.mjs create mode 100644 locale/nb/attention.po create mode 100644 locale/nb/box.mjs create mode 100644 locale/nb/box.po create mode 100644 locale/nb/breadcrumbs.mjs create mode 100644 locale/nb/breadcrumbs.po create mode 100644 locale/nb/broadcast.mjs create mode 100644 locale/nb/broadcast.po create mode 100644 locale/nb/button.mjs create mode 100644 locale/nb/button.po create mode 100644 locale/nb/card.mjs create mode 100644 locale/nb/card.po create mode 100644 locale/nb/expandable.mjs create mode 100644 locale/nb/expandable.po create mode 100644 locale/nb/select.mjs create mode 100644 locale/nb/select.po create mode 100644 locale/nb/textfield.mjs create mode 100644 locale/nb/textfield.po create mode 100644 locale/nb/toast.mjs create mode 100644 locale/nb/toast.po create mode 100644 locale/nb/utils.mjs create mode 100644 locale/nb/utils.po diff --git a/locale/en/affix.mjs b/locale/en/affix.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/affix.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/affix.po b/locale/en/affix.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/affix.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/alert.mjs b/locale/en/alert.mjs new file mode 100644 index 00000000..44d977ea --- /dev/null +++ b/locale/en/alert.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{\"alert.positive.svg.aria-label\":\"Green checkmark\",\"alert.info.svg.aria-label\":\"Info\",\"alert.negative.svg.aria-label\":\"Red exclamation mark\",\"alert.warning.svg.aria-label\":\"Yellow exclamation mark\"}"); \ No newline at end of file diff --git a/locale/en/alert.po b/locale/en/alert.po new file mode 100644 index 00000000..c0cd038b --- /dev/null +++ b/locale/en/alert.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" + +#: packages/alert/svgs.js:11 +#, explicit-id +msgid "alert.positive.svg.aria-label" +msgstr "Green checkmark" + +#: packages/alert/svgs.js:16 +#, explicit-id +msgid "alert.info.svg.aria-label" +msgstr "Info" + +#: packages/alert/svgs.js:8 +#, explicit-id +msgid "alert.negative.svg.aria-label" +msgstr "Red exclamation mark" + +#: packages/alert/svgs.js:14 +#, explicit-id +msgid "alert.warning.svg.aria-label" +msgstr "Yellow exclamation mark" diff --git a/locale/en/attention.mjs b/locale/en/attention.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/attention.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/attention.po b/locale/en/attention.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/attention.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/box.mjs b/locale/en/box.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/box.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/box.po b/locale/en/box.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/box.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/breadcrumbs.mjs b/locale/en/breadcrumbs.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/breadcrumbs.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/breadcrumbs.po b/locale/en/breadcrumbs.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/breadcrumbs.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/broadcast.mjs b/locale/en/broadcast.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/broadcast.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/broadcast.po b/locale/en/broadcast.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/broadcast.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/button.mjs b/locale/en/button.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/button.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/button.po b/locale/en/button.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/button.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/card.mjs b/locale/en/card.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/card.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/card.po b/locale/en/card.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/card.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/expandable.mjs b/locale/en/expandable.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/expandable.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/expandable.po b/locale/en/expandable.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/expandable.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/select.mjs b/locale/en/select.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/select.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/select.po b/locale/en/select.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/select.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/textfield.mjs b/locale/en/textfield.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/textfield.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/textfield.po b/locale/en/textfield.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/textfield.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/toast.mjs b/locale/en/toast.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/toast.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/toast.po b/locale/en/toast.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/toast.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/en/utils.mjs b/locale/en/utils.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/en/utils.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/utils.po b/locale/en/utils.po new file mode 100644 index 00000000..eb8c6ad4 --- /dev/null +++ b/locale/en/utils.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/affix.mjs b/locale/fi/affix.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/affix.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/affix.po b/locale/fi/affix.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/affix.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/alert.mjs b/locale/fi/alert.mjs new file mode 100644 index 00000000..44d977ea --- /dev/null +++ b/locale/fi/alert.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{\"alert.positive.svg.aria-label\":\"Green checkmark\",\"alert.info.svg.aria-label\":\"Info\",\"alert.negative.svg.aria-label\":\"Red exclamation mark\",\"alert.warning.svg.aria-label\":\"Yellow exclamation mark\"}"); \ No newline at end of file diff --git a/locale/fi/alert.po b/locale/fi/alert.po new file mode 100644 index 00000000..b7214349 --- /dev/null +++ b/locale/fi/alert.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" + +#: packages/alert/svgs.js:11 +#, explicit-id +msgid "alert.positive.svg.aria-label" +msgstr "" + +#: packages/alert/svgs.js:16 +#, explicit-id +msgid "alert.info.svg.aria-label" +msgstr "" + +#: packages/alert/svgs.js:8 +#, explicit-id +msgid "alert.negative.svg.aria-label" +msgstr "" + +#: packages/alert/svgs.js:14 +#, explicit-id +msgid "alert.warning.svg.aria-label" +msgstr "" diff --git a/locale/fi/attention.mjs b/locale/fi/attention.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/attention.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/attention.po b/locale/fi/attention.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/attention.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/box.mjs b/locale/fi/box.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/box.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/box.po b/locale/fi/box.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/box.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/breadcrumbs.mjs b/locale/fi/breadcrumbs.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/breadcrumbs.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/breadcrumbs.po b/locale/fi/breadcrumbs.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/breadcrumbs.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/broadcast.mjs b/locale/fi/broadcast.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/broadcast.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/broadcast.po b/locale/fi/broadcast.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/broadcast.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/button.mjs b/locale/fi/button.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/button.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/button.po b/locale/fi/button.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/button.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/card.mjs b/locale/fi/card.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/card.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/card.po b/locale/fi/card.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/card.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/expandable.mjs b/locale/fi/expandable.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/expandable.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/expandable.po b/locale/fi/expandable.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/expandable.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/select.mjs b/locale/fi/select.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/select.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/select.po b/locale/fi/select.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/select.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/textfield.mjs b/locale/fi/textfield.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/textfield.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/textfield.po b/locale/fi/textfield.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/textfield.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/toast.mjs b/locale/fi/toast.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/toast.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/toast.po b/locale/fi/toast.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/toast.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/fi/utils.mjs b/locale/fi/utils.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/fi/utils.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/utils.po b/locale/fi/utils.po new file mode 100644 index 00000000..3e6fb136 --- /dev/null +++ b/locale/fi/utils.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fi\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/affix.mjs b/locale/nb/affix.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/affix.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/affix.po b/locale/nb/affix.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/affix.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/alert.mjs b/locale/nb/alert.mjs new file mode 100644 index 00000000..a18b7b12 --- /dev/null +++ b/locale/nb/alert.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{\"alert.positive.svg.aria-label\":\"Grønn hake\",\"alert.info.svg.aria-label\":\"Info\",\"alert.negative.svg.aria-label\":\"Rødt utropstegn\",\"alert.warning.svg.aria-label\":\"Gult utropstegn\"}"); \ No newline at end of file diff --git a/locale/nb/alert.po b/locale/nb/alert.po new file mode 100644 index 00000000..558b45a4 --- /dev/null +++ b/locale/nb/alert.po @@ -0,0 +1,34 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" + +#: packages/alert/svgs.js:11 +#, explicit-id +msgid "alert.positive.svg.aria-label" +msgstr "Grønn hake" + +#: packages/alert/svgs.js:16 +#, explicit-id +msgid "alert.info.svg.aria-label" +msgstr "Info" + +#: packages/alert/svgs.js:8 +#, explicit-id +msgid "alert.negative.svg.aria-label" +msgstr "Rødt utropstegn" + +#: packages/alert/svgs.js:14 +#, explicit-id +msgid "alert.warning.svg.aria-label" +msgstr "Gult utropstegn" diff --git a/locale/nb/attention.mjs b/locale/nb/attention.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/attention.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/attention.po b/locale/nb/attention.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/attention.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/box.mjs b/locale/nb/box.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/box.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/box.po b/locale/nb/box.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/box.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/breadcrumbs.mjs b/locale/nb/breadcrumbs.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/breadcrumbs.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/breadcrumbs.po b/locale/nb/breadcrumbs.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/breadcrumbs.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/broadcast.mjs b/locale/nb/broadcast.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/broadcast.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/broadcast.po b/locale/nb/broadcast.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/broadcast.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/button.mjs b/locale/nb/button.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/button.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/button.po b/locale/nb/button.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/button.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/card.mjs b/locale/nb/card.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/card.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/card.po b/locale/nb/card.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/card.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/expandable.mjs b/locale/nb/expandable.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/expandable.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/expandable.po b/locale/nb/expandable.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/expandable.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/select.mjs b/locale/nb/select.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/select.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/select.po b/locale/nb/select.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/select.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/textfield.mjs b/locale/nb/textfield.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/textfield.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/textfield.po b/locale/nb/textfield.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/textfield.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/toast.mjs b/locale/nb/toast.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/toast.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/toast.po b/locale/nb/toast.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/toast.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" diff --git a/locale/nb/utils.mjs b/locale/nb/utils.mjs new file mode 100644 index 00000000..f6cc24e1 --- /dev/null +++ b/locale/nb/utils.mjs @@ -0,0 +1 @@ +/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/utils.po b/locale/nb/utils.po new file mode 100644 index 00000000..da2879b6 --- /dev/null +++ b/locale/nb/utils.po @@ -0,0 +1,14 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-03-27 10:38+0200\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: nb\n" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: \n" +"Last-Translator: \n" +"Language-Team: \n" +"Plural-Forms: \n" From c152cbf56cafba94b571731df0b4bc274663bd21 Mon Sep 17 00:00:00 2001 From: trygvea Date: Mon, 27 Mar 2023 16:35:35 +0200 Subject: [PATCH 4/4] feat: dont generate empty language files --- .linguirc | 16 +++++++++++++++- locale/en/affix.mjs | 1 - locale/en/affix.po | 14 -------------- locale/en/attention.mjs | 1 - locale/en/attention.po | 14 -------------- locale/en/box.mjs | 1 - locale/en/box.po | 14 -------------- locale/en/breadcrumbs.mjs | 1 - locale/en/breadcrumbs.po | 14 -------------- locale/en/broadcast.mjs | 1 - locale/en/broadcast.po | 14 -------------- locale/en/button.mjs | 1 - locale/en/button.po | 14 -------------- locale/en/card.mjs | 1 - locale/en/card.po | 14 -------------- locale/en/expandable.mjs | 1 - locale/en/expandable.po | 14 -------------- locale/en/select.mjs | 1 - locale/en/select.po | 14 -------------- locale/en/textfield.mjs | 1 - locale/en/textfield.po | 14 -------------- locale/en/toast.mjs | 1 - locale/en/toast.po | 14 -------------- locale/en/utils.mjs | 1 - locale/en/utils.po | 14 -------------- locale/fi/affix.mjs | 1 - locale/fi/affix.po | 14 -------------- locale/fi/attention.mjs | 1 - locale/fi/attention.po | 14 -------------- locale/fi/box.mjs | 1 - locale/fi/box.po | 14 -------------- locale/fi/breadcrumbs.mjs | 1 - locale/fi/breadcrumbs.po | 14 -------------- locale/fi/broadcast.mjs | 1 - locale/fi/broadcast.po | 14 -------------- locale/fi/button.mjs | 1 - locale/fi/button.po | 14 -------------- locale/fi/card.mjs | 1 - locale/fi/card.po | 14 -------------- locale/fi/expandable.mjs | 1 - locale/fi/expandable.po | 14 -------------- locale/fi/select.mjs | 1 - locale/fi/select.po | 14 -------------- locale/fi/textfield.mjs | 1 - locale/fi/textfield.po | 14 -------------- locale/fi/toast.mjs | 1 - locale/fi/toast.po | 14 -------------- locale/fi/utils.mjs | 1 - locale/fi/utils.po | 14 -------------- locale/nb/affix.mjs | 1 - locale/nb/affix.po | 14 -------------- locale/nb/attention.mjs | 1 - locale/nb/attention.po | 14 -------------- locale/nb/box.mjs | 1 - locale/nb/box.po | 14 -------------- locale/nb/breadcrumbs.mjs | 1 - locale/nb/breadcrumbs.po | 14 -------------- locale/nb/broadcast.mjs | 1 - locale/nb/broadcast.po | 14 -------------- locale/nb/button.mjs | 1 - locale/nb/button.po | 14 -------------- locale/nb/card.mjs | 1 - locale/nb/card.po | 14 -------------- locale/nb/expandable.mjs | 1 - locale/nb/expandable.po | 14 -------------- locale/nb/select.mjs | 1 - locale/nb/select.po | 14 -------------- locale/nb/textfield.mjs | 1 - locale/nb/textfield.po | 14 -------------- locale/nb/toast.mjs | 1 - locale/nb/toast.po | 14 -------------- locale/nb/utils.mjs | 1 - locale/nb/utils.po | 14 -------------- 73 files changed, 15 insertions(+), 541 deletions(-) delete mode 100644 locale/en/affix.mjs delete mode 100644 locale/en/affix.po delete mode 100644 locale/en/attention.mjs delete mode 100644 locale/en/attention.po delete mode 100644 locale/en/box.mjs delete mode 100644 locale/en/box.po delete mode 100644 locale/en/breadcrumbs.mjs delete mode 100644 locale/en/breadcrumbs.po delete mode 100644 locale/en/broadcast.mjs delete mode 100644 locale/en/broadcast.po delete mode 100644 locale/en/button.mjs delete mode 100644 locale/en/button.po delete mode 100644 locale/en/card.mjs delete mode 100644 locale/en/card.po delete mode 100644 locale/en/expandable.mjs delete mode 100644 locale/en/expandable.po delete mode 100644 locale/en/select.mjs delete mode 100644 locale/en/select.po delete mode 100644 locale/en/textfield.mjs delete mode 100644 locale/en/textfield.po delete mode 100644 locale/en/toast.mjs delete mode 100644 locale/en/toast.po delete mode 100644 locale/en/utils.mjs delete mode 100644 locale/en/utils.po delete mode 100644 locale/fi/affix.mjs delete mode 100644 locale/fi/affix.po delete mode 100644 locale/fi/attention.mjs delete mode 100644 locale/fi/attention.po delete mode 100644 locale/fi/box.mjs delete mode 100644 locale/fi/box.po delete mode 100644 locale/fi/breadcrumbs.mjs delete mode 100644 locale/fi/breadcrumbs.po delete mode 100644 locale/fi/broadcast.mjs delete mode 100644 locale/fi/broadcast.po delete mode 100644 locale/fi/button.mjs delete mode 100644 locale/fi/button.po delete mode 100644 locale/fi/card.mjs delete mode 100644 locale/fi/card.po delete mode 100644 locale/fi/expandable.mjs delete mode 100644 locale/fi/expandable.po delete mode 100644 locale/fi/select.mjs delete mode 100644 locale/fi/select.po delete mode 100644 locale/fi/textfield.mjs delete mode 100644 locale/fi/textfield.po delete mode 100644 locale/fi/toast.mjs delete mode 100644 locale/fi/toast.po delete mode 100644 locale/fi/utils.mjs delete mode 100644 locale/fi/utils.po delete mode 100644 locale/nb/affix.mjs delete mode 100644 locale/nb/affix.po delete mode 100644 locale/nb/attention.mjs delete mode 100644 locale/nb/attention.po delete mode 100644 locale/nb/box.mjs delete mode 100644 locale/nb/box.po delete mode 100644 locale/nb/breadcrumbs.mjs delete mode 100644 locale/nb/breadcrumbs.po delete mode 100644 locale/nb/broadcast.mjs delete mode 100644 locale/nb/broadcast.po delete mode 100644 locale/nb/button.mjs delete mode 100644 locale/nb/button.po delete mode 100644 locale/nb/card.mjs delete mode 100644 locale/nb/card.po delete mode 100644 locale/nb/expandable.mjs delete mode 100644 locale/nb/expandable.po delete mode 100644 locale/nb/select.mjs delete mode 100644 locale/nb/select.po delete mode 100644 locale/nb/textfield.mjs delete mode 100644 locale/nb/textfield.po delete mode 100644 locale/nb/toast.mjs delete mode 100644 locale/nb/toast.po delete mode 100644 locale/nb/utils.mjs delete mode 100644 locale/nb/utils.po diff --git a/.linguirc b/.linguirc index 87006a55..d4dedaf7 100644 --- a/.linguirc +++ b/.linguirc @@ -1,7 +1,21 @@ { "catalogs": [{ "path": "locale/{locale}/{name}", - "include": ["packages/{name}/"] + "include": ["packages/{name}/"], + "exclude": [ + "packages/affix", + "packages/attention", + "packages/box", + "packages/breadcrumbs", + "packages/broadcast", + "packages/button", + "packages/card", + "packages/expandable", + "packages/select", + "packages/textfield", + "packages/toast", + "packages/utils" + ] }], "compileNamespace": "es", "format": "po", diff --git a/locale/en/affix.mjs b/locale/en/affix.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/affix.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/affix.po b/locale/en/affix.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/affix.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/attention.mjs b/locale/en/attention.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/attention.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/attention.po b/locale/en/attention.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/attention.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/box.mjs b/locale/en/box.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/box.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/box.po b/locale/en/box.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/box.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/breadcrumbs.mjs b/locale/en/breadcrumbs.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/breadcrumbs.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/breadcrumbs.po b/locale/en/breadcrumbs.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/breadcrumbs.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/broadcast.mjs b/locale/en/broadcast.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/broadcast.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/broadcast.po b/locale/en/broadcast.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/broadcast.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/button.mjs b/locale/en/button.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/button.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/button.po b/locale/en/button.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/button.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/card.mjs b/locale/en/card.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/card.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/card.po b/locale/en/card.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/card.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/expandable.mjs b/locale/en/expandable.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/expandable.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/expandable.po b/locale/en/expandable.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/expandable.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/select.mjs b/locale/en/select.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/select.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/select.po b/locale/en/select.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/select.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/textfield.mjs b/locale/en/textfield.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/textfield.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/textfield.po b/locale/en/textfield.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/textfield.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/toast.mjs b/locale/en/toast.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/toast.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/toast.po b/locale/en/toast.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/toast.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/en/utils.mjs b/locale/en/utils.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/en/utils.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/en/utils.po b/locale/en/utils.po deleted file mode 100644 index eb8c6ad4..00000000 --- a/locale/en/utils.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: en\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/affix.mjs b/locale/fi/affix.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/affix.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/affix.po b/locale/fi/affix.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/affix.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/attention.mjs b/locale/fi/attention.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/attention.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/attention.po b/locale/fi/attention.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/attention.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/box.mjs b/locale/fi/box.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/box.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/box.po b/locale/fi/box.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/box.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/breadcrumbs.mjs b/locale/fi/breadcrumbs.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/breadcrumbs.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/breadcrumbs.po b/locale/fi/breadcrumbs.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/breadcrumbs.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/broadcast.mjs b/locale/fi/broadcast.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/broadcast.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/broadcast.po b/locale/fi/broadcast.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/broadcast.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/button.mjs b/locale/fi/button.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/button.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/button.po b/locale/fi/button.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/button.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/card.mjs b/locale/fi/card.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/card.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/card.po b/locale/fi/card.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/card.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/expandable.mjs b/locale/fi/expandable.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/expandable.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/expandable.po b/locale/fi/expandable.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/expandable.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/select.mjs b/locale/fi/select.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/select.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/select.po b/locale/fi/select.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/select.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/textfield.mjs b/locale/fi/textfield.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/textfield.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/textfield.po b/locale/fi/textfield.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/textfield.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/toast.mjs b/locale/fi/toast.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/toast.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/toast.po b/locale/fi/toast.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/toast.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/fi/utils.mjs b/locale/fi/utils.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/fi/utils.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/fi/utils.po b/locale/fi/utils.po deleted file mode 100644 index 3e6fb136..00000000 --- a/locale/fi/utils.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: fi\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/affix.mjs b/locale/nb/affix.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/affix.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/affix.po b/locale/nb/affix.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/affix.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/attention.mjs b/locale/nb/attention.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/attention.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/attention.po b/locale/nb/attention.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/attention.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/box.mjs b/locale/nb/box.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/box.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/box.po b/locale/nb/box.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/box.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/breadcrumbs.mjs b/locale/nb/breadcrumbs.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/breadcrumbs.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/breadcrumbs.po b/locale/nb/breadcrumbs.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/breadcrumbs.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/broadcast.mjs b/locale/nb/broadcast.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/broadcast.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/broadcast.po b/locale/nb/broadcast.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/broadcast.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/button.mjs b/locale/nb/button.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/button.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/button.po b/locale/nb/button.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/button.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/card.mjs b/locale/nb/card.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/card.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/card.po b/locale/nb/card.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/card.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/expandable.mjs b/locale/nb/expandable.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/expandable.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/expandable.po b/locale/nb/expandable.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/expandable.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/select.mjs b/locale/nb/select.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/select.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/select.po b/locale/nb/select.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/select.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/textfield.mjs b/locale/nb/textfield.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/textfield.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/textfield.po b/locale/nb/textfield.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/textfield.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/toast.mjs b/locale/nb/toast.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/toast.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/toast.po b/locale/nb/toast.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/toast.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n" diff --git a/locale/nb/utils.mjs b/locale/nb/utils.mjs deleted file mode 100644 index f6cc24e1..00000000 --- a/locale/nb/utils.mjs +++ /dev/null @@ -1 +0,0 @@ -/*eslint-disable*/export const messages=JSON.parse("{}"); \ No newline at end of file diff --git a/locale/nb/utils.po b/locale/nb/utils.po deleted file mode 100644 index da2879b6..00000000 --- a/locale/nb/utils.po +++ /dev/null @@ -1,14 +0,0 @@ -msgid "" -msgstr "" -"POT-Creation-Date: 2023-03-27 10:38+0200\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: @lingui/cli\n" -"Language: nb\n" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: \n" -"Last-Translator: \n" -"Language-Team: \n" -"Plural-Forms: \n"