Skip to content

Commit

Permalink
Update about text
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienCoutault committed Oct 18, 2018
1 parent bdf6113 commit 0194227
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
4 changes: 3 additions & 1 deletion locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@
"website": "Website",
"changelog": "Release notes"
},
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
"text0": "Lindo is an open-source software that allows you to play DOFUS Touch from your computer.",
"text1": "Unlike an Android emulator, the code is directly interpreted by your computer, which makes faster so you can play DOFUS Touch whith the full performance of your computer !",
"text2": "Originally known as DOFUS Touch No-Emu, this software developed by Daniel and Thomas was forced to close cause of an avertissement from Ankama."
}
},
"shortcuts": {
Expand Down
4 changes: 3 additions & 1 deletion locale/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@
"website": "Sitio web",
"changelog": "Actualizar notas"
},
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
"text0": "Lindo es un software de código abierto que te permite jugar DOFUS Touch desde tu computadora.",
"text1": "A diferencia de un emulador de Android, el código es interpretado directamente por su computadora, lo que lo hace más rápido para jugar, ¡así que puede jugar DOFUS Touch mientras disfruta del rendimiento completo de su computadora !",
"text2": "Originalmente conocido como DOFUS Touch No-Emu, este software desarrollado por Daniel y Thomas se vio obligado a cerrar debido a una advertencia de Ankama."
}
},
"shortcuts": {
Expand Down
4 changes: 3 additions & 1 deletion locale/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@
"website": "Site web",
"changelog": "Notes de version"
},
"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
"text0": "Lindo est un logiciel open-source vous permettant de jouer à DOFUS Touch depuis votre ordinateur.",
"text1": "Contrairement à un émulateur Android, le code est directement interprété par votre ordinateur, ce qui rend sa lecture plus rapide et vous permet donc de jouer à DOFUS Touch en profitant pleinement des performances de votre ordinateur !",
"text2": "Initialement connu sous le nom de DOFUS Touch No-Emu, ce logiciel développé par Daniel et Thomas a été contraint de fermer ses portes suite à un avertissement de la part d'Ankama."
}
},
"shortcuts": {
Expand Down
8 changes: 5 additions & 3 deletions src/app/window/option/about/about.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
<div class="row">

<div class="col-xs-12">

<h2>{{ applicationService.appName }} {{ version }}</h2>

<span translate>app.window.options.about.links.website</span> : <a href="#" (click)="goToWebsite($event)">{{ applicationService.websiteUrl }}</a>

<div class="team" translate>app.window.options.about.text</div>
<div class="team" translate>app.window.options.about.text0</div>
<div class="team" translate>app.window.options.about.text1</div>
<div class="team" translate>app.window.options.about.text2</div>
</div>

</div>
</div>
</div>
4 changes: 2 additions & 2 deletions src/app/window/option/general/general.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ export class GeneralComponent implements OnInit {
public languages: select[] = [
{ name: 'Français', value: "fr" },
{ name: 'English', value: "en" },
{ name: 'Espagnol', value: "es" }
{ name: 'Español', value: "es" }
];

public windowService: WindowService;

constructor(
Expand Down

0 comments on commit 0194227

Please sign in to comment.