Skip to content

Commit

Permalink
Merge pull request #32 from wxy/table
Browse files Browse the repository at this point in the history
0.0.9:重构以支持跨行跨列
  • Loading branch information
wxy authored May 15, 2024
2 parents b90d954 + 22a7727 commit ae00257
Show file tree
Hide file tree
Showing 8 changed files with 546 additions and 363 deletions.
12 changes: 6 additions & 6 deletions _locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,17 @@
"configSaved": {
"message": "Saved"
},
"configHelp": {
"message": "User Manual"
"configGuide": {
"message": "User Guide"
},
"configCode": {
"message": "Open Source Code"
"message": "Opensource Code (MIT)"
},
"configIssues": {
"message": "Feature Request / Bug Report"
"message": "Issues / Feature Requests"
},
"configReviews": {
"message": "Rate Me"
"configReview": {
"message": "Review / Rate HiTable"
},

"_": {
Expand Down
14 changes: 7 additions & 7 deletions _locales/zh_CN/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,19 +92,19 @@
"configSaved": {
"message": "已保存"
},
"configHelp": {
"message": "使用手册"
"configGuide": {
"message": "使用帮助"
},
"configCode": {
"message": "开源代码"
"message": "开源代码(MIT)"
},
"configIssues": {
"message": "功能请求 / 错误反馈"
"message": "报告错误和功能请求"
},
"configReviews": {
"message": "给我评分"
"configReview": {
"message": "给 HiTable 评分"
},

"_": {
"message": "_"
}
Expand Down
12 changes: 6 additions & 6 deletions _locales/zh_HK/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,17 @@
"configSaved": {
"message": "已保存"
},
"configHelp": {
"message": "使用手冊"
"configGuide": {
"message": "使用幫助"
},
"configCode": {
"message": "開源代碼"
"message": "開源代碼(MIT)"
},
"configIssues": {
"message": "功能請求 / 錯誤反饋"
"message": "報告錯誤和功能請求"
},
"configReviews": {
"message": "給我評分"
"configReview": {
"message": "給 HiTable 評分"
},

"_": {
Expand Down
14 changes: 7 additions & 7 deletions _locales/zh_TW/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,19 +89,19 @@
"configSaved": {
"message": "已保存"
},
"configHelp": {
"message": "使用手冊"
"configGuide": {
"message": "使用說明"
},
"configCode": {
"message": "開源程式碼"
"message": "開源代碼(MIT)"
},
"configIssues": {
"message": "功能請求 / 錯誤回報"
"message": "報告錯誤和功能請求"
},
"configReviews": {
"message": "給我評分"
"configReview": {
"message": "給 HiTable 評分"
},

"_": {
"message": "_"
}
Expand Down
28 changes: 19 additions & 9 deletions pages/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,23 +100,24 @@
display: flex;
justify-content: space-between;
align-items: center;
flex-direction: row;
background-color: #f9f9f9;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.help a {
margin: 4px 2px;
margin: 15px 5px;
text-decoration: none;
color: #333;
font-size: 14px;
border-radius: 4px;
background-color: #f0f0f0;
padding: 10px;
background: #EEE;
padding: 5px 8px;
text-align: center;
font-weight: 700;
}
.help a:hover {
background-color: #e0e0e0;
background: #DDD;
}
</style>
<script src="../scripts/config.js"></script>
Expand Down Expand Up @@ -254,10 +255,19 @@ <h1 data-i18n="configTitle">HiTable Extension Config</h1>
<input type="submit" value="Save" data-i18n="configSave">
</form>
<div class="help">
<a href="https://github.com/wxy/HiTable/blob/master/README.md" target="_blank" data-i18n="configHelp">Help</a>
<a href="https://github.com/wxy/HiTable" target="_blank" data-i18n="configCode">Code</a>
<a href="https://github.com/wxy/HiTable/issues" target="_blank" data-i18n="configIssues">Issues</a>
<a href="https://chromewebstore.google.com/detail/gepfjnfkjimhdfemijfnnpefdpocldpc/reviews" target="_blank" data-i18n="configReviews">Reviews</a>

<a href="https://github.com/wxy/HiTable/blob/master/README.md" target="_blank" data-i18n="configGuide">
User Guide
</a>
<a href="https://github.com/wxy/HiTable" target="_blank" data-i18n="configCode">
Open Source Code (MIT)
</a>
<a href="https://github.com/wxy/HiTable/issues" target="_blank" data-i18n="configIssues">
Issues / Feature Requests
</a>
<a href="https://chromewebstore.google.com/detail/gepfjnfkjimhdfemijfnnpefdpocldpc/reviews" target="_blank" data-i18n="configReview">
Review / Rate HiTable
</a>
</div>
</body>
</html>
Loading

0 comments on commit ae00257

Please sign in to comment.