eclipsefdn-hugo-solstice-theme 0.0.155 → 0.0.158
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/exampleSite/content/components/agenda.md +26 -15
- package/exampleSite/content/event/_index.md +9 -0
- package/exampleSite/data/en/default/agenda.yml +5 -2
- package/exampleSite/data/en/organization/agenda.yml +35 -0
- package/i18n/de.toml +3 -0
- package/i18n/en.toml +39 -35
- package/i18n/es.toml +30 -27
- package/i18n/jp.toml +31 -28
- package/i18n/pt.toml +30 -27
- package/i18n/ru.toml +38 -35
- package/i18n/tr.toml +4 -1
- package/i18n/zh.toml +47 -44
- package/layouts/partials/breadcrumbs.html +2 -2
- package/layouts/partials/head.html +3 -0
- package/layouts/partials/main_prefix.html +9 -3
- package/layouts/shortcodes/events/agenda.html +47 -19
- package/layouts/shortcodes/newsroom/resources.html +10 -0
- package/package.json +2 -2
|
@@ -4,7 +4,7 @@ container: "container-fluid"
|
|
|
4
4
|
hide_sidebar: true
|
|
5
5
|
---
|
|
6
6
|
|
|
7
|
-
Agendas can be added to the site through an `agenda.yaml` data file added in a subfolder of the data folder for the target locale (for localization, for default, create/use the "en" folder). An example of this path is as follows, `data/en/agenda.yaml`. The data should be similar to the following format:
|
|
7
|
+
Agendas can be added to the site through an `agenda.yaml` data file added in a subfolder of the data folder for the target locale (for localization, for default, create/use the "en" folder). An example of this path is as follows, `data/en/agenda.yaml`. The data should be similar to the following format:
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
```
|
|
@@ -14,7 +14,7 @@ types:
|
|
|
14
14
|
id: 1
|
|
15
15
|
color: "#e44"
|
|
16
16
|
- name: Keynote
|
|
17
|
-
id: b2
|
|
17
|
+
id: b2
|
|
18
18
|
color: "#a0a"
|
|
19
19
|
|
|
20
20
|
items:
|
|
@@ -39,7 +39,7 @@ items:
|
|
|
39
39
|
type: break
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
Types represent the different types of sessions being held at the event. Normally creating the CSS for these types will be created automatically on render based on the `color` passed in the data file. If no color is set, no CSS would be generated for the type. Additionally, a new CSS rule may be added via custom code. This rule should resemble the following, replacing `<id>` with the `id` value set in the type and `<color>` with a hex color code:
|
|
42
|
+
Types represent the different types of sessions being held at the event. Normally creating the CSS for these types will be created automatically on render based on the `color` passed in the data file. If no color is set, no CSS would be generated for the type. Additionally, a new CSS rule may be added via custom code. This rule should resemble the following, replacing `<id>` with the `id` value set in the type and `<color>` with a hex color code:
|
|
43
43
|
|
|
44
44
|
```
|
|
45
45
|
.eclipsefdn-agenda-legend-icon-<id>::after {
|
|
@@ -47,43 +47,43 @@ Types represent the different types of sessions being held at the event. Normall
|
|
|
47
47
|
}
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
Items in these data files represent the actual sessions to be represented in the agenda.
|
|
50
|
+
Items in these data files represent the actual sessions to be represented in the agenda.
|
|
51
51
|
|
|
52
52
|
**Note:** a modal is required on the page if an abstract has been defined within the agenda:
|
|
53
53
|
|
|
54
54
|
{{< bootstrap/modal id="eclipsefdn-modal-event-session" >}}
|
|
55
|
-
|
|
55
|
+
|
|
56
56
|
|
|
57
57
|
---
|
|
58
58
|
|
|
59
|
-
## Basic
|
|
59
|
+
## Basic
|
|
60
60
|
|
|
61
|
-
Targets ./data/en/default/agenda.yaml:
|
|
61
|
+
Targets ./data/en/default/agenda.yaml:
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
{{< events/agenda >}}
|
|
65
65
|
|
|
66
66
|
---
|
|
67
67
|
|
|
68
|
-
## Different file name
|
|
68
|
+
## Different file name
|
|
69
69
|
|
|
70
|
-
Targets ./data/en/default/day_2.yaml:
|
|
70
|
+
Targets ./data/en/default/day_2.yaml:
|
|
71
71
|
|
|
72
72
|
|
|
73
73
|
{{< events/agenda src="day_2">}}
|
|
74
74
|
|
|
75
|
-
---
|
|
75
|
+
---
|
|
76
76
|
|
|
77
77
|
## Custom Title
|
|
78
78
|
|
|
79
|
-
Targets ./data/en/default/day_2.yaml:
|
|
79
|
+
Targets ./data/en/default/day_2.yaml:
|
|
80
80
|
|
|
81
81
|
|
|
82
82
|
{{< events/agenda title="Day 2 Agenda" src="day_2">}}
|
|
83
83
|
|
|
84
84
|
---
|
|
85
85
|
|
|
86
|
-
## Sub-site version
|
|
86
|
+
## Sub-site version
|
|
87
87
|
|
|
88
88
|
Targets ./data/en/sample/agenda.yaml:
|
|
89
89
|
|
|
@@ -92,7 +92,7 @@ Targets ./data/en/sample/agenda.yaml:
|
|
|
92
92
|
|
|
93
93
|
---
|
|
94
94
|
|
|
95
|
-
## No session types
|
|
95
|
+
## No session types
|
|
96
96
|
|
|
97
97
|
Targets ./data/en/no_types/agenda.yaml:
|
|
98
98
|
|
|
@@ -113,13 +113,13 @@ Adding a "times" list into the items in agenda.yaml above will show multiple tim
|
|
|
113
113
|
|
|
114
114
|
## Dynamic time based on user's timezone
|
|
115
115
|
|
|
116
|
-
Targets ./data/en/active/agenda_dynamic_time.yaml:
|
|
116
|
+
Targets ./data/en/active/agenda_dynamic_time.yaml:
|
|
117
117
|
|
|
118
118
|
Set "dynamicTime" property to true to enable dynamic time.
|
|
119
119
|
|
|
120
120
|
If "timezone" is not set, it will take "GMT-04" as the default value. If the timezone for input time is different, please add it and set the value in this format: GMT-[xx] or GMT+[xx].
|
|
121
121
|
|
|
122
|
-
The output timezone will always be the user's timezone.
|
|
122
|
+
The output timezone will always be the user's timezone.
|
|
123
123
|
|
|
124
124
|
{{< events/agenda event="active" src="agenda_dynamic_time">}}
|
|
125
125
|
|
|
@@ -154,3 +154,14 @@ Targets ./data/en/multistream/agenda.yaml:
|
|
|
154
154
|
|
|
155
155
|
{{< bootstrap/modal id="eclipsefdn-modal-event-session" >}}
|
|
156
156
|
|
|
157
|
+
---
|
|
158
|
+
|
|
159
|
+
## Agenda w/ Organization field
|
|
160
|
+
|
|
161
|
+
Targets ./data/en/organization/agenda.yaml:
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
{{< events/agenda event="organization">}}
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
{{< bootstrap/modal id="eclipsefdn-modal-event-session" >}}
|
|
@@ -4,22 +4,24 @@ types:
|
|
|
4
4
|
id: 1
|
|
5
5
|
color: "#e44"
|
|
6
6
|
- name: Keynote
|
|
7
|
-
id: b2
|
|
7
|
+
id: b2
|
|
8
8
|
color: "#a0a"
|
|
9
9
|
- name: Cloud
|
|
10
|
-
id: 3
|
|
10
|
+
id: 3
|
|
11
11
|
color: "#66e"
|
|
12
12
|
|
|
13
13
|
items:
|
|
14
14
|
- name: Open-source software
|
|
15
15
|
presenter: Ken K.
|
|
16
16
|
abstract: "<p>Sample abstract <a href='#'>Sample link</a></p>"
|
|
17
|
+
organization: test 1
|
|
17
18
|
type: 1
|
|
18
19
|
vod: "#1"
|
|
19
20
|
- name: How to 'how to'
|
|
20
21
|
presenter: Jim Bob
|
|
21
22
|
type: b2
|
|
22
23
|
vod: "#2"
|
|
24
|
+
organization: test 2
|
|
23
25
|
- name: Industry Keynote
|
|
24
26
|
presenter: Eclipse Foundation, .etc
|
|
25
27
|
type: b2
|
|
@@ -28,5 +30,6 @@ items:
|
|
|
28
30
|
presenter: Adam A.
|
|
29
31
|
type: 3
|
|
30
32
|
vod: "#4"
|
|
33
|
+
organization: test 3
|
|
31
34
|
- name: Lunch Break
|
|
32
35
|
type: break
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
complete: true
|
|
2
|
+
types:
|
|
3
|
+
- name: Demo
|
|
4
|
+
id: 1
|
|
5
|
+
color: "#e44"
|
|
6
|
+
- name: Keynote
|
|
7
|
+
id: b2
|
|
8
|
+
color: "#a0a"
|
|
9
|
+
- name: Cloud
|
|
10
|
+
id: 3
|
|
11
|
+
color: "#66e"
|
|
12
|
+
|
|
13
|
+
items:
|
|
14
|
+
- name: Open-source software
|
|
15
|
+
presenter: Ken K.
|
|
16
|
+
abstract: "<p>Sample abstract <a href='#'>Sample link</a></p>"
|
|
17
|
+
organization: test 1
|
|
18
|
+
type: 1
|
|
19
|
+
vod: "#1"
|
|
20
|
+
- name: How to 'how to'
|
|
21
|
+
presenter: Jim Bob
|
|
22
|
+
type: b2
|
|
23
|
+
vod: "#2"
|
|
24
|
+
organization: test 2
|
|
25
|
+
- name: Industry Keynote
|
|
26
|
+
presenter: Eclipse Foundation, .etc
|
|
27
|
+
type: b2
|
|
28
|
+
vod: "#3"
|
|
29
|
+
- name: Best practices for Interneting your Things
|
|
30
|
+
presenter: Adam A.
|
|
31
|
+
type: 3
|
|
32
|
+
vod: "#4"
|
|
33
|
+
organization: test 3
|
|
34
|
+
- name: Lunch Break
|
|
35
|
+
type: break
|
package/i18n/de.toml
CHANGED
package/i18n/en.toml
CHANGED
|
@@ -1,93 +1,93 @@
|
|
|
1
1
|
[eclipse-foundation-text]
|
|
2
2
|
other = "Eclipse Foundation"
|
|
3
|
-
|
|
3
|
+
|
|
4
4
|
[navbar-manage-cookies-label]
|
|
5
5
|
other = "Manage Cookies"
|
|
6
|
-
|
|
6
|
+
|
|
7
7
|
[navbar-edit-acccount-label]
|
|
8
8
|
other = "Edit my account"
|
|
9
|
-
|
|
9
|
+
|
|
10
10
|
[footer-foundation-about-us-text]
|
|
11
11
|
other = "About Us"
|
|
12
|
-
|
|
12
|
+
|
|
13
13
|
[footer-foundation-contact-us-text]
|
|
14
14
|
other = "Contact Us"
|
|
15
|
-
|
|
15
|
+
|
|
16
16
|
[footer-foundation-donate-text]
|
|
17
17
|
other = "Donate"
|
|
18
18
|
|
|
19
19
|
[footer-foundation-members-text]
|
|
20
20
|
other = "Members"
|
|
21
|
-
|
|
21
|
+
|
|
22
22
|
[footer-foundation-governance-text]
|
|
23
23
|
other = "Governance"
|
|
24
|
-
|
|
24
|
+
|
|
25
25
|
[footer-foundation-code-of-conduct-text]
|
|
26
26
|
other = "Code of Conduct"
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
[footer-foundation-logo-artwork-text]
|
|
29
29
|
other = "Logo and Artwork"
|
|
30
|
-
|
|
30
|
+
|
|
31
31
|
[footer-foundation-board-of-directors-text]
|
|
32
32
|
other = "Board of Directors"
|
|
33
|
-
|
|
33
|
+
|
|
34
34
|
[footer-legal-section-text]
|
|
35
35
|
other = "Legal"
|
|
36
|
-
|
|
36
|
+
|
|
37
37
|
[footer-legal-privacy-policy-text]
|
|
38
38
|
other = "Privacy Policy"
|
|
39
|
-
|
|
39
|
+
|
|
40
40
|
[footer-legal-terms-use-text]
|
|
41
41
|
other = "Terms of Use"
|
|
42
|
-
|
|
42
|
+
|
|
43
43
|
[footer-legal-copyright-agent-text]
|
|
44
44
|
other = "Copyright Agent"
|
|
45
|
-
|
|
45
|
+
|
|
46
46
|
[footer-legal-epl-text]
|
|
47
47
|
other = "Eclipse Public License"
|
|
48
|
-
|
|
48
|
+
|
|
49
49
|
[footer-legal-resources-text]
|
|
50
50
|
other = "Legal Resources"
|
|
51
|
-
|
|
51
|
+
|
|
52
52
|
[footer-useful-links-section-text]
|
|
53
53
|
other = "Useful Links"
|
|
54
|
-
|
|
54
|
+
|
|
55
55
|
[footer-useful-links-report-bug-text]
|
|
56
56
|
other = "Report a Bug"
|
|
57
|
-
|
|
57
|
+
|
|
58
58
|
[footer-useful-links-documentation-text]
|
|
59
59
|
other = "Documentation"
|
|
60
|
-
|
|
60
|
+
|
|
61
61
|
[footer-useful-links-contribute-text]
|
|
62
62
|
other = "How to Contribute"
|
|
63
|
-
|
|
63
|
+
|
|
64
64
|
[footer-useful-links-mailing-list-text]
|
|
65
65
|
other = "Mailing Lists"
|
|
66
|
-
|
|
66
|
+
|
|
67
67
|
[footer-useful-links-forums-text]
|
|
68
68
|
other = "Forums"
|
|
69
|
-
|
|
69
|
+
|
|
70
70
|
[footer-useful-links-marketplace-text]
|
|
71
71
|
other = "Marketplace"
|
|
72
|
-
|
|
72
|
+
|
|
73
73
|
[footer-other-section-text]
|
|
74
74
|
other = "Other"
|
|
75
|
-
|
|
75
|
+
|
|
76
76
|
[footer-other-tools-text]
|
|
77
77
|
other = "IDE and Tools"
|
|
78
|
-
|
|
78
|
+
|
|
79
79
|
[footer-other-community-projects-text]
|
|
80
80
|
other = "Projects"
|
|
81
|
-
|
|
81
|
+
|
|
82
82
|
[footer-other-working-groups-text]
|
|
83
83
|
other = "Working Groups"
|
|
84
|
-
|
|
84
|
+
|
|
85
85
|
[footer-other-research-text]
|
|
86
86
|
other = "Research@Eclipse"
|
|
87
|
-
|
|
87
|
+
|
|
88
88
|
[footer-other-report-vulnerability-text]
|
|
89
89
|
other = "Report a Vulnerability"
|
|
90
|
-
|
|
90
|
+
|
|
91
91
|
[footer-other-status-text]
|
|
92
92
|
other = "Service Status"
|
|
93
93
|
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
|
|
139
139
|
[navigation-more-community-blogs-label]
|
|
140
140
|
other = "Blogs"
|
|
141
|
-
|
|
141
|
+
|
|
142
142
|
[navigation-more-participate-section]
|
|
143
143
|
other = "Participate"
|
|
144
144
|
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
|
|
184
184
|
[footer-copyright-text]
|
|
185
185
|
other = "Copyright © Eclipse Foundation. All Rights Reserved."
|
|
186
|
-
|
|
186
|
+
|
|
187
187
|
[search-section-label]
|
|
188
188
|
other = "Search"
|
|
189
189
|
|
|
@@ -270,19 +270,19 @@
|
|
|
270
270
|
|
|
271
271
|
[faq-list-heading]
|
|
272
272
|
other = "Table of contents"
|
|
273
|
-
|
|
273
|
+
|
|
274
274
|
[project-list-logo-alt]
|
|
275
275
|
other = "{{ .name }} logo"
|
|
276
276
|
|
|
277
277
|
[project-list-read-more-sr]
|
|
278
278
|
other = "Read more about {{ .name }}"
|
|
279
|
-
|
|
279
|
+
|
|
280
280
|
[project-list-read-more]
|
|
281
281
|
other = "Read more..."
|
|
282
282
|
|
|
283
283
|
[project-list-dropdown-sr]
|
|
284
284
|
other = "Toggle dropdown"
|
|
285
|
-
|
|
285
|
+
|
|
286
286
|
[project-list-downloads]
|
|
287
287
|
other = "Download"
|
|
288
288
|
|
|
@@ -316,6 +316,10 @@ other = "Session Name"
|
|
|
316
316
|
[agenda-presenter-name]
|
|
317
317
|
other = "Presenter Name"
|
|
318
318
|
|
|
319
|
+
|
|
320
|
+
[agenda-organization]
|
|
321
|
+
other = "Organization"
|
|
322
|
+
|
|
319
323
|
[agenda-session-recording]
|
|
320
324
|
other = "Session Recording"
|
|
321
325
|
|
|
@@ -347,4 +351,4 @@ other = "Sponsors"
|
|
|
347
351
|
other = "logo"
|
|
348
352
|
|
|
349
353
|
[modal-close-alt]
|
|
350
|
-
other = "Close"
|
|
354
|
+
other = "Close"
|
package/i18n/es.toml
CHANGED
|
@@ -31,6 +31,9 @@ other = "Nombre de la sesión"
|
|
|
31
31
|
[agenda-presenter-name]
|
|
32
32
|
other = "Nombre del presentador"
|
|
33
33
|
|
|
34
|
+
[agenda-organization]
|
|
35
|
+
other = "Organization"
|
|
36
|
+
|
|
34
37
|
[agenda-session-recording]
|
|
35
38
|
other = "Grabación de la sesión"
|
|
36
39
|
|
|
@@ -78,85 +81,85 @@ other = "Aprende más"
|
|
|
78
81
|
|
|
79
82
|
[navbar-manage-cookies-label]
|
|
80
83
|
other = "Administrar cookies"
|
|
81
|
-
|
|
84
|
+
|
|
82
85
|
[navbar-edit-acccount-label]
|
|
83
86
|
other = "Editar mi cuenta"
|
|
84
|
-
|
|
87
|
+
|
|
85
88
|
[footer-foundation-about-us-text]
|
|
86
89
|
other = "Sobre Nosotros"
|
|
87
|
-
|
|
90
|
+
|
|
88
91
|
[footer-foundation-contact-us-text]
|
|
89
92
|
other = "Contacta con nosotros"
|
|
90
|
-
|
|
93
|
+
|
|
91
94
|
[footer-foundation-donate-text]
|
|
92
95
|
other = "Donar"
|
|
93
|
-
|
|
96
|
+
|
|
94
97
|
[footer-foundation-governance-text]
|
|
95
98
|
other = "Gobernancia"
|
|
96
|
-
|
|
99
|
+
|
|
97
100
|
[footer-foundation-logo-artwork-text]
|
|
98
101
|
other = "Logo y Artwork"
|
|
99
|
-
|
|
102
|
+
|
|
100
103
|
[footer-foundation-board-of-directors-text]
|
|
101
104
|
other = "Junta Directiva"
|
|
102
|
-
|
|
105
|
+
|
|
103
106
|
[footer-legal-section-text]
|
|
104
107
|
other = "Legal"
|
|
105
|
-
|
|
108
|
+
|
|
106
109
|
[footer-legal-privacy-policy-text]
|
|
107
110
|
other = "Política de Privacidad"
|
|
108
|
-
|
|
111
|
+
|
|
109
112
|
[footer-legal-terms-use-text]
|
|
110
113
|
other = "Términos de Uso"
|
|
111
|
-
|
|
114
|
+
|
|
112
115
|
[footer-legal-copyright-agent-text]
|
|
113
116
|
other = "Agente de Derechos de Autor"
|
|
114
|
-
|
|
117
|
+
|
|
115
118
|
[footer-legal-epl-text]
|
|
116
119
|
other = "Licencia Pública de Eclipse"
|
|
117
|
-
|
|
120
|
+
|
|
118
121
|
[footer-legal-resources-text]
|
|
119
122
|
other = "Recursos Legales"
|
|
120
|
-
|
|
123
|
+
|
|
121
124
|
[footer-useful-links-section-text]
|
|
122
125
|
other = "Enlaces Útiles"
|
|
123
|
-
|
|
126
|
+
|
|
124
127
|
[footer-useful-links-report-bug-text]
|
|
125
128
|
other = "Reportar un Error"
|
|
126
|
-
|
|
129
|
+
|
|
127
130
|
[footer-useful-links-documentation-text]
|
|
128
131
|
other = "Documentación"
|
|
129
|
-
|
|
132
|
+
|
|
130
133
|
[footer-useful-links-contribute-text]
|
|
131
134
|
other = "Como Contribuir"
|
|
132
|
-
|
|
135
|
+
|
|
133
136
|
[footer-useful-links-mailing-list-text]
|
|
134
137
|
other = "Listas de correos"
|
|
135
|
-
|
|
138
|
+
|
|
136
139
|
[footer-useful-links-forums-text]
|
|
137
140
|
other = "Forums"
|
|
138
|
-
|
|
141
|
+
|
|
139
142
|
[footer-useful-links-marketplace-text]
|
|
140
143
|
other = "Tienda"
|
|
141
|
-
|
|
144
|
+
|
|
142
145
|
[footer-other-section-text]
|
|
143
146
|
other = "Otros"
|
|
144
|
-
|
|
147
|
+
|
|
145
148
|
[footer-other-tools-text]
|
|
146
149
|
other = "IDE y Herramientas"
|
|
147
|
-
|
|
150
|
+
|
|
148
151
|
[footer-other-community-projects-text]
|
|
149
152
|
other = "Proyectos de la Comunidad"
|
|
150
|
-
|
|
153
|
+
|
|
151
154
|
[footer-other-working-groups-text]
|
|
152
155
|
other = "Grupos de Trabajos"
|
|
153
|
-
|
|
156
|
+
|
|
154
157
|
[footer-other-research-text]
|
|
155
158
|
other = "Investigación@Eclipse"
|
|
156
|
-
|
|
159
|
+
|
|
157
160
|
[footer-other-report-vulnerability-text]
|
|
158
161
|
other = "Reportar una Vulnerabilidad"
|
|
159
|
-
|
|
162
|
+
|
|
160
163
|
[footer-other-status-text]
|
|
161
164
|
other = "Estatus del Servicio"
|
|
162
165
|
|
package/i18n/jp.toml
CHANGED
|
@@ -31,6 +31,9 @@ other = "セッション名"
|
|
|
31
31
|
[agenda-presenter-name]
|
|
32
32
|
other = "登壇者"
|
|
33
33
|
|
|
34
|
+
[agenda-organization]
|
|
35
|
+
other = "Organization"
|
|
36
|
+
|
|
34
37
|
[agenda-session-recording]
|
|
35
38
|
other = "ビデオ"
|
|
36
39
|
|
|
@@ -75,88 +78,88 @@ other = "詳細"
|
|
|
75
78
|
|
|
76
79
|
[navbar-manage-cookies-label]
|
|
77
80
|
other = "クッキーの管理"
|
|
78
|
-
|
|
81
|
+
|
|
79
82
|
[navbar-edit-acccount-label]
|
|
80
83
|
other = "アカウントを編集"
|
|
81
|
-
|
|
84
|
+
|
|
82
85
|
[eclipse-foundation-text]
|
|
83
86
|
other = "Eclipse Foundation"
|
|
84
|
-
|
|
87
|
+
|
|
85
88
|
[footer-foundation-about-us-text]
|
|
86
89
|
other = "プロフィール"
|
|
87
|
-
|
|
90
|
+
|
|
88
91
|
[footer-foundation-contact-us-text]
|
|
89
92
|
other = "お問い合わせ"
|
|
90
|
-
|
|
93
|
+
|
|
91
94
|
[footer-foundation-donate-text]
|
|
92
95
|
other = "寄付"
|
|
93
|
-
|
|
96
|
+
|
|
94
97
|
[footer-foundation-governance-text]
|
|
95
98
|
other = "ガバナンス"
|
|
96
|
-
|
|
99
|
+
|
|
97
100
|
[footer-foundation-logo-artwork-text]
|
|
98
101
|
other = "ロゴとアートワーク"
|
|
99
|
-
|
|
102
|
+
|
|
100
103
|
[footer-foundation-board-of-directors-text]
|
|
101
104
|
other = "ボード"
|
|
102
|
-
|
|
105
|
+
|
|
103
106
|
[footer-legal-section-text]
|
|
104
107
|
other = "法務関連"
|
|
105
|
-
|
|
108
|
+
|
|
106
109
|
[footer-legal-privacy-policy-text]
|
|
107
110
|
other = "個人情報保護方針"
|
|
108
|
-
|
|
111
|
+
|
|
109
112
|
[footer-legal-terms-use-text]
|
|
110
113
|
other = "利用規約"
|
|
111
|
-
|
|
114
|
+
|
|
112
115
|
[footer-legal-copyright-agent-text]
|
|
113
116
|
other = "著作権"
|
|
114
|
-
|
|
117
|
+
|
|
115
118
|
[footer-legal-epl-text]
|
|
116
119
|
other = "Eclipseパブリックライセンス"
|
|
117
|
-
|
|
120
|
+
|
|
118
121
|
[footer-legal-resources-text]
|
|
119
122
|
other = "法務関連リソース"
|
|
120
|
-
|
|
123
|
+
|
|
121
124
|
[footer-useful-links-section-text]
|
|
122
125
|
other = "リンク"
|
|
123
|
-
|
|
126
|
+
|
|
124
127
|
[footer-useful-links-report-bug-text]
|
|
125
128
|
other = "バグを報告"
|
|
126
|
-
|
|
129
|
+
|
|
127
130
|
[footer-useful-links-documentation-text]
|
|
128
131
|
other = "ドキュメンテーション"
|
|
129
|
-
|
|
132
|
+
|
|
130
133
|
[footer-useful-links-contribute-text]
|
|
131
134
|
other = "貢献する方法"
|
|
132
|
-
|
|
135
|
+
|
|
133
136
|
[footer-useful-links-mailing-list-text]
|
|
134
137
|
other = "メーリングリスト"
|
|
135
|
-
|
|
138
|
+
|
|
136
139
|
[footer-useful-links-forums-text]
|
|
137
140
|
other = "フォーラム"
|
|
138
|
-
|
|
141
|
+
|
|
139
142
|
[footer-useful-links-marketplace-text]
|
|
140
143
|
other = "マーケットプレース"
|
|
141
|
-
|
|
144
|
+
|
|
142
145
|
[footer-other-section-text]
|
|
143
146
|
other = "その他"
|
|
144
|
-
|
|
147
|
+
|
|
145
148
|
[footer-other-tools-text]
|
|
146
149
|
other = "統合開発環境とツール"
|
|
147
|
-
|
|
150
|
+
|
|
148
151
|
[footer-other-community-projects-text]
|
|
149
152
|
other = "プロジェクトのコミュニティ"
|
|
150
|
-
|
|
153
|
+
|
|
151
154
|
[footer-other-working-groups-text]
|
|
152
155
|
other = "ワーキンググループ"
|
|
153
|
-
|
|
156
|
+
|
|
154
157
|
[footer-other-research-text]
|
|
155
158
|
other = "リサーチ@ Eclipse"
|
|
156
|
-
|
|
159
|
+
|
|
157
160
|
[footer-other-report-vulnerability-text]
|
|
158
161
|
other = "脆弱性を報告する"
|
|
159
|
-
|
|
162
|
+
|
|
160
163
|
[footer-other-status-text]
|
|
161
164
|
other = "サービス状況"
|
|
162
165
|
|