Fix RFC 5646 Regular Expression (#6190)

master
Yamagishi Kazutoshi 6 years ago committed by Eugen Rochko
parent d872902997
commit 9a61b0ef22
  1. 2
      app/javascript/mastodon/locales/whitelist_sr-Latn.json
  2. 2
      config/webpack/translationRunner.js

@ -2,7 +2,7 @@ const fs = require('fs');
const path = require('path');
const { default: manageTranslations } = require('react-intl-translations-manager');
const RFC5646_REGEXP = /^[a-z]{2,3}(?:|-[A-Z]+)$/;
const RFC5646_REGEXP = /^[a-z]{2,3}(?:-(?:x|[A-Za-z]{2,4}))*$/;
const rootDirectory = path.resolve(__dirname, '..', '..');
const translationsDirectory = path.resolve(rootDirectory, 'app', 'javascript', 'mastodon', 'locales');

Loading…
Cancel
Save