ra-language-finnish 5.2.1 → 5.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/index.js CHANGED
@@ -56,6 +56,8 @@ var finnishMessages = {
56
56
  show: '%{name} %{recordRepresentation}',
57
57
  empty: 'Kohteessa %{name} ei ole sisältöä.',
58
58
  invite: 'Haluako lisätä ensimmäisen?',
59
+ access_denied: 'Pääsy estetty',
60
+ authentication_error: 'Autentikointivirhe',
59
61
  },
60
62
  input: {
61
63
  file: {
@@ -95,6 +97,8 @@ var finnishMessages = {
95
97
  not_found: 'Kirjoitit viallisen osoitteen tai seurasit viallista linkkiä.',
96
98
  yes: 'Kyllä',
97
99
  unsaved_changes: 'Joitakin muutoksia ei ole tallennettu. Haluatko varmasti hylätä ne?',
100
+ access_denied: 'Sinulla ei ole oikeuksia katsoa tätä sivua',
101
+ authentication_error: 'Autentikointipalvelin palautti virheen eikä tunnuksiasi voitu tarkistaa',
98
102
  },
99
103
  navigation: {
100
104
  clear_filters: 'Tyhjennä suodattimet',
package/lib/index.js CHANGED
@@ -58,6 +58,8 @@ var finnishMessages = {
58
58
  show: '%{name} %{recordRepresentation}',
59
59
  empty: 'Kohteessa %{name} ei ole sisältöä.',
60
60
  invite: 'Haluako lisätä ensimmäisen?',
61
+ access_denied: 'Pääsy estetty',
62
+ authentication_error: 'Autentikointivirhe',
61
63
  },
62
64
  input: {
63
65
  file: {
@@ -97,6 +99,8 @@ var finnishMessages = {
97
99
  not_found: 'Kirjoitit viallisen osoitteen tai seurasit viallista linkkiä.',
98
100
  yes: 'Kyllä',
99
101
  unsaved_changes: 'Joitakin muutoksia ei ole tallennettu. Haluatko varmasti hylätä ne?',
102
+ access_denied: 'Sinulla ei ole oikeuksia katsoa tätä sivua',
103
+ authentication_error: 'Autentikointipalvelin palautti virheen eikä tunnuksiasi voitu tarkistaa',
100
104
  },
101
105
  navigation: {
102
106
  clear_filters: 'Tyhjennä suodattimet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ra-language-finnish",
3
- "version": "5.2.1",
3
+ "version": "5.3.4",
4
4
  "description": "Finnish messages for react-admin, the frontend Framework for building B2B applications running in the browser on top of REST/GraphQL APIs, using ES6, React and Material Design",
5
5
  "repository": {
6
6
  "type": "git",
@@ -19,16 +19,17 @@
19
19
  "build": "yarn run build-cjs && yarn run build-esm",
20
20
  "build-cjs": "rimraf ./lib && tsc",
21
21
  "build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
22
+ "ts:check": "tsc --noemit",
22
23
  "prettier": "prettier --write src",
23
24
  "watch": "tsc --outDir esm --module es2015 --watch"
24
25
  },
25
26
  "dependencies": {
26
- "ra-core": "^5.2.1"
27
+ "ra-core": "^5.3.4"
27
28
  },
28
29
  "devDependencies": {
29
30
  "prettier": "3.3.3",
30
31
  "rimraf": "^6.0.1",
31
- "typescript": "^5.6.2"
32
+ "typescript": "^5.6.3"
32
33
  },
33
34
  "keywords": [
34
35
  "react-admin",
@@ -42,5 +43,5 @@
42
43
  "url": "https://github.com/Aikain/ra-language-finnish/issues"
43
44
  },
44
45
  "homepage": "https://github.com/Aikain/ra-language-finnish#readme",
45
- "packageManager": "yarn@4.5.0"
46
+ "packageManager": "yarn@4.5.1"
46
47
  }
package/src/index.ts CHANGED
@@ -58,6 +58,8 @@ const finnishMessages: TranslationMessages = {
58
58
  show: '%{name} %{recordRepresentation}',
59
59
  empty: 'Kohteessa %{name} ei ole sisältöä.',
60
60
  invite: 'Haluako lisätä ensimmäisen?',
61
+ access_denied: 'Pääsy estetty',
62
+ authentication_error: 'Autentikointivirhe',
61
63
  },
62
64
  input: {
63
65
  file: {
@@ -99,6 +101,8 @@ const finnishMessages: TranslationMessages = {
99
101
  not_found: 'Kirjoitit viallisen osoitteen tai seurasit viallista linkkiä.',
100
102
  yes: 'Kyllä',
101
103
  unsaved_changes: 'Joitakin muutoksia ei ole tallennettu. Haluatko varmasti hylätä ne?',
104
+ access_denied: 'Sinulla ei ole oikeuksia katsoa tätä sivua',
105
+ authentication_error: 'Autentikointipalvelin palautti virheen eikä tunnuksiasi voitu tarkistaa',
102
106
  },
103
107
  navigation: {
104
108
  clear_filters: 'Tyhjennä suodattimet',