Google I/O 2014发布的Material Design将会成为统一Android,Chrome等平台的设计语言规范,对从业人员意义重大,我们正通过互联网的方式将其翻译成中文~
我们欢迎每一个人参与进来一起翻译和校队~~
##一起来参与 如果想做出贡献(翻译或者校对)的话,请加QQ群:137198122,谢谢!
原文文档: http://www.google.com/design/spec/material-design/introduction.html
- fork主仓库(https://github.com/1sters/material_design_zh)
- 按照章节(页面)认领翻译(每次申请一个章节),在下面这个
README.md
里找还没有被人申请的章节,写上(@你的github号),给主仓库的master
分支提pull request; - 提的pull request 被确认,合并到主仓库后,代表你申请的章节占位完成,开始翻译;
- 翻译过程请参 翻译协作规范 ,完成翻译后提交pull request给主仓库的
master
分支; - 校核完成后,从主仓库的
master
分支合并到主publish
分支; - 全部翻译完成后,生成PDF文档和网页发布;
为了让大家协作顺畅,需要每一个人遵循如下协作规范~
- 使用markdown进行翻译,文件名必须使用英文,因为中文的话gitbook编译的时候会出问题
- 翻译后的文档请放到SOURCE文件夹下的对应章节中,然后pull request即可,我会用gitbook编译成网页
- 工作分支为
master
,用于GitHub的pages服务 - fork过去之后新建一个分支进行翻译,完成后pull request这个分支,没问题的话我会合并到
master
分支中 - 有其他任何问题都欢迎发issue,我们看到了会尽快回复
如果不熟悉的Markdown的,请参考
- https://help.github.com/articles/markdown-basics
- https://help.github.com/articles/github-flavored-markdown
认领章节的同学在这里标示(参考已有的标示规范)~
- Material Design
- 概述 - Introduction √ by iceskysl
- Animation
- Authentic Motion - Authentic Motion 1% by zhenbeiju
- 交互响应 - Responsive Interaction √ by 7heaven
- 有意义的转场动画 - Meaningful Transitions √ by Jingsha
- Delightful Details - Delightful Details 1% by com360
- Style
- Color 1% by arjinmc
- Typography 1% By acely
- 图标 - Icons √ by Haoxiqiang
- Imagery 1% by lhyqy5
- Layout
- Principles 1% by vincent4j
- Metrics and Keylines 1% by CodeDiving
- 结构 - Structure 90% by donlianggit
- Components
- 底部窗口 - Bottom Sheets √ by com360
- Buttons 1% by 7heaven
- Cards 1% by ThatMrL
- Chips 1% by Kris
- Dialogs 1% by Kris
- Dividers 1% by Kris
- Grids 1% by CodeDiving
- Lists 1% by CodeDiving
- List controls - List controls 1% by Jingsha
- Menus 1% by CodeDiving
- Progress and Activity - Progress and Activity 1% by SamanthaChou
- Sliders 1% by ThatMrL
- Snackbars and Toasts 1% by ThatMrL
- Subheaders 1% by marshluca
- 开关 - Switches 1% by vincent4j
- Tabs - Tabs 1% by vincent4j
- Text fields - Text fields 1% by SamanthaChou
- Tooltips 1% by lhyqy5
- Patterns
- Usability
- Accessibility - Accessibility 1% by fortianwei
- Resources
- 布局模板 - Layout Templates 90% by iceskysl
- 贴纸 - Sticker Sheets 90% by iceskysl
- Roboto 字体 - Roboto Font 90% by iceskysl
- 调色板 - Color Palettes 90% by iceskysl
##协作过程演示
git st
是我设置的一个git的别名,其全称是git status
打开https://github.com/1sters/material_design_zh ,fork一份自己的仓库;
iceskysls-MacBook-Pro:1sters iceskysl$ git clone git@github.com:IceskYsl/material_design_zh.git
Cloning into 'material_design_zh'...
remote: Counting objects: 3, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 3 (delta 0), reused 3 (delta 0)
Receiving objects: 100% (3/3), done.
Checking connectivity... done.
iceskysls-MacBook-Pro:1sters iceskysl$ cd material_design_zh
iceskysls-MacBook-Pro:material_design_zh iceskysl$ git remote add upstream https://github.com/1sters/material_design_zh.git
iceskysls-MacBook-Pro:material_design_zh iceskysl$ git remote -v
origin git@github.com:IceskYsl/material_design_zh.git (fetch)
origin git@github.com:IceskYsl/material_design_zh.git (push)
upstream https://github.com/1sters/material_design_zh.git (fetch)
upstream https://github.com/1sters/material_design_zh.git (push)
iceskysls-MacBook-Pro:material_design_zh iceskysl$ git fetch upstream
remote: Counting objects: 43, done.
remote: Compressing objects: 100% (33/33), done.
remote: Total 41 (delta 12), reused 32 (delta 3)
Unpacking objects: 100% (41/41), done.
From https://github.com/1sters/material_design_zh
* [new branch] master -> upstream/master
iceskysls-MacBook-Pro:material_design_zh iceskysl$ git merge upstream/master
Updating 6899552..ea46595
Fast-forward
README.md | 115 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------------------------------------------
SOURCE/SUMMARY.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 119 insertions(+), 47 deletions(-)
create mode 100644 SOURCE/SUMMARY.md
iceskysls-MacBook-Pro:material_design_zh iceskysl$ git st
On branch ing
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: README.md
no changes added to commit (use "git add" and/or "git commit -a")
iceskysls-MacBook-Pro:material_design_zh iceskysl$ git add .
iceskysls-MacBook-Pro:material_design_zh iceskysl$ git commit -m "完成规范编写"
iceskysls-MacBook-Pro:material_design_zh iceskysl$ git push origin master
Counting objects: 46, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (39/39), done.
Writing objects: 100% (44/44), 7.50 KiB | 0 bytes/s, done.
Total 44 (delta 13), reused 0 (delta 0)
To git@github.com:IceskYsl/material_design_zh.git
* [new branch] master -> master
推送自己的远端仓库(master分支)到主仓库(master分支)
├── README.md
├── SUMMARY.md
├── cover.jpg
├── cover_small.jpg
├── material-design
│ ├── images
│ │ ├── materialdesign-goals-cutrectangles_large_mdpi.png
│ │ ├── materialdesign-goals-landingimage_large_mdpi.png
│ │ ├── materialdesign-goals-swirlanddot_large_mdpi.png
│ │ ├── materialdesign-principles-circleplus_large_mdpi.png
│ │ ├── materialdesign-principles-flyingsquare_large_mdpi.png
│ │ └── materialdesign-principles-layersquares_large_mdpi.png
│ └── introduction.md
├── animation
│ ├── authentic-motion.md
│ ├── delightful-details.md
│ ├── meaningful-transitions.md
│ └── responsive-interaction.md
├── style
│ ├── color.md
│ ├── icons.md
│ ├── imagery.md
│ └── typography.md
├── layout
│ ├── layout-principles.md
│ ├── metrics-and-keylines.md
│ └── structure.md
├── components
│ ├── bottom-sheets.md
│ ├── buttons.md
│ ├── cards.md
│ ├── chips-tokens.md
│ ├── dialogs.md
│ ├── dividers.md
│ ├── grids.md
│ ├── list-controls.md
│ ├── lists.md
│ ├── menus.md
│ ├── progress-activity.md
│ ├── sliders.md
│ ├── snackbars-and-toasts.md
│ ├── subheaders.md
│ ├── switches.md
│ ├── tabs.md
│ ├── text-fields.md
│ └── tooltips.md
├── patterns
│ ├── gestures.md
│ ├── imagery-treatment.md
│ ├── promoted-actions.md
│ ├── search.md
│ ├── selection.md
│ └── settings.md
└── usability
└── accessibility.md
├── resources
│ ├── color-palettes.md
│ ├── layout-templates.md
│ ├── roboto-font.md
│ └── sticker-sheets.md
- iceskysl
- vincent4j
- Kris
- zhenbeiju
- Haoxiqiang
- CodeDiving
- 7heaven
- com360
- Jingsha
- ThatMrL
- DonLiangGit
- fortianwei
###代码如何处理 使用markdown的代码规范处理,如
```html
<div class="hey">...</div>
```
###图片如何处理
在章(如components)下创建images
目录,将图片原文件名(如materialdesign-goals-cutrectangles_large_mdpi.png)存到该目录下,然后在文档中这样调用
![ALT文字](images/materialdesign-goals-landingimage_large_mdpi.png)
详见 issue 57
详见 issue 58
###视频如何处理 视频在markdown中可以这样处理
<video width="720" height="270" src="http://material-design.storage.googleapis.com/videos/animation-authentic-motion-authenticMotion_massAndWeight_ex1_large_xhdpi.webm" controls="controls"></video>