Browse Source

Fix RFC 5646 Regular Expression (#6190)

pull/4/head
Yamagishi Kazutoshi 6 years ago
committed by Eugen Rochko
parent
commit
9a61b0ef22
2 changed files with 3 additions and 1 deletions
  1. +2
    -0
      app/javascript/mastodon/locales/whitelist_sr-Latn.json
  2. +1
    -1
      config/webpack/translationRunner.js

+ 2
- 0
app/javascript/mastodon/locales/whitelist_sr-Latn.json View File

@ -0,0 +1,2 @@
[
]

+ 1
- 1
config/webpack/translationRunner.js View File

@ -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