Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed several translations with better English #81

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
23 changes: 13 additions & 10 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ about: Create a report to help us improve

---

扩展版本 (extension version):
浏览器版本 (browser version):
操作系统 (operating system):
问题描述 (problem description):

实际行为 (actual behavior):

期望行为 (expected behavior):

重现步骤 (reproduce step):
扩展版本/Extension Version:

浏览器版本/Browser Type and Version (Chrome Version 70.0.3538.110 (Official Build) (64-bit); Firefox Version 63.0.3; etc.):

操作系统/Operating System and Version (Windows 10 Pro Version 10.0.17134 Build 17134; Ubuntu 18.04 LTS; Debian Stretch V9; etc.):
Raymo111 marked this conversation as resolved.
Show resolved Hide resolved

问题描述/Problem Description:

期望行为/Expected Behavior:

实际行为/Experienced behavior:

重现步骤/Steps for reproduction:
51 changes: 26 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,53 +13,54 @@

[中文README](./README.zh.md)

### A better onetab extension
### The Better-Onetab extension

More beautiful and more feature.
More Beauty. More features.

### Features

[Send us a feature request.](https://github.com/cnwangjie/better-onetab/issues/new)

- [x] Basic feature of OneTab
- [x] Popup page with simple list
- [x] Pin tab list
- [x] Keyboard shortcuts
- [x] Options
- [x] Basic features of OneTab
- [x] Popup page with simple list of tabs
- [x] Pinned tabs list
- [x] Better Keyboard shortcuts
- [x] Options menu
- [x] Drag and drop re-ordering
- [x] Data & Options sync
- [x] Import & Export
- [x] Add stored tabs to history
- [x] I18N support (only English & Chinese currently)
- [x] Data & Options syncing
- [x] Import & Export function
- [x] Option to add stored tabs to history
- [x] I18N support (currently only available in English & Chinese)

More details in [changelog](CHANGELOG.md)
More details are available in [changelog](CHANGELOG.md)

### Next step

You can learn more about the next step of better onetab at [project page](https://github.com/cnwangjie/better-onetab/projects/1) and leave your comment in [issues page](https://github.com/cnwangjie/better-onetab/issues).
You can learn more about the future of Better-Onetab at [our project page](https://github.com/cnwangjie/better-onetab/projects/1).
If you have any comments or suggestions, create an [issue](https://github.com/cnwangjie/better-onetab/issues).

### Installation

Install from [Google Extension Store](https://chrome.google.com/webstore/detail/better-onetab/eookhngofldnbnidjlbkeecljkfpmfpg)
For Google Chrome, you can install Better-Onetab from the [Google Extension Store](https://chrome.google.com/webstore/detail/better-onetab/eookhngofldnbnidjlbkeecljkfpmfpg)

Install from [Firefox Add-ons](https://addons.mozilla.org/firefox/addon/better-onetab/) (not optimized)
For Mozilla Firefox, you can install Better-Onetab as a [Firefox Add-on](https://addons.mozilla.org/firefox/addon/better-onetab/) (Note that this is not optimized)

Download the released .crx file in [releases page](https://github.com/cnwangjie/better-onetab/releases) and drag it to chrome extensions page.
Alternatively, you can download the released .crx file in [releases page](https://github.com/cnwangjie/better-onetab/releases) and drag it to chrome extensions page.

Build your own from following steps
If you completely distrust us, you can build your own binaries from our source code by following these steps:

### Development

0. Clone this repo
0. Install dependencies (use `yarn` command)
0. Auto reload (use `yarn dev` command)
0. Click LOAD UNPACKED button and select ./dist path
0. Build (use `yarn build` command)
1. Clone this repo
2. Install required dependencies (with `yarn`)
3. Auto reload (with `yarn dev`)
4. Select **Load Unpacked** and then the `./dist path`
5. Build it (with `yarn build`)

### Especially thanks
### Special thanks to:

Thanks for [@Yasujizr](https://github.com/Yasujizr) helped this project design new logo and banners.
[@Yasujizr](https://github.com/Yasujizr) for designing new logos and banners for this project

### License

MIT LICENSE
[MIT LICENSE](https://choosealicense.com/licenses/mit/)
8 changes: 6 additions & 2 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
module.exports = {
development: {
__CLIENT_ID__: '530831729511-eq8apt6dhjimbmdli90jp2ple0lfmn3l.apps.googleusercontent.com',
__DEV_CSP__: process.env.MOZ ? '' : ' http://localhost:8098 chrome-extension://nhdogjmejiglipccpnnnanhbledajbpd'
__DEV_CSP__: process.env.MOZ ? '' : ' http://localhost:8098 chrome-extension://nhdogjmejiglipccpnnnanhbledajbpd',
__EXT_NAME__: 'better-onetab (dev)',
__CONTENT_SCRIPTS_MATCHES__: process.env.MOZ ? '*://*/*' : 'http://127.0.0.1:3000/*',
},
production: {
__CLIENT_ID__: '530831729511-dclgvblhv7var13mvpjochb5f295a6vc.apps.googleusercontent.com',
__DEV_CSP__: ''
__DEV_CSP__: '',
__EXT_NAME__: '__MSG_ext_name__',
__CONTENT_SCRIPTS_MATCHES__: 'https://boss.cnwangjie.com/*',
}
}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@
"prebuild": "yarn lint"
},
"dependencies": {
"downloadjs": "^1.4.7",
"lodash": "^4.17.10",
"material-design-icons-iconfont": "^3.0.3",
"moment": "^2.22.1",
"vue": "^2.5.16",
"vue-clipboard2": "^0.2.1",
"vue-router": "^3.0.1",
"vuedraggable": "^2.16.0",
"vuetify": "^1.2.3",
Expand All @@ -33,9 +35,9 @@
"babel-loader": "^7.1.4",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"cross-env": "^5.2.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^5.3.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
Expand Down
Loading