diff options
author | Joop Kiefte <ikojba@gmail.com> | 2020-02-01 05:10:39 +0100 |
---|---|---|
committer | Joop Kiefte <ikojba@gmail.com> | 2020-02-01 05:10:39 +0100 |
commit | 1556adab313c7eec97a7738876acdbc0d058a755 (patch) | |
tree | 6424bd32f0872446f226fcdac745db03518cb40a /views.js | |
parent | 3248ead787d386a3fe20bf072b3b270c08a2fea6 (diff) |
Add settings translations
Diffstat (limited to 'views.js')
-rw-r--r-- | views.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -112,7 +112,7 @@ function profilePage (src, keys) { regenerate(home) }) } - }, ['Delete ' + name + '\'s feed'])) + }, ['Forviŝi la fluon de ' + name])) if (src != keys.publicKey) { localforage.getItem('subscriptions').then(function (subs) { @@ -122,14 +122,14 @@ function profilePage (src, keys) { subs = subs.filter(a => a !== src) localforage.setItem('subscriptions', subs).then(function () { location.hash = '' }) } - }, ['Unsubscribe from ' + name])) + }, ['Malaliĝi de ' + name])) } else { profile.appendChild(h('button', { onclick: function () { subs.push(src) localforage.setItem('subscriptions', subs).then(function () { location.hash = '' }) } - }, ['Subscribe to ' + name])) + }, ['Aliĝi al ' + name])) } profile.appendChild(identify(src, profile, keys)) }) |