未验证 提交 172a32d5 编写于 作者: K Keyi Xie

fix mispell

上级 56f1b479
...@@ -24,7 +24,7 @@ function log(message: any, ...rest: any[]): void { ...@@ -24,7 +24,7 @@ function log(message: any, ...rest: any[]): void {
} }
export interface Language { export interface Language {
id: string; // laguage id, e.g. zh-tw, de id: string; // language id, e.g. zh-tw, de
translationId?: string; // language id used in translation tools, e.g zh-hant, de (optional, if not set, the id is used) translationId?: string; // language id used in translation tools, e.g zh-hant, de (optional, if not set, the id is used)
folderName?: string; // language specific folder name, e.g. cht, deu (optional, if not set, the id is used) folderName?: string; // language specific folder name, e.g. cht, deu (optional, if not set, the id is used)
} }
...@@ -1370,4 +1370,4 @@ function decodeEntities(value: string): string { ...@@ -1370,4 +1370,4 @@ function decodeEntities(value: string): string {
function pseudify(message: string) { function pseudify(message: string) {
return '\uFF3B' + message.replace(/[aouei]/g, '$&$&') + '\uFF3D'; return '\uFF3B' + message.replace(/[aouei]/g, '$&$&') + '\uFF3D';
} }
\ No newline at end of file
...@@ -32,7 +32,7 @@ async function _doExecute(task) { ...@@ -32,7 +32,7 @@ async function _doExecute(task) {
// Always invoke as if it were a callback task // Always invoke as if it were a callback task
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
if (task.length === 1) { if (task.length === 1) {
// this is a calback task // this is a callback task
task((err) => { task((err) => {
if (err) { if (err) {
return reject(err); return reject(err);
......
...@@ -54,7 +54,7 @@ async function _doExecute(task: Task): Promise<void> { ...@@ -54,7 +54,7 @@ async function _doExecute(task: Task): Promise<void> {
// Always invoke as if it were a callback task // Always invoke as if it were a callback task
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
if (task.length === 1) { if (task.length === 1) {
// this is a calback task // this is a callback task
task((err) => { task((err) => {
if (err) { if (err) {
return reject(err); return reject(err);
...@@ -122,4 +122,4 @@ export function define(name: string, task: Task): Task { ...@@ -122,4 +122,4 @@ export function define(name: string, task: Task): Task {
task.taskName = name; task.taskName = name;
task.displayName = name; task.displayName = name;
return task; return task;
} }
\ No newline at end of file
...@@ -74,7 +74,7 @@ function update(options) { ...@@ -74,7 +74,7 @@ function update(options) {
let translationPaths = []; let translationPaths = [];
i18n.pullI18nPackFiles(server, userName, apiToken, { id: languageId }, translationPaths) i18n.pullI18nPackFiles(server, userName, apiToken, { id: languageId }, translationPaths)
.on('error', (error) => { .on('error', (error) => {
console.log(`Error occured while importing translations:`); console.log(`Error occurred while importing translations:`);
translationPaths = undefined; translationPaths = undefined;
if (Array.isArray(error)) { if (Array.isArray(error)) {
error.forEach(console.log); error.forEach(console.log);
...@@ -100,7 +100,7 @@ function update(options) { ...@@ -100,7 +100,7 @@ function update(options) {
gulp.src(path.join(location, languageId, '**', '*.xlf')) gulp.src(path.join(location, languageId, '**', '*.xlf'))
.pipe(i18n.prepareI18nPackFiles(i18n.externalExtensionsWithTranslations, translationPaths, languageId === 'ps')) .pipe(i18n.prepareI18nPackFiles(i18n.externalExtensionsWithTranslations, translationPaths, languageId === 'ps'))
.on('error', (error) => { .on('error', (error) => {
console.log(`Error occured while importing translations:`); console.log(`Error occurred while importing translations:`);
translationPaths = undefined; translationPaths = undefined;
if (Array.isArray(error)) { if (Array.isArray(error)) {
error.forEach(console.log); error.forEach(console.log);
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
"resolveJsonModule": true, "resolveJsonModule": true,
"experimentalDecorators": true, "experimentalDecorators": true,
// enable JavaScript type checking for the language service // enable JavaScript type checking for the language service
// use the tsconfig.build.json for compiling wich disable JavaScript // use the tsconfig.build.json for compiling which disable JavaScript
// type checking so that JavaScript file are not transpiled // type checking so that JavaScript file are not transpiled
"allowJs": true, "allowJs": true,
"checkJs": true, "checkJs": true,
...@@ -22,4 +22,4 @@ ...@@ -22,4 +22,4 @@
"exclude": [ "exclude": [
"node_modules/**" "node_modules/**"
] ]
} }
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册