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

Update: Document #1482

Merged
merged 2 commits into from
Aug 7, 2024
Merged
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
55 changes: 0 additions & 55 deletions .github/workflows/scorecards-analysis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion src/_data/sidenav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@
permalink: /packages-and-plugins/using-packages
- title: 开发 Package 和插件
permalink: /packages-and-plugins/developing-packages
- title: Swift Package 管理器
- title: Swift Package Manager
permalink: /packages-and-plugins/swift-package-manager
children:
- title: 针对应用开发者
Expand Down
2 changes: 2 additions & 0 deletions src/_includes/docs/install/compiler/android.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ Otherwise, you can skip to the [next section][check-dev].

### Configure your target Android device

### 配置目标 Android 设备

{% tabs "android-emulator-or-not" %}
{% tab "虚拟设备" %}

Expand Down
9 changes: 5 additions & 4 deletions src/_includes/page-github-links.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@

<p id="page-github-links">
<span>
除非另有说明,本文档之所提及 适用于 Flutter 的最新稳定版本,本页面最后更新时间: {{page.date | toSimpleDate}}。
<!-- Unless stated otherwise, the documentation on this site reflects the latest stable version of Flutter. Page last updated on {{page.date | toSimpleDate}}. -->
除非另有说明,本文档之所提及适用于 Flutter 的最新稳定版本,本页面最后更新时间: {{page.date | toSimpleDate}}。
</span>
<a href="{{pageSource}}" target="_blank" rel="noopener"><t>View source</t><t>查看文档源码</t></a>
<span> <t>or</t><t>或者</t> </span>
<a href="{{repo}}/issues/new?template=1_page_issue.yml&page-url={{url}}&page-source={{pageSource}}" title="为本页面内容提出建议" target="_blank" rel="noopener"><t>report an issue</t><t>为本页面内容提出建议</t></a>。
<a href="{{pageSource}}" target="_blank" rel="noopener"><!-- View source -->查看文档源码</a>
<span> <!-- or -->或者 </span>
<a href="{{repo}}/issues/new?template=1_page_issue.yml&page-url={{url}}&page-source={{pageSource}}" title="为本页面内容提出建议" target="_blank" rel="noopener"><!-- report an issue -->为本页面内容提出建议</a>。
</p>
2 changes: 1 addition & 1 deletion src/content/assets/js/page/install-current.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ document.addEventListener("DOMContentLoaded", function(_) {
const header = osButton.querySelector('.card-title');
if (!header) return;
const currentSubtitle = document.createElement('div');
currentSubtitle.textContent = 'Current device';
currentSubtitle.textContent = '当前设备';
currentSubtitle.classList.add('card-subtitle');
header.appendChild(currentSubtitle);
});
Loading