Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion data/en/resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,6 @@
"continue-reading": "Continue reading",
"view-presentation": "View presentation",
"view-video": "View video",
"share-with": "Share with"
"share-with": "Share with",
"skills": "Skills"
}
3 changes: 2 additions & 1 deletion data/uk/resources.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,6 @@
"continue-reading": "Читати далі",
"view-presentation": "Переглянути презентацію",
"view-video": "Переглянути відео",
"share-with": "Поширити у"
"share-with": "Поширити у",
"skills": "Навички"
}
10 changes: 7 additions & 3 deletions src/pages/speakers-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<link rel="import" href="../elements/footer-block.html">
<link rel="import" href="../behaviors/utils-behavior.html">
<link rel="import" href="../behaviors/page-behavior.html">
<link rel="import" href="../behaviors/localize-behavior.html">

<dom-module id="speakers-page">

Expand Down Expand Up @@ -198,9 +199,9 @@
</a>
<a href$="/speakers/[[speaker.id]]/" class="card-content">
<iron-image class="company-logo" src="{{speaker.companyLogo}}" sizing="contain"></iron-image>
<div class="tags">Skills:
<div class="tags">{{localize('skills')}}:
<template is="dom-repeat" items="[[speaker.tags]]" as="tag">
<span class="tag" style$="{{_getCustomStyleValue(tag)}}" target="_blank" rel="noopener noreferrer">[[tag]]</span>
<span class="tag" style$="{{_getCustomStyleValue(tag)}}">[[tag]]</span>
</template>
</div>
<marked-element class="details-text" markdown="[[speaker.shortBio]]">
Expand Down Expand Up @@ -242,7 +243,9 @@
behaviors: [
Polymer.NeonSharedElementAnimatableBehavior,
HOVERBOARD.PageBehavior,
HOVERBOARD.UtilsBehavior
HOVERBOARD.UtilsBehavior,
HOVERBOARD.LocalizeBehavior

],

properties: {
Expand Down Expand Up @@ -341,3 +344,4 @@
</script>

</dom-module>