• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript i18n.__函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中i18n.__函数的典型用法代码示例。如果您正苦于以下问题:TypeScript __函数的具体用法?TypeScript __怎么用?TypeScript __使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了__函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: saveFiles

  private saveFiles(contractName: string, indexCode: string, dappCode: string) {
    const indexFilePath = path.join(this.embark.fs.dappPath(), "app", `${contractName}.html`);
    const dappFilePath = path.join(this.embark.fs.dappPath(), "app", `${contractName}.js`);

    if (!this.options.overwrite && (this.embark.fs.existsSync(indexFilePath) || this.embark.fs.existsSync(dappFilePath))) {
      return [];
    }

    this.embark.fs.writeFileSync(indexFilePath, indexCode);
    this.embark.fs.writeFileSync(dappFilePath, dappCode);

    this.embark.logger.info(__(`${indexFilePath} generated`));
    this.embark.logger.info(__(`${dappFilePath} generated`));
    return [indexFilePath, dappFilePath];
  }
开发者ID:iurimatias,项目名称:embark-framework,代码行数:15,代码来源:index.ts


示例2:

      Object.keys(this.associationAttributes(contractName)).forEach((associationName) => {
        if (associationName === contractName) {
          this.logger.error(__(`${contractName} is referring to himself.`));
          process.exit(1);
        }

        if (!contractNames.includes(associationName)) {
          this.logger.error(__(`${contractName} not found. Please make sure it is in the description.`));
          process.exit(1);
        }

        if (Object.keys(this.data[associationName]).includes(contractName)) {
          this.logger.error(__(`${associationName} has a cyclic dependencies with ${contractName}.`));
          process.exit(1);
        }
      });
开发者ID:iurimatias,项目名称:embark-framework,代码行数:16,代码来源:smartContractsRecipe.ts


示例3: validate

  public validate() {
    if (!scaffoldingSchema(this.data)) {
      this.logger.error(__("The scaffolding schema is not valid:"));
      this.logger.error(ajv.errorsText(scaffoldingSchema.errors));
      process.exit(1);
    }

    const contractNames = Object.keys(this.data);
    contractNames.forEach((contractName) => {
      if (contractName[0] !== contractName[0].toUpperCase()) {
        this.logger.error(__(`${contractName} must be capitalized.`));
        process.exit(1);
      }
      Object.keys(this.associationAttributes(contractName)).forEach((associationName) => {
        if (associationName === contractName) {
          this.logger.error(__(`${contractName} is referring to himself.`));
          process.exit(1);
        }

        if (!contractNames.includes(associationName)) {
          this.logger.error(__(`${contractName} not found. Please make sure it is in the description.`));
          process.exit(1);
        }

        if (Object.keys(this.data[associationName]).includes(contractName)) {
          this.logger.error(__(`${associationName} has a cyclic dependencies with ${contractName}.`));
          process.exit(1);
        }
      });
    });
  }
开发者ID:iurimatias,项目名称:embark-framework,代码行数:31,代码来源:smartContractsRecipe.ts


示例4: registerConsoleCommands

  private registerConsoleCommands() {
    this.embark.registerConsoleCommand({
      description: __("Start or stop the API"),
      matches: ["api start"],
      process: (cmd: string, callback: () => void) => {
        this.embark.events.request("api:start", callback);
      },
      usage: "api start/stop",
    });

    this.embark.registerConsoleCommand({
      matches: ["api stop"],
      process: (cmd: string, callback: () => void) => {
        this.embark.events.request("api:stop", callback);
      },
    });

    this.embark.registerConsoleCommand({
      matches: ["log api on"],
      process: (cmd: string, callback: () => void) => {
        this.embark.events.request("logs:api:enable", callback);
      },
    });

    this.embark.registerConsoleCommand({
      matches: ["log api off"],
      process: (cmd: string, callback: () => void) => {
        this.embark.events.request("logs:api:disable", callback);
      },
    });
  }
开发者ID:iurimatias,项目名称:embark-framework,代码行数:31,代码来源:index.ts


示例5: constructor

  constructor(private embark: Embark, private options: any) {
    this.embark.events.emit("status", __("Starting API & Cockpit UI"));
    findNextPort(DEFAULT_PORT).then((port: any) => {
      this.port = port;
      this.apiUrl = `http://${DEFAULT_HOSTNAME}:${this.port}`;

      this.api = new Server(this.embark, this.port, dockerHostSwap(DEFAULT_HOSTNAME), options.plugins);

      this.listenToCommands();
      this.registerConsoleCommands();

      this.embark.events.request("processes:register", "api", {
        launchFn: (cb: (error: Error | null, message: string) => void) => {
          this.api.start()
            .then(() => cb(null, __("Cockpit UI available at %s", this.apiUrl)))
            .catch((error: Error) => cb(error, ""));
        },
        stopFn: (cb: (error: Error | null, message: string) => void) => {
          this.api.stop()
            .then(() => cb(null, __("Cockpit UI stopped")))
            .catch((error: Error) => cb(error, ""));
        },
      });

      this.embark.events.request("processes:launch", "api", (error: Error | null, message: string) => {
        if (error) {
          this.embark.logger.error(error.message);
        } else {
          this.embark.logger.info(message);
        }
        this.setServiceCheck();
      });
    });
  }
开发者ID:iurimatias,项目名称:embark-framework,代码行数:34,代码来源:index.ts


示例6: callback

 process: (cmd: string, callback: (err?: string|object, output?: string) => void) => {
   if (!this.cmdDebugger) {
     this.embark.logger.warn(NO_DEBUG_SESSION);
     return callback();
   }
   this.cmdDebugger = null;
   this.embark.logger.info(__("The debug session has been stopped"));
   this.cmdDebugger.unload();
 },
开发者ID:iurimatias,项目名称:embark-framework,代码行数:9,代码来源:index.ts


示例7: next

 }, (err: Error, result: boolean) => {
   if (err) {
     return next(err);
   }
   if (!result) {
     // No compiler was compatible
     return next(new Error(__("No installed compiler was compatible with your version of %s files", extension)));
   }
   next();
 });
开发者ID:iurimatias,项目名称:embark-framework,代码行数:10,代码来源:index.ts


示例8: executeCmd

  private executeCmd(cmd: string, callback: any) {
    // if this is the embark console process, send the command to the process
    // running all the needed services (ie the process running `embark run`)
    if (this.isEmbarkConsole) {
      return this.ipc.request("console:executeCmd", cmd, callback);
    }

    if (!(cmd.split(" ")[0] === "history" || cmd === __("history"))) {
      this.saveHistory(cmd);
    }
    const plugins = this.plugins.getPluginsProperty("console", "console");
    const helpDescriptions = [];
    for (const plugin of plugins) {
      if (plugin.description) {
        helpDescriptions.push({
          description: plugin.description,
          matches: plugin.matches,
          usage: plugin.usage,
        });
      }
      if (plugin.matches) {
        const isFunction = typeof plugin.matches === "function";
        if ((isFunction && plugin.matches.call(this, cmd))
          || (!isFunction && plugin.matches.includes(cmd))) {
          return plugin.process.call(this, cmd, callback);
        }
        continue;
      }

      const pluginResult = plugin.call(this, cmd, {});

      if (typeof pluginResult !== "object") {
        if (pluginResult !== false && pluginResult !== "false" && pluginResult !== undefined) {
          this.logger.warn("[DEPRECATED] In future versions of embark, we expect the console command to return an object " +
            "having 2 functions: match and process." +
            " The documentation with example can be found here: https://embark.status.im/docs/plugin_reference.html#embark-registerConsoleCommand-callback-options");
          return callback(null, pluginResult);
        }
      } else if (pluginResult.match()) {
        return pluginResult.process(callback);
      }
    }

    const output = this.processEmbarkCmd(cmd, helpDescriptions);
    if (output) {
      return callback(null, output);
    }

    this.events.request("runcode:eval", cmd, (err: Error, result: any) => {
      if (err) {
        return callback(err.message);
      }
      callback(null, result);
    }, true);
  }
开发者ID:iurimatias,项目名称:embark-framework,代码行数:55,代码来源:index.ts


示例9: saveFile

  private saveFile(contractName: string, code: string) {
    const filename = `${contractName}.sol`;
    const contractDirs = this.embark.config.embarkConfig.contracts;
    const contractDir = Array.isArray(contractDirs) ? contractDirs[0] : contractDirs;
    const filePath = this.embark.fs.dappPath(contractDir.replace(/\*/g, ""), filename);
    if (!this.options.overwrite && this.embark.fs.existsSync(filePath)) {
      this.embark.logger.error(__(`The contract ${contractName} already exists, skipping.`));
      return;
    }

    this.embark.fs.writeFileSync(filePath, code);
    return filePath;
  }
开发者ID:iurimatias,项目名称:embark-framework,代码行数:13,代码来源:index.ts


示例10: registerConsoleCommands

 private registerConsoleCommands() {
   this.embark.registerConsoleCommand({
     description: __("display console commands history"),
     matches: (cmd: string) => {
       const [cmdName] = cmd.split(" ");
       return cmdName === "history";
     },
     process: (cmd: string, callback: any) => {
       const [_cmdName, length] = cmd.split(" ");
       this.getHistory(length, callback);
     },
     usage: "history [optionalLength]",
   });
 }
开发者ID:iurimatias,项目名称:embark-framework,代码行数:14,代码来源:index.ts



注:本文中的i18n.__函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript i18next.addResource函数代码示例发布时间:2022-05-25
下一篇:
TypeScript hydrolysis.Analyzer类代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap