X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fcore%2Fmodules%2Flocale%2Flocale.bulk.es6.js;h=db94cef7fea3feeae585e138697f3bbb06629fa1;hb=9424afc6c1f518c301bf87a23c047d1873435d05;hp=1d72a0bad7922baad382c6091a68ed52625457f7;hpb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;p=yaffs-website diff --git a/web/core/modules/locale/locale.bulk.es6.js b/web/core/modules/locale/locale.bulk.es6.js index 1d72a0bad..db94cef7f 100644 --- a/web/core/modules/locale/locale.bulk.es6.js +++ b/web/core/modules/locale/locale.bulk.es6.js @@ -3,7 +3,7 @@ * Locale behavior. */ -(function ($, Drupal) { +(function($, Drupal) { /** * Select the language code of an imported file based on its filename. * @@ -19,16 +19,20 @@ const $form = $('#locale-translate-import-form').once('autodetect-lang'); if ($form.length) { const $langcode = $form.find('.langcode-input'); - $form.find('.file-import-input') - .on('change', function () { - // If the filename is fully the language code or the filename - // ends with a language code, pre-select that one. - const matches = $(this).val().match(/([^.][\.]*)([\w-]+)\.po$/); - if (matches && $langcode.find(`option[value="${matches[2]}"]`).length) { - $langcode.val(matches[2]); - } - }); + $form.find('.file-import-input').on('change', function() { + // If the filename is fully the language code or the filename + // ends with a language code, pre-select that one. + const matches = $(this) + .val() + .match(/([^.][.]*)([\w-]+)\.po$/); + if ( + matches && + $langcode.find(`option[value="${matches[2]}"]`).length + ) { + $langcode.val(matches[2]); + } + }); } }, }; -}(jQuery, Drupal)); +})(jQuery, Drupal);