zoukankan      html  css  js  c++  java
  • bugfree3.0.1-BUG解决方案修改

    该篇内容来自文档“masterBugFree2.pdf”,记录在这里。

    1、如何将解决方案改为中文

    在BugfreeLangH_CN_UTF-8 \_COMMON.php 文件中做如下修改
    /* Define the Resolution. */
    $_LANG['BugResolutions'] = array
    (
    '' => '',
    'By Design' => '就这么设计的' ,
    'Duplicate' => '重复的任务',
    // 'External' => 'External',
    // 'Fixed' => 'Fixed',
    // 'Not Repro' => 'Not Repro',
    // 'Postponed' => 'Postponed',
    // 'Will not Fix' => "Won't Fix"
    );

    2、怎样添加BUG的解决方案

    在BugfreeLangH_CN_UTF-8 \_COMMON.php 文件中做如下修改
    /* Define the Resolution. */
    $_LANG['BugResolutions'] = array
    (
    '' => '',
    'By Design' => 'By Design',
    'Duplicate' => 'Duplicate',
    'External' => 'External',
    'Fixed' => 'Fixed',
    'Not Repro' => 'Not Repro',
    'Postponed' => 'Postponed',
    'Will not Fix' => "Won't Fix", //别忘了加一个逗号
    "test" => "test" //直接在这里添加
    );

  • 相关阅读:
    php面试题-2
    排序算法-1
    php面试题-1
    ES6基础-4
    ES6基础-3
    mysql优化-1
    ES6基础-2
    vuecli 项目进行gzip压缩 使页面加载速度更快
    vueCli3 项目创建时,git bash 箭头选择无效问题
    gulp4简单用法和问题总结
  • 原文地址:https://www.cnblogs.com/LiangHu/p/6762079.html
Copyright © 2011-2022 走看看