@steedos/service-i18n 2.2.55-beta.7

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/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Steedos Licensing
2
+
3
+ SOFTWARE LICENSING
4
+
5
+ To determine under which license you may use a file from the Steedos source code,
6
+ please resort to the header of that file.
7
+
8
+ If the file has no header, the following rules apply
9
+ 1. enterprise features are licensed under Steedos Enterprise Terms, see License.enterprise.txt
10
+ 2. source code that is neither (1) is licensed under MIT, see https://opensource.org/licenses/MIT
11
+
12
+ On request, licenses under different terms are available.
13
+
14
+ Source code of enterprise features are files that
15
+ * are in folders named "ee" or start with "ee_", or in subfolders of such folders.
16
+ * contain the strings "ee_" in its filename name.
17
+ The files can be found by running the command `find . -iname ee -or -iname "*_ee*" -or -iname "*ee_*"`
18
+
19
+ STEEDOS TRADEMARK GUIDELINES
20
+
21
+ Your use of the mark Steedos is subject to Steedos, Inc's prior written approval. For trademark approval or any questions
22
+ you have about using these trademarks, please email zhuangjianguo@steedos.com
@@ -0,0 +1,4 @@
1
+ CustomLabels:
2
+ frontend_field_group_generalization: Generalization
3
+ frontend_form_save: Save
4
+ frontend_form_cancel: Cancel
@@ -0,0 +1,4 @@
1
+ CustomLabels:
2
+ frontend_field_group_generalization: 通用
3
+ frontend_form_save: 保存
4
+ frontend_form_cancel: 取消
@@ -0,0 +1,6 @@
1
+ CustomLabels:
2
+ save: Save
3
+ cancel: Cancel
4
+ apply: Apply
5
+ asc: Asc
6
+ desc: Desc
@@ -0,0 +1,6 @@
1
+ CustomLabels:
2
+ save: 保存
3
+ cancel: 取消
4
+ apply: 应用
5
+ asc: 正序
6
+ desc: 降序
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@steedos/service-i18n",
3
+ "main": "package.service.js",
4
+ "version": "2.2.55-beta.7",
5
+ "private": false,
6
+ "repository": "https://github.com/steedos/steedos-platform.git",
7
+ "description": "",
8
+ "engines": {
9
+ "node": ">=12"
10
+ },
11
+ "author": "steedos",
12
+ "license": "MIT",
13
+ "homepage": "https://www.steedos.com",
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "gitHead": "b1b7e6baca92332ddd815ec6869461751d1d6778"
18
+ }
@@ -0,0 +1,77 @@
1
+ /*
2
+ * @Author: yinlianghui@steedos.com
3
+ * @Date: 2022-07-26 11:45:49
4
+ * @LastEditors: yinlianghui@steedos.com
5
+ * @LastEditTime: 2022-07-26 15:05:15
6
+ * @Description:
7
+ */
8
+ "use strict";
9
+ const project = require('./package.json');
10
+ const packageName = project.name;
11
+ const packageLoader = require('@steedos/service-package-loader');
12
+ /**
13
+ * @typedef {import('moleculer').Context} Context Moleculer's Context
14
+ * 软件包服务启动后也需要抛出事件。
15
+ */
16
+ module.exports = {
17
+ name: packageName,
18
+ namespace: "steedos",
19
+ mixins: [packageLoader],
20
+ /**
21
+ * Settings
22
+ */
23
+ settings: {
24
+ packageInfo: {
25
+ path: __dirname,
26
+ name: packageName,
27
+ isPackage: false
28
+ }
29
+ },
30
+
31
+ /**
32
+ * Dependencies
33
+ */
34
+ dependencies: [],
35
+
36
+ /**
37
+ * Actions
38
+ */
39
+ actions: {
40
+
41
+ },
42
+
43
+ /**
44
+ * Events
45
+ */
46
+ events: {
47
+
48
+ },
49
+
50
+ /**
51
+ * Methods
52
+ */
53
+ methods: {
54
+
55
+ },
56
+
57
+ /**
58
+ * Service created lifecycle event handler
59
+ */
60
+ async created() {
61
+
62
+ },
63
+
64
+ /**
65
+ * Service started lifecycle event handler
66
+ */
67
+ async started() {
68
+
69
+ },
70
+
71
+ /**
72
+ * Service stopped lifecycle event handler
73
+ */
74
+ async stopped() {
75
+
76
+ }
77
+ };