Merge remote-tracking branch 'upstream/develop' into shigusegubu

* upstream/develop:
  i think it's due to my shitty js-to-json regex
  src/i18n/fr.json: More accurate translation
  update Japanese translation
  update french translation
  add support for disabling rich text formatting
  small thing to display instance-provided default
  console.log cleanup
  More languages
  added usage
  a tool to check what's missing from a language
  all other languages which do not have MRs related to them separated
This commit is contained in:
Henry Jameson 2018-09-25 16:24:52 +03:00
commit 9c4bac08d6
24 changed files with 2286 additions and 2133 deletions

View file

@ -136,8 +136,8 @@ const updateProfile = ({credentials, params}) => {
const form = new FormData()
each(params, (value, key) => {
/* Always include description and locked, because it might be empty or false */
if (key === 'description' || key === 'locked' || value) {
/* Always include description, no_rich_text and locked, because it might be empty or false */
if (key === 'description' || key === 'locked' || key === 'no_rich_text' || value) {
form.append(key, value)
}
})