ra-language-finnish 5.10.1 → 5.12.1
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 +2 -0
- package/lib/index.js +2 -0
- package/package.json +46 -46
- package/src/index.ts +2 -0
package/esm/index.js
CHANGED
|
@@ -20,6 +20,7 @@ var finnishMessages = {
|
|
|
20
20
|
remove_filter: 'Poista suodatin',
|
|
21
21
|
remove_all_filters: 'Poista kaikki suodattimet',
|
|
22
22
|
remove: 'Poista',
|
|
23
|
+
reset: 'Nollaa',
|
|
23
24
|
save: 'Tallenna',
|
|
24
25
|
search: 'Etsi',
|
|
25
26
|
search_columns: 'Hae sarakkeista',
|
|
@@ -151,6 +152,7 @@ var finnishMessages = {
|
|
|
151
152
|
logged_out: 'Istuntosi on päättynyt, ole hyvä kirjaudu uudelleen.',
|
|
152
153
|
not_authorized: 'Sinulla ei ole lupaa käyttää tätä resurssia.',
|
|
153
154
|
application_update_available: 'Uusi versio saatavilla.',
|
|
155
|
+
offline: 'Ei yhteyttä. Tietoja ei voitu hakea.',
|
|
154
156
|
},
|
|
155
157
|
validation: {
|
|
156
158
|
required: 'Pakollinen',
|
package/lib/index.js
CHANGED
|
@@ -22,6 +22,7 @@ var finnishMessages = {
|
|
|
22
22
|
remove_filter: 'Poista suodatin',
|
|
23
23
|
remove_all_filters: 'Poista kaikki suodattimet',
|
|
24
24
|
remove: 'Poista',
|
|
25
|
+
reset: 'Nollaa',
|
|
25
26
|
save: 'Tallenna',
|
|
26
27
|
search: 'Etsi',
|
|
27
28
|
search_columns: 'Hae sarakkeista',
|
|
@@ -153,6 +154,7 @@ var finnishMessages = {
|
|
|
153
154
|
logged_out: 'Istuntosi on päättynyt, ole hyvä kirjaudu uudelleen.',
|
|
154
155
|
not_authorized: 'Sinulla ei ole lupaa käyttää tätä resurssia.',
|
|
155
156
|
application_update_available: 'Uusi versio saatavilla.',
|
|
157
|
+
offline: 'Ei yhteyttä. Tietoja ei voitu hakea.',
|
|
156
158
|
},
|
|
157
159
|
validation: {
|
|
158
160
|
required: 'Pakollinen',
|
package/package.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
}
|
|
2
|
+
"name": "ra-language-finnish",
|
|
3
|
+
"version": "5.12.1",
|
|
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
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/Aikain/ra-language-finnish.git"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"*.md",
|
|
11
|
+
"lib",
|
|
12
|
+
"esm",
|
|
13
|
+
"src"
|
|
14
|
+
],
|
|
15
|
+
"main": "lib/index.js",
|
|
16
|
+
"module": "esm/index.js",
|
|
17
|
+
"types": "esm/index.d.ts",
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "yarn run build-cjs && yarn run build-esm",
|
|
20
|
+
"build-cjs": "rimraf ./lib && tsc",
|
|
21
|
+
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
|
|
22
|
+
"ts:check": "tsc --noemit",
|
|
23
|
+
"prettier": "prettier --write src",
|
|
24
|
+
"watch": "tsc --outDir esm --module es2015 --watch"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"ra-core": "^5.12.1"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"prettier": "3.6.2",
|
|
31
|
+
"rimraf": "^6.0.1",
|
|
32
|
+
"typescript": "^5.9.3"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"react-admin",
|
|
36
|
+
"finnish",
|
|
37
|
+
"translation",
|
|
38
|
+
"ra-language-finnish"
|
|
39
|
+
],
|
|
40
|
+
"author": "Ville Nupponen <ville.nupponen@aika.in>",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/Aikain/ra-language-finnish/issues"
|
|
44
|
+
},
|
|
45
|
+
"homepage": "https://github.com/Aikain/ra-language-finnish#readme",
|
|
46
|
+
"packageManager": "yarn@4.10.3"
|
|
47
|
+
}
|
package/src/index.ts
CHANGED
|
@@ -22,6 +22,7 @@ const finnishMessages: TranslationMessages = {
|
|
|
22
22
|
remove_filter: 'Poista suodatin',
|
|
23
23
|
remove_all_filters: 'Poista kaikki suodattimet',
|
|
24
24
|
remove: 'Poista',
|
|
25
|
+
reset: 'Nollaa',
|
|
25
26
|
save: 'Tallenna',
|
|
26
27
|
search: 'Etsi',
|
|
27
28
|
search_columns: 'Hae sarakkeista',
|
|
@@ -156,6 +157,7 @@ const finnishMessages: TranslationMessages = {
|
|
|
156
157
|
logged_out: 'Istuntosi on päättynyt, ole hyvä kirjaudu uudelleen.',
|
|
157
158
|
not_authorized: 'Sinulla ei ole lupaa käyttää tätä resurssia.',
|
|
158
159
|
application_update_available: 'Uusi versio saatavilla.',
|
|
160
|
+
offline: 'Ei yhteyttä. Tietoja ei voitu hakea.',
|
|
159
161
|
},
|
|
160
162
|
validation: {
|
|
161
163
|
required: 'Pakollinen',
|