Skip to content

Commit 22b9c4d

Browse files
authored
New translation batch for es (#25758)
* Add crowdin translations * Run script/i18n/homogenize-frontmatter.js * Run script/i18n/fix-translation-errors.js * Run script/i18n/lint-translation-files.js --check parsing * run script/i18n/reset-files-with-broken-liquid-tags.js --language=es * run script/i18n/reset-known-broken-translation-files.js
1 parent d9f6445 commit 22b9c4d

28 files changed

Lines changed: 275 additions & 30 deletions

File tree

translations/es-ES/content/actions/learn-github-actions/contexts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,12 +181,12 @@ The `github` context contains information about the workflow run and the event t
181181
| `github` | `object` | The top-level context available during any job or step in a workflow. This object contains all the properties listed below. |
182182
| `github.action` | `string` | The name of the action currently running, or the [`id`](/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepsid) of a step. {% data variables.product.prodname_dotcom %} removes special characters, and uses the name `__run` when the current step runs a script without an `id`. If you use the same action more than once in the same job, the name will include a suffix with the sequence number with underscore before it. For example, the first script you run will have the name `__run`, and the second script will be named `__run_2`. Similarly, the second invocation of `actions/checkout` will be `actionscheckout2`. |
183183
| `github.action_path` | `string` | The path where an action is located. This property is only supported in composite actions. You can use this path to access files located in the same repository as the action. |
184-
| `github.action_ref` | `string` | For a step executing an action, this is the ref of the action being executed. For example, `v2`.
185-
| `github.action_repository` | `string` | For a step executing an action, this is the owner and repository name of the action. For example, `actions/checkout`.
184+
| `github.action_ref` | `string` | For a step executing an action, this is the ref of the action being executed. For example, `v2`. |
185+
| `github.action_repository` | `string` | For a step executing an action, this is the owner and repository name of the action. For example, `actions/checkout`. |
186186
| `github.actor` | `string` | The username of the user that initiated the workflow run. |
187187
| `github.api_url` | `string` | The URL of the {% data variables.product.prodname_dotcom %} REST API. |
188188
| `github.base_ref` | `string` | The `base_ref` or target branch of the pull request in a workflow run. This property is only available when the event that triggers a workflow run is either `pull_request` or `pull_request_target`. |
189-
| `github.env` | `string` | Path on the runner to the file that sets environment variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-commands-for-github-actions#setting-an-environment-variable)."
189+
| `github.env` | `string` | Path on the runner to the file that sets environment variables from workflow commands. This file is unique to the current step and is a different file for each step in a job. For more information, see "[Workflow commands for {% data variables.product.prodname_actions %}](/actions/learn-github-actions/workflow-commands-for-github-actions#setting-an-environment-variable)." |
190190
| `github.event` | `object` | The full event webhook payload. You can access individual properties of the event using this context. This object is identical to the webhook payload of the event that triggered the workflow run, and is different for each event. The webhooks for each {% data variables.product.prodname_actions %} event is linked in "[Events that trigger workflows](/articles/events-that-trigger-workflows/)." For example, for a workflow run triggered by the [`push` event](/actions/using-workflows/events-that-trigger-workflows#push), this object contains the contents of the [push webhook payload](/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push). |
191191
| `github.event_name` | `string` | The name of the event that triggered the workflow run. |
192192
| `github.event_path` | `string` | The path to the file on the runner that contains the full event webhook payload. |

translations/es-ES/content/actions/using-workflows/reusing-workflows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Puedes definir entradas y secretos, las cuales pueden pasarse desde el flujo de
113113
runs-on: ubuntu-latest
114114
environment: production
115115
steps:
116-
- uses: ./.github/actions/my-action
116+
- uses: ./.github/workflows/my-action
117117
with:
118118
username: ${{ inputs.username }}
119119
token: ${{ secrets.envPAT }}
@@ -154,7 +154,7 @@ jobs:
154154
name: Pass input and secrets to my-action
155155
runs-on: ubuntu-latest
156156
steps:
157-
- uses: ./.github/actions/my-action
157+
- uses: ./.github/workflows/my-action
158158
with:
159159
username: ${{ inputs.username }}
160160
token: ${{ secrets.token }}

translations/es-ES/content/actions/using-workflows/triggering-a-workflow.md

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,11 @@ Si quieres un control más granular que el que proporcionan los eventos, tipos d
195195

196196
### Utilziar condicionales
197197

198-
Puedes utilizar condicionales para controlar aún más si se ejecutarán los jobs o pasos de tu flujo de trabajo. Por ejemplo, si quieres que el flujo de trabajo se ejecute cuando se agrega una etiqueta específica a una propuesta, puedes activar el tipo de actividad de evento `issues labeled` y utilizar una condicional para verificar qué etiqueta activó el flujo de trabajo. El siguiente flujo de trabajo se ejecutará cuando se agregue cualquier etiqueta a una propuesta en su repositorio, pero el job `run_if_label_matches` solo se ejecutará si la etiqueta se nombra `bug`.
198+
Puedes utilizar condicionales para controlar aún más si se ejecutarán los jobs o pasos de tu flujo de trabajo.
199+
200+
#### Example using a value in the event payload
201+
202+
Por ejemplo, si quieres que el flujo de trabajo se ejecute cuando se agrega una etiqueta específica a una propuesta, puedes activar el tipo de actividad de evento `issues labeled` y utilizar una condicional para verificar qué etiqueta activó el flujo de trabajo. El siguiente flujo de trabajo se ejecutará cuando se agregue cualquier etiqueta a una propuesta en su repositorio, pero el job `run_if_label_matches` solo se ejecutará si la etiqueta se nombra `bug`.
199203

200204
```yaml
201205
on:
@@ -211,7 +215,34 @@ jobs:
211215
- run: echo 'The label was bug'
212216
```
213217
214-
Para obtener más información, consulta la sección "[Expresiones](/actions/learn-github-actions/expressions)".
218+
#### Example using event type
219+
220+
For example, if you want to run different jobs or steps depending on what event triggered the workflow, you can use a conditional to check whether a specific event type exists in the event context. The following workflow will run whenever an issue or pull request is closed. If the workflow ran because an issue was closed, the `github.event` context will contain a value for `issue` but not for `pull_request`. Therefore, the `if_issue` step will run but the `if_pr` step will not run. Conversely, if the workflow ran because a pull request was closed, the `if_pr` step will run but the `if_issue` step will not run.
221+
222+
```yaml
223+
on:
224+
issues:
225+
types:
226+
- closed
227+
pull_request:
228+
types:
229+
- closed
230+
231+
jobs:
232+
state_event_type:
233+
runs-on: ubuntu-latest
234+
steps:
235+
- name: if_issue
236+
if: github.event.issue
237+
run: |
238+
echo An issue was closed
239+
- name: if_pr
240+
if: github.event.pull_request
241+
run: |
242+
echo A pull request was closed
243+
```
244+
245+
For more information about what information is available in the event context, see "[Using event information](#using-event-information)." For more information about how to use conditionals, see "[Expressions](/actions/learn-github-actions/expressions)."
215246

216247
{% ifversion fpt or ghae or ghes > 3.1 or ghec %}
217248

translations/es-ES/content/admin/overview/about-enterprise-accounts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ For more information about the management of policies for your enterprise accoun
5050

5151
{% ifversion ghes or ghae %}
5252

53-
From your enterprise account on {% ifversion ghae %}{% data variables.product.product_name %}{% elsif ghes %}a {% data variables.product.prodname_ghe_server %} instance{% endif %}, administrators can view enterprise membership and manage the following for the {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} instance{% elsif ghae %}enterprise on {% data variables.product.prodname_ghe_managed %}{% endif %}.
53+
From your enterprise account on {% ifversion ghae %}{% data variables.product.product_name %}{% elsif ghes %}a {% data variables.product.prodname_ghe_server %} instance{% endif %}, administrators can view{% if remove-enterprise-members %} and manage{% endif %} enterprise membership{% if enterprise-owner-join-org %}, manage their own membership in organizations owned by the enterprise,{% endif %} and manage the following for the {% ifversion ghes %}{% data variables.product.prodname_ghe_server %} instance{% elsif ghae %}enterprise on {% data variables.product.prodname_ghe_managed %}{% endif %}.
5454

5555
{% ifversion ghes %}
5656
- License usage{% endif %}
@@ -65,7 +65,7 @@ From your enterprise account on {% ifversion ghae %}{% data variables.product.pr
6565

6666
{% endif %}
6767

68-
{% ifversion ghec or ghes %}When you try or purchase {% data variables.product.prodname_enterprise %}, you can{% ifversion ghes %} also{% endif %} create an enterprise account for {% data variables.product.prodname_ghe_cloud %} on {% data variables.product.prodname_dotcom_the_website %}. Administrators for the enterprise account on {% data variables.product.prodname_dotcom_the_website %} can view membership and manage the following for the enterprise account{% ifversion ghes %} on {% data variables.product.prodname_dotcom_the_website %}{% endif %}.
68+
{% ifversion ghec or ghes %}When you try or purchase {% data variables.product.prodname_enterprise %}, you can{% ifversion ghes %} also{% endif %} create an enterprise account for {% data variables.product.prodname_ghe_cloud %} on {% data variables.product.prodname_dotcom_the_website %}. Administrators for the enterprise account on {% data variables.product.prodname_dotcom_the_website %} can view {% if remove-enterprise-members %} and manage{% endif %} enterprise membership{% if enterprise-owner-join-org %}, manage their own membership in organizations owned by the enterprise,{% endif %} and manage the following for the enterprise account{% ifversion ghes %} on {% data variables.product.prodname_dotcom_the_website %}{% endif %}.
6969

7070
- Billing and usage (services on {% data variables.product.prodname_dotcom_the_website %}, {% data variables.product.prodname_GH_advanced_security %}, user licenses)
7171
- Security (single sign-on, IP allow lists, SSH certificate authorities, two-factor authentication)

translations/es-ES/content/admin/user-management/managing-organizations-in-your-enterprise/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ children:
2525
- /adding-people-to-teams
2626
- /viewing-the-audit-logs-for-organizations-in-your-enterprise
2727
- /streaming-the-audit-logs-for-organizations-in-your-enterprise-account
28+
- /managing-your-role-in-an-organization-owned-by-your-enterprise
2829
- /removing-users-from-teams-and-organizations
2930
- /removing-organizations-from-your-enterprise
3031
- /restoring-a-deleted-organization
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
title: Managing your role in an organization owned by your enterprise
3+
intro: You can manage your membership in any organization owned by your enterprise and change your role within the organization.
4+
permissions: Enterprise owners can manage their role in an organization owned by the enterprise.
5+
versions:
6+
feature: enterprise-owner-join-org
7+
type: how_to
8+
topics:
9+
- Administrator
10+
- Enterprise
11+
- Organizations
12+
shortTitle: Manage your organization roles
13+
---
14+
15+
{% note %}
16+
17+
**Note:** The ability for enterprise owners to manage their role in an organization owned by the enterprise is in beta and subject to change.
18+
19+
{% endnote %}
20+
21+
## About role management
22+
23+
You can choose to join an organization owned by your enterprise as a member or as an organization owner, change your role within the organization, or leave the organization.
24+
25+
{% warning %}
26+
27+
**Warning**: If an organization uses SCIM to provision users, joining the organization this way could have unintended consequences. Para obtener más información, consulta la sección "[Acerca de SCIM](/organizations/managing-saml-single-sign-on-for-your-organization/about-scim)".
28+
29+
{% endwarning %}
30+
31+
## Managing your role with the enterprise settings
32+
33+
You can join an organization owned by your enterprise and manage your role within the organization, directly from the settings for your enterprise account.
34+
35+
If an organization enforces SAML single sign-on (SSO), you cannot use the enterprise settings to join the organization. Instead, you must join the organization using that organization's identity provider (IdP). Then, you can manage your role in your enterprise settings. For more information, see "[Joining an organization that enforces SAML SSO](#joining-an-organization-that-enforces-saml-sso)."
36+
37+
{% data reusables.enterprise-accounts.access-enterprise %}
38+
1. On the **Organizations** tab, to the right of the organization you want to manage your role in, select the {% octicon "gear" aria-label="The gear icon" %} dropdown menu and click the action you want to take.
39+
40+
![Screenshot of the dropdown menu for the gear icon for an organization](/assets/images/help/business-accounts/change-role-in-org.png)
41+
42+
## Joining an organization that enforces SAML SSO
43+
44+
If an organization enforces SAML SSO, you cannot use the enterprise settings to join the organization. Instead, you must join the organization using that organization's identity provider (IdP).
45+
46+
1. You must be assigned access in your IdP to the application for {% data variables.product.prodname_ghe_cloud %} that is used by the organization. If you're unable to configure your IdP yourself, contact your IdP administrator.
47+
1. Authenticate to the organization using SAML SSO.
48+
49+
- If the organization uses SCIM, accept the organization invitation that will be generated by the SCIM integration.
50+
- If the organization does not use SCIM, visit the following URL, replacing ORGANIZATION with the name of the organization, then follow the prompts to authenticate.
51+
52+
`https://github.com/orgs/ORGANIZATION/sso`
53+
54+
After you've joined the organization, you can use the enterprise settings to manage your role in the organization, such as becoming an organization owner. For more information, see "[Managing your role with the enterprise settings](#managing-your-role-with-the-enterprise-settings)."

translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ children:
2727
- /viewing-and-managing-a-users-saml-access-to-your-enterprise
2828
- /auditing-users-across-your-enterprise
2929
- /impersonating-a-user
30+
- /removing-a-member-from-your-enterprise
3031
- /managing-dormant-users
3132
- /suspending-and-unsuspending-users
3233
- /placing-a-legal-hold-on-a-user-or-organization
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: Removing a member from your enterprise
3+
intro: You can remove a member from all organizations owned by your enterprise.
4+
permissions: Enterprise owners can remove an enterprise member from the enterprise.
5+
versions:
6+
feature: remove-enterprise-members
7+
type: how_to
8+
topics:
9+
- Enterprise
10+
shortTitle: Remove member
11+
---
12+
13+
{% note %}
14+
15+
**Note:** The ability to remove enterprise members is in beta and subject to change.
16+
17+
{% endnote %}
18+
19+
## About removal of enterprise members
20+
21+
When you remove an enterprise member from your enterprise, the member is removed from all organizations owned by your enterprise.
22+
23+
If the enterprise member you're removing is the last owner of an organization owned by your enterprise, you will become an owner of that organization.
24+
25+
If your enterprise or any of the organizations owned by your enterprise uses an identity provider (IdP) to manage organization membership, the member may be added back to the organization by the IdP. Make sure to also make any necessary changes in your IdP.
26+
27+
## Removing a member from your enterprise
28+
29+
{% note %}
30+
31+
**Note:** If an enterprise member uses only {% data variables.product.prodname_ghe_server %}, and not {% data variables.product.prodname_ghe_cloud %}, you cannot remove the enterprise member this way.
32+
33+
{% endnote %}
34+
35+
{% data reusables.enterprise-accounts.access-enterprise %}
36+
{% data reusables.enterprise-accounts.people-tab %}
37+
1. To the right of the person you want to remove, select the {% octicon "gear" aria-label="The gear icon" %} dropdown menu and click **Remove from enterprise**.
38+
39+
![Screenshot of the "Remove from enterprise" option for an enterprise member](/assets/images/help/business-accounts/remove-member.png)

translations/es-ES/content/admin/user-management/managing-users-in-your-enterprise/roles-in-an-enterprise.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,23 @@ Para obtener más información acerca de cómo agregar personas a tu empresa, co
3030

3131
{% endif %}
3232

33-
## Propietario de empresa
33+
## Enterprise owners
3434

3535
Los propietarios de las empresas tienen el control absoluto de las mismas y pueden tomar todas las acciones, incluyendo:
3636
- Gestionar administradores
37-
- {% ifversion ghec %}Agregar y eliminar {% elsif ghae or ghes %}Administrar{% endif %} organizaciones{% ifversion ghec %}to and from {% elsif ghae or ghes %} en{% endif %} la empresa
37+
- {% ifversion ghec %}Adding and removing {% elsif ghae or ghes %}Managing{% endif %} organizations {% ifversion ghec %}to and from {% elsif ghae or ghes %} in{% endif %} the enterprise{% if remove-enterprise-members %}
38+
- Removing enterprise members from all organizations owned by the enterprise{% endif %}
3839
- Administrar parámetros de la empresa
3940
- Aplicar políticas en las organizaciones
4041
{% ifversion ghec %}- Administrar la configuración de facturación{% endif %}
4142

43+
{% if enterprise-owner-join-org %}
44+
Enterprise owners do not have access to organization settings or content by default. To gain access, enterprise owners can join any organization owned by their enterprise. For more information, see "[Managing your role in an organization owned by your enterprise](/admin/user-management/managing-organizations-in-your-enterprise/managing-your-role-in-an-organization-owned-by-your-enterprise)."
45+
46+
Owners of organizations in your enterprise do not have access to the enterprise itself unless you make them enterprise owners.
47+
{% else %}
4248
Los propietarios de empresa no pueden acceder a los parámetros o el contenido de la organización, a menos que se conviertan en propietarios de la organización o que se les otorgue acceso directo al repositorio que le pertenece a una organización. De forma similar, los propietarios de las organizaciones en tu empresa no tienen acceso a la empresa misma a menos de que los conviertas en propietarios de ella.
49+
{% endif %}
4350

4451
Un propietario de la empresa solo consumirá una licencia si son propietarios o miembros de por lo menos una organización dentro de la emrpesa. Incluso si un propietario de empresa tiene un rol en varias organizaciones, consumirán una sola licencia. {% ifversion ghec %}Los propietrios de la empresa deben tener una cuenta personal en {% data variables.product.prodname_dotcom %}.{% endif %} Como mejor práctica, te recomendamos que solo algunas personas en tu compañía se conviertan en propietarios, para reducir el riesgo en tu negocio.
4552

@@ -55,7 +62,7 @@ Las personas con acceso de colaborador externo a los repositorios que pertenecen
5562

5663
{% ifversion ghec %}
5764

58-
## Gerente de facturación
65+
## Gerentes de facturación
5966

6067
Los gerentes de facturación solo tienen acceso a la configuración de facturación de tu empresa. Los gerentes de facturación de tu empresa pueden:
6168
- Ver y administrar las licencias de usuario, {% data variables.large_files.product_name_short %} los paquetes y otros parámetros de facturación

translations/es-ES/content/authentication/keeping-your-account-and-data-secure/updating-your-github-access-credentials.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ Para mayor seguridad, habilita la autenticación de dos factores además de camb
5555

5656
Consulta "[Revisar tus integraciones autorizadas](/articles/reviewing-your-authorized-integrations)" para recibir indicaciones sobre revisar y eliminar tokens de acceso. Para generar tokens de acceso nuevos, consulta la sección "[Crear un token de acceso personal](/github/authenticating-to-github/creating-a-personal-access-token)".
5757

58+
{% ifversion not ghae %}
59+
60+
If you have reset your account password and would also like to trigger a sign-out from the GitHub Mobile app, you can revoke your authorization of the "GitHub iOS" or "GitHub Android" OAuth App. For additional information, see "[Reviewing your authorized integrations](/authentication/keeping-your-account-and-data-secure/reviewing-your-authorized-integrations)."
61+
62+
{% endif %}
63+
5864
## Actualizar tus claves SSH
5965

6066
Consulta "[Revisar tus claves SSH](/articles/reviewing-your-ssh-keys)" para obtener indicaciones sobre la revisar y eliminar claves SSH. Para generar y agregar claves SSH nuevas, consulta "[Generar una clave SSH](/articles/generating-an-ssh-key)".

0 commit comments

Comments
 (0)