Skip to content

Commit c59157b

Browse files
authored
New translation batch for es (github#31573)
1 parent 0d6e19d commit c59157b

File tree

10 files changed

+260
-239
lines changed

10 files changed

+260
-239
lines changed

translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication.md

Lines changed: 77 additions & 74 deletions
Large diffs are not rendered by default.

translations/es-ES/content/admin/identity-and-access-management/using-enterprise-managed-users-for-iam/about-enterprise-managed-users.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ By default, when an unauthenticated user attempts to access an enterprise that u
135135

136136
{% data variables.product.product_name %} automatically creates a username for each person by normalizing an identifier provided by your IdP. For more information, see "[Username considerations for external authentication](/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication)."
137137

138-
A conflict may occur when provisioning users if the unique parts of the identifier provided by your IdP are removed during normalization. If you're unable to provision a user due to a username conflict, you should modify the username provided by your IdP. For more information, see "[Resolving username conflicts](/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication#resolving-username-conflicts)."
138+
A conflict may occur when provisioning users if the unique parts of the identifier provided by your IdP are removed during normalization. {% data reusables.enterprise-accounts.emu-only-emails-within-the-enterprise-can-conflict %} If you're unable to provision a user due to a username conflict, you should modify the username provided by your IdP. For more information, see "[Resolving username conflicts](/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication#resolving-username-conflicts)."
139139

140140
The profile name and email address of a {% data variables.product.prodname_managed_user %} is also provided by the IdP. {% data variables.product.prodname_managed_users_caps %} cannot change their profile name or email address on {% data variables.product.prodname_dotcom %}, and the IdP can only provide a single email address.
141141

translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-the-codeql-workflow-for-compiled-languages.md

Lines changed: 52 additions & 50 deletions
Large diffs are not rendered by default.

translations/es-ES/content/code-security/dependabot/dependabot-alerts/browsing-security-advisories-in-the-github-advisory-database.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ Generally, we name our supported ecosystems after the software programming langu
5757
- Maven (registry: https://repo.maven.apache.org/maven2)
5858
- npm (registry: https://www.npmjs.com/)
5959
- NuGet (registry: https://www.nuget.org/)
60-
- pip (registry: https://pypi.org/)
60+
- pip (registry: https://pypi.org/){% ifversion dependency-graph-dart-support %}
61+
- pub (registry: https://pub.dev/packages/registry){% endif %}
6162
- RubyGems (registry: https://rubygems.org/)
6263
- Rust (registry: https://crates.io/)
6364

translations/es-ES/content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -784,15 +784,7 @@ registries:
784784

785785
### `docker-registry`
786786

787-
{% data variables.product.prodname_dependabot %} works with container registries that implement the OCI container registry. For more information, see [https://github.com/opencontainers/distribution-spec/blob/main/spec.md](https://github.com/opencontainers/distribution-spec/blob/main/spec.md). {% data variables.product.prodname_dependabot %} supports authentication to private registries via a central service. For further details, see [Token Authentication Specification](https://docs.docker.com/registry/spec/auth/token/) in the Docker documentation.
788-
789-
We currently support the container registries listed here:
790-
791-
* Docker Hub
792-
* {% data variables.product.company_short %} {% data variables.product.prodname_container_registry %}
793-
* GCR (Google Cloud)
794-
* Private ECR (AWS) - public ECR support is tracked in [https://github.com/dependabot/dependabot-core/issues/4212](https://github.com/dependabot/dependabot-core/issues/4212).
795-
787+
{% data variables.product.prodname_dependabot %} works with any container registries that implement the OCI container registry spec. For more information, see [https://github.com/opencontainers/distribution-spec/blob/main/spec.md](https://github.com/opencontainers/distribution-spec/blob/main/spec.md). {% data variables.product.prodname_dependabot %} supports authentication to private registries via a central token service or HTTP Basic Auth. For further details, see [Token Authentication Specification](https://docs.docker.com/registry/spec/auth/token/) in the Docker documentation and [Basic access authentication](https://en.wikipedia.org/wiki/Basic_access_authentication) on Wikipedia.
796788

797789
The `docker-registry` type supports username and password.
798790

translations/es-ES/content/developers/overview/secret-scanning-partner-program.md

Lines changed: 115 additions & 82 deletions
Large diffs are not rendered by default.

translations/es-ES/content/issues/planning-and-tracking-with-projects/automating-your-project/using-the-api-to-manage-projects.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ You can also find the node ID of all projects in your organization. The followin
9595
curl --request POST \
9696
--url https://api.github.com/graphql \
9797
--header 'Authorization: Bearer TOKEN' \
98-
--data '{"query":"{organization(login: \"ORGANIZATION") {projectsV2(first: 20) {nodes {id title}}}}"}'
98+
--data '{"query":"{organization(login: \"ORGANIZATION\") {projectsV2(first: 20) {nodes {id title}}}}"}'
9999
```
100100
{% endcurl %}
101101

@@ -566,7 +566,7 @@ The following example will update the value of a text field for an item. Replace
566566
curl --request POST \
567567
--url https://api.github.com/graphql \
568568
--header 'Authorization: Bearer TOKEN' \
569-
--data '{"query":"mutation {updateProjectV2ItemFieldValue( input: { projectId: "PROJECT_ID" itemId: "ITEM_ID" fieldId: "FIELD_ID" value: { text: "Updated text" }}) { projectV2Item { id }}}"}'
569+
--data '{"query":"mutation {updateProjectV2ItemFieldValue( input: { projectId: \"PROJECT_ID\" itemId: \"ITEM_ID\" fieldId: \"FIELD_ID\" value: { text: \"Updated text\" }}) { projectV2Item { id }}}"}'
570570
```
571571
{% endcurl %}
572572

@@ -620,7 +620,7 @@ The following example will update the value of a single select field for an item
620620
curl --request POST \
621621
--url https://api.github.com/graphql \
622622
--header 'Authorization: Bearer TOKEN' \
623-
--data '{"query":"mutation {updateProjectV2ItemFieldValue( input: { projectId: "PROJECT_ID" itemId: "ITEM_ID" fieldId: "FIELD_ID" value: { singleSelectOptionId: "OPTION_ID" }}) { projectV2Item { id }}}"}'
623+
--data '{"query":"mutation {updateProjectV2ItemFieldValue( input: { projectId: \"PROJECT_ID\" itemId: \"ITEM_ID\" fieldId: \"FIELD_ID\" value: { singleSelectOptionId: \"OPTION_ID\" }}) { projectV2Item { id }}}"}'
624624
```
625625
{% endcurl %}
626626

@@ -660,7 +660,7 @@ The following example will update the value of an iteration field for an item.
660660
curl --request POST \
661661
--url https://api.github.com/graphql \
662662
--header 'Authorization: Bearer TOKEN' \
663-
--data '{"query":"mutation {updateProjectV2ItemFieldValue( input: { projectId: "PROJECT_ID" itemId: "ITEM_ID" fieldId: "FIELD_ID" value: { singleSelectOptionId: "OPTION_ID" }}) { projectV2Item { id }}}"}'
663+
--data '{"query":"mutation {updateProjectV2ItemFieldValue( input: { projectId: \"PROJECT_ID\" itemId: \"ITEM_ID\" fieldId: \"FIELD_ID\" value: { singleSelectOptionId: \"OPTION_ID\" }}) { projectV2Item { id }}}"}'
664664
```
665665
{% endcurl %}
666666

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1 @@
1-
---
2-
ms.openlocfilehash: e9f2162fa5c65d4a59b2bd350aea2b131205f9a6
3-
ms.sourcegitcommit: 47bd0e48c7dba1dde49baff60bc1eddc91ab10c5
4-
ms.translationtype: HT
5-
ms.contentlocale: es-ES
6-
ms.lasthandoff: 09/05/2022
7-
ms.locfileid: "145113377"
8-
---
9-
{% data variables.product.prodname_codeql %} también ejecuta una compilación para que los proyectos de Go configuren el proyecto. Sin embargo, a diferencia de los demás lenguajes compilados, se extraen todos los archivos de Go del repositorio, no solo los compilados. Puede usar comandos de compilación personalizados para omitir la extracción de archivos de Go que no se han tocado en la compilación.
1+
For these three languages, {% data variables.product.prodname_codeql %} analyzes the source files in your repository that are built. {% data variables.product.prodname_codeql %} also runs a build for Go projects to set up the project, but then analyzes _all_ Go files in the repository, not just the files that are built. For any of these languages, including Go, you can disable `autobuild` and instead use custom build commands in order to analyze only the files that are built by these custom commands.
Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,2 @@
1-
---
2-
ms.openlocfilehash: 05d61d8f49c6b53d318abbdceba89223404a7509
3-
ms.sourcegitcommit: 47bd0e48c7dba1dde49baff60bc1eddc91ab10c5
4-
ms.translationtype: HT
5-
ms.contentlocale: es-ES
6-
ms.lasthandoff: 09/05/2022
7-
ms.locfileid: "145115642"
8-
---
9-
Si el código de C/C++, C# o Java del repositorio tiene un proceso de compilación no estándar, `autobuild` puede producir un error. Deberá quitar el paso `autobuild` del flujo de trabajo y agregar manualmente los pasos de compilación. Si quieres especificar qué archivos de Go se deben extraer de tu repositorio, necesitarás agregar pasos de compilación.
1+
If `autobuild` fails, or you want to analyze a different set of source files from those built by the `autobuild` process, you'll need to remove the `autobuild` step from the workflow, and manually add build steps. For C/C++, C#, Go, and Java projects, {% data variables.product.prodname_codeql %} will analyze whatever source code is built by your specified build steps.
2+

translations/log/msft-es-resets.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ translations/es-ES/content/admin/enterprise-management/updating-the-virtual-mach
309309
translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/about-github-actions-for-enterprises.md,rendering error
310310
translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/getting-started-with-self-hosted-runners-for-your-enterprise.md,rendering error
311311
translations/es-ES/content/admin/github-actions/getting-started-with-github-actions-for-your-enterprise/introducing-github-actions-to-your-enterprise.md,rendering error
312+
translations/es-ES/content/admin/identity-and-access-management/managing-iam-for-your-enterprise/username-considerations-for-external-authentication.md,broken liquid tags
312313
translations/es-ES/content/admin/identity-and-access-management/using-enterprise-managed-users-for-iam/about-enterprise-managed-users.md,broken liquid tags
313314
translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/about-the-audit-log-for-your-enterprise.md,rendering error
314315
translations/es-ES/content/admin/monitoring-activity-in-your-enterprise/reviewing-audit-logs-for-your-enterprise/audit-log-events-for-your-enterprise.md,rendering error
@@ -346,6 +347,7 @@ translations/es-ES/content/billing/managing-billing-for-your-github-account/conn
346347
translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-alerts.md,rendering error
347348
translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/about-code-scanning-with-codeql.md,rendering error
348349
translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning.md,rendering error
350+
translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-the-codeql-workflow-for-compiled-languages.md,broken liquid tags
349351
translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/managing-code-scanning-alerts-for-your-repository.md,rendering error
350352
translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/setting-up-code-scanning-for-a-repository.md,rendering error
351353
translations/es-ES/content/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/tracking-code-scanning-alerts-in-issues-using-task-lists.md,rendering error
@@ -448,6 +450,7 @@ translations/es-ES/content/developers/apps/guides/creating-ci-tests-with-the-che
448450
translations/es-ES/content/developers/apps/guides/using-the-github-api-in-your-app.md,rendering error
449451
translations/es-ES/content/developers/overview/about-githubs-apis.md,broken liquid tags
450452
translations/es-ES/content/developers/overview/managing-deploy-keys.md,broken liquid tags
453+
translations/es-ES/content/developers/overview/secret-scanning-partner-program.md,broken liquid tags
451454
translations/es-ES/content/developers/webhooks-and-events/events/issue-event-types.md,broken liquid tags
452455
translations/es-ES/content/developers/webhooks-and-events/webhooks/webhook-events-and-payloads.md,rendering error
453456
translations/es-ES/content/discussions/collaborating-with-your-community-using-discussions/collaborating-with-maintainers-using-discussions.md,broken liquid tags
@@ -609,6 +612,8 @@ translations/es-ES/data/reusables/advanced-security/secret-scanning-push-protect
609612
translations/es-ES/data/reusables/audit_log/audit-log-events-workflows.md,rendering error
610613
translations/es-ES/data/reusables/audit_log/audit_log_sidebar_for_org_admins.md,rendering error
611614
translations/es-ES/data/reusables/audit_log/audit_log_sidebar_for_site_admins.md,rendering error
615+
translations/es-ES/data/reusables/code-scanning/analyze-go.md,broken liquid tags
616+
translations/es-ES/data/reusables/code-scanning/autobuild-add-build-steps.md,broken liquid tags
612617
translations/es-ES/data/reusables/code-scanning/codeql-languages-bullets.md,rendering error
613618
translations/es-ES/data/reusables/code-scanning/codeql-languages-keywords.md,rendering error
614619
translations/es-ES/data/reusables/code-scanning/enterprise-enable-code-scanning.md,broken liquid tags

0 commit comments

Comments
 (0)