Commit dbe444113f2ca34fc436778abd48372dd514941d
Merge PR #679
Matt McKegg committed on 12/11/2017, 11:49:25 PMParent: 96020cb99ffeaf0eff3ad6dbd5ac52bfb640217f
Parent: 26f53e95ef79f594060f273929b9b44b2e9b3481
Files changed
locales/de.json | changed |
locales/en.json | changed |
locales/es.json | changed |
locales/ki.json | changed |
locales/pt-BR.json | changed |
locales/pt.json | changed |
main-window.js | changed |
modules/page/html/render/settings.js | changed |
locales/de.json | ||
---|---|---|
@@ -175,6 +175,7 @@ | ||
175 | 175 … | "other": "Du folgst %s Personen die dieser Person folgen." |
176 | 176 … | }, |
177 | 177 … | "See less": "weniger zeigen", |
178 | 178 … | "See more": "mehr zeigen", |
179 … | + "Font Size": "Schriftgröße", | |
179 | 180 … | "pt-BR": "pt-BR" |
180 | 181 … | } |
locales/en.json | ||
---|---|---|
@@ -184,6 +184,7 @@ | ||
184 | 184 … | "See less": "See less", |
185 | 185 … | "See more": "See more", |
186 | 186 … | "(missing message)": "(missing message)", |
187 | 187 … | "assigned a description to ": "assigned a description to ", |
188 | - "Unread Message": "Unread Message" | |
189 | -} | |
188 … | + "Unread Message": "Unread Message", | |
189 … | + "Font Size": "Font Size" | |
190 … | +} |
locales/es.json | ||
---|---|---|
@@ -176,6 +176,7 @@ | ||
176 | 176 … | "Cannot load thead": "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 | - "pt-BR": "Portugués Brasileño" | |
180 … | + "pt-BR": "Portugués Brasileño", | |
181 … | + "Font Size": "Tamaño de fuente" | |
181 | 182 … | } |
locales/ki.json | ||
---|---|---|
@@ -79,6 +79,7 @@ | ||
79 | 79 … | "Browse All": "Browse All", |
80 | 80 … | "Theme": "Theme", |
81 | 81 … | "Language": "Language", |
82 | 82 … | "Filters": "Filters", |
83 | - " Hide following messages": " Hide following messages" | |
83 … | + " Hide following messages": " Hide following messages", | |
84 … | + "Font Size": "Font Size" | |
84 | 85 … | } |
locales/pt-BR.json | ||
---|---|---|
@@ -139,6 +139,7 @@ | ||
139 | 139 … | "en": "en", |
140 | 140 … | "on ": "on ", |
141 | 141 … | "Private Message": "Mensagem Privada", |
142 | 142 … | "Send Private Message": "Enviar Mensagem Privada", |
143 | - "Publish Privately": "Publicar Privadamente" | |
143 … | + "Publish Privately": "Publicar Privadamente", | |
144 … | + "Font Size": "Tamanho da fonte" | |
144 | 145 … | } |
locales/pt.json | ||
---|---|---|
@@ -140,6 +140,7 @@ | ||
140 | 140 … | "en": "English", |
141 | 141 … | "on ": "em ", |
142 | 142 … | "Private Message": "Mensagem Privada", |
143 | 143 … | "Send Private Message": "Enviar Mensagem Privada", |
144 | - "Publish Privately": "Publicar Privadamente" | |
144 … | + "Publish Privately": "Publicar Privadamente", | |
145 … | + "Font Size": "Tamanho da fonte" | |
145 | 146 … | } |
main-window.js | ||
---|---|---|
@@ -79,8 +79,16 @@ | ||
79 | 79 … | }) |
80 | 80 … | }) |
81 | 81 … | ) |
82 | 82 … | |
83 … | + document.head.appendChild( | |
84 … | + h('style', { | |
85 … | + innerHTML: computed(api.settings.obs.get('patchwork.fontSize', document.documentElement.style.fontSize), size => { | |
86 … | + return 'html, body {font-size: ' + size + ';}' | |
87 … | + }) | |
88 … | + }) | |
89 … | + ) | |
90 … | + | |
83 | 91 … | var container = h(`MainWindow -${process.platform}`, [ |
84 | 92 … | h('div.top', [ |
85 | 93 … | h('span.history', [ |
86 | 94 … | h('a', { |
modules/page/html/render/settings.js | ||
---|---|---|
@@ -21,8 +21,10 @@ | ||
21 | 21 … | const currentTheme = api.settings.obs.get('patchwork.theme') |
22 | 22 … | const currentLang = api.settings.obs.get('patchwork.lang') |
23 | 23 … | const locales = api.intl.sync.locales() |
24 | 24 … | const localeNameLookup = api.intl.sync.localeNames() |
25 … | + const currentFontSize = api.settings.obs.get('patchwork.fontSize') | |
26 … | + const fontSizes = ['8px', '10px', '12px', '14px', '16px', '18px', '20px'] | |
25 | 27 … | const filterFollowing = api.settings.obs.get('filters.following') |
26 | 28 … | |
27 | 29 … | var prepend = [ |
28 | 30 … | h('PageHeading', [ |
@@ -69,8 +71,24 @@ | ||
69 | 71 … | ]) |
70 | 72 … | ]), |
71 | 73 … | |
72 | 74 … | h('section', [ |
75 … | + h('h2', i18n('Font Size')), | |
76 … | + h('select', { | |
77 … | + style: { | |
78 … | + 'font-size': '120%' | |
79 … | + }, | |
80 … | + value: when(currentFontSize, currentFontSize, ''), | |
81 … | + 'ev-change': (ev) => api.settings.sync.set({ | |
82 … | + patchwork: {fontSize: ev.target.value} | |
83 … | + }) | |
84 … | + }, [ | |
85 … | + h('option', {value: ''}, 'Default'), | |
86 … | + fontSizes.map(size => h('option', {value: size}, size)) | |
87 … | + ]) | |
88 … | + ]), | |
89 … | + | |
90 … | + h('section', [ | |
73 | 91 … | h('h2', i18n('Filters')), |
74 | 92 … | h('label', [ |
75 | 93 … | h('input', { |
76 | 94 … | type: 'checkbox', |
Built with git-ssb-web