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

we one go over it #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6,492 changes: 6,492 additions & 0 deletions Tools/new/main.js

Large diffs are not rendered by default.

60,139 changes: 60,139 additions & 0 deletions Tools/new/renderer.js

Large diffs are not rendered by default.

9,908 changes: 9,908 additions & 0 deletions Tools/old/main.js

Large diffs are not rendered by default.

84,121 changes: 84,121 additions & 0 deletions Tools/old/renderer.js

Large diffs are not rendered by default.

41 changes: 41 additions & 0 deletions Tools/readjs.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
def get_label_str(filename):
temp_list = []
with open(filename, 'r', encoding="utf-8") as f:
# f.read()
for line in f.readlines():
# print(line.strip()) # 把末尾的'\n'删掉
if '''label: "''' in line:
# print(line)
temp = line[line.index('''"'''):].strip('"')
try:
temp2 = temp
temp = temp[:temp.index('''",''')]
except ValueError:
print(temp.strip('\n'))
temp = temp2[:temp2.index('''"''')]
print(temp)
# print(temp)
if '''label: "''' in temp:
temp = temp[temp.index('''label: ''') + 7:]
# print(temp2)
temp_list.append(temp)
return temp_list


def write_txt(filename, temp):
with open(filename, 'w', encoding="utf-8") as f:
for el2 in temp:
f.writelines(el2 + '\n')


temp_list1 = get_label_str('./old/main.js')
temp_list2 = get_label_str('./old/renderer.js')
temp_list3 = get_label_str('./new/main.js')
temp_list4 = get_label_str('./new/renderer.js')

# main.js
write_txt("test.txt", temp_list1)
write_txt("test2.txt", temp_list3)
# renderer.js
write_txt("test3.txt", temp_list2)
write_txt("test4.txt", temp_list4)
51 changes: 51 additions & 0 deletions Tools/test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
&文件
新建 &仓库…
导入 &本地仓库…
&克隆仓库…
&选项…
quit
&编辑
undo
redo
cut
copy
paste
&全选
&查找
&查看
&查看更改
&查看历史更改
仓库&列表
&分支列表
填写提交&备注
切换为&全屏
重置缩放
放大
缩小
&重新载入
&打开开发者工具
&仓库
Pu&ll(拉取)
&在 github 上查看
在" + (null != t ? t+"终端" : "终端")+"&打开
&在文件资源管理器中显示
&打开
在GitHub上创建 &issue
仓库&设置…
&分支
新建 &分支…
&重命名当前分支…
&删除当前分支…
放弃所有更改…
从 "+p+" &更新
&比较分支
&选择分支合并到当前分支…
&将当前分支变基(rebase)…
在 &GitHub 上进行比较
提交bug...
&在GitHub上寻找帮助…
查看用户指引
查看键盘快捷键
&查看程序日志
&帮助
&关于 GitHub 桌面版
50 changes: 50 additions & 0 deletions Tools/test2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
&File
New &repository…
Add &local repository…
Clo&ne repository…
&Options…
quit
&Edit
undo
Cu&t
copy
Select &all
find
&View
&Changes
&History
Repository &list
&Branches list
Go to &Summary
Toggle &full screen
Reset zoom
Zoom in
Zoom out
&Reload
show-devtools
&Repository
Pu&ll
&View on GitHub
O&pen in
Show in E&xplorer
&Open in
Create &issue on GitHub
Repository &settings…
New &branch…
&Rename…
&Delete…
Discard all changes…
&Update from
&Compare to branch
&Merge into current branch…
Squas&h and merge into current branch…
R&ebase current branch…
Compare on &GitHub
&Branch
Report issue…
&Contact GitHub support…
Show User Guides
Show keyboard shortcuts
S&how logs in Explorer
&Help
&About GitHub Desktop
79 changes: 79 additions & 0 deletions Tools/test3.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
在" + this.props.shellLabel+"中打开
在资源管理器中显示
克隆存储库…
创建新的存储库…
添加现有存储库…
撤销
重做
全选
Discard all changes…
Copy file path
Show in Explorer
Ignore file (add to .gitignore)
Open with default program
Open with default program
同一界面显示
隐藏空格的更改
Copy
Copy
File does not exist on disk
Copy file path
Show in Explorer
Open with default program
Revert changes in commit
Create Tag…
Copy SHA
Delete tag
Delete tag…
Name
Yes, delete this branch on the remote
Do not show this message again
Username or email address
Password
Authentication code
Enterprise Server address
Name
Email
Yes, submit periodic usage stats
询问我如何处理更改
始终将更改同步到新的分支
始终暂存并保留更改在当前分支上
昵称
电子邮件地址
Other…
根据系统主题自动切换
默认外部编辑器
默认终端
删除存储库
放弃更改
强制推送
To contribute to the parent repository
For my own purposes
本地路径
Git忽略类型
许可证
名称
描述
本地路径
添加自述文件(README.md)来初始化此存储库
本地路径
本地路径
创建分支基于…
分支名
企业服务地址
Username or email address
Password
Authentication code
Organization
Name
Description
同时将该存储库移动到回收站
用户名
密码
Open with default program
Show in Explorer
Help GitHub Desktop improve by submitting usage stats
Do not show this message again
Do not show this message again
Name
Do not show this message again
105 changes: 105 additions & 0 deletions Tools/test4.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
Add to dictionary
en-US" === i ? "Set spellcheck to English" : "Set spellcheck to system language
Copy repo name
Open in
Show in Explorer
Remove alias
Clone repository…
Create new repository…
Add existing repository…
Undo
Redo
Select all
To contribute to the parent repository
For my own purposes
Name
Email
Use my global Git config
Use a local Git config
Discard all changes…
Copy file path
Show in Explorer
Ignore file (add to .gitignore)
Open with default program
Open with default program
Unified
Hide whitespace changes
Copy
Expand whole file
Collapse expanded lines
Copy
Expand whole file
Collapse expanded lines
File does not exist on disk
Copy file path
Show in Explorer
Open with default program
Amend commit…
Undo commit…
Reset to commit…
Revert changes in commit
Create branch from commit
Create Tag…
Cherry-pick commit…
"Copy SHA
Delete tag
Delete tag…
Rename…
Copy branch name
"Delete…
Create a merge commit
Squash and merge
Rebase
Name
Yes, delete this branch on the remote
Do not show this message again
Username or email address
Password
Authentication code
Enterprise or AE address
Configure manually
Name
Email
Name
Email
Ask me where I want the changes to go
Always bring my changes to my new branch
Always stash and leave my changes on the current branch
Periodically fetch and refresh status of all repositories
Other…
External editor
Shell
Removing repositories
Discarding changes
Force pushing
Local path
Git ignore
License
Name
Description
Local path
Initialize this repository with a README
Local path
Local path
Create branch based on…
Name
Enterprise address
Username or email address
Password
Authentication code
Organization
Name
Description
Also move this repository to Recycle Bin
Username
Password
Do not show this message again
Open with default program
Show in Explorer
Do not show this message again
You have changes on this branch. What would you like to do with them?
Name
You have changes on this branch. What would you like to do with them?
Do not show this message again
Do not show this message again
Do not show this message again
Binary file not shown.