diff --git a/ro-ro/xml-ro.html.markdown b/ro-ro/xml-ro.html.markdown
index 578b430e..269010c2 100644
--- a/ro-ro/xml-ro.html.markdown
+++ b/ro-ro/xml-ro.html.markdown
@@ -8,122 +8,126 @@ translators:
lang: ro-ro
---
-XML is a markup language designed to store and transport data.
+XML este un limbaj de markup ce are ca scop stocarea si transportul de date.
-Unlike HTML, XML does not specify how to display or to format data, just carry it.
+Spre deosebire de HTML, XML nu specifica cum sa fie afisata sau formatata
+informatia, ci doar o transporta.
-* XML Syntax
+* Sintaxa XML
```xml
-
+
-
-
- Everyday Italian
- Giada De Laurentiis
- 2005
- 30.00
-
-
- Harry Potter
- J K. Rowling
- 2005
- 29.99
-
-
- Learning XML
- Erik T. Ray
- 2003
- 39.95
-
-
+
+
+ Mancaruri italiene
+ Giada De Laurentiis
+ 2005
+ 30.00
+
+
+ Harry Potter
+ J K. Rowling
+ 2005
+ 29.99
+
+
+ Invata XML
+ Erik T. Ray
+ 2003
+ 39.95
+
+
-
+ XML foloseste o structura arborescenta. Deasupra, nodul de baza este
+ 'librarie', care are trei noduri copil, toate 'carti'. Acele noduri au la
+ randul lor noduri copii si asa mai departe...
+
+ Nodurile sunt create folosind taguri deschise/inchise, iar copii sunt doar
+ noduri intre tagurile de deschis si inchis.-->
-
+
-
+
computer.gif
```
-* Well-Formated Document x Validation
+* Document bine formatat x Validare
-A XML document is well-formated if it is syntactically correct.
-However, it is possible to inject more constraints in the document,
-using document definitions, such as DTD and XML Schema.
+Un document XML este bine formatat daca este corect sintactic.
+Cu toate astea este posibil sa injectam mai multe constrangeri in document
+folosind definitii precum DTD si XML Schema.
-A XML document which follows a document definition is called valid,
-regarding that document.
+Un document XML ce foloseste o definitie de document este numit valid in
+contextul documentului.
-With this tool, you can check the XML data outside the application logic.
+Cu acest tool poti verifica datele XML in afara codului aplicatiei.
```xml
-
+
-
-
-
- Everyday Italian
- 30.00
-
-
+
+
+
+ Everyday Italian
+ 30.00
+
+
-
+
-
-
-
-
+
+
+
+
+
]>
-
+
-
+
-
-
-
-
+
+
+
+
+
]>
-
-
- Everyday Italian
- 30.00
-
-
+
+
+ Everyday Italian
+ 30.00
+
+
```