git ssb

10+

Matt McKegg / patchwork



Commit 7a1f2ab24c3ced576afe24d799a36a9da92e85ee

Merge pull request #676 from jfr3000/master

Fix typo in page heading when thread not found
Matt McKegg authored on 12/12/2017, 7:29:53 AM
GitHub committed on 12/12/2017, 7:29:53 AM
Parent: 3bfa62f0fc803586d0d2bd4671d369fc54b5a7d2
Parent: b430a48e8147ce78ad7562695d9d54153e308fca

Files changed

locales/en.jsonchanged
locales/es.jsonchanged
modules/page/html/render/message.jschanged
locales/en.jsonView
@@ -172,9 +172,9 @@
172172 "However, since you follow someone that follows them, you should be able to see their latest posts.": "However, since you follow someone that follows them, you should be able to see their latest posts.",
173173 "An error occured while publishing your message.": "An error occured while publishing your message.",
174174 "Missing message": "Missing message",
175175 " via ": " via ",
176- "Cannot load thead": "Cannot load thead",
176 + "Cannot load thread": "Cannot load thread",
177177 "The author of this message could be outside of your follow range or they may be blocked.": "The author of this message could be outside of your follow range or they may be blocked.",
178178 "You follow %s people that follow this person.": {
179179 "one": "You follow someone that follows this person.",
180180 "other": "You follow %s people that follow this person."
locales/es.jsonView
@@ -172,9 +172,9 @@
172172 "An error occured while publishing your message.": "Se produjo un error al publicar su mensaje.",
173173 "Private Message": "Mensaje privado",
174174 "Missing message": "Mensaje perdido",
175175 " via ": " via ",
176- "Cannot load thead": "No se puede cargar el hilo",
176 + "Cannot load thread": "No se puede cargar el hilo",
177177 "The author of this message could be outside of your follow range or they may be blocked.": "El autor de este mensaje podría estar fuera de su rango de seguimiento o puede estar bloqueado.",
178178 "You follow %s people that follow this person.": {"one":"Sigues a alguien que sigue a esta persona.","other":"Sigues a %s personas que siguen a esta persona."},
179179 "Followed by": "Seguido por",
180180 "pt-BR": "Portugués Brasileño",
modules/page/html/render/message.jsView
@@ -49,9 +49,9 @@
4949
5050 api.sbot.async.get(id, (err, value) => {
5151 if (err) {
5252 return result.set(h('PageHeading', [
53- h('h1', i18n('Cannot load thead'))
53 + h('h1', i18n('Cannot load thread'))
5454 ]))
5555 }
5656
5757 if (typeof value.content === 'string') {

Built with git-ssb-web