From 957dc40ddf831e6a4c6e6a12d2df096b3f3f1714 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Fri, 19 May 2017 23:39:22 +0200 Subject: [PATCH] Replace a couple of leftover `make.js` references with `gulpfile.js` in docs/comments Also updates a `console.log` statement in the `gulp importl10n` command (since I forgot it in a previous patch, and it didn't seem necessary with a separate patch for it). --- docs/contents/getting_started/index.md | 2 +- external/importL10n/locales.js | 2 +- gulpfile.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contents/getting_started/index.md b/docs/contents/getting_started/index.md index b01362ec5..4e2092c03 100644 --- a/docs/contents/getting_started/index.md +++ b/docs/contents/getting_started/index.md @@ -92,7 +92,7 @@ $ cd pdf.js ├── extensions/ - various browser extensions ├── external/ - third party code ├── l10n/ - translation files -├── make.js - build script +├── gulpfile.js - build script ├── package.json ├── src/ │   ├── core/ - core layer diff --git a/external/importL10n/locales.js b/external/importL10n/locales.js index 2b0bcf2fa..339e24028 100644 --- a/external/importL10n/locales.js +++ b/external/importL10n/locales.js @@ -20,7 +20,7 @@ var https = require('https'); var path = require('path'); // Defines all languages that have a translation at mozilla-central. -// This is used in make.js for the importl10n command. +// This is used in gulpfile.js for the `importl10n` command. var langCodes = [ 'ach', 'af', 'ak', 'an', 'ar', 'as', 'ast', 'az', 'be', 'bg', 'bn-BD', 'bn-IN', 'br', 'bs', 'ca', 'cs', 'csb', 'cy', 'da', diff --git a/gulpfile.js b/gulpfile.js index b47fb03bc..20e819b2b 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1196,7 +1196,7 @@ gulp.task('importl10n', function(done) { var locales = require('./external/importL10n/locales.js'); console.log(); - console.log('### Importing translations from mozilla-aurora'); + console.log('### Importing translations from mozilla-central'); if (!fs.existsSync(L10N_DIR)) { fs.mkdirSync(L10N_DIR);