This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit c85fc8dd authored by Eduard Frankford's avatar Eduard Frankford
Browse files

Merge branch 'translate_teaser_headings' into 'development'

Translate teaser headings

See merge request sharing/codeability-sharing-platform!19
parents 50b06d93 126ad4ca
Branches
2 merge requests!188Merging Peer Reviewing et. al to Master,!164211 peer reviewing functionality
......@@ -56,7 +56,7 @@ export interface Exercise {
lastUpdate: string;
originalResult: SearchResultDTO;
//thesis
// thesis
views: number;
downloads: number;
}
<div class="row" style="width: 80%;margin-left: auto; margin-right: auto;">
<div class="col-sm-3">
<p style="padding-left: 30px;"><strong>Keywords</strong></p>
<p style="padding-left: 30px;"><strong jhiTranslate="teaser.headings.keywords">Keywords</strong></p>
<ul style="list-style-type: circle;">
<li *ngFor="let keyWord of keywords"><a (click)="clickKeyword(keyWord.target)" style="cursor:pointer;">{{keyWord.target}} ({{keyWord.hitCount}})</a></li>
</ul>
</div>
<div class="col-sm-3">
<p style="padding-left: 30px;"><strong>Programming Languages</strong></p>
<p style="padding-left: 30px;"><strong jhiTranslate="teaser.headings.programmingLanguages">Programming Languages</strong></p>
<ul style="list-style-type: circle;">
<li *ngFor="let programmingLanguage of programmingLanguages"><a (click)="clickLanguage(programmingLanguage.target)" style="cursor:pointer;">{{programmingLanguage.target}} ({{programmingLanguage.hitCount}})</a></li>
</ul>
</div>
<div class="col-sm-3">
<p style="padding-left: 30px;"><strong>Contributors</strong></p>
<p style="padding-left: 30px;"><strong jhiTranslate="teaser.headings.contributors">Contributors</strong></p>
<ul style="list-style-type: circle;">
<li *ngFor="let contributor of contributors"><a (click)="clickContributor(contributor.target)" style="cursor:pointer;">{{contributor.target}} ({{contributor.hitCount}})</a></li>
</ul>
</div>
</div>
\ No newline at end of file
</div>
{
"teaser": {
"headings": {
"keywords": "Schlüsselwörter",
"programmingLanguages": "Programmiersprachen",
"contributors": "Mitwirkende"
}
}
}
{
"teaser": {
"headings": {
"keywords": "Keywords",
"programmingLanguages": "Programming languages",
"contributors": "Contributors"
}
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment