#8374: Using l10n
authorChristian Wiwie <jonsnow@posteo.de>
Sat, 14 Mar 2020 21:29:11 +0000 (22:29 +0100)
committerChristian Wiwie <jonsnow@posteo.de>
Sat, 14 Mar 2020 21:29:11 +0000 (22:29 +0100)
showmore_dyn/showmore_dyn.js
showmore_dyn/showmore_dyn.php

index d60529d..4442da7 100644 (file)
@@ -45,7 +45,7 @@ function addHeightToggleHandler($item) {
        var toggleId = "wall-item-body-toggle-" + itemId;
 
        $item.wrap('<div id="' + wrapperId + '" class="wall-item-body-wrapper"></div>');
-       $("#" + wrapperId).append('<div class="wall-item-body-toggle" data-item-id="' + itemId + '" id="' + toggleId + '" ><a href="javascript:void(0)" class="wall-item-body-toggle-text">Show more ...</a></div>');
+       $("#" + wrapperId).append('<div class="wall-item-body-toggle" data-item-id="' + itemId + '" id="' + toggleId + '" ><a href="javascript:void(0)" class="wall-item-body-toggle-text">' + showmore_dyn_showmore_linktext + '</a></div>');
        $item.addClass("limitable limit-height");
 
        var $toggle = $("#" + toggleId);
index cfc8e93..664049c 100644 (file)
@@ -71,5 +71,6 @@ function showmore_dyn_settings(&$a,&$o) {
 
 function showmore_dyn_script() {
        $limitHeight = DI::pConfig()->get(local_user(), 'showmore_dyn', 'limitHeight' );
-       DI::page()['htmlhead'] .= '<script>var postLimitHeight = ' . intval($limitHeight) . ';</script>';
+       $showmore_dyn_showmore_linktext = DI::l10n()->t('Show more ...');
+       DI::page()['htmlhead'] .= '<script>var postLimitHeight = ' . intval($limitHeight) . '; var showmore_dyn_showmore_linktext = "' . $showmore_dyn_showmore_linktext . '"</script>';
 }