-
Notifications
You must be signed in to change notification settings - Fork 51
Add Simplfied Chinese translation #43
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
Open
TC999
wants to merge
7
commits into
MuntashirAkon:master
Choose a base branch
from
TC999:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3af2e5d
中文语言文件
TC999 b15e6ec
Create main.yml
TC999 27376ba
简体中文
TC999 34d74c0
Merge branch 'master' of https://github.com/TC999/SetEdit
TC999 54e1b41
Github Actions
TC999 be52578
空格
TC999 e772a38
Merge branch 'MuntashirAkon:master' into master
TC999 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| name: APK Build | ||
| on: | ||
| push: | ||
| branches: | ||
| - master | ||
|
|
||
| pull_request: | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout the code | ||
| uses: actions/checkout@v3 | ||
|
|
||
| - name: Set up JDK 17 | ||
| uses: actions/setup-java@v3 | ||
| with: | ||
| distribution: 'temurin' | ||
| java-version: '17' | ||
|
|
||
| - name: Cache Gradle packages | ||
| uses: actions/cache@v3 | ||
| with: | ||
| path: | | ||
| ~/.gradle/caches | ||
| ~/.gradle/wrapper | ||
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-gradle- | ||
|
|
||
| - name: Build the app | ||
| run: | | ||
| chmod +x gradlew | ||
| ./gradlew build --stacktrace | ||
|
|
||
| - name: Upload APK | ||
| uses: actions/upload-artifact@v3 | ||
| with: | ||
| name: debug-apk | ||
| path: app/build/outputs/apk/debug/*.apk | ||
| if-no-files-found: error |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <resources> | ||
| <string name="app_name" translatable="false">Settings Database Editor</string> | ||
| <string name="save">保存</string> | ||
| <string name="error_no_support"><b>SetEdit</b> 当前不支持编辑此表。要启用编辑,请在 root 或 ADB shell 中运行以下命令:</string> | ||
| <string name="error_unexpected"><b>意外失败:</b></string> | ||
| <string name="delete">删除</string> | ||
| <string name="help">获取帮助</string> | ||
| <string name="system_table">系统表</string> | ||
| <string name="secure_table">安全表</string> | ||
| <string name="global_table">全局表</string> | ||
| <string name="android_properties">Android 属性</string> | ||
| <string name="java_properties">Java 属性</string> | ||
| <string name="linux_environment">Linux 环境</string> | ||
| <string name="startup_warning"><b>警告!</b>我们不保证可以修复因不当使用此工具引起的问题,并且我们无法帮助您解决任何此类问题。我们只支持此应用程序,而不是您的设备。</string> | ||
| <string name="save_as_json">保存为 JSON</string> | ||
| <string name="new_item">新项目</string> | ||
| <string name="close">关闭</string> | ||
| <string name="value">值</string> | ||
| <string name="name">名称</string> | ||
| <string name="saved">已保存</string> | ||
| <string name="failed">失败</string> | ||
| <string name="saved_to_file">已保存到%s</string> | ||
| <string name="theme_system">跟随系统</string> | ||
| <string name="theme_day">日间</string> | ||
| <string name="theme_night">夜间</string> | ||
| <string name="theme_battery">跟随电池节能</string> | ||
| <string name="theme">主题</string> | ||
| <string name="boot_items">启动项</string> | ||
| <string name="perform_this_action_on_reboot">在重启时执行此操作</string> | ||
| <string name="shortcuts">快捷方式</string> | ||
| <string name="perform_this_action_via_shortcut">通过快捷方式执行此操作</string> | ||
| <string name="select_shortcuts">选择快捷方式</string> | ||
| <string name="create_new_shortcut">创建新快捷方式</string> | ||
| <string name="add_to_existing_shortcuts">添加到现有快捷方式</string> | ||
| <string name="shortcut_icon">图标</string> | ||
| <string name="pick_icon">选择一个图标</string> | ||
| <string name="error_creating_shortcut">失败!</string> | ||
| <string name="error_creating_shortcut_description">无法创建快捷方式,因为启动器不支持创建固定快捷方式。</string> | ||
| <string name="create_shortcut">创建快捷方式</string> | ||
| <string name="delete_shortcut_title">删除快捷方式</string> | ||
| <string name="delete_shortcut_message">SetEdit 无法自动删除快捷方式。要删除快捷方式,您必须从最初添加它的启动器中移除它。</string> | ||
| <string name="drag_item">拖动项目</string> | ||
| </resources> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
建议保留常用术语,如"System Table"等。全部翻译成中文反而会降低使用效率。
It is recommended to retain common terms, such as "System Table". Translating everything into Chinese would reduce efficiency.