This repository was archived by the owner on Jun 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +15
-13
lines changed
Expand file tree Collapse file tree 2 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 1212 "fr" : " Choisissez un compte" ,
1313 "ko" : " 계정 선택"
1414 },
15- "future " : {
16- "en" : " Planned for a future release. " ,
17- "es" : " Planeado para una versión futura. " ,
18- "fr" : " Prévu pour une version future. " ,
19- "ko" : " 향후 릴리스 예정입니다 ."
15+ "enabled " : {
16+ "en" : " Login with your {idpName} account " ,
17+ "es" : " Inicie sesión con su cuenta de {idpName} " ,
18+ "fr" : " Connectez-vous avec votre compte {idpName} " ,
19+ "ko" : " {idpName} 계정으로 로그인하십시오 ."
2020 },
21- "logo " : {
22- "en" : " {idpName} logo " ,
23- "es" : " Logotipo de {idpName} " ,
24- "fr" : " Logo {idpName} " ,
25- "ko" : " {idpName} 로고 "
21+ "disabled " : {
22+ "en" : " {idpName} coming soon " ,
23+ "es" : " {IdpName} próximamente " ,
24+ "fr" : " {IdpName} à venir " ,
25+ "ko" : " {idpName} 곧 제공됨 "
2626 }
2727}
Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ function setSelectedIdp(id) {
5555 foreach ($ enabledIdps as $ idp ) {
5656 $ name = htmlspecialchars ($ this ->t ($ idp ['name ' ]));
5757 $ idpId = htmlspecialchars ($ idp ['entityid ' ]);
58+ $ hoverText = $ this ->t ('{material:selectidp:enabled} ' , ['{idpName} ' => $ name ]);
5859 ?>
59- <div class="mdl-card mdl-shadow--8dp row-aware"
60- title="<?= $ this ->t ('{material:selectidp:logo} ' , ['{idpName} ' => $ name ]) ?> ">
60+ <div class="mdl-card mdl-shadow--8dp row-aware" title="<?= $ hoverText ?> ">
6161 <div class="mdl-card__media white-bg fixed-height">
6262 <button class="mdl-button fill-parent" value="<?= $ name ?> "
6363 onclick="setSelectedIdp('<?= $ idpId ?> ')">
@@ -73,9 +73,11 @@ function setSelectedIdp(id) {
7373
7474 <?php
7575 foreach ($ disabledIdps as $ idp ) {
76+ $ name = htmlspecialchars ($ this ->t ($ idp ['name ' ]));
77+ $ hoverText = $ this ->t ('{material:selectidp:disabled} ' , ['{idpName} ' => $ name ]);
7678 ?>
7779 <div class="mdl-card mdl-shadow--2dp disabled row-aware"
78- title="<?= $ this -> t ( ' {material:selectidp:future} ' ) ?> ">
80+ title="<?= $ hoverText ?> ">
7981 <div class="mdl-card__media white-bg fixed-height" layout-children="row"
8082 child-spacing="center">
8183 <img class="scale-to-parent"
You can’t perform that action at this time.
0 commit comments