aboutsummaryrefslogtreecommitdiff
path: root/views.js
diff options
context:
space:
mode:
authorJoop Kiefte <ikojba@gmail.com>2020-02-01 05:10:39 +0100
committerJoop Kiefte <ikojba@gmail.com>2020-02-01 05:10:39 +0100
commit1556adab313c7eec97a7738876acdbc0d058a755 (patch)
tree6424bd32f0872446f226fcdac745db03518cb40a /views.js
parent3248ead787d386a3fe20bf072b3b270c08a2fea6 (diff)
Add settings translations
Diffstat (limited to 'views.js')
-rw-r--r--views.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/views.js b/views.js
index e6ea28e..275788e 100644
--- a/views.js
+++ b/views.js
@@ -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))
})