Skip to content
This repository was archived by the owner on Jun 25, 2024. It is now read-only.

Commit fb3bc08

Browse files
author
Billy Clark
committed
decided to follow a different templating approach that more closely follows a PSR
1 parent b65c737 commit fb3bc08

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dictionaries/selectidp.definition.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"ko": "계정 선택"
1414
},
1515
"button_login": {
16-
"en": "Login with $idpName",
17-
"es": "Inicia con $idpName",
18-
"fr": "Connectez-vous avec $idpName",
19-
"ko": "로 로그인 $idpName"
16+
"en": "Login with {idpName}",
17+
"es": "Inicia con {idpName}",
18+
"fr": "Connectez-vous avec {idpName}",
19+
"ko": "로 로그인 {idpName}"
2020
},
2121
"button_login_disabled": {
2222
"en": "Coming soon...",

themes/material/default/selectidp-links.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function setSelectedIdp(id) {
6767
these bugs are resolved. -->
6868
<div layout-children="row" child-spacing="space-between">
6969
<span>
70-
<?= $this->t('{material:selectidp:button_login}', ['$idpName' => $name]) ?>
70+
<?= $this->t('{material:selectidp:button_login}', ['{idpName}' => $name]) ?>
7171
</span>
7272

7373
<i class="material-icons">exit_to_app</i>

0 commit comments

Comments
 (0)