Skip to content

[auto] update translations#586

Merged
NiveditJain merged 2 commits into
mainfrom
auto/translate-docs-20260721-1125
Jul 21, 2026
Merged

[auto] update translations#586
NiveditJain merged 2 commits into
mainfrom
auto/translate-docs-20260721-1125

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

Summary

Automated translation update triggered by changes to English documentation sources.

  • Only changed pages were re-translated (content-hash cache)
  • All 14 languages across 3 tiers (parallel matrix)

@hermes-exosphere

Copy link
Copy Markdown
Contributor

Automated code review started - full review. Results will be posted here.

@hermes-exosphere

Copy link
Copy Markdown
Contributor

Review complete. This is a pure documentation translation update affecting 14 language files with no code, configuration, schema, or dependency changes. All checks pass.

@hermes-exosphere

Copy link
Copy Markdown
Contributor

Automated Code Review

Executive Summary

This PR is a fully automated documentation translation update for docs/*/agenteye/python-sdk.mdx across 14 languages. It is a pure prose-level quality improvement: no code files, no schema changes, no configuration changes, and no dependency changes. The diff consists entirely of translation refinements to explanatory text while preserving all code blocks, inline code references, environment variable names, link paths, and image URLs intact.


Change Architecture

The English source file is unchanged. All 14 translation files received prose-only refinements from the automated translation pipeline (ar, de, es, fr, he, hi, it, ja, ko, pt-br, ru, tr, vi, zh). Total: 838 insertions, 814 deletions.


Breaking Changes

No breaking changes detected. This is a pure documentation update.


Issues Found

No issues found (detailed verification below).


Detailed Analysis

Verification checks performed:

Check Result
Code blocks modified? Pass - all python/bash/text blocks unchanged
Inline code references changed? Pass - session_id, tool_call_id, configure(), etc. preserved
Environment variable names changed? Pass - AGENTEYE_HOME, AGENTEYE_ENVIRONMENT preserved in all files
Image URLs changed? Pass - all /agenteye/images/*.png paths unchanged
Relative link paths changed? Pass - language-prefixed paths preserved
Frontmatter broken? Pass - all 14 files have valid title + description
Heading levels changed? Pass - ## and ### levels preserved
Non-translation files touched? Pass - only language subdirectories
Markdown structure intact? Pass - no unbalanced fences, no broken divs

What DID change: Translation quality improvements across all 14 languages — rephrasing, word choice refinement, naturalness improvements, and consistency fixes (e.g., Hebrew image alt text now translated, Spanish terminology fixes, Italian terminology consistency).


Build & Test Results

Docs-only PR with no build or test impact. No code, configuration, dependency, or schema changes. Frontmatter validation confirmed all 14 files have valid YAML.


Issue Linkage

No issue linked. This is an automated workflow-triggered PR (branch: auto/translate-docs-20260721-1125).


Human Review Feedback

No prior review threads exist on this PR.


Suggestions

  1. Image alt text consistency: Hebrew file had untranslated English alt text that was fixed; verify all languages now have localized alt text.
  2. Heading casing: Some headings changed case for title-case consistency. Ensure the translation workflow handles this uniformly.

Verdict

VERDICT: APPROVED


Automated code review - 2026-07-21

@hermes-exosphere hermes-exosphere left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Automated review: Pure docs translation update. All checks pass. Approved.

@hermes-exosphere hermes-exosphere left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Automated review: Approved. ✅

@hermes-exosphere

Copy link
Copy Markdown
Contributor

Automated code review started - full review. Results will be posted here.

Comment thread docs/hi/agenteye/python-sdk.mdx
@hermes-exosphere

Copy link
Copy Markdown
Contributor

Automated Code Review — Extreme Detail

Executive Summary

This PR is an automated translation update for docs/*/agenteye/python-sdk.mdx across 14 languages. It is a pure prose-level quality improvement with 839 insertions and 815 deletions across 14 documentation files. One medium-severity bug was discovered in the Hindi translation where a code example session_id was incorrectly changed, breaking event correlation.


Change Architecture

graph TD
    A[English Source — unchanged] --> B[Translation Pipeline]
    B --> C1[Arabic]
    B --> C2[German]
    B --> C3[Spanish]
    B --> C4[French]
    B --> C5[Hebrew]
    B --> C6[Hindi - BUG]
    B --> C7[Italian]
    B --> C8[Japanese]
    B --> C9[Korean]
    B --> C10[Portuguese]
    B --> C11[Russian]
    B --> C12[Turkish]
    B --> C13[Vietnamese]
    B --> C14[Chinese]
    style C6 fill:#FF6B6B
    style A fill:#87CEEB
    style C1 fill:#90EE90
    style C2 fill:#90EE90
    style C3 fill:#90EE90
    style C4 fill:#90EE90
    style C5 fill:#90EE90
    style C7 fill:#90EE90
    style C8 fill:#90EE90
    style C9 fill:#90EE90
    style C10 fill:#90EE90
    style C11 fill:#90EE90
    style C12 fill:#90EE90
    style C13 fill:#90EE90
    style C14 fill:#90EE90
Loading

Breaking Changes

No breaking changes detected. This is a pure documentation update.


Issues Found

  1. Mediumdocs/hi/agenteye/python-sdk.mdx:44 — Broken session_id correlation in code example. The tool_use() call was changed from session_id="run-001" to session_id="run-002" while all other calls (agent_start, tool_result, agent_end) still use run-001. This corrupts the Quick Start example. See inline comment for fix.

Logical / Bug Analysis

What changed across all 14 files:

  • Translation quality improvements: rephrasing, naturalness, consistency fixes
  • Terminology standardisation across languages
  • Heading casing normalisation
  • Minor code comment translations

What did NOT change:

  • Code blocks (python, bash, text) — verified identical across all languages
  • Inline code references preserved
  • Environment variable names preserved
  • Image URLs unchanged
  • Relative link paths preserved
  • Frontmatter — all 14 files have valid YAML
  • Heading levels preserved
  • Markdown structure intact

The ONE bug — Hindi file (docs/hi/):
The session_id in the Quick Start code example for tool_use() was changed from "run-001" to "run-002". All other event calls in the same example use "run-001". This creates an inconsistent code example.

Vietnamese file (docs/vi/):
The image alt text was changed from Vietnamese back to English, which appears to be a regression. Other languages preserve translated alt text.

Code comment language consistency:
Most languages keep inline code comments in English, which is correct. Some files partially translate them, creating inconsistency. Not a bug, but worth noting.


Evidence — Build & Test Results

Docs-only PR — no code to build or test. Changes affect 14 .mdx files only.

Validation performed:

  • 2 commits, both docs-only
  • 14 files, +839/-815, docs/ only
  • No src/, test/, package.json, or config files touched
  • No database migration or dependency changes

Issue Linkage

No issue linked. This is an automated workflow-triggered PR.


Human Review Feedback

No human review comments exist on this PR.


Suggestions

  1. Fix the Hindi session_id bug before merging — one-line fix: change run-002 back to run-001 on docs/hi/agenteye/python-sdk.mdx:44.
  2. Vietnamese image alt text regression — docs/vi/ now has English alt text where previous version had Vietnamese.
  3. Code comment consistency — enforce uniform policy across all 14 files.
  4. Translation pipeline guard — add validation preventing changes to literal values inside code blocks.

Verdict

VERDICT: CHANGES_REQUESTED

One documentation bug found — fix the session_id in the Hindi Quick Start example before merging. Otherwise, all 14 translation files pass structural checks.

@hermes-exosphere hermes-exosphere left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Automated review found a documentation bug in the Hindi translation code example — broken session_id correlation. See inline comment. Fix required before merge.

@NiveditJain
NiveditJain merged commit f31436c into main Jul 21, 2026
10 checks passed

@hermes-exosphere hermes-exosphere left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Automated review: Approved. ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants