comparison core/modules/locale/locale.bulk.es6.js @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children 1fec387a4317
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
1 /**
2 * @file
3 * Locale behavior.
4 */
5
6 (function ($, Drupal) {
7 /**
8 * Select the language code of an imported file based on its filename.
9 *
10 * This only works if the file name ends with "LANGCODE.po".
11 *
12 * @type {Drupal~behavior}
13 *
14 * @prop {Drupal~behaviorAttach} attach
15 * Attaches behavior for preselecting language code based on filename.
16 */
17 Drupal.behaviors.importLanguageCodeSelector = {
18 attach(context, settings) {
19 const $form = $('#locale-translate-import-form').once('autodetect-lang');
20 if ($form.length) {
21 const $langcode = $form.find('.langcode-input');
22 $form.find('.file-import-input')
23 .on('change', function () {
24 // If the filename is fully the language code or the filename
25 // ends with a language code, pre-select that one.
26 const matches = $(this).val().match(/([^.][\.]*)([\w-]+)\.po$/);
27 if (matches && $langcode.find(`option[value="${matches[2]}"]`).length) {
28 $langcode.val(matches[2]);
29 }
30 });
31 }
32 },
33 };
34 }(jQuery, Drupal));