Skip to content

Commit 5a2c542

Browse files
committed
Translation test
1 parent 0551e99 commit 5a2c542

Some content is hidden

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

121 files changed

+339
-607
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ Then you can make a [pull request][pr].
1616
Setup
1717
-----
1818

19-
To setup a development enviroment `gem install jekyll`
20-
Then run `jekyll serve --trace`
21-
Type in `localhost:4000`
19+
To setup a development enviroment `gem install jekyll`
20+
Then run `jekyll serve --trace`
21+
Type in `localhost:4000`
2222

2323
### Github Pages
2424
1. [Fork](https://github.com/CoderDojoPotsdam/regex-tutorial/fork)
@@ -32,7 +32,7 @@ Further Reading
3232
License
3333
------
3434

35-
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons Lizenzvertrag" style="border-width:0" src="assets/cc-by-sa.png" /></a><br />
35+
<a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons Lizenzvertrag" style="border-width:0" src="img/cc-by-sa.png" /></a><br />
3636
<span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/InteractiveResource" property="dct:title" rel="dct:type">Regex-Tutorial</span> by <span xmlns:cc="http://creativecommons.org/ns#" property="cc:attributionName">Nicco Kunzmann</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License.</a>.
3737

3838

_config.yml

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
1-
sourcecode:
2-
view: "https://github.com/CoderDojoPotsdam/regex-tutorial/tree/master"
3-
edit: "https://github.com/CoderDojoPotsdam/regex-tutorial/edit/master"
4-
pullrequest: "https://github.com/CoderDojoPotsdam/regex-tutorial/compare"
5-
newissue: "https://github.com/CoderDojoPotsdam/regex-tutorial/issues/new"
1+
defaults:
2+
-
3+
scope:
4+
path: "en"
5+
values:
6+
layout: "tutorial"
7+
lang: "en"
8+
-
9+
scope:
10+
path: "de"
11+
values:
12+
layout: "tutorial"
13+
lang: "de"
14+
-
15+
scope:
16+
path: "sv"
17+
values:
18+
layout: "tutorial"
19+
lang: "sv"

_data/footer.yml

-21
This file was deleted.

_data/localization.json

+118
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
{
2+
"github": {
3+
"view": "https://github.com/CoderDojoPotsdam/regex-tutorial/tree/master",
4+
"edit": "https://github.com/CoderDojoPotsdam/regex-tutorial/edit/master",
5+
"pullRequest": "https://github.com/CoderDojoPotsdam/regex-tutorial/compare",
6+
"newIssue": "https://github.com/CoderDojoPotsdam/regex-tutorial/issues/new"
7+
},
8+
"title": {
9+
"en": "Interactive Introduction to Regular Expressions",
10+
"de": "Interaktive Einführung in Reguläre Ausdrücke",
11+
"sv": "Interaktiv Introduktion till Reguljära Uttryck"
12+
},
13+
"footer": {
14+
"edit": {
15+
"en": "improve page",
16+
"de": "Seite verbessern",
17+
"sv": "förbättra sidan"
18+
},
19+
"newIssue": {
20+
"en": "report problem",
21+
"de": "Problem melden",
22+
"sv": "rapportera problem"
23+
},
24+
"deleteCookies": {
25+
"en": "delete state",
26+
"de": "Zustand löschen",
27+
"sv": "radera tillstånd"
28+
},
29+
"view": {
30+
"en": "view source",
31+
"de": "Quelltext anzeigen",
32+
"sv": "visa källa"
33+
},
34+
"nextStep": {
35+
"en": "Next Step",
36+
"de": "Nächster Schritt",
37+
"sv": "Nästa steg"
38+
}
39+
},
40+
"hint": {
41+
"shown": {
42+
"en": "Hide the hint!",
43+
"de": "Hinweis verstecken!",
44+
"sv": "Göm ledtråden!"
45+
},
46+
"hidden": {
47+
"en": "Show a hint?",
48+
"de": "Hinweis anzeigen?",
49+
"sv": "Visa en ledtråd?"
50+
}
51+
},
52+
"quiz": {
53+
"before": {
54+
"en": "Regular Expression: ",
55+
"de": "Regulärer Ausdruck: ",
56+
"sv": "Reguljärt uttryck: "
57+
},
58+
"after": {
59+
"en": " appears in which lines? Click on 'Yes' or 'No'.",
60+
"de": " In welchen Zeilen kommt er vor? Klicke auf 'Ja' oder 'Nein'.",
61+
"sv": " visas på vilka rader? Klicka på 'Ja' eller 'Nej'."
62+
},
63+
"yes": {
64+
"en": "Yes",
65+
"de": "Ja",
66+
"sv": "Ja"
67+
},
68+
"no": {
69+
"en": "No",
70+
"de": "Nein",
71+
"sv": "Nej"
72+
}
73+
},
74+
"match": {
75+
"matched": {
76+
"en": "✓ matched",
77+
"de": "✓ gefunden",
78+
"sv": "✓ matchade"
79+
},
80+
"shouldNotMatch": {
81+
"en": "✓ matched, but should not match",
82+
"de": "✓ gefunden, soll nicht passen",
83+
"sv": "✓ matchade, men borde inte matcha"
84+
},
85+
"shouldMatch": {
86+
"en": "should match",
87+
"de": "soll gefunden werden",
88+
"sv": "borde matcha"
89+
},
90+
"noMatch": {
91+
"en": "ok, no match",
92+
"de": "ok, nicht gefunden",
93+
"sv": "ok, ingen matchning"
94+
}
95+
},
96+
"error": {
97+
"message": {
98+
"en": "Make sure that you have closed all of your parentheses, square brackets and braces, and that there are no other errors in your regular expression.",
99+
"de": "",
100+
"sv": "Kolla så att du har stängt alla parenteser, hakparenteser och klammerparenteser, och att det inte är några andra problem med ditt reguljära uttryck."
101+
},
102+
"reference": {
103+
"en": "There is an error in the source code: the reference implementation of the regular expression cannot be used. Please click on 'improve page' below to fix the problem yourself, or click on 'report problem' to submit an error report so we can take a look at it. ",
104+
"de": "",
105+
"sv": "Det är ett fel i källkoden: referensmplementeringen av det reguljära uttrycket kan inte användas. Vänligen klicka på 'förbättra sidan' nedan för att fixa problemet själv, eller klicka på 'rapportera problem' får att skriva en felrapport så att vi kan kolla på problemet. "
106+
}
107+
},
108+
"license": {
109+
"en": "<span xmlns:dct='http://purl.org/dc/terms/' href='http://purl.org/dc/dcmitype/InteractiveResource' property='dct:title' rel='dct:type'>Regex Tutorial</span> by <span xmlns:cc='http://creativecommons.org/ns#' property='cc:attributionName'>Nicco Kunzmann</span> is licensed under a <a rel='license' href='http://creativecommons.org/licenses/by/4.0/'>Creative Commons Attribution 4.0 International License</a>.",
110+
"de": "<span xmlns:dct='http://purl.org/dc/terms/' href='http://purl.org/dc/dcmitype/InteractiveResource' property='dct:title' rel='dct:type'>Regex-Tutorial</span> von <span xmlns:cc='http://creativecommons.org/ns#' property='cc:attributionName'>Nicco Kunzmann</span> ist lizenziert unter einer <a rel='license' href='http://creativecommons.org/licenses/by-sa/4.0/'>Creative Commons Namensnennung - Weitergabe unter gleichen Bedingungen 4.0 International Lizenz</a>.",
111+
"sv": "<span xmlns:dct='http://purl.org/dc/terms/' href='http://purl.org/dc/dcmitype/InteractiveResource' property='dct:title' rel='dct:type'>Regex Tutorial</span> av <span xmlns:cc='http://creativecommons.org/ns#' property='cc:attributionName'>Nicco Kunzmann</span> är licenserad under en <a rel='license' href='http://creativecommons.org/licenses/by/4.0/'>Creative Commons Erkännande 4.0 Internationell Licens</a>."
112+
},
113+
"licenseImage": {
114+
"en": "Pictures with a different license can be clicked to reach the source or an explanation.",
115+
"de": "Bilder, die eine andere Lizenz haben, können angeklickt werden, um zu dem Erklärungstext oder der Quelle zu gelangen.",
116+
"sv": "Bilder med en annan licens går att klicka på för att komma till källan eller få en förklaring."
117+
}
118+
}

_layouts/step.html

-113
This file was deleted.

0 commit comments

Comments
 (0)