Sorry, but when done properly, we need to create multiple language files. The we need an editor in panel to edit and create new languages, and then each language file needs to be loaded properly into X3. That's why it's still in our TODO list.
In the meantime, you can use this javascript fix. Just copy paste the below into settings > custom > custom javascript, and edit the values of
'Albums' and
'Images':
function x3_load_page(){
var ob = {
'folder_amount': 'Albums',
'amount': 'Images'
}
$.each(ob, function(key, val) {
$('.' + key).each(function() {
var el = $(this),
child = el.children(),
item = child.length ? child : el;
item.html(parseInt(item.html()) + ' ' + val);
});
});
}
If you want to edit
TIME, this is more complex, because it contains many possibilities depending on how long ago the date is. However, there is an easy fix for this in the link below:
https://forum.photo.gallery/viewtopic.p ... 305#p41754