Skip to content

Commit 9e1d664

Browse files
committed
Merge branch 'translation-el' into translation-el-gh-pages
2 parents d1ec87a + 78e3b8a commit 9e1d664

176 files changed

Lines changed: 10072 additions & 651 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ vendor
2424
_site
2525
package.json
2626
.ruby-version
27+
Gemfile.lock

AUTHORS.md

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,35 @@ permalink: /AUTHORS
77

88
The following people have made contributions to learnlatex.org:
99

10-
- Barbara Beeton
11-
- Denis Bitouzé
12-
- David Carlisle
13-
- Paulo Roberto Massa Cereda
14-
- Joan Quintana Compte
15-
- Ulrike Fischer
16-
- Jim Hefferon
17-
- Jérémy Just
18-
- Marcel Fabian Krüger
19-
- Frank Mittelbach
20-
- Phelype Oleinik
21-
- Will Robertson
22-
- Jonathan P. Spratte
23-
- Fernando S. Delgado Trujillo
24-
- Moritz Wemheuer
25-
- Joseph Wright
26-
- Dung Vu
27-
- Uwe Ziegenhagen
28-
- निरंजन
29-
- Daniel Zhang
30-
- Tommaso Gordini
31-
- Jhonatan David Arias Quispe
32-
- Takuto Asakura
10+
11+
| Name | Role |
12+
|--- |---|
13+
| Takuto Asakura | _Japanese translation_ |
14+
| Barbara Beeton | _Initial content discussions_ |
15+
| Denis Bitouzé | _Improvements to lists description_ |
16+
| David Carlisle | _Initial content discussions, editor and server integration_ |
17+
| Paulo Roberto Massa Cereda | _Initial content discussions_ |
18+
| Joan Quintana Compte | _Catalan translation_ |
19+
| Tommaso Gordini | _Italian translation_ |
20+
| Ulrike Fischer | _Initial content discussions_ |
21+
| Jim Hefferon | _Initial content discussions_ |
22+
| Jonas Jaceck | _Website design and implementation_ |
23+
| Jérémy Just | _French translation_ |
24+
| Valentinas Kriaučiukas | _Lithuanian translation_ |
25+
| Marcel Fabian Krüger | _Initial content discussions_ |
26+
| Frank Mittelbach | _Initial content discussions_ |
27+
| Phelype Oleinik | _Portuguese translation_ |
28+
| Jhonatan David Arias Quispe | _Updates to Spanish translation_ |
29+
| Will Robertson | _Initial content discussions_ |
30+
| Martin Sievers | _German translation_ |
31+
| Jonathan P. Spratte | _Initial content discussions, tables lesson, German translation_ |
32+
| Fernando S. Delgado Trujillo | _Spanish translation_ |
33+
| Vivek Tripathi | _Hindi translation_ |
34+
| Moritz Wemheuer | _Bibtex and Biblatex documentation_ |
35+
| Joseph Wright | _Initial concept, Project lead_ |
36+
| Dung Vu | _Vietnamese translation_ |
37+
| Daniel Zhang | _Chinese translations_ (×2) |
38+
| Uwe Ziegenhagen | _Initial content discussions_ |
39+
| निरंजन | _Marathi translation_ |
40+
41+

TRANSLATIONS.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,10 @@ pages.
3737

3838

3939
1. Make a new directory `zz` as a copy of the English pages in `en`, including the subdirectory `en/includes`
40-
2. Add the two letter code `zz` to the `langs:` array in the `_config.yml` file.
41-
3. Change all instances of `en/` in `zz/index.md` to `zz/`
42-
4. Translate the fixed strings in `zz/includes/buttons.js` into your language.
40+
2. Change all instances of `en/` in `zz/index.md` to `zz/`
41+
3. Translate the fixed strings in `zz/includes/buttons.js` into your language.
4342
This is for the buttons used in examples such as "Open in Overleaf".
44-
5. Add a new entry in `_data/languages.yml`. This should specify the
43+
4. Add a new entry in `_data/languages.yml`. This should specify the
4544
code, the name of your language in the language and in English, for example
4645
the French entry is
4746

@@ -50,7 +49,7 @@ pages.
5049
label-regional: Français
5150
label-english: French
5251
```
53-
6. Update each section of `_data/translations.yml` with an entry for
52+
5. Update each section of `_data/translations.yml` with an entry for
5453
each of the fixed strings in the site. So for example the entry for "Next Lesson"
5554
should be amended to have a `zz:` entry:
5655

_config.yml

Lines changed: 0 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -31,100 +31,3 @@ compress_html:
3131
blanklines: false
3232
profile: false
3333
startings: [html, head, body]
34-
35-
36-
# LANGUAGES, LABELS, LAYOUTS
37-
# Settings for multilingual set up:
38-
# In alphabetical order by language code.
39-
# In ascending order by path specifity.
40-
# https://jekyllrb.com/docs/configuration/front-matter-defaults/
41-
defaults:
42-
-
43-
scope:
44-
path: ""
45-
values:
46-
lang: "en"
47-
-
48-
scope:
49-
path: "de"
50-
values:
51-
lang: "de"
52-
label: "Deutsch"
53-
-
54-
scope:
55-
path: "en"
56-
values:
57-
lang: "en"
58-
label: "English"
59-
-
60-
scope:
61-
path: "es"
62-
values:
63-
lang: "es"
64-
label: "Español"
65-
-
66-
scope:
67-
path: "fr"
68-
values:
69-
lang: "fr"
70-
label: "Français"
71-
-
72-
scope:
73-
path: "el"
74-
values:
75-
lang: "el"
76-
label: "Ελληνικά"
77-
-
78-
scope:
79-
path: "ja"
80-
values:
81-
lang: "ja"
82-
label: "日本語"
83-
-
84-
scope:
85-
path: "lt"
86-
values:
87-
lang: "lt"
88-
label: "Lietuviškai"
89-
-
90-
scope:
91-
path: "pt"
92-
values:
93-
lang: "pt"
94-
label: "Português"
95-
-
96-
scope:
97-
path: "vi"
98-
values:
99-
lang: "vi"
100-
label: "Tiếng Việt"
101-
-
102-
scope:
103-
path: "tr"
104-
values:
105-
lang: "tr"
106-
label: "Türkçe"
107-
-
108-
scope:
109-
path: "mr"
110-
values:
111-
lang: "mr"
112-
label: "मराठी"
113-
-
114-
scope:
115-
path: "ca"
116-
values:
117-
lang: "ca"
118-
label: "Català"
119-
-
120-
scope:
121-
path: "zh-hans"
122-
values:
123-
lang: "zh-hans"
124-
label: "中文(简体)"
125-
-
126-
scope:
127-
path: "zh-hant"
128-
values:
129-
lang: "zh-hant"
130-
label: "中文(繁體)"

_data/languages.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
label-regional: Deutsch
1212
label-english: German
1313

14+
- language-code: el
15+
label-regional: Ελληνικά
16+
label-english: Greek
17+
1418
- language-code: en
1519
label-regional: English
1620
label-english: English
@@ -23,10 +27,10 @@
2327
label-regional: Français
2428
label-english: French
2529

26-
- language-code: el
27-
label-regional: Ελληνικά
28-
label-english: Greek
29-
30+
- language-code: hi
31+
label-regional: हिंदी
32+
label-english: Hindi
33+
3034
- language-code: it
3135
label-regional: Italiano
3236
label-english: Italian
@@ -38,11 +42,15 @@
3842
- language-code: lt
3943
label-regional: Lietuviškai
4044
label-english: Lithuanian
41-
45+
4246
- language-code: mr
4347
label-regional: मराठी
4448
label-english: Marathi
4549

50+
- language-code: nl
51+
label-regional: Nederlands
52+
label-english: Dutch
53+
4654
- language-code: pt
4755
label-regional: Português
4856
label-english: Portuguese

0 commit comments

Comments
 (0)