diff --git a/get-started/_common/intro/_components_capabilities.md b/get-started/_common/intro/_components_capabilities.md index c917b833..ec55afb2 100644 --- a/get-started/_common/intro/_components_capabilities.md +++ b/get-started/_common/intro/_components_capabilities.md @@ -1,19 +1,23 @@ -## Component capabilities + +## 组件能力 -Components obtain privileges to access various parts of the wider system + +组件通过**能力**(capability)获得访问更广泛系统的各个部分的权限。每个组件都可以声明其提供给系统的新能力,以及其运行所需的由其他组件(或框架)提供的能力。 -As you just saw, `runner` is an example of a capability declaring the runtime + +如您所见,`runner` 是一个声明组件运行时所需能力的例子。其它常见能力类型的例子是访问文件系统资源的 `directory` 和与其它组件通信的 `protocol`。 -Developers declare the capability types required by the component using the + +开发者在组件清单声明组件所需要的能力类型。以下是请求两个能力的组件清单示例:对 `example-data` 目录的读权限和以 FIDL 协议 `fuchsia.example.Foo` 描述的服务。 ```json5 use: [ @@ -28,6 +32,7 @@ use: [ ] ``` -Component manager uses the capability declarations to populate each component's + +组件管理器依据能力声明将必需的目录句柄填入各个组件的命名空间。对于本例而言,组件将在其命名空间中接收到 `/example/data` 和 `/svc/fuchsia.example.Foo`。