Add dynamic i18n to profile views

6d9c64f38e55ea4f4aa6a77880942eef3124dfa5

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +2 -2Showing whitespace changes
public/scripts/extensions/connection-manager/profile.html+1 -1
@@ -4,7 +4,7 @@
4 </h2>4 </h2>
5 <ul class="justifyLeft">5 <ul class="justifyLeft">
6 {{#each profile}}6 {{#each profile}}
7 <li><strong>{{@key}}:</strong>&nbsp;{{this}}</li>7 <li><strong data-i18n="{{@key}}">{{@key}}:</strong>&nbsp;{{this}}</li>
8 {{/each}}8 {{/each}}
9 </ul>9 </ul>
10 <h3 data-i18n="Enter a name:">10 <h3 data-i18n="Enter a name:">
public/scripts/extensions/connection-manager/view.html+1 -1
@@ -1,5 +1,5 @@
1<ul>1<ul>
2 {{#each profile}}2 {{#each profile}}
3 <li><strong>{{@key}}:</strong>&nbsp;{{this}}</li>3 <li><strong data-i18n="{{@key}}">{{@key}}:</strong>&nbsp;{{this}}</li>
4 {{/each}}4 {{/each}}
5</ul>5</ul>