Commit 7a1f2ab24c3ced576afe24d799a36a9da92e85ee
Merge pull request #676 from jfr3000/master
Fix typo in page heading when thread not foundMatt 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.json | changed |
locales/es.json | changed |
modules/page/html/render/message.js | changed |
locales/en.json | ||
---|---|---|
@@ -172,9 +172,9 @@ | ||
172 | 172 … | "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.", |
173 | 173 … | "An error occured while publishing your message.": "An error occured while publishing your message.", |
174 | 174 … | "Missing message": "Missing message", |
175 | 175 … | " via ": " via ", |
176 | - "Cannot load thead": "Cannot load thead", | |
176 … | + "Cannot load thread": "Cannot load thread", | |
177 | 177 … | "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.", |
178 | 178 … | "You follow %s people that follow this person.": { |
179 | 179 … | "one": "You follow someone that follows this person.", |
180 | 180 … | "other": "You follow %s people that follow this person." |
locales/es.json | ||
---|---|---|
@@ -172,9 +172,9 @@ | ||
172 | 172 … | "An error occured while publishing your message.": "Se produjo un error al publicar su mensaje.", |
173 | 173 … | "Private Message": "Mensaje privado", |
174 | 174 … | "Missing message": "Mensaje perdido", |
175 | 175 … | " via ": " via ", |
176 | - "Cannot load thead": "No se puede cargar el hilo", | |
176 … | + "Cannot load thread": "No se puede cargar el hilo", | |
177 | 177 … | "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.", |
178 | 178 … | "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."}, |
179 | 179 … | "Followed by": "Seguido por", |
180 | 180 … | "pt-BR": "Portugués Brasileño", |
modules/page/html/render/message.js | ||
---|---|---|
@@ -49,9 +49,9 @@ | ||
49 | 49 … | |
50 | 50 … | api.sbot.async.get(id, (err, value) => { |
51 | 51 … | if (err) { |
52 | 52 … | return result.set(h('PageHeading', [ |
53 | - h('h1', i18n('Cannot load thead')) | |
53 … | + h('h1', i18n('Cannot load thread')) | |
54 | 54 … | ])) |
55 | 55 … | } |
56 | 56 … | |
57 | 57 … | if (typeof value.content === 'string') { |
Built with git-ssb-web