From: ArthurHoaro Date: Sat, 20 May 2017 13:43:55 +0000 (+0200) Subject: JS translation X-Git-Tag: v0.9.4~41^2~4 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;ds=sidebyside;h=40ec173e68d47c821cb09875a44aab81d33cd89d;p=github%2Fshaarli%2FShaarli.git JS translation --- diff --git a/tpl/default/js/shaarli.js b/tpl/default/js/shaarli.js index 55656f80..09b07eed 100644 --- a/tpl/default/js/shaarli.js +++ b/tpl/default/js/shaarli.js @@ -138,6 +138,9 @@ window.onload = function () { }); foldAllButton.firstElementChild.classList.toggle('fa-chevron-down'); foldAllButton.firstElementChild.classList.toggle('fa-chevron-up'); + foldAllButton.title = state === 'down' + ? document.getElementById('translation-fold-all').innerHTML + : document.getElementById('translation-expand-all').innerHTML }); }); } @@ -146,7 +149,7 @@ window.onload = function () { { // Switch fold/expand - up = fold if (button.classList.contains('fa-chevron-up')) { - button.title = 'Expand'; + button.title = document.getElementById('translation-expand').innerHTML; if (description != null) { description.style.display = 'none'; } @@ -155,7 +158,7 @@ window.onload = function () { } } else { - button.title = 'Fold'; + button.title = document.getElementById('translation-fold').innerHTML; if (description != null) { description.style.display = 'block'; } @@ -173,7 +176,7 @@ window.onload = function () { var deleteLinks = document.querySelectorAll('.confirm-delete'); [].forEach.call(deleteLinks, function(deleteLink) { deleteLink.addEventListener('click', function(event) { - if(! confirm('Are you sure you want to delete this link ?')) { + if(! confirm(document.getElementById('translation-delete-link').innerHTML)) { event.preventDefault(); } }); @@ -618,7 +621,7 @@ function activateFirefoxSocial(node) { // Keeping the data separated (ie. not in the DOM) so that it's maintainable and diffable. var data = { name: title, - description: "The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community.", + description: document.getElementById('translation-delete-link').innerHTML, author: "Shaarli", version: "1.0.0", diff --git a/tpl/default/linklist.paging.html b/tpl/default/linklist.paging.html index 41e9fa34..347b3d13 100644 --- a/tpl/default/linklist.paging.html +++ b/tpl/default/linklist.paging.html @@ -13,7 +13,7 @@ - + {loop="$action_plugin"} @@ -53,7 +53,7 @@
- + diff --git a/tpl/default/page.footer.html b/tpl/default/page.footer.html index 2c788e2f..659e8c7f 100644 --- a/tpl/default/page.footer.html +++ b/tpl/default/page.footer.html @@ -27,6 +27,17 @@ {/loop} + +