Изменить 'src/elements/ts-translate/ts-resource/ts-resource-display.html'

This commit is contained in:
Samuel Kim 2021-01-09 01:36:14 +00:00
parent ec5a5053ae
commit cf50fef3cd
1 changed files with 5 additions and 5 deletions

View File

@ -83,26 +83,26 @@
<div id="body" class="sourcefont sourcesize">
<div id="textholder"></div>
<template is="dom-if" if="{{related.length}}">
<h3>See Also:</h3>
<h3>Смотри также:</h3>
<template is="dom-repeat" items="{{related}}" as="word">
<p class="link" on-tap="newword">{{word.title}}</p>
</template>
</template>
<template is="dom-if" if="{{examples.length}}">
<h3>Examples:</h3>
<h3>Примеры:</h3>
<template is="dom-repeat" items="{{examples}}" as="example">
<p class="link" on-tap="examplescroll"><span>Open Bible Stories</span> <span>{{example.chapter}}</span>:<span>{{example.frame}}</span></p>
<p class="link" on-tap="examplescroll"><span>Открытые Библейские Истории</span> <span>{{example.chapter}}</span>:<span>{{example.frame}}</span></p>
</template>
</template>
<template is="dom-if" if="{{allwords.length}}">
<h3>Words Index</h3>
<h3>Список слов</h3>
<template is="dom-repeat" items="{{allwords}}" as="word">
<p class="link" on-tap="newword">{{word.title}}</p>
</template>
</template>
</div>
<div id="footer">
<p class="link" on-tap="openindex">Words Index</p>
<p class="link" on-tap="openindex">Список слов</p>
</div>
</paper-material>