Skip to content

Commit 406a594

Browse files
committed
update
fixed conflicts
1 parent 4f19098 commit 406a594

File tree

1 file changed

+12
-31
lines changed

1 file changed

+12
-31
lines changed

README.md

Lines changed: 12 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
1-
# The Modern JavaScript Tutorial in Romanian
2-
3-
<<<<<<< HEAD
4-
This repository hosts the translation of <https://javascript.info> in Romanian.
5-
=======
6-
This repository hosts the English content of the Modern JavaScript Tutorial, published in [https://javascript.info](https://javascript.info).
7-
>>>>>>> 29216730a877be28d0a75a459676db6e7f5c4834
1+
# The Modern JavaScript Tutorial in *Romanian*
82

3+
This repository hosts the Romanian content of the Modern JavaScript Tutorial, published in [https://javascript.info](https://javascript.info).
94

105
**That's how you can contribute:**
116

@@ -27,11 +22,7 @@ If maintainers do not respond, or if you'd like to become a maintainer, write us
2722

2823
🎉 Thank you!
2924

30-
<<<<<<< HEAD
31-
Your name and the contribution size will appear in the "About project" page when the translation gets published.
32-
=======
3325
**You can edit the text in any editor.** The tutorial uses enhanced "markdown" format, easy to grasp. And if you want to see how it looks on-site, there's a server to run the tutorial locally at <https://github.com/javascript-tutorial/server>.
34-
>>>>>>> 29216730a877be28d0a75a459676db6e7f5c4834
3526

3627
P.S. The full list of languages can be found at <https://javascript.info/translate>.
3728

@@ -43,9 +34,9 @@ The folder is named `N-url`, where `N` – is the number for sorting (articles a
4334

4435
The folder has one of files:
4536

46-
- `index.md` for a section,
47-
- `article.md` for an article,
48-
- `task.md` for a task formulation (+`solution.md` with the solution text if any).
37+
- `index.md` stands for a chapter
38+
- `article.md` stands for an article
39+
- `task.md` stands for a task (solution must be provided in `solution.md` file as well)
4940

5041
A file starts with the `# Title Header`, and then the text in Markdown-like format, editable in a simple text editor.
5142

@@ -81,26 +72,20 @@ document.querySelector('.hello').innerHTML = text;
8172
✅ DO (translate comment):
8273

8374
```js
84-
// Ejemplo
85-
const text = 'Hola mundo';
75+
// Exemplul
76+
const text = 'Bună ziua`
8677
document.querySelector('.hello').innerHTML = text;
8778
```
8879
8980
❌ DON'T (translate class):
9081

91-
<<<<<<< HEAD
9282
```js
93-
// Ejemplo
94-
const text = 'Hola mundo';
95-
// ".hello" is a class
83+
// Exemplu
84+
const text = 'Bună ziua lume';
85+
document.querySelector('.salut').innerHTML = text;
86+
// ".salut" is a class
9687
// DO NOT TRANSLATE
97-
document.querySelector('.hola').innerHTML = text;
9888
```
99-
=======
100-
- `index.md` stands for a chapter
101-
- `article.md` stands for an article
102-
- `task.md` stands for a task (solution must be provided in `solution.md` file as well)
103-
>>>>>>> 29216730a877be28d0a75a459676db6e7f5c4834
10489

10590
### External Links
10691

@@ -128,8 +113,6 @@ Some files, usually tasks, have YAML metadata at the top, delimited by `---`:
128113

129114
```md
130115
importance: 5
131-
132-
<<<<<<< HEAD
133116
---
134117
...
135118
```
@@ -151,8 +134,6 @@ Please don't translate or remove the `[#...]` part, it's for URL anchors.
151134
You can run the tutorial server locally to see how the translation looks.
152135
153136
The server and install instructions are at <https://github.com/javascript-tutorial/server>.
154-
=======
155-
---
156-
>>>>>>> 29216730a877be28d0a75a459676db6e7f5c4834
137+
157138
158139
Ilya Kantor @iliakan

0 commit comments

Comments
 (0)