Commit 1aabebc53a78d5dfda5dbeacba5db26ca946d64e
i18n: fix "form now" -> "from now" typo
#632Matt McKegg committed on 9/30/2017, 3:28:42 AM
Parent: 05dc0664a7d196eeab3f1883b04f917b5b944013
Files changed
locales/en.json | changed |
locales/es.json | changed |
plugs/intl/sync/i18n.js | changed |
locales/en.json | ||
---|---|---|
@@ -87,9 +87,9 @@ | ||
87 | 87 | "Describe the gathering (if you want)": "Describe the gathering (if you want)", |
88 | 88 | "Edit": "Edit", |
89 | 89 | "identified ": "identified ", |
90 | 90 | "self identifies as \"": "self identifies as \"", |
91 | - "form now": "form now", | |
91 | + "from now": "from now", | |
92 | 92 | "ago": "ago", |
93 | 93 | "years": "years", |
94 | 94 | "months": "months", |
95 | 95 | "weeks": "weeks", |
locales/es.json | ||
---|---|---|
@@ -115,9 +115,9 @@ | ||
115 | 115 | "OK": "OK", |
116 | 116 | "Close": "Cerrar", |
117 | 117 | "New Message": "Nuevo mensaje", |
118 | 118 | "Language": "Idioma", |
119 | - "form now": "en el futuro", | |
119 | + "from now": "en el futuro", | |
120 | 120 | "ago": "atras", |
121 | 121 | "years": "años", |
122 | 122 | "months": "meses", |
123 | 123 | "weeks": "semanas", |
plugs/intl/sync/i18n.js | ||
---|---|---|
@@ -50,9 +50,9 @@ | ||
50 | 50 | } |
51 | 51 | |
52 | 52 | function time (date){ |
53 | 53 | return date |
54 | - .replace(/from now/, i18n('form now')) | |
54 | + .replace(/from now/, i18n('from now')) | |
55 | 55 | .replace(/ago/, i18n('ago')) |
56 | 56 | .replace(/years/,i18n('years')) |
57 | 57 | .replace(/months/,i18n('months')) |
58 | 58 | .replace(/weeks/,i18n('weeks')) |
Built with git-ssb-web